From 68ddf81a4ef39d80b47df97d65a42cadba8233a2 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jun 2024 13:21:40 +0200 Subject: [PATCH 01/15] fix typo in v4.9.2 release notes --- docs/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index e114859ca..18cf1b511 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -21,7 +21,7 @@ bugfix/update release - various enhancements, including: - improve behavior when using extension which has `nosource` enabled ([#4506](https://github.com/easybuilders/easybuild-framework/pull/4506)) - enhance `get_software_libdir` to return `lib` or `lib64` if only one of them contains library files ([#4513](https://github.com/easybuilders/easybuild-framework/pull/4513)) - - implement versions checks to avoid mixing major versions across the EasyBuild components ([#4520](https://github.com/easybuilders/easybuild-framework/pull/4520), [#4553](https://github.com/easybuilders/easybuild-framework/pull/4553)) + - implement version checks to avoid mixing major versions across the EasyBuild components ([#4520](https://github.com/easybuilders/easybuild-framework/pull/4520), [#4553](https://github.com/easybuilders/easybuild-framework/pull/4553)) - add support for easyconfig parameter `module_only` ([#4537](https://github.com/easybuilders/easybuild-framework/pull/4537)) - various bug fixes, including: - fix typo in `patch_step` logging ([#4505](https://github.com/easybuilders/easybuild-framework/pull/4505)) From 69e656221cd4fc596883a79d732a19f8b870e1c1 Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 12:04:33 +0100 Subject: [PATCH 02/15] Generate version specifc individual software pages --- .../software-markdown-pages.py | 90 +++++++++++++++++++ .../update-version-specific-docs.sh | 14 ++- mkdocs.yml | 4 +- 3 files changed, 98 insertions(+), 10 deletions(-) create mode 100644 docs/version-specific/software-markdown-pages.py diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py new file mode 100644 index 000000000..fa493b402 --- /dev/null +++ b/docs/version-specific/software-markdown-pages.py @@ -0,0 +1,90 @@ +import argparse +import json +import shutil +from collections import defaultdict +from pathlib import Path + + +def output_markdown(processed, output_base_path): + packages = sum(len(v) for v in processed.values()) + top_page = open(output_base_path / 'index.md', 'w') + top_page.write("# List of supported software\n\n") + top_page.write(f"EasyBuild supports {packages} 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() + letter_page = open(letter_dir / 'index.md', 'w') + letter_page.write(f"# List of supported software ({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]) + + software_page = open(letter_dir / f'{software}.md', 'w') + 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.close() + + letter_page.close() + + top_page.close() + + +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) + """ + 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='software.json', 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/update-version-specific-docs.sh b/docs/version-specific/update-version-specific-docs.sh index 534b9cec9..17a7e0bf3 100755 --- a/docs/version-specific/update-version-specific-docs.sh +++ b/docs/version-specific/update-version-specific-docs.sh @@ -157,15 +157,11 @@ echo "* [List of known toolchains](toolchains.md)" >> $overview 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 >> software.json +python software-markdown-pages.py -o supported-software --delete-existing-output +rm 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: From 9f6b2cc1d43c0fcab28870a092059f345f0445ba Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 12:11:33 +0100 Subject: [PATCH 03/15] EB4.9.2 demo of new version specific software pages --- docs/version-specific/supported-software.md | 44897 ---------------- .../supported-software/0/3d-dna.md | 9 + .../supported-software/0/3to2.md | 11 + .../supported-software/0/4ti2.md | 12 + .../supported-software/0/index.md | 5 + .../supported-software/a/ABAQUS.md | 18 + .../supported-software/a/ABINIT.md | 35 + .../supported-software/a/ABRA2.md | 11 + .../supported-software/a/ABRicate.md | 11 + .../supported-software/a/ABySS.md | 18 + .../supported-software/a/ACTC.md | 15 + .../supported-software/a/ADDA.md | 9 + .../supported-software/a/ADF.md | 13 + .../supported-software/a/ADIOS.md | 11 + .../supported-software/a/ADMIXTURE.md | 9 + .../supported-software/a/ADOL-C.md | 10 + .../supported-software/a/AEDT.md | 9 + .../supported-software/a/AFNI.md | 14 + .../supported-software/a/AGAT.md | 10 + .../supported-software/a/AGFusion.md | 9 + .../supported-software/a/AGeNT.md | 9 + .../supported-software/a/AICSImageIO.md | 9 + .../supported-software/a/AIMAll.md | 9 + .../supported-software/a/ALADIN.md | 9 + .../supported-software/a/ALAMODE.md | 9 + .../supported-software/a/ALFA.md | 9 + .../supported-software/a/ALL.md | 10 + .../supported-software/a/ALLPATHS-LG.md | 9 + .../supported-software/a/ALPS.md | 11 + .../supported-software/a/AMAPVox.md | 9 + .../supported-software/a/AMD-LibM.md | 10 + .../supported-software/a/AMD-RNG.md | 10 + .../supported-software/a/AMD-SecureRNG.md | 10 + .../supported-software/a/AMD-uProf.md | 11 + .../supported-software/a/AMGX.md | 9 + .../supported-software/a/AMICA.md | 9 + .../supported-software/a/AMOS.md | 11 + .../supported-software/a/AMPHORA2.md | 9 + .../supported-software/a/AMPL-MP.md | 9 + .../supported-software/a/AMPtk.md | 9 + .../supported-software/a/AMRFinderPlus.md | 10 + .../supported-software/a/AMS.md | 12 + .../supported-software/a/ANGEL.md | 9 + .../supported-software/a/ANIcalculator.md | 10 + .../supported-software/a/ANSYS.md | 11 + .../supported-software/a/ANSYS_CFD.md | 10 + .../supported-software/a/ANTIC.md | 9 + .../supported-software/a/ANTLR.md | 25 + .../supported-software/a/ANTs.md | 15 + .../supported-software/a/AOCC.md | 20 + .../supported-software/a/AOFlagger.md | 10 + .../supported-software/a/AOMP.md | 10 + .../supported-software/a/APBS.md | 9 + .../supported-software/a/APR-util.md | 18 + .../supported-software/a/APR.md | 18 + .../supported-software/a/ARAGORN.md | 11 + .../supported-software/a/ARCH.md | 9 + .../supported-software/a/ARGoS.md | 10 + .../supported-software/a/ARPACK++.md | 9 + .../supported-software/a/ART.md | 10 + .../supported-software/a/ARTS.md | 9 + .../supported-software/a/ARWEN.md | 9 + .../supported-software/a/ASAP.md | 10 + .../supported-software/a/ASAP3.md | 25 + .../supported-software/a/ASCAT.md | 10 + .../supported-software/a/ASE.md | 62 + .../supported-software/a/ASF-SearchAPI.md | 9 + .../supported-software/a/ASHS.md | 9 + .../supported-software/a/ASTRID.md | 9 + .../supported-software/a/ATAT.md | 9 + .../supported-software/a/ATK.md | 32 + .../supported-software/a/ATLAS.md | 9 + .../supported-software/a/ATSAS.md | 11 + .../supported-software/a/AUGUSTUS.md | 23 + .../supported-software/a/AUTO-07p.md | 9 + .../supported-software/a/Abseil.md | 13 + .../supported-software/a/AdapterRemoval.md | 15 + .../supported-software/a/Advisor.md | 20 + .../supported-software/a/Albacore.md | 9 + .../supported-software/a/Albumentations.md | 12 + .../supported-software/a/Alfred.md | 9 + .../supported-software/a/Allinea.md | 11 + .../supported-software/a/Alpha.md | 9 + .../supported-software/a/AlphaFold.md | 24 + .../supported-software/a/AlphaPulldown.md | 10 + .../supported-software/a/Amara.md | 10 + .../supported-software/a/Amber.md | 32 + .../supported-software/a/AmberMini.md | 10 + .../supported-software/a/AmberTools.md | 16 + .../supported-software/a/AmrPlusPlus.md | 9 + .../supported-software/a/Anaconda2.md | 18 + .../supported-software/a/Anaconda3.md | 29 + .../supported-software/a/Annif.md | 10 + .../supported-software/a/Annocript.md | 9 + .../supported-software/a/AptaSUITE.md | 9 + .../supported-software/a/Arb.md | 15 + .../a/Arcade-Learning-Environment.md | 10 + .../supported-software/a/ArchR.md | 11 + .../supported-software/a/Archive-Zip.md | 13 + .../supported-software/a/AreTomo2.md | 9 + .../supported-software/a/Arlequin.md | 9 + .../supported-software/a/Armadillo.md | 25 + .../supported-software/a/ArrayFire.md | 10 + .../supported-software/a/Arriba.md | 14 + .../supported-software/a/Arrow.md | 28 + .../supported-software/a/Artemis.md | 11 + .../supported-software/a/ArviZ.md | 17 + .../supported-software/a/Aspera-CLI.md | 11 + .../supported-software/a/Aspera-Connect.md | 10 + .../supported-software/a/Assimulo.md | 9 + .../supported-software/a/AtomPAW.md | 10 + .../supported-software/a/Austin.md | 10 + .../supported-software/a/AutoDock-GPU.md | 10 + .../supported-software/a/AutoDock-Vina.md | 11 + .../supported-software/a/AutoDock.md | 10 + .../supported-software/a/AutoDockSuite.md | 9 + .../supported-software/a/AutoGeneS.md | 9 + .../supported-software/a/AutoGrid.md | 9 + .../supported-software/a/AutoMap.md | 9 + .../supported-software/a/Autoconf-archive.md | 11 + .../supported-software/a/Autoconf.md | 54 + .../supported-software/a/Automake.md | 59 + .../supported-software/a/Autotools.md | 54 + .../supported-software/a/Avogadro2.md | 9 + .../supported-software/a/Ax.md | 9 + .../supported-software/a/aNCI.md | 9 + .../supported-software/a/abTEM.md | 11 + .../supported-software/a/ack.md | 11 + .../supported-software/a/ada.md | 9 + .../supported-software/a/adjustText.md | 13 + .../supported-software/a/affinity.md | 10 + .../supported-software/a/aiohttp.md | 15 + .../supported-software/a/alevin-fry.md | 11 + .../supported-software/a/alleleCount.md | 11 + .../supported-software/a/alleleIntegrator.md | 10 + .../supported-software/a/almosthere.md | 11 + .../supported-software/a/alsa-lib.md | 13 + .../supported-software/a/amask.md | 10 + .../supported-software/a/amdahl.md | 9 + .../supported-software/a/amplimap.md | 9 + .../supported-software/a/anadama2.md | 9 + .../supported-software/a/andi.md | 9 + .../supported-software/a/angsd.md | 16 + .../supported-software/a/anndata.md | 12 + .../supported-software/a/annovar.md | 11 + .../supported-software/a/ant.md | 38 + .../supported-software/a/antiSMASH.md | 11 + .../supported-software/a/anvio.md | 10 + .../supported-software/a/any2fasta.md | 14 + .../supported-software/a/apex.md | 10 + .../supported-software/a/arcasHLA.md | 9 + .../supported-software/a/archspec.md | 17 + .../supported-software/a/argtable.md | 17 + .../supported-software/a/aria2.md | 10 + .../supported-software/a/arosics.md | 9 + .../supported-software/a/arpack-ng.md | 33 + .../supported-software/a/arrow-R.md | 15 + .../supported-software/a/artic-ncov2019.md | 10 + .../supported-software/a/assembly-stats.md | 9 + .../supported-software/a/assimp.md | 11 + .../supported-software/a/astro-tulips.md | 9 + .../supported-software/a/astropy.md | 24 + .../supported-software/a/at-spi2-atk.md | 19 + .../supported-software/a/at-spi2-core.md | 19 + .../supported-software/a/atomate.md | 9 + .../supported-software/a/atools.md | 15 + .../supported-software/a/atropos.md | 10 + .../supported-software/a/attr.md | 14 + .../supported-software/a/attrdict.md | 9 + .../supported-software/a/attrdict3.md | 11 + .../supported-software/a/augur.md | 9 + .../supported-software/a/autopep8.md | 11 + .../supported-software/a/avro-cpp.md | 9 + .../supported-software/a/awscli.md | 16 + .../supported-software/a/axel.md | 10 + .../supported-software/a/index.md | 172 + .../supported-software/b/BA3-SNPS-autotune.md | 9 + .../supported-software/b/BAGEL.md | 11 + .../supported-software/b/BAMM.md | 9 + .../supported-software/b/BAMSurgeon.md | 9 + .../supported-software/b/BAli-Phy.md | 9 + .../supported-software/b/BBMap.md | 23 + .../supported-software/b/BCALM.md | 9 + .../supported-software/b/BCEL.md | 10 + .../supported-software/b/BCFtools.md | 31 + .../supported-software/b/BDBag.md | 11 + .../supported-software/b/BEDOPS.md | 17 + .../supported-software/b/BEDTools.md | 31 + .../supported-software/b/BEEF.md | 10 + .../supported-software/b/BFAST.md | 9 + .../supported-software/b/BFC.md | 9 + .../b/BGC-Bayesian-genomic-clines.md | 9 + .../supported-software/b/BLACS.md | 9 + .../supported-software/b/BLASR.md | 11 + .../supported-software/b/BLAST+.md | 35 + .../supported-software/b/BLAST.md | 13 + .../supported-software/b/BLAT.md | 18 + .../supported-software/b/BLIS.md | 29 + .../supported-software/b/BLT.md | 9 + .../supported-software/b/BMTK.md | 9 + .../supported-software/b/BOINC.md | 9 + .../supported-software/b/BOPTEST.md | 9 + .../supported-software/b/BRAKER.md | 12 + .../supported-software/b/BRiAl.md | 9 + .../supported-software/b/BSMAPz.md | 9 + .../supported-software/b/BSseeker2.md | 10 + .../supported-software/b/BUFRLIB.md | 9 + .../supported-software/b/BUSCO.md | 19 + .../supported-software/b/BUStools.md | 11 + .../supported-software/b/BWA.md | 39 + .../supported-software/b/BWISE.md | 9 + .../supported-software/b/BXH_XCEDE_TOOLS.md | 9 + .../supported-software/b/BabelStream.md | 9 + .../supported-software/b/Bader.md | 12 + .../supported-software/b/BamTools.md | 29 + .../supported-software/b/BamUtil.md | 10 + .../supported-software/b/Bambi.md | 10 + .../supported-software/b/Bandage.md | 12 + .../supported-software/b/Bash.md | 9 + .../supported-software/b/BatMeth2.md | 9 + .../supported-software/b/BayeScEnv.md | 11 + .../supported-software/b/BayeScan.md | 11 + .../supported-software/b/BayesAss.md | 9 + .../supported-software/b/BayesAss3-SNPs.md | 9 + .../supported-software/b/BayesPrism.md | 9 + .../supported-software/b/BayesTraits.md | 11 + .../supported-software/b/Bazel.md | 40 + .../supported-software/b/Beagle.md | 9 + .../supported-software/b/Beast.md | 21 + .../supported-software/b/BeautifulSoup.md | 21 + .../supported-software/b/BerkeleyGW.md | 23 + .../supported-software/b/BgeeCall.md | 9 + .../supported-software/b/BgeeDB.md | 9 + .../supported-software/b/BiG-SCAPE.md | 10 + .../supported-software/b/BiasAdjustCXX.md | 9 + .../supported-software/b/BigDFT.md | 9 + .../supported-software/b/BinSanity.md | 9 + .../supported-software/b/Bio-DB-HTS.md | 17 + .../supported-software/b/Bio-EUtilities.md | 9 + .../supported-software/b/Bio-FeatureIO.md | 9 + .../supported-software/b/Bio-SamTools.md | 9 + .../b/Bio-SearchIO-hmmer.md | 13 + .../supported-software/b/BioPP.md | 10 + .../supported-software/b/BioPerl.md | 27 + .../supported-software/b/BioServices.md | 9 + .../supported-software/b/Biopython.md | 47 + .../supported-software/b/BirdNET.md | 9 + .../supported-software/b/Bismark.md | 14 + .../supported-software/b/Bison.md | 87 + .../supported-software/b/Blender.md | 22 + .../supported-software/b/Blitz++.md | 16 + .../supported-software/b/BlobTools.md | 9 + .../supported-software/b/Block.md | 10 + .../supported-software/b/Blosc.md | 26 + .../supported-software/b/Blosc2.md | 16 + .../supported-software/b/BoltzTraP.md | 9 + .../supported-software/b/BoltzTraP2.md | 9 + .../supported-software/b/Bonito.md | 17 + .../supported-software/b/Bonmin.md | 9 + .../supported-software/b/Bonnie++.md | 10 + .../supported-software/b/Boost.MPI.md | 14 + .../b/Boost.Python-NumPy.md | 9 + .../supported-software/b/Boost.Python.md | 36 + .../supported-software/b/Boost.md | 102 + .../supported-software/b/Bottleneck.md | 12 + .../supported-software/b/Bowtie.md | 30 + .../supported-software/b/Bowtie2.md | 35 + .../supported-software/b/Bpipe.md | 9 + .../supported-software/b/Bracken.md | 12 + .../supported-software/b/Braindecode.md | 12 + .../supported-software/b/BreakDancer.md | 9 + .../supported-software/b/Brotli-python.md | 14 + .../supported-software/b/Brotli.md | 17 + .../supported-software/b/Brunsli.md | 13 + .../supported-software/b/Bsoft.md | 10 + .../supported-software/b/BuDDy.md | 9 + .../supported-software/b/Bullet.md | 10 + .../supported-software/b/babl.md | 9 + .../supported-software/b/bam-readcount.md | 12 + .../supported-software/b/bamFilters.md | 9 + .../supported-software/b/bamtofastq.md | 9 + .../supported-software/b/barrnap.md | 13 + .../supported-software/b/basemap.md | 15 + .../supported-software/b/bases2fastq.md | 9 + .../supported-software/b/bashplotlib.md | 9 + .../supported-software/b/bat.md | 9 + .../supported-software/b/batchgenerators.md | 9 + .../supported-software/b/bbFTP.md | 11 + .../supported-software/b/bbcp.md | 9 + .../supported-software/b/bc.md | 9 + .../supported-software/b/bcbio-gff.md | 13 + .../supported-software/b/bcgTree.md | 10 + .../supported-software/b/bcl-convert.md | 9 + .../supported-software/b/bcl2fastq2.md | 20 + .../supported-software/b/bcolz.md | 11 + .../supported-software/b/bcrypt.md | 10 + .../supported-software/b/beagle-lib.md | 21 + .../supported-software/b/behave.md | 10 + .../supported-software/b/bench.md | 9 + .../supported-software/b/bgen-reader.md | 9 + .../supported-software/b/bgen.md | 11 + .../supported-software/b/bibtexparser.md | 9 + .../supported-software/b/binutils.md | 71 + .../supported-software/b/bioawk.md | 11 + .../b/biobakery-workflows.md | 9 + .../supported-software/b/biobambam2.md | 11 + .../supported-software/b/biogeme.md | 12 + .../supported-software/b/biom-format.md | 13 + .../supported-software/b/biomart-perl.md | 9 + .../supported-software/b/biscuit.md | 9 + .../supported-software/b/bitarray.md | 12 + .../supported-software/b/bitshuffle.md | 9 + .../supported-software/b/blasr_libcpp.md | 9 + .../supported-software/b/bmtagger.md | 11 + .../supported-software/b/bnpy.md | 9 + .../supported-software/b/bokeh.md | 29 + .../supported-software/b/boost_histogram.md | 9 + .../supported-software/b/boto3.md | 13 + .../supported-software/b/bpp.md | 10 + .../supported-software/b/bpytop.md | 10 + .../supported-software/b/breseq.md | 12 + .../supported-software/b/bsddb3.md | 12 + .../supported-software/b/btllib.md | 9 + .../supported-software/b/build.md | 12 + .../supported-software/b/buildenv.md | 44 + .../supported-software/b/buildingspy.md | 9 + .../supported-software/b/bwa-mem2.md | 9 + .../supported-software/b/bwa-meth.md | 11 + .../supported-software/b/bwakit.md | 9 + .../supported-software/b/bwidget.md | 14 + .../supported-software/b/bx-python.md | 19 + .../supported-software/b/byacc.md | 12 + .../supported-software/b/byobu.md | 9 + .../supported-software/b/bzip2.md | 45 + .../supported-software/b/index.md | 160 + .../supported-software/c/C3D.md | 9 + .../supported-software/c/CAFE5.md | 9 + .../supported-software/c/CAMPARI.md | 10 + .../supported-software/c/CAP3.md | 11 + .../supported-software/c/CASA.md | 9 + .../supported-software/c/CASPR.md | 9 + .../supported-software/c/CASTEP.md | 15 + .../supported-software/c/CAT-BAT.md | 9 + .../supported-software/c/CAVIAR.md | 9 + .../supported-software/c/CBLAS.md | 11 + .../supported-software/c/CCCL.md | 9 + .../supported-software/c/CCL.md | 14 + .../supported-software/c/CCfits.md | 9 + .../supported-software/c/CD-HIT.md | 22 + .../supported-software/c/CDAT.md | 9 + .../supported-software/c/CDBtools.md | 10 + .../supported-software/c/CDFlib.md | 9 + .../supported-software/c/CDO.md | 25 + .../supported-software/c/CENSO.md | 10 + .../supported-software/c/CESM-deps.md | 13 + .../supported-software/c/CFDEMcoupling.md | 10 + .../supported-software/c/CFITSIO.md | 27 + .../supported-software/c/CGAL.md | 42 + .../supported-software/c/CGNS.md | 10 + .../supported-software/c/CGmapTools.md | 9 + .../supported-software/c/CHASE.md | 9 + .../supported-software/c/CHERAB.md | 13 + .../supported-software/c/CIF2Cell.md | 9 + .../supported-software/c/CIRCexplorer.md | 9 + .../supported-software/c/CIRCexplorer2.md | 12 + .../supported-software/c/CIRI-long.md | 9 + .../supported-software/c/CIRI.md | 9 + .../supported-software/c/CIRIquant.md | 9 + .../supported-software/c/CITE-seq-Count.md | 10 + .../supported-software/c/CLAPACK.md | 11 + .../supported-software/c/CLEAR.md | 9 + .../supported-software/c/CLEASE.md | 9 + .../supported-software/c/CLHEP.md | 27 + .../supported-software/c/CLIP.md | 9 + .../supported-software/c/CLISP.md | 10 + .../supported-software/c/CLooG.md | 9 + .../supported-software/c/CMAverse.md | 9 + .../supported-software/c/CMSeq.md | 10 + .../supported-software/c/CMake.md | 93 + .../supported-software/c/CNT-ILP.md | 9 + .../supported-software/c/CNVkit.md | 13 + .../supported-software/c/CNVnator.md | 9 + .../supported-software/c/COBRApy.md | 10 + .../supported-software/c/CODEX2.md | 9 + .../supported-software/c/COMEBin.md | 9 + .../supported-software/c/COMSOL.md | 10 + .../supported-software/c/CONCOCT.md | 13 + .../supported-software/c/CONN.md | 9 + .../supported-software/c/CP2K.md | 36 + .../supported-software/c/CPB.md | 9 + .../supported-software/c/CPC2.md | 9 + .../supported-software/c/CPLEX.md | 12 + .../supported-software/c/CPMD.md | 9 + .../supported-software/c/CPPE.md | 10 + .../supported-software/c/CREST.md | 14 + .../supported-software/c/CRF++.md | 10 + .../supported-software/c/CRISPR-DAV.md | 9 + .../supported-software/c/CRISPResso2.md | 11 + .../supported-software/c/CRPropa.md | 10 + .../supported-software/c/CSB.md | 9 + .../supported-software/c/CSBDeep.md | 12 + .../supported-software/c/CSBLAST.md | 10 + .../supported-software/c/CTPL.md | 9 + .../supported-software/c/CUDA-Samples.md | 11 + .../supported-software/c/CUDA.md | 60 + .../supported-software/c/CUDAcompat.md | 13 + .../supported-software/c/CUDAcore.md | 15 + .../supported-software/c/CUDD.md | 9 + .../supported-software/c/CUTLASS.md | 9 + .../supported-software/c/CUnit.md | 12 + .../supported-software/c/CVX.md | 9 + .../supported-software/c/CVXOPT.md | 16 + .../supported-software/c/CVXPY.md | 12 + .../supported-software/c/CVglasso.md | 9 + .../supported-software/c/CWIPI.md | 10 + .../supported-software/c/CaDiCaL.md | 9 + .../supported-software/c/CaSpER.md | 9 + .../supported-software/c/CaVEMan.md | 9 + .../supported-software/c/Caffe.md | 12 + .../supported-software/c/Calcam.md | 10 + .../supported-software/c/CalculiX-CrunchiX.md | 11 + .../supported-software/c/Calendrical.md | 11 + .../supported-software/c/Calib.md | 9 + .../supported-software/c/Cantera.md | 18 + .../supported-software/c/Canvas.md | 9 + .../supported-software/c/CapnProto.md | 18 + .../supported-software/c/Cargo.md | 9 + .../supported-software/c/Carma.md | 9 + .../supported-software/c/Cartopy.md | 16 + .../supported-software/c/Casanovo.md | 10 + .../supported-software/c/Cassiopeia.md | 9 + .../supported-software/c/CastXML.md | 11 + .../supported-software/c/CatBoost.md | 9 + .../supported-software/c/CatLearn.md | 9 + .../supported-software/c/CatMAP.md | 10 + .../supported-software/c/Catch2.md | 15 + .../supported-software/c/Cbc.md | 13 + .../supported-software/c/CellBender.md | 12 + .../supported-software/c/CellChat.md | 9 + .../supported-software/c/CellMix.md | 9 + .../supported-software/c/CellOracle.md | 9 + .../supported-software/c/CellRanger-ARC.md | 12 + .../supported-software/c/CellRanger-ATAC.md | 11 + .../supported-software/c/CellRanger.md | 23 + .../supported-software/c/CellRank.md | 10 + .../supported-software/c/CellTypist.md | 10 + .../supported-software/c/Cellpose.md | 12 + .../supported-software/c/Centrifuge.md | 13 + .../supported-software/c/Cereal.md | 11 + .../supported-software/c/Cgl.md | 13 + .../supported-software/c/ChIPseeker.md | 9 + .../supported-software/c/CharLS.md | 17 + .../supported-software/c/CheMPS2.md | 22 + .../supported-software/c/Check.md | 17 + .../supported-software/c/CheckM-Database.md | 9 + .../supported-software/c/CheckM.md | 21 + .../supported-software/c/CheckM2.md | 9 + .../supported-software/c/Cheetah.md | 9 + .../supported-software/c/Chemaxon-Marvin.md | 10 + .../supported-software/c/ChimPipe.md | 10 + .../supported-software/c/Chimera.md | 10 + .../supported-software/c/Chromaprint.md | 9 + .../supported-software/c/Circlator.md | 9 + .../supported-software/c/Circos.md | 13 + .../supported-software/c/Circuitscape.md | 10 + .../supported-software/c/Clair3.md | 9 + .../supported-software/c/Clang-AOMP.md | 9 + .../c/Clang-Python-bindings.md | 13 + .../supported-software/c/Clang.md | 51 + .../supported-software/c/Clarabel.rs.md | 9 + .../supported-software/c/CliMetLab.md | 9 + .../supported-software/c/ClonalFrameML.md | 9 + .../supported-software/c/CloudCompare.md | 9 + .../supported-software/c/Clp.md | 14 + .../supported-software/c/Clustal-Omega.md | 17 + .../supported-software/c/ClustalW2.md | 18 + .../supported-software/c/Cluster-Buster.md | 10 + .../supported-software/c/ClusterShell.md | 9 + .../supported-software/c/CmdStanR.md | 11 + .../supported-software/c/Co-phylog.md | 9 + .../supported-software/c/CoCoALib.md | 12 + .../supported-software/c/CoSymLib.md | 9 + .../supported-software/c/CodAn.md | 9 + .../supported-software/c/CodingQuarry.md | 9 + .../supported-software/c/Cogent.md | 9 + .../supported-software/c/Coin.md | 10 + .../supported-software/c/CoinUtils.md | 15 + .../supported-software/c/ColabFold.md | 10 + .../supported-software/c/Commet.md | 9 + .../supported-software/c/CompareM.md | 10 + .../supported-software/c/Compass.md | 9 + .../supported-software/c/Compress-Raw-Zlib.md | 10 + .../supported-software/c/Con3F.md | 9 + .../supported-software/c/Concorde.md | 9 + .../c/ConcurrentVersionsSystem.md | 12 + .../c/ConnectomeWorkbench.md | 14 + .../supported-software/c/Control-FREEC.md | 11 + .../supported-software/c/CoordgenLibs.md | 15 + .../supported-software/c/Coot.md | 10 + .../supported-software/c/CopyKAT.md | 10 + .../supported-software/c/Coreutils.md | 16 + .../supported-software/c/CppHeaderParser.md | 9 + .../supported-software/c/CppUnit.md | 18 + .../supported-software/c/CrayCCE.md | 9 + .../supported-software/c/CrayGNU.md | 9 + .../supported-software/c/CrayIntel.md | 9 + .../supported-software/c/CrayPGI.md | 9 + .../supported-software/c/CrossMap.md | 9 + .../supported-software/c/CrossTalkZ.md | 9 + .../supported-software/c/Crumble.md | 9 + .../supported-software/c/CryptoMiniSat.md | 9 + .../supported-software/c/CrystFEL.md | 10 + .../supported-software/c/CuCLARK.md | 9 + .../supported-software/c/CuPy.md | 13 + .../supported-software/c/Cube.md | 9 + .../supported-software/c/CubeGUI.md | 13 + .../supported-software/c/CubeLib.md | 19 + .../supported-software/c/CubeWriter.md | 20 + .../supported-software/c/Cufflinks.md | 17 + .../supported-software/c/Cython.md | 25 + .../supported-software/c/Cytoscape.md | 9 + .../supported-software/c/c-ares.md | 14 + .../supported-software/c/cDNA_Cupcake.md | 11 + .../supported-software/c/cURL.md | 45 + .../supported-software/c/cadaver.md | 9 + .../supported-software/c/cairo.md | 30 + .../supported-software/c/cairomm.md | 11 + .../supported-software/c/canu.md | 22 + .../supported-software/c/captum.md | 10 + .../supported-software/c/carputils.md | 10 + .../supported-software/c/casacore.md | 11 + .../supported-software/c/castor.md | 9 + .../supported-software/c/category_encoders.md | 9 + .../supported-software/c/causallift.md | 9 + .../supported-software/c/causalml.md | 10 + .../supported-software/c/ccache.md | 22 + .../supported-software/c/cclib.md | 13 + .../supported-software/c/cctbx-base.md | 10 + .../supported-software/c/cctools.md | 9 + .../supported-software/c/cdbfasta.md | 11 + .../supported-software/c/cddlib.md | 12 + .../supported-software/c/cdo-bindings.md | 10 + .../supported-software/c/cdsapi.md | 12 + .../supported-software/c/cell2location.md | 9 + .../supported-software/c/centerline.md | 9 + .../supported-software/c/cffi.md | 12 + .../supported-software/c/cftime.md | 13 + .../supported-software/c/cget.md | 9 + .../supported-software/c/charm-gems.md | 9 + .../supported-software/c/chemprop.md | 10 + .../supported-software/c/chewBBACA.md | 9 + .../supported-software/c/chi2comb.md | 9 + .../supported-software/c/chromVARmotifs.md | 9 + .../supported-software/c/cicero.md | 10 + .../supported-software/c/cimfomfa.md | 11 + .../supported-software/c/cisTEM.md | 9 + .../supported-software/c/cliquer.md | 10 + .../supported-software/c/cmocean.md | 9 + .../supported-software/c/cmph.md | 9 + .../supported-software/c/code-cli.md | 9 + .../supported-software/c/code-server.md | 14 + .../supported-software/c/colossalai.md | 9 + .../supported-software/c/conan.md | 10 + .../supported-software/c/configparser.md | 13 + .../c/configurable-http-proxy.md | 16 + .../c/connected-components-3d.md | 9 + .../supported-software/c/contextily.md | 9 + .../supported-software/c/cooler.md | 9 + .../supported-software/c/core-counter.md | 9 + .../supported-software/c/corner.md | 11 + .../supported-software/c/coverage.md | 15 + .../supported-software/c/cowsay.md | 9 + .../supported-software/c/cpio.md | 13 + .../supported-software/c/cppy.md | 14 + .../supported-software/c/cppyy.md | 10 + .../supported-software/c/cppzmq.md | 9 + .../supported-software/c/cpu_features.md | 9 + .../supported-software/c/cram.md | 9 + .../supported-software/c/cramtools.md | 10 + .../supported-software/c/crb-blast.md | 12 + .../supported-software/c/cromwell.md | 9 + .../supported-software/c/crossguid.md | 10 + .../supported-software/c/cryoCARE.md | 10 + .../supported-software/c/cryoDRGN.md | 11 + .../supported-software/c/cryptography.md | 10 + .../supported-software/c/cscope.md | 9 + .../supported-software/c/csvkit.md | 11 + .../supported-software/c/ctags.md | 9 + .../supported-software/c/ctffind.md | 19 + .../supported-software/c/ctffind5.md | 9 + .../supported-software/c/cuDNN.md | 49 + .../supported-software/c/cuSPARSELt.md | 10 + .../supported-software/c/cuTENSOR.md | 16 + .../supported-software/c/currentNe.md | 9 + .../supported-software/c/custodian.md | 9 + .../supported-software/c/cutadapt.md | 37 + .../supported-software/c/cuteSV.md | 9 + .../supported-software/c/cwltool.md | 10 + .../supported-software/c/cxxopts.md | 9 + .../supported-software/c/cysignals.md | 14 + .../supported-software/c/cython-blis.md | 9 + .../supported-software/c/cytoolz.md | 10 + .../supported-software/c/cytosim.md | 9 + .../supported-software/c/cyvcf2.md | 11 + .../supported-software/c/index.md | 271 + .../supported-software/d/DALI.md | 9 + .../supported-software/d/DANPOS2.md | 9 + .../supported-software/d/DAS_Tool.md | 11 + .../supported-software/d/DB.md | 26 + .../supported-software/d/DBCSR.md | 9 + .../supported-software/d/DBD-mysql.md | 20 + .../supported-software/d/DBG2OLC.md | 13 + .../supported-software/d/DB_File.md | 16 + .../supported-software/d/DBus.md | 26 + .../supported-software/d/DCMTK.md | 14 + .../supported-software/d/DEICODE.md | 9 + .../supported-software/d/DETONATE.md | 10 + .../supported-software/d/DFA.md | 10 + .../supported-software/d/DFT-D3.md | 14 + .../supported-software/d/DFT-D4.md | 10 + .../supported-software/d/DFTB+.md | 13 + .../supported-software/d/DGL.md | 10 + .../supported-software/d/DIA-NN.md | 9 + .../supported-software/d/DIAL.md | 9 + .../supported-software/d/DIALOGUE.md | 9 + .../supported-software/d/DIAMOND.md | 27 + .../supported-software/d/DIRAC.md | 21 + .../supported-software/d/DLPack.md | 10 + .../supported-software/d/DL_POLY_4.md | 12 + .../supported-software/d/DL_POLY_Classic.md | 12 + .../supported-software/d/DMCfun.md | 9 + .../supported-software/d/DMLC-Core.md | 10 + .../supported-software/d/DMTCP.md | 17 + .../supported-software/d/DOLFIN.md | 10 + .../supported-software/d/DP3.md | 10 + .../supported-software/d/DRAGMAP.md | 9 + .../supported-software/d/DROP.md | 11 + .../supported-software/d/DSA.md | 9 + .../supported-software/d/DSRC.md | 9 + .../supported-software/d/DUBStepR.md | 9 + .../supported-software/d/Dakota.md | 9 + .../supported-software/d/DaliLite.md | 9 + .../supported-software/d/Dalton.md | 11 + .../supported-software/d/DeMixT.md | 9 + .../supported-software/d/DeconICA.md | 9 + .../supported-software/d/DeepLabCut.md | 11 + .../supported-software/d/DeepLoc.md | 9 + .../supported-software/d/DeepMod2.md | 9 + .../supported-software/d/DeepSurv.md | 9 + .../supported-software/d/Delft3D.md | 9 + .../supported-software/d/Delly.md | 12 + .../supported-software/d/DeltaLake.md | 9 + .../supported-software/d/Demystify.md | 9 + .../supported-software/d/DendroPy.md | 20 + .../supported-software/d/DensPart.md | 9 + .../supported-software/d/Deprecated.md | 11 + .../supported-software/d/Detectron2.md | 10 + .../supported-software/d/Devito.md | 9 + .../supported-software/d/DiCE-ML.md | 9 + .../supported-software/d/Dice.md | 10 + .../supported-software/d/DicomBrowser.md | 9 + .../supported-software/d/DiffBind.md | 9 + .../supported-software/d/Diffutils.md | 9 + .../supported-software/d/DistributedStream.md | 9 + .../supported-software/d/DjVuLibre.md | 9 + .../supported-software/d/Doris.md | 12 + .../supported-software/d/DosageConvertor.md | 9 + .../supported-software/d/DoubletFinder.md | 11 + .../supported-software/d/Doxygen.md | 36 + .../supported-software/d/Drake.md | 9 + .../supported-software/d/Dsuite.md | 11 + .../supported-software/d/DualSPHysics.md | 10 + .../supported-software/d/DyMat.md | 9 + .../supported-software/d/dRep.md | 10 + .../supported-software/d/dSFMT.md | 9 + .../supported-software/d/dadi.md | 9 + .../supported-software/d/dagitty.md | 9 + .../supported-software/d/damageproto.md | 10 + .../supported-software/d/dammit.md | 9 + .../supported-software/d/dask-labextension.md | 11 + .../supported-software/d/dask.md | 48 + .../supported-software/d/datalad.md | 10 + .../supported-software/d/datamash.md | 13 + .../supported-software/d/davix.md | 10 + .../supported-software/d/dbus-glib.md | 19 + .../supported-software/d/dclone.md | 9 + .../supported-software/d/dcm2niix.md | 17 + .../supported-software/d/dd.md | 9 + .../supported-software/d/deal.II.md | 12 + .../supported-software/d/deap.md | 9 + .../supported-software/d/decona.md | 9 + .../supported-software/d/deconf.md | 9 + .../supported-software/d/deepTools.md | 15 + .../supported-software/d/deepdiff.md | 17 + .../supported-software/d/deepfold.md | 9 + .../supported-software/d/deepmedic.md | 10 + .../supported-software/d/denseweight.md | 10 + .../d/desktop-file-utils.md | 9 + .../supported-software/d/destiny.md | 9 + .../supported-software/d/devbio-napari.md | 10 + .../supported-software/d/dftd3-lib.md | 10 + .../supported-software/d/dftd4.md | 10 + .../supported-software/d/dialog.md | 9 + .../supported-software/d/dicom2nifti.md | 11 + .../supported-software/d/dijitso.md | 9 + .../supported-software/d/dill.md | 16 + .../supported-software/d/distributed.md | 11 + .../supported-software/d/dlb.md | 14 + .../supported-software/d/dlib.md | 10 + .../supported-software/d/dm-haiku.md | 11 + .../supported-software/d/dm-reverb.md | 10 + .../supported-software/d/dm-tree.md | 14 + .../supported-software/d/dominate.md | 9 + .../supported-software/d/dorado.md | 13 + .../d/dotNET-Core-Runtime.md | 11 + .../supported-software/d/dotNET-Core.md | 12 + .../supported-software/d/dotNET-SDK.md | 10 + .../supported-software/d/double-conversion.md | 19 + .../supported-software/d/drmaa-python.md | 9 + .../supported-software/d/dropEst.md | 9 + .../supported-software/d/dtcmp.md | 15 + .../supported-software/d/dtcwt.md | 10 + .../supported-software/d/dune-core.md | 9 + .../supported-software/d/dune-fem.md | 9 + .../supported-software/d/duplex-tools.md | 10 + .../supported-software/d/dx-toolkit.md | 9 + .../supported-software/d/dxpy.md | 10 + .../supported-software/d/dynesty.md | 9 + .../supported-software/d/index.md | 125 + .../supported-software/e/E-ANTIC.md | 12 + .../supported-software/e/ECL.md | 10 + .../supported-software/e/ED2.md | 10 + .../supported-software/e/EDirect.md | 11 + .../supported-software/e/EGTtools.md | 10 + .../supported-software/e/EIGENSOFT.md | 17 + .../supported-software/e/ELFIO.md | 9 + .../supported-software/e/ELPA.md | 49 + .../supported-software/e/ELPH.md | 9 + .../supported-software/e/ELSI-RCI.md | 14 + .../supported-software/e/ELSI.md | 16 + .../supported-software/e/EMAN2.md | 12 + .../supported-software/e/EMBOSS.md | 19 + .../supported-software/e/EMU.md | 9 + .../supported-software/e/EPD.md | 9 + .../supported-software/e/EPIC.md | 9 + .../supported-software/e/ESL-Bundle.md | 10 + .../supported-software/e/ESM-2.md | 12 + .../supported-software/e/ESMF.md | 30 + .../supported-software/e/ESMPy.md | 11 + .../supported-software/e/ESMValTool.md | 9 + .../supported-software/e/ESPResSo.md | 14 + .../supported-software/e/ETE.md | 17 + .../supported-software/e/ETSF_IO.md | 14 + .../supported-software/e/EUKulele.md | 9 + .../supported-software/e/EVcouplings.md | 9 + .../supported-software/e/EZC3D.md | 9 + .../supported-software/e/EasyBuild.md | 109 + .../supported-software/e/EasyMocap.md | 10 + .../supported-software/e/EasyQC.md | 9 + .../supported-software/e/EggLib.md | 10 + .../supported-software/e/Eigen.md | 39 + .../supported-software/e/EigenExa.md | 9 + .../supported-software/e/Elk.md | 14 + .../supported-software/e/Elmer.md | 9 + .../supported-software/e/Emacs.md | 22 + .../supported-software/e/Embree.md | 10 + .../supported-software/e/EnergyPlus.md | 9 + .../supported-software/e/EnsEMBLCoreAPI.md | 9 + .../supported-software/e/EpiSCORE.md | 9 + .../supported-software/e/EricScript.md | 9 + .../supported-software/e/Essentia.md | 9 + .../supported-software/e/Evcxr-REPL.md | 9 + .../supported-software/e/EveryBeam.md | 10 + .../supported-software/e/EvidentialGene.md | 10 + .../supported-software/e/ExaBayes.md | 9 + .../supported-software/e/ExaML.md | 9 + .../supported-software/e/Excel-Writer-XLSX.md | 9 + .../supported-software/e/ExifTool.md | 9 + .../supported-software/e/Exonerate.md | 21 + .../e/ExpressBetaDiversity.md | 9 + .../supported-software/e/Extrae.md | 13 + .../supported-software/e/ExtremeLy.md | 9 + .../supported-software/e/e3nn.md | 12 + .../supported-software/e/eQuilibrator.md | 9 + .../supported-software/e/eSpeak-NG.md | 10 + .../supported-software/e/eXpress.md | 9 + .../supported-software/e/ea-utils.md | 11 + .../supported-software/e/earthengine-api.md | 9 + .../supported-software/e/easel.md | 9 + .../supported-software/e/ebGSEA.md | 9 + .../supported-software/e/ecBuild.md | 10 + .../supported-software/e/ecCodes.md | 27 + .../supported-software/e/ecFlow.md | 9 + .../supported-software/e/eccodes-python.md | 11 + .../supported-software/e/eclib.md | 10 + .../supported-software/e/edlib.md | 18 + .../supported-software/e/eggnog-mapper.md | 13 + .../supported-software/e/eht-imaging.md | 9 + .../supported-software/e/einops.md | 12 + .../supported-software/e/elastix.md | 10 + .../supported-software/e/elbencho.md | 9 + .../supported-software/e/elfutils.md | 18 + .../supported-software/e/elprep.md | 9 + .../supported-software/e/emcee.md | 15 + .../supported-software/e/enaBrowserTool.md | 10 + .../supported-software/e/enchant-2.md | 11 + .../supported-software/e/enchant.md | 9 + .../supported-software/e/ensmallen.md | 9 + .../supported-software/e/entrypoints.md | 13 + .../supported-software/e/epct.md | 9 + .../supported-software/e/epiScanpy.md | 11 + .../supported-software/e/eudev.md | 13 + .../supported-software/e/evince.md | 9 + .../supported-software/e/evmix.md | 9 + .../supported-software/e/exiv2.md | 11 + .../supported-software/e/expat.md | 36 + .../supported-software/e/expect.md | 10 + .../supported-software/e/expecttest.md | 15 + .../supported-software/e/index.md | 91 + .../supported-software/f/FACE.md | 9 + .../supported-software/f/FALCON.md | 10 + .../supported-software/f/FANN.md | 10 + .../supported-software/f/FASTA.md | 11 + .../supported-software/f/FASTX-Toolkit.md | 16 + .../supported-software/f/FBPIC.md | 9 + .../supported-software/f/FCC.md | 9 + .../supported-software/f/FCM.md | 9 + .../supported-software/f/FDMNES.md | 9 + .../supported-software/f/FDS.md | 20 + .../supported-software/f/FDTD_Solutions.md | 12 + .../supported-software/f/FEniCS.md | 9 + .../supported-software/f/FFAVES.md | 9 + .../supported-software/f/FFC.md | 10 + .../supported-software/f/FFLAS-FFPACK.md | 11 + .../supported-software/f/FFTW.MPI.md | 17 + .../supported-software/f/FFTW.md | 80 + .../supported-software/f/FFmpeg.md | 43 + .../supported-software/f/FGSL.md | 9 + .../supported-software/f/FHI-aims.md | 10 + .../supported-software/f/FIAT.md | 12 + .../supported-software/f/FIGARO.md | 9 + .../supported-software/f/FIRESTARTER.md | 10 + .../supported-software/f/FIX.md | 9 + .../supported-software/f/FIt-SNE.md | 9 + .../supported-software/f/FLAC.md | 14 + .../supported-software/f/FLAIR.md | 10 + .../supported-software/f/FLANN.md | 12 + .../supported-software/f/FLASH.md | 16 + .../supported-software/f/FLEUR.md | 9 + .../supported-software/f/FLINT.md | 17 + .../supported-software/f/FLTK.md | 33 + .../supported-software/f/FLUENT.md | 18 + .../supported-software/f/FMILibrary.md | 9 + .../supported-software/f/FMM3D.md | 10 + .../supported-software/f/FMPy.md | 9 + .../supported-software/f/FMRIprep.md | 10 + .../supported-software/f/FMS.md | 10 + .../supported-software/f/FORD.md | 11 + .../supported-software/f/FOX-Toolkit.md | 10 + .../supported-software/f/FPM.md | 10 + .../supported-software/f/FRANz.md | 9 + .../supported-software/f/FRUIT.md | 10 + .../supported-software/f/FRUIT_processor.md | 10 + .../supported-software/f/FSL.md | 25 + .../supported-software/f/FSLeyes.md | 9 + .../supported-software/f/FSON.md | 9 + .../supported-software/f/FTGL.md | 15 + .../supported-software/f/FUNWAVE-TVD.md | 10 + .../supported-software/f/FUSE.md | 12 + .../supported-software/f/FabIO.md | 13 + .../supported-software/f/Faber.md | 9 + .../supported-software/f/Faiss.md | 9 + .../supported-software/f/FastANI.md | 21 + .../supported-software/f/FastFold.md | 9 + .../supported-software/f/FastME.md | 15 + .../supported-software/f/FastQC.md | 22 + .../supported-software/f/FastQTL.md | 10 + .../supported-software/f/FastQ_Screen.md | 13 + .../supported-software/f/FastRFS.md | 9 + .../supported-software/f/FastTree.md | 20 + .../f/FastViromeExplorer.md | 9 + .../supported-software/f/FastaIndex.md | 9 + .../supported-software/f/Fastaq.md | 10 + .../supported-software/f/Ferret.md | 11 + .../supported-software/f/FigureGen.md | 9 + .../supported-software/f/Fiji.md | 13 + .../supported-software/f/Filtlong.md | 11 + .../supported-software/f/Fiona.md | 20 + .../supported-software/f/FireWorks.md | 9 + .../supported-software/f/Firefox.md | 9 + .../supported-software/f/Flask.md | 18 + .../supported-software/f/Flexbar.md | 9 + .../supported-software/f/FlexiBLAS.md | 17 + .../supported-software/f/FlexiDot.md | 9 + .../supported-software/f/Flink.md | 9 + .../supported-software/f/Flye.md | 21 + .../supported-software/f/FoBiS.md | 9 + .../supported-software/f/FoX.md | 12 + .../supported-software/f/FoldX.md | 12 + .../supported-software/f/FragGeneScan.md | 14 + .../supported-software/f/FragPipe.md | 9 + .../supported-software/f/FreeBarcodes.md | 9 + .../supported-software/f/FreeFEM.md | 9 + .../supported-software/f/FreeFem++.md | 11 + .../supported-software/f/FreeImage.md | 17 + .../supported-software/f/FreeSASA.md | 9 + .../supported-software/f/FreeSurfer.md | 27 + .../supported-software/f/FreeTDS.md | 9 + .../supported-software/f/FreeXL.md | 15 + .../supported-software/f/FriBidi.md | 22 + .../supported-software/f/FuSeq.md | 9 + .../supported-software/f/Fujitsu.md | 9 + .../supported-software/f/FunGAP.md | 9 + .../supported-software/f/FusionCatcher.md | 10 + .../supported-software/f/f90cache.md | 9 + .../supported-software/f/f90nml.md | 10 + .../supported-software/f/f90wrap.md | 11 + .../supported-software/f/faceswap.md | 9 + .../supported-software/f/fast5.md | 9 + .../supported-software/f/fastPHASE.md | 9 + .../supported-software/f/fastStructure.md | 12 + .../supported-software/f/fasta-reader.md | 9 + .../supported-software/f/fastahack.md | 14 + .../supported-software/f/fastai.md | 10 + .../supported-software/f/fastjet-contrib.md | 10 + .../supported-software/f/fastjet.md | 10 + .../supported-software/f/fastml.md | 9 + .../supported-software/f/fastp.md | 18 + .../supported-software/f/fastparquet.md | 11 + .../supported-software/f/fastq-pair.md | 9 + .../supported-software/f/fastq-tools.md | 12 + .../supported-software/f/fastqsplitter.md | 9 + .../supported-software/f/fastqz.md | 9 + .../supported-software/f/fatslim.md | 9 + .../supported-software/f/fbm.md | 9 + .../supported-software/f/fdict.md | 14 + .../supported-software/f/fdstools.md | 9 + .../supported-software/f/feh.md | 9 + .../supported-software/f/fermi-lite.md | 13 + .../supported-software/f/festival.md | 10 + .../supported-software/f/fetchMG.md | 10 + .../supported-software/f/ffmpi.md | 9 + .../supported-software/f/ffnet.md | 9 + .../supported-software/f/ffnvcodec.md | 11 + .../supported-software/f/fftlib.md | 10 + .../supported-software/f/fgbio.md | 10 + .../supported-software/f/file.md | 22 + .../supported-software/f/filevercmp.md | 14 + .../supported-software/f/find_circ.md | 9 + .../supported-software/f/finder.md | 9 + .../supported-software/f/findhap.md | 9 + .../supported-software/f/findutils.md | 9 + .../supported-software/f/fineRADstructure.md | 10 + .../supported-software/f/fineSTRUCTURE.md | 9 + .../supported-software/f/fio.md | 12 + .../supported-software/f/fixesproto.md | 11 + .../supported-software/f/flair-NLP.md | 10 + .../f/flatbuffers-python.md | 15 + .../supported-software/f/flatbuffers.md | 18 + .../supported-software/f/flex.md | 82 + .../supported-software/f/flit.md | 10 + .../supported-software/f/flook.md | 15 + .../supported-software/f/flowFDA.md | 9 + .../supported-software/f/fmt.md | 23 + .../supported-software/f/fontconfig.md | 33 + .../supported-software/f/fontsproto.md | 11 + .../supported-software/f/forbear.md | 9 + .../supported-software/f/foss.md | 33 + .../supported-software/f/fosscuda.md | 15 + .../supported-software/f/fplll.md | 9 + .../supported-software/f/fpocket.md | 9 + .../supported-software/f/fpylll.md | 9 + .../supported-software/f/fqtrim.md | 10 + .../supported-software/f/fqzcomp.md | 9 + .../supported-software/f/freebayes.md | 13 + .../supported-software/f/freeglut.md | 29 + .../supported-software/f/freetype-py.md | 10 + .../supported-software/f/freetype.md | 39 + .../supported-software/f/freud-analysis.md | 9 + .../supported-software/f/fsom.md | 14 + .../supported-software/f/ftfy.md | 9 + .../supported-software/f/fugue.md | 9 + .../supported-software/f/fullrmc.md | 9 + .../supported-software/f/fumi_tools.md | 11 + .../supported-software/f/funannotate.md | 9 + .../supported-software/f/futhark.md | 9 + .../supported-software/f/futile.md | 15 + .../supported-software/f/future.md | 15 + .../supported-software/f/fxtract.md | 9 + .../supported-software/f/index.md | 172 + .../supported-software/g/G-PhoCS.md | 9 + .../supported-software/g/GAMESS-US.md | 16 + .../supported-software/g/GAPPadder.md | 9 + .../supported-software/g/GARLI.md | 9 + .../supported-software/g/GAT.md | 9 + .../supported-software/g/GATB-Core.md | 9 + .../supported-software/g/GATE.md | 22 + .../supported-software/g/GATK.md | 51 + .../supported-software/g/GBprocesS.md | 10 + .../supported-software/g/GC3Pie.md | 11 + .../supported-software/g/GCC.md | 77 + .../supported-software/g/GCCcore.md | 47 + .../supported-software/g/GCTA.md | 12 + .../supported-software/g/GConf.md | 19 + .../supported-software/g/GD.md | 14 + .../supported-software/g/GDAL.md | 55 + .../supported-software/g/GDB.md | 31 + .../supported-software/g/GDCHART.md | 9 + .../supported-software/g/GDCM.md | 16 + .../supported-software/g/GDGraph.md | 11 + .../supported-software/g/GDRCopy.md | 19 + .../supported-software/g/GEGL.md | 9 + .../supported-software/g/GEM-library.md | 9 + .../supported-software/g/GEM.md | 10 + .../supported-software/g/GEMMA.md | 14 + .../supported-software/g/GEOS.md | 45 + .../supported-software/g/GETORB.md | 9 + .../supported-software/g/GFF3-toolkit.md | 9 + .../supported-software/g/GFOLD.md | 9 + .../supported-software/g/GHC.md | 12 + .../supported-software/g/GI-DocGen.md | 9 + .../supported-software/g/GIMIC.md | 10 + .../supported-software/g/GIMP.md | 9 + .../supported-software/g/GIMPS.md | 10 + .../supported-software/g/GKeyll.md | 9 + .../supported-software/g/GKlib-METIS.md | 9 + .../supported-software/g/GL2PS.md | 29 + .../supported-software/g/GLFW.md | 16 + .../supported-software/g/GLI.md | 10 + .../supported-software/g/GLIMMER.md | 10 + .../supported-software/g/GLIMPSE.md | 11 + .../supported-software/g/GLM-AED.md | 9 + .../supported-software/g/GLM.md | 19 + .../supported-software/g/GLPK.md | 25 + .../supported-software/g/GLib.md | 34 + .../supported-software/g/GLibmm.md | 12 + .../supported-software/g/GMAP-GSNAP.md | 19 + .../supported-software/g/GMP-ECM.md | 10 + .../supported-software/g/GMP.md | 43 + .../supported-software/g/GMT.md | 15 + .../supported-software/g/GNU.md | 11 + .../supported-software/g/GOATOOLS.md | 12 + .../supported-software/g/GOBNILP.md | 9 + .../g/GObject-Introspection.md | 35 + .../supported-software/g/GP2C.md | 9 + .../supported-software/g/GPAW-setups.md | 13 + .../supported-software/g/GPAW.md | 36 + .../supported-software/g/GPy.md | 9 + .../supported-software/g/GPyOpt.md | 9 + .../supported-software/g/GPyTorch.md | 11 + .../supported-software/g/GRASP-suite.md | 9 + .../supported-software/g/GRASP.md | 9 + .../supported-software/g/GRASS.md | 11 + .../supported-software/g/GRIDSS.md | 9 + .../supported-software/g/GRIT.md | 9 + .../supported-software/g/GRNBoost.md | 9 + .../supported-software/g/GROMACS.md | 76 + .../supported-software/g/GSD.md | 9 + .../supported-software/g/GSEA.md | 9 + .../supported-software/g/GSL.md | 42 + .../supported-software/g/GST-plugins-bad.md | 11 + .../supported-software/g/GST-plugins-base.md | 25 + .../supported-software/g/GStreamer.md | 26 + .../supported-software/g/GTDB-Tk.md | 23 + .../supported-software/g/GTK+.md | 25 + .../supported-software/g/GTK2.md | 10 + .../supported-software/g/GTK3.md | 14 + .../supported-software/g/GTK4.md | 11 + .../supported-software/g/GTOOL.md | 9 + .../supported-software/g/GTS.md | 25 + .../supported-software/g/GUIDANCE.md | 9 + .../supported-software/g/GULP.md | 10 + .../supported-software/g/GUSHR.md | 9 + .../supported-software/g/Gaia.md | 9 + .../supported-software/g/GapCloser.md | 10 + .../supported-software/g/GapFiller.md | 10 + .../supported-software/g/Gaussian.md | 10 + .../supported-software/g/Gblocks.md | 9 + .../supported-software/g/Gctf.md | 9 + .../supported-software/g/Gdk-Pixbuf.md | 32 + .../supported-software/g/Gdspy.md | 9 + .../supported-software/g/Geant4-data.md | 11 + .../supported-software/g/Geant4.md | 28 + .../supported-software/g/GenMap.md | 9 + .../supported-software/g/GeneMark-ET.md | 13 + .../supported-software/g/GenerativeModels.md | 9 + .../supported-software/g/GenomeComb.md | 9 + .../supported-software/g/GenomeMapper.md | 9 + .../supported-software/g/GenomeTester4.md | 9 + .../supported-software/g/GenomeThreader.md | 10 + .../supported-software/g/GenomeTools.md | 17 + .../supported-software/g/GenomeWorks.md | 9 + .../supported-software/g/Genome_Profiler.md | 9 + .../g/GenotypeHarmonizer.md | 9 + .../supported-software/g/Gerris.md | 10 + .../supported-software/g/GetOrganelle.md | 13 + .../supported-software/g/GffCompare.md | 14 + .../supported-software/g/Ghostscript.md | 30 + .../supported-software/g/Gibbs2.md | 9 + .../supported-software/g/GimmeMotifs.md | 9 + .../supported-software/g/Giotto-Suite.md | 9 + .../supported-software/g/GitPython.md | 21 + .../supported-software/g/Givaro.md | 11 + .../supported-software/g/Giza.md | 10 + .../supported-software/g/Glade.md | 12 + .../supported-software/g/GlimmerHMM.md | 13 + .../supported-software/g/GlobalArrays.md | 18 + .../supported-software/g/Globus-CLI.md | 12 + .../g/GlobusConnectPersonal.md | 9 + .../supported-software/g/Glucose.md | 9 + .../supported-software/g/GnuTLS.md | 15 + .../supported-software/g/Go.md | 30 + .../supported-software/g/Godon.md | 9 + .../supported-software/g/GraPhlAn.md | 9 + .../supported-software/g/Grace.md | 19 + .../supported-software/g/Gradle.md | 12 + .../supported-software/g/GraphDB.md | 9 + .../supported-software/g/GraphMap.md | 9 + .../supported-software/g/GraphMap2.md | 9 + .../supported-software/g/Graphene.md | 13 + .../supported-software/g/GraphicsMagick.md | 18 + .../supported-software/g/Graphviz.md | 24 + .../supported-software/g/Greenlet.md | 17 + .../supported-software/g/Grep.md | 9 + .../supported-software/g/GroIMP.md | 9 + .../supported-software/g/GromacsWrapper.md | 9 + .../supported-software/g/Groovy.md | 10 + .../supported-software/g/GtkSourceView.md | 11 + .../supported-software/g/Guile.md | 30 + .../supported-software/g/Gurobi.md | 33 + .../supported-software/g/g2clib.md | 19 + .../supported-software/g/g2lib.md | 17 + .../supported-software/g/g2log.md | 10 + .../supported-software/g/gRPC.md | 11 + .../supported-software/g/gSOAP.md | 10 + .../supported-software/g/gap.md | 11 + .../supported-software/g/gappa.md | 9 + .../supported-software/g/garnett.md | 9 + .../supported-software/g/gawk.md | 14 + .../supported-software/g/gbasis.md | 9 + .../supported-software/g/gbs2ploidy.md | 9 + .../supported-software/g/gc.md | 21 + .../supported-software/g/gcccuda.md | 16 + .../supported-software/g/gcloud.md | 10 + .../supported-software/g/gcsfs.md | 9 + .../supported-software/g/gdbgui.md | 9 + .../supported-software/g/gdbm.md | 10 + .../supported-software/g/gdc-client.md | 13 + .../supported-software/g/gdist.md | 9 + .../supported-software/g/gearshifft.md | 9 + .../supported-software/g/gemelli.md | 9 + .../supported-software/g/gemmi.md | 10 + .../g/gencore_variant_detection.md | 9 + .../supported-software/g/gengetopt.md | 13 + .../supported-software/g/genomepy.md | 9 + .../supported-software/g/genozip.md | 9 + .../supported-software/g/gensim.md | 12 + .../supported-software/g/geocube.md | 10 + .../supported-software/g/geopandas.md | 18 + .../supported-software/g/geopy.md | 11 + .../supported-software/g/georges.md | 10 + .../supported-software/g/geosphere.md | 9 + .../supported-software/g/gettext.md | 46 + .../supported-software/g/gexiv2.md | 9 + .../supported-software/g/gfbf.md | 14 + .../supported-software/g/gffread.md | 15 + .../supported-software/g/gffutils.md | 9 + .../supported-software/g/gflags.md | 20 + .../supported-software/g/gh.md | 10 + .../supported-software/g/giac.md | 10 + .../supported-software/g/giflib.md | 19 + .../supported-software/g/gifsicle.md | 10 + .../supported-software/g/gimkl.md | 11 + .../supported-software/g/gimpi.md | 13 + .../supported-software/g/gimpic.md | 9 + .../supported-software/g/giolf.md | 10 + .../supported-software/g/giolfc.md | 9 + .../supported-software/g/git-annex.md | 10 + .../supported-software/g/git-extras.md | 9 + .../supported-software/g/git-lfs.md | 15 + .../supported-software/g/git.md | 31 + .../supported-software/g/gkmSVM.md | 9 + .../supported-software/g/glew.md | 24 + .../supported-software/g/glib-networking.md | 11 + .../supported-software/g/glibc.md | 11 + .../supported-software/g/glog.md | 17 + .../supported-software/g/glproto.md | 11 + .../supported-software/g/gmpich.md | 10 + .../supported-software/g/gmpolf.md | 10 + .../supported-software/g/gmpy2.md | 29 + .../supported-software/g/gmsh.md | 19 + .../supported-software/g/gmvapich2.md | 10 + .../supported-software/g/gmvolf.md | 10 + .../supported-software/g/gnupg-bundle.md | 9 + .../supported-software/g/gnuplot.md | 29 + .../supported-software/g/goalign.md | 9 + .../supported-software/g/gobff.md | 12 + .../supported-software/g/goblf.md | 10 + .../supported-software/g/gofasta.md | 9 + .../supported-software/g/golf.md | 10 + .../supported-software/g/gomkl.md | 16 + .../supported-software/g/gompi.md | 34 + .../supported-software/g/gompic.md | 15 + .../g/google-java-format.md | 9 + .../supported-software/g/googletest.md | 22 + .../supported-software/g/gotree.md | 9 + .../supported-software/g/gperf.md | 28 + .../supported-software/g/gperftools.md | 21 + .../supported-software/g/gpustat.md | 14 + .../supported-software/g/gradunwarp.md | 11 + .../supported-software/g/graph-tool.md | 11 + .../supported-software/g/graphite2.md | 16 + .../supported-software/g/graphviz-python.md | 14 + .../supported-software/g/gretl.md | 9 + .../supported-software/g/grib_api.md | 13 + .../supported-software/g/grid.md | 9 + .../supported-software/g/groff.md | 19 + .../supported-software/g/grpcio.md | 9 + .../g/gsettings-desktop-schemas.md | 9 + .../supported-software/g/gspell.md | 9 + .../supported-software/g/gsport.md | 9 + .../supported-software/g/gsutil.md | 10 + .../supported-software/g/gsw.md | 9 + .../supported-software/g/gubbins.md | 9 + .../supported-software/g/guenomu.md | 9 + .../supported-software/g/gzip.md | 23 + .../supported-software/g/index.md | 238 + .../supported-software/h/H5hut.md | 9 + .../supported-software/h/HAL.md | 9 + .../supported-software/h/HAPGEN2.md | 9 + .../supported-software/h/HBase.md | 9 + .../supported-software/h/HD-BET.md | 10 + .../supported-software/h/HDBSCAN.md | 11 + .../supported-software/h/HDDM.md | 13 + .../supported-software/h/HDF-EOS.md | 11 + .../supported-software/h/HDF-EOS2.md | 9 + .../supported-software/h/HDF-EOS5.md | 11 + .../supported-software/h/HDF.md | 25 + .../supported-software/h/HDF5.md | 107 + .../supported-software/h/HDFView.md | 10 + .../supported-software/h/HEALPix.md | 10 + .../supported-software/h/HF-Datasets.md | 9 + .../supported-software/h/HH-suite.md | 19 + .../supported-software/h/HIP.md | 9 + .../supported-software/h/HIPS.md | 9 + .../supported-software/h/HISAT2.md | 24 + .../supported-software/h/HLAminer.md | 9 + .../supported-software/h/HMMER.md | 34 + .../supported-software/h/HMMER2.md | 11 + .../supported-software/h/HOME.md | 9 + .../supported-software/h/HOMER.md | 9 + .../supported-software/h/HOOMD-blue.md | 10 + .../supported-software/h/HPCC.md | 9 + .../supported-software/h/HPCG.md | 23 + .../supported-software/h/HPCX.md | 9 + .../supported-software/h/HPDBSCAN.md | 10 + .../supported-software/h/HPL.md | 128 + .../supported-software/h/HTSeq.md | 27 + .../supported-software/h/HTSlib.md | 46 + .../supported-software/h/HTSplotter.md | 10 + .../supported-software/h/Hadoop.md | 17 + .../supported-software/h/HarfBuzz.md | 33 + .../supported-software/h/Harminv.md | 14 + .../supported-software/h/HeFFTe.md | 10 + .../supported-software/h/Health-GPS.md | 10 + .../supported-software/h/Hello.md | 9 + .../supported-software/h/HepMC.md | 9 + .../supported-software/h/HepMC3.md | 10 + .../supported-software/h/HiC-Pro.md | 10 + .../supported-software/h/HiCExplorer.md | 10 + .../supported-software/h/HiCMatrix.md | 9 + .../supported-software/h/HiGHS.md | 9 + .../supported-software/h/HighFive.md | 11 + .../supported-software/h/Highway.md | 15 + .../supported-software/h/Horovod.md | 42 + .../supported-software/h/HyPhy.md | 12 + .../supported-software/h/HyPo.md | 9 + .../supported-software/h/Hybpiper.md | 9 + .../supported-software/h/Hydra.md | 11 + .../supported-software/h/HyperQueue.md | 9 + .../supported-software/h/Hyperopt.md | 14 + .../supported-software/h/Hypre.md | 27 + .../supported-software/h/h4toh5.md | 13 + .../supported-software/h/h5netcdf.md | 11 + .../supported-software/h/h5py.md | 80 + .../supported-software/h/hampel.md | 9 + .../supported-software/h/hanythingondemand.md | 27 + .../supported-software/h/harmony.md | 10 + .../h/hatch-jupyter-builder.md | 9 + .../supported-software/h/hatchling.md | 10 + .../supported-software/h/hdWGCNA.md | 9 + .../supported-software/h/hdf5storage.md | 10 + .../supported-software/h/heaptrack.md | 9 + .../supported-software/h/hector.md | 9 + .../supported-software/h/help2man.md | 44 + .../supported-software/h/hevea.md | 9 + .../supported-software/h/hic-straw.md | 9 + .../supported-software/h/hierfstat.md | 9 + .../supported-software/h/hifiasm.md | 13 + .../supported-software/h/hipSYCL.md | 10 + .../supported-software/h/hipify-clang.md | 9 + .../supported-software/h/hiredis.md | 13 + .../supported-software/h/histolab.md | 10 + .../supported-software/h/hivtrace.md | 9 + .../supported-software/h/hl7apy.md | 9 + .../supported-software/h/hmmcopy_utils.md | 9 + .../supported-software/h/hmmlearn.md | 12 + .../supported-software/h/horton.md | 11 + .../h/how_are_we_stranded_here.md | 9 + .../supported-software/h/htop.md | 12 + .../supported-software/h/hub.md | 9 + .../supported-software/h/humann.md | 9 + .../supported-software/h/hunspell.md | 13 + .../supported-software/h/hwloc.md | 56 + .../supported-software/h/hyperspy.md | 9 + .../supported-software/h/hypothesis.md | 25 + .../supported-software/h/index.md | 91 + .../supported-software/i/I-TASSER.md | 11 + .../supported-software/i/ICA-AROMA.md | 9 + .../supported-software/i/ICON.md | 9 + .../supported-software/i/ICU.md | 22 + .../supported-software/i/IDBA-UD.md | 16 + .../supported-software/i/IDG.md | 9 + .../supported-software/i/IGMPlot.md | 11 + .../supported-software/i/IGV.md | 15 + .../supported-software/i/IGVTools.md | 12 + .../supported-software/i/IJulia.md | 10 + .../supported-software/i/ILAMB.md | 9 + .../supported-software/i/IMB.md | 21 + .../supported-software/i/IML.md | 10 + .../supported-software/i/IMOD.md | 11 + .../supported-software/i/IMPUTE2.md | 12 + .../supported-software/i/IMa2.md | 9 + .../supported-software/i/IMa2p.md | 10 + .../supported-software/i/INTEGRATE-Neo.md | 9 + .../supported-software/i/INTEGRATE.md | 9 + .../supported-software/i/IOR.md | 14 + .../supported-software/i/IOzone.md | 9 + .../supported-software/i/IPM.md | 13 + .../supported-software/i/IPy.md | 9 + .../supported-software/i/IPython.md | 57 + .../supported-software/i/IQ-TREE.md | 21 + .../supported-software/i/IRkernel.md | 18 + .../supported-software/i/ISA-L.md | 15 + .../supported-software/i/ISL.md | 23 + .../supported-software/i/ITK.md | 29 + .../supported-software/i/ITSTool.md | 13 + .../supported-software/i/ITSx.md | 11 + .../supported-software/i/IgBLAST.md | 11 + .../supported-software/i/ImageJ.md | 12 + .../supported-software/i/ImageMagick.md | 33 + .../supported-software/i/Imath.md | 12 + .../supported-software/i/Imlib2.md | 9 + .../supported-software/i/InChI.md | 9 + .../supported-software/i/InParanoid.md | 9 + .../supported-software/i/Inelastica.md | 9 + .../supported-software/i/Inferelator.md | 9 + .../supported-software/i/Infernal.md | 17 + .../supported-software/i/Infomap.md | 9 + .../supported-software/i/Inspector.md | 22 + .../supported-software/i/IntaRNA.md | 9 + .../i/IntelClusterChecker.md | 10 + .../supported-software/i/IntelDAAL.md | 9 + .../supported-software/i/IntelPython.md | 10 + .../supported-software/i/InterOp.md | 9 + .../supported-software/i/InterProScan.md | 14 + .../supported-software/i/InterProScan_data.md | 9 + .../supported-software/i/IonQuant.md | 9 + .../supported-software/i/Ipopt.md | 10 + .../supported-software/i/Iris.md | 9 + .../supported-software/i/IronPython.md | 9 + .../supported-software/i/IsoNet.md | 9 + .../supported-software/i/IsoQuant.md | 9 + .../supported-software/i/IsoSeq.md | 10 + .../i/IsoformSwitchAnalyzeR.md | 9 + .../supported-software/i/i-PI.md | 9 + .../supported-software/i/i-cisTarget.md | 9 + .../supported-software/i/i7z.md | 9 + .../supported-software/i/iCount.md | 9 + .../supported-software/i/iVar.md | 11 + .../supported-software/i/icc.md | 34 + .../supported-software/i/iccifort.md | 38 + .../supported-software/i/iccifortcuda.md | 14 + .../supported-software/i/iced.md | 9 + .../supported-software/i/ichorCNA.md | 10 + .../supported-software/i/icmake.md | 9 + .../supported-software/i/idemux.md | 9 + .../supported-software/i/ieeg-cli.md | 9 + .../supported-software/i/ifort.md | 34 + .../supported-software/i/igraph.md | 21 + .../supported-software/i/igv-reports.md | 9 + .../supported-software/i/igvShiny.md | 9 + .../supported-software/i/iibff.md | 9 + .../supported-software/i/iimkl.md | 13 + .../supported-software/i/iimpi.md | 55 + .../supported-software/i/iimpic.md | 14 + .../supported-software/i/imagecodecs.md | 12 + .../supported-software/i/imageio.md | 19 + .../supported-software/i/imake.md | 12 + .../supported-software/i/imbalanced-learn.md | 15 + .../supported-software/i/imgaug.md | 17 + .../supported-software/i/imkl-FFTW.md | 22 + .../supported-software/i/imkl.md | 91 + .../supported-software/i/immunedeconv.md | 9 + .../supported-software/i/impi.md | 73 + .../supported-software/i/imutils.md | 10 + .../supported-software/i/index.md | 119 + .../supported-software/i/indicators.md | 10 + .../supported-software/i/inferCNV.md | 16 + .../supported-software/i/infercnvpy.md | 11 + .../supported-software/i/inflection.md | 9 + .../supported-software/i/inih.md | 9 + .../supported-software/i/inline.md | 9 + .../supported-software/i/inputproto.md | 12 + .../supported-software/i/intel-compilers.md | 21 + .../supported-software/i/intel.md | 54 + .../supported-software/i/intelcuda.md | 14 + .../i/intervaltree-python.md | 14 + .../supported-software/i/intervaltree.md | 14 + .../supported-software/i/intltool.md | 31 + .../supported-software/i/io_lib.md | 9 + .../supported-software/i/ioapi.md | 9 + .../supported-software/i/iodata.md | 9 + .../supported-software/i/iomkl.md | 23 + .../supported-software/i/iompi.md | 23 + .../supported-software/i/iperf.md | 11 + .../supported-software/i/ipp.md | 12 + .../supported-software/i/ipympl.md | 11 + .../supported-software/i/ipyparallel.md | 9 + .../supported-software/i/ipyrad.md | 9 + .../supported-software/i/irodsfs.md | 11 + .../supported-software/i/isoCirc.md | 9 + .../supported-software/i/ispc.md | 12 + .../supported-software/i/itac.md | 20 + .../supported-software/i/itpp.md | 9 + .../supported-software/index.md | 3583 ++ .../supported-software/j/JAGS.md | 24 + .../supported-software/j/JAXFrontCE.md | 9 + .../supported-software/j/JSON-GLib.md | 9 + .../supported-software/j/JUBE.md | 14 + .../supported-software/j/JUnit.md | 26 + .../supported-software/j/JWM.md | 9 + .../supported-software/j/Jansson.md | 13 + .../supported-software/j/JasPer.md | 34 + .../supported-software/j/Jasmine.md | 9 + .../supported-software/j/Java.md | 80 + .../supported-software/j/JavaFX.md | 9 + .../supported-software/j/Jblob.md | 9 + .../supported-software/j/Jellyfish.md | 23 + .../supported-software/j/JiTCODE.md | 10 + .../supported-software/j/Jmol.md | 9 + .../supported-software/j/Jorg.md | 9 + .../supported-software/j/JsonCpp.md | 17 + .../supported-software/j/Judy.md | 15 + .../supported-software/j/Julia.md | 34 + .../supported-software/j/Jupyter-bundle.md | 10 + .../supported-software/j/JupyterHub.md | 16 + .../supported-software/j/JupyterLab.md | 18 + .../supported-software/j/JupyterNotebook.md | 11 + .../supported-software/j/index.md | 46 + .../supported-software/j/jModelTest.md | 9 + .../supported-software/j/jax.md | 22 + .../supported-software/j/jbigkit.md | 20 + .../j/jedi-language-server.md | 9 + .../supported-software/j/jedi.md | 10 + .../supported-software/j/jemalloc.md | 25 + .../supported-software/j/jhbuild.md | 9 + .../supported-software/j/jiter.md | 9 + .../supported-software/j/joypy.md | 10 + .../supported-software/j/jq.md | 14 + .../supported-software/j/json-c.md | 15 + .../supported-software/j/json-fortran.md | 17 + .../j/jupyter-contrib-nbextensions.md | 10 + .../j/jupyter-matlab-proxy.md | 11 + .../j/jupyter-resource-usage.md | 13 + .../j/jupyter-rsession-proxy.md | 10 + .../j/jupyter-server-proxy.md | 13 + .../supported-software/j/jupyter-server.md | 12 + .../supported-software/j/jupyterlab-lmod.md | 9 + .../supported-software/j/jupyterlmod.md | 11 + .../supported-software/j/jxrlib.md | 12 + .../supported-software/k/KAT.md | 10 + .../supported-software/k/KITE.md | 9 + .../supported-software/k/KMC.md | 15 + .../supported-software/k/KMCP.md | 9 + .../supported-software/k/KNIME.md | 9 + .../supported-software/k/KWIML.md | 9 + .../supported-software/k/KaHIP.md | 11 + .../supported-software/k/Kaiju.md | 11 + .../supported-software/k/Kaleido.md | 13 + .../supported-software/k/Kalign.md | 14 + .../supported-software/k/Kent_tools.md | 18 + .../supported-software/k/Keras.md | 35 + .../supported-software/k/KerasTuner.md | 9 + .../supported-software/k/KmerGenie.md | 10 + .../supported-software/k/Kraken.md | 17 + .../supported-software/k/Kraken2.md | 17 + .../supported-software/k/KrakenUniq.md | 10 + .../supported-software/k/Kratos.md | 10 + .../supported-software/k/KronaTools.md | 16 + .../supported-software/k/KyotoCabinet.md | 11 + .../supported-software/k/index.md | 36 + .../supported-software/k/kWIP.md | 9 + .../supported-software/k/kallisto.md | 26 + .../supported-software/k/kb-python.md | 10 + .../supported-software/k/kbproto.md | 12 + .../supported-software/k/kedro.md | 9 + .../supported-software/k/khmer.md | 10 + .../supported-software/k/kim-api.md | 22 + .../supported-software/k/kineto.md | 9 + .../supported-software/k/king.md | 10 + .../supported-software/k/kma.md | 10 + .../supported-software/k/kneaddata.md | 9 + .../supported-software/k/kpcalg.md | 9 + .../supported-software/k/krbalancing.md | 9 + .../supported-software/k/kwant.md | 10 + .../supported-software/l/LADR.md | 9 + .../supported-software/l/LAME.md | 23 + .../supported-software/l/LAMMPS.md | 22 + .../supported-software/l/LAPACK.md | 14 + .../supported-software/l/LASSO-Python.md | 9 + .../supported-software/l/LAST.md | 12 + .../supported-software/l/LASTZ.md | 12 + .../supported-software/l/LBFGS++.md | 9 + .../supported-software/l/LCov.md | 9 + .../supported-software/l/LDC.md | 14 + .../supported-software/l/LEMON.md | 9 + .../supported-software/l/LERC.md | 14 + .../supported-software/l/LHAPDF.md | 10 + .../supported-software/l/LIANA.md | 9 + .../supported-software/l/LIBSVM-MATLAB.md | 9 + .../supported-software/l/LIBSVM-Python.md | 9 + .../supported-software/l/LIBSVM.md | 17 + .../supported-software/l/LISFLOOD-FP.md | 10 + .../supported-software/l/LLDB.md | 9 + .../supported-software/l/LLVM.md | 49 + .../supported-software/l/LMDB.md | 21 + .../supported-software/l/LMfit.md | 19 + .../supported-software/l/LOHHLA.md | 9 + .../supported-software/l/LPJmL.md | 9 + .../supported-software/l/LPeg.md | 9 + .../supported-software/l/LS-PrePost.md | 13 + .../supported-software/l/LSD2.md | 15 + .../supported-software/l/LSMS.md | 9 + .../supported-software/l/LTR_retriever.md | 10 + .../supported-software/l/LUMPY.md | 10 + .../supported-software/l/LUSCUS.md | 10 + .../supported-software/l/LZO.md | 29 + .../supported-software/l/L_RNA_scaffolder.md | 10 + .../l/Lab-Streaming-Layer.md | 9 + .../supported-software/l/Lace.md | 9 + .../supported-software/l/LangChain.md | 9 + .../supported-software/l/LayoutParser.md | 10 + .../supported-software/l/LeadIT.md | 9 + .../supported-software/l/Leptonica.md | 12 + .../supported-software/l/LevelDB.md | 15 + .../supported-software/l/Levenshtein.md | 9 + .../supported-software/l/LiBis.md | 9 + .../supported-software/l/LibLZF.md | 12 + .../supported-software/l/LibSoup.md | 14 + .../supported-software/l/LibTIFF.md | 35 + .../supported-software/l/LibUUID.md | 15 + .../supported-software/l/Libint.md | 36 + .../supported-software/l/Lighter.md | 11 + .../supported-software/l/Lightning.md | 9 + .../supported-software/l/LinBox.md | 11 + .../supported-software/l/Lingeling.md | 9 + .../supported-software/l/LittleCMS.md | 28 + .../supported-software/l/Lmod.md | 23 + .../supported-software/l/LncLOOM.md | 9 + .../supported-software/l/LoFreq.md | 12 + .../supported-software/l/LoRDEC.md | 9 + .../supported-software/l/LocARNA.md | 11 + .../supported-software/l/Log-Log4perl.md | 9 + .../supported-software/l/Loki.md | 13 + .../supported-software/l/Longshot.md | 13 + .../supported-software/l/LoopTools.md | 9 + .../supported-software/l/LtrDetector.md | 9 + .../supported-software/l/Lua.md | 30 + .../supported-software/l/LuaJIT.md | 10 + .../supported-software/l/LuaJIT2-OpenResty.md | 9 + .../supported-software/l/LuaRocks.md | 9 + .../l/Lucene-Geo-Gazetteer.md | 9 + .../supported-software/l/index.md | 255 + .../supported-software/l/lDDT.md | 9 + .../l/lagrangian-filtering.md | 9 + .../supported-software/l/lancet.md | 9 + .../l/langchain-anthropic.md | 9 + .../supported-software/l/lavaan.md | 11 + .../supported-software/l/lcalc.md | 10 + .../supported-software/l/leafcutter.md | 9 + .../supported-software/l/leidenalg.md | 16 + .../supported-software/l/less.md | 9 + .../supported-software/l/lftp.md | 11 + .../supported-software/l/libBigWig.md | 10 + .../supported-software/l/libFLAME.md | 14 + .../supported-software/l/libGDSII.md | 10 + .../supported-software/l/libGLU.md | 38 + .../supported-software/l/libGridXC.md | 16 + .../supported-software/l/libICE.md | 11 + .../supported-software/l/libMemcached.md | 11 + .../supported-software/l/libPSML.md | 18 + .../supported-software/l/libQGLViewer.md | 16 + .../supported-software/l/libRmath.md | 14 + .../supported-software/l/libSBML.md | 11 + .../supported-software/l/libSM.md | 11 + .../supported-software/l/libStatGen.md | 10 + .../l/libWallModelledLES.md | 9 + .../supported-software/l/libX11.md | 11 + .../supported-software/l/libXau.md | 12 + .../supported-software/l/libXcursor.md | 10 + .../supported-software/l/libXdamage.md | 11 + .../supported-software/l/libXdmcp.md | 12 + .../supported-software/l/libXext.md | 11 + .../supported-software/l/libXfixes.md | 12 + .../supported-software/l/libXfont.md | 13 + .../supported-software/l/libXft.md | 12 + .../supported-software/l/libXi.md | 10 + .../supported-software/l/libXinerama.md | 10 + .../supported-software/l/libXmu.md | 10 + .../supported-software/l/libXp.md | 9 + .../supported-software/l/libXpm.md | 10 + .../supported-software/l/libXrandr.md | 10 + .../supported-software/l/libXrender.md | 11 + .../supported-software/l/libXt.md | 11 + .../supported-software/l/libXxf86vm.md | 10 + .../supported-software/l/libabigail.md | 9 + .../supported-software/l/libaec.md | 15 + .../supported-software/l/libaed2.md | 9 + .../supported-software/l/libaio.md | 17 + .../supported-software/l/libarchive.md | 20 + .../supported-software/l/libav.md | 9 + .../supported-software/l/libavif.md | 12 + .../supported-software/l/libbaseencode.md | 9 + .../supported-software/l/libbitmask.md | 9 + .../supported-software/l/libbraiding.md | 9 + .../supported-software/l/libcdms.md | 9 + .../supported-software/l/libcerf.md | 29 + .../supported-software/l/libcint.md | 14 + .../supported-software/l/libcircle.md | 15 + .../supported-software/l/libcmaes.md | 9 + .../supported-software/l/libconfig.md | 13 + .../supported-software/l/libcotp.md | 9 + .../supported-software/l/libcpuset.md | 9 + .../supported-software/l/libcroco.md | 11 + .../supported-software/l/libctl.md | 12 + .../supported-software/l/libdap.md | 21 + .../supported-software/l/libde265.md | 12 + .../supported-software/l/libdeflate.md | 19 + .../supported-software/l/libdivsufsort.md | 9 + .../supported-software/l/libdrm.md | 31 + .../supported-software/l/libdrs.md | 9 + .../supported-software/l/libdwarf.md | 19 + .../supported-software/l/libedit.md | 14 + .../supported-software/l/libelf.md | 18 + .../supported-software/l/libemf.md | 9 + .../supported-software/l/libepoxy.md | 20 + .../supported-software/l/libev.md | 11 + .../supported-software/l/libevent.md | 31 + .../supported-software/l/libexif.md | 9 + .../supported-software/l/libfabric.md | 21 + .../supported-software/l/libfdf.md | 15 + .../supported-software/l/libffcall.md | 12 + .../supported-software/l/libffi.md | 35 + .../supported-software/l/libfontenc.md | 11 + .../supported-software/l/libfyaml.md | 10 + .../supported-software/l/libgcrypt.md | 17 + .../supported-software/l/libgd.md | 29 + .../supported-software/l/libgdiplus.md | 9 + .../supported-software/l/libgeotiff.md | 20 + .../supported-software/l/libgit2.md | 17 + .../supported-software/l/libglade.md | 12 + .../supported-software/l/libglvnd.md | 18 + .../supported-software/l/libgpg-error.md | 17 + .../supported-software/l/libgpuarray.md | 18 + .../supported-software/l/libgtextutils.md | 12 + .../supported-software/l/libgxps.md | 9 + .../supported-software/l/libhandy.md | 9 + .../supported-software/l/libharu.md | 21 + .../supported-software/l/libheif.md | 12 + .../supported-software/l/libhomfly.md | 9 + .../supported-software/l/libibmad.md | 9 + .../supported-software/l/libibumad.md | 9 + .../supported-software/l/libiconv.md | 23 + .../supported-software/l/libidn.md | 21 + .../supported-software/l/libidn2.md | 19 + .../supported-software/l/libjpeg-turbo.md | 36 + .../supported-software/l/libjxl.md | 13 + .../supported-software/l/libleidenalg.md | 10 + .../supported-software/l/libmad.md | 10 + .../supported-software/l/libmatheval.md | 17 + .../supported-software/l/libmaus2.md | 11 + .../supported-software/l/libmbd.md | 12 + .../supported-software/l/libmicrohttpd.md | 12 + .../supported-software/l/libmo_unpack.md | 9 + .../supported-software/l/libmypaint.md | 9 + .../supported-software/l/libnsl.md | 12 + .../supported-software/l/libobjcryst.md | 10 + .../supported-software/l/libogg.md | 14 + .../supported-software/l/libopus.md | 11 + .../supported-software/l/libosmium.md | 10 + .../supported-software/l/libpci.md | 12 + .../supported-software/l/libpciaccess.md | 28 + .../supported-software/l/libplinkio.md | 9 + .../supported-software/l/libpng.md | 42 + .../supported-software/l/libpsl.md | 15 + .../supported-software/l/libpsortb.md | 9 + .../supported-software/l/libpspio.md | 14 + .../supported-software/l/libpthread-stubs.md | 15 + .../supported-software/l/libreadline.md | 48 + .../supported-software/l/librosa.md | 11 + .../supported-software/l/librsb.md | 13 + .../supported-software/l/librsvg.md | 14 + .../supported-software/l/librttopo.md | 9 + .../supported-software/l/libsamplerate.md | 9 + .../supported-software/l/libsigc++.md | 15 + .../supported-software/l/libsigsegv.md | 12 + .../supported-software/l/libsndfile.md | 20 + .../supported-software/l/libsodium.md | 28 + .../supported-software/l/libspatialindex.md | 18 + .../supported-software/l/libspatialite.md | 14 + .../supported-software/l/libspectre.md | 9 + .../supported-software/l/libssh.md | 9 + .../supported-software/l/libsupermesh.md | 9 + .../supported-software/l/libtar.md | 10 + .../supported-software/l/libtasn1.md | 20 + .../supported-software/l/libtecla.md | 9 + .../supported-software/l/libtirpc.md | 19 + .../supported-software/l/libtool.md | 56 + .../supported-software/l/libtree.md | 10 + .../supported-software/l/libunistring.md | 26 + .../supported-software/l/libunwind.md | 26 + .../supported-software/l/libutempter.md | 9 + .../supported-software/l/libuv.md | 10 + .../supported-software/l/libvdwxc.md | 20 + .../supported-software/l/libvorbis.md | 14 + .../supported-software/l/libvori.md | 11 + .../supported-software/l/libwebp.md | 20 + .../supported-software/l/libwpe.md | 10 + .../supported-software/l/libxc.md | 69 + .../supported-software/l/libxcb.md | 12 + .../supported-software/l/libxkbcommon.md | 10 + .../supported-software/l/libxml++.md | 12 + .../supported-software/l/libxml2-python.md | 13 + .../supported-software/l/libxml2.md | 50 + .../supported-software/l/libxslt.md | 28 + .../supported-software/l/libxsmm.md | 30 + .../supported-software/l/libyaml.md | 29 + .../supported-software/l/libzeep.md | 9 + .../supported-software/l/libzip.md | 13 + .../supported-software/l/lie_learn.md | 9 + .../supported-software/l/lifelines.md | 11 + .../supported-software/l/liknorm.md | 9 + .../supported-software/l/likwid.md | 28 + .../supported-software/l/lil-aretomo.md | 9 + .../supported-software/l/limix.md | 9 + .../supported-software/l/line_profiler.md | 13 + .../supported-software/l/lit.md | 9 + .../supported-software/l/lmoments3.md | 9 + .../supported-software/l/logaddexp.md | 9 + .../l/longestrunsubsequence.md | 9 + .../supported-software/l/longread_umi.md | 9 + .../supported-software/l/loomR.md | 11 + .../supported-software/l/loompy.md | 14 + .../supported-software/l/lpsolve.md | 22 + .../supported-software/l/lrslib.md | 12 + .../supported-software/l/lwgrp.md | 15 + .../supported-software/l/lxml.md | 29 + .../supported-software/l/lynx.md | 9 + .../supported-software/l/lz4.md | 22 + .../supported-software/m/M1QN3.md | 9 + .../supported-software/m/M3GNet.md | 9 + .../supported-software/m/M4.md | 77 + .../supported-software/m/MACH.md | 9 + .../supported-software/m/MACS2.md | 18 + .../supported-software/m/MACS3.md | 12 + .../supported-software/m/MACSE.md | 9 + .../supported-software/m/MAFFT.md | 30 + .../m/MAGMA-gene-analysis.md | 11 + .../supported-software/m/MAGeCK.md | 11 + .../supported-software/m/MAJIQ.md | 9 + .../supported-software/m/MAKER.md | 9 + .../supported-software/m/MARS.md | 9 + .../supported-software/m/MATIO.md | 20 + .../supported-software/m/MATLAB-Engine.md | 15 + .../supported-software/m/MATLAB.md | 25 + .../supported-software/m/MATSim.md | 13 + .../supported-software/m/MBROLA.md | 10 + .../supported-software/m/MCL.md | 21 + .../supported-software/m/MCR.md | 31 + .../supported-software/m/MDAnalysis.md | 18 + .../supported-software/m/MDBM.md | 10 + .../supported-software/m/MDI.md | 10 + .../supported-software/m/MDSplus-Java.md | 9 + .../supported-software/m/MDSplus-Python.md | 9 + .../supported-software/m/MDSplus.md | 12 + .../supported-software/m/MDTraj.md | 23 + .../supported-software/m/MEGA.md | 11 + .../supported-software/m/MEGACC.md | 9 + .../supported-software/m/MEGAHIT.md | 23 + .../supported-software/m/MEGAN.md | 10 + .../supported-software/m/MEM.md | 10 + .../supported-software/m/MEME.md | 19 + .../supported-software/m/MEMOTE.md | 9 + .../supported-software/m/MERCKX.md | 9 + .../supported-software/m/MESS.md | 9 + .../supported-software/m/METIS.md | 33 + .../supported-software/m/MICOM.md | 9 + .../supported-software/m/MIGRATE-N.md | 11 + .../supported-software/m/MINC.md | 11 + .../supported-software/m/MINPACK.md | 9 + .../supported-software/m/MIRA.md | 14 + .../supported-software/m/MITObim.md | 11 + .../supported-software/m/MITgcmutils.md | 9 + .../supported-software/m/MLC.md | 9 + .../supported-software/m/MLflow.md | 9 + .../supported-software/m/MLxtend.md | 9 + .../supported-software/m/MMSEQ.md | 9 + .../supported-software/m/MMseqs2.md | 21 + .../supported-software/m/MNE-Python.md | 10 + .../supported-software/m/MOABB.md | 10 + .../supported-software/m/MOABS.md | 9 + .../supported-software/m/MOB-suite.md | 9 + .../supported-software/m/MODFLOW.md | 9 + .../supported-software/m/MOFA2.md | 9 + .../supported-software/m/MONA.md | 9 + .../supported-software/m/MONAI-Label.md | 10 + .../supported-software/m/MONAI.md | 14 + .../supported-software/m/MOOSE.md | 9 + .../supported-software/m/MPB.md | 12 + .../supported-software/m/MPC.md | 22 + .../supported-software/m/MPFI.md | 10 + .../supported-software/m/MPFR.md | 29 + .../supported-software/m/MPICH.md | 15 + .../supported-software/m/MPICH2.md | 9 + .../supported-software/m/MPJ-Express.md | 9 + .../supported-software/m/MRCPP.md | 10 + .../supported-software/m/MRChem.md | 10 + .../supported-software/m/MRIcron.md | 10 + .../supported-software/m/MRPRESSO.md | 9 + .../supported-software/m/MRtrix.md | 17 + .../supported-software/m/MSFragger.md | 9 + .../supported-software/m/MSM.md | 10 + .../supported-software/m/MSPC.md | 9 + .../supported-software/m/MTL4.md | 10 + .../supported-software/m/MUMPS.md | 29 + .../supported-software/m/MUMmer.md | 19 + .../supported-software/m/MUSCLE.md | 29 + .../supported-software/m/MUSCLE3.md | 9 + .../supported-software/m/MUST.md | 12 + .../supported-software/m/MVAPICH2.md | 11 + .../supported-software/m/MView.md | 9 + .../supported-software/m/MXNet.md | 10 + .../supported-software/m/MaSuRCA.md | 16 + .../supported-software/m/Magics.md | 9 + .../supported-software/m/MagresPython.md | 9 + .../supported-software/m/Mako.md | 37 + .../supported-software/m/Mamba.md | 11 + .../supported-software/m/MapSplice.md | 10 + .../supported-software/m/Maple.md | 11 + .../supported-software/m/Maq.md | 9 + .../m/MariaDB-connector-c.md | 18 + .../supported-software/m/MariaDB.md | 25 + .../supported-software/m/Markdown.md | 11 + .../supported-software/m/Mash.md | 17 + .../supported-software/m/Mashtree.md | 9 + .../supported-software/m/MathGL.md | 9 + .../supported-software/m/Mathematica.md | 19 + .../supported-software/m/Maude.md | 9 + .../supported-software/m/Maven.md | 15 + .../supported-software/m/MaxBin.md | 13 + .../supported-software/m/MaxQuant.md | 12 + .../supported-software/m/MbedTLS.md | 9 + .../supported-software/m/MedPy.md | 11 + .../supported-software/m/Meep.md | 14 + .../supported-software/m/Megalodon.md | 12 + .../supported-software/m/Meld.md | 9 + .../supported-software/m/Mercurial.md | 14 + .../supported-software/m/Mesa-demos.md | 9 + .../supported-software/m/Mesa.md | 39 + .../supported-software/m/Meson.md | 29 + .../supported-software/m/Mesquite.md | 15 + .../supported-software/m/MetaBAT.md | 14 + .../supported-software/m/MetaDecoder.md | 9 + .../supported-software/m/MetaEuk.md | 13 + .../supported-software/m/MetaGeneAnnotator.md | 9 + .../supported-software/m/MetaMorpheus.md | 10 + .../supported-software/m/MetaPhlAn.md | 10 + .../supported-software/m/MetaPhlAn2.md | 11 + .../supported-software/m/MetaboAnalystR.md | 9 + .../supported-software/m/Metagenome-Atlas.md | 9 + .../supported-software/m/Metal.md | 10 + .../supported-software/m/MetalWalls.md | 9 + .../supported-software/m/Metaxa2.md | 9 + .../supported-software/m/MethylDackel.md | 11 + .../supported-software/m/MiGEC.md | 10 + .../supported-software/m/MiXCR.md | 13 + .../supported-software/m/MicrobeAnnotator.md | 9 + .../supported-software/m/Mikado.md | 9 + .../supported-software/m/Miller.md | 9 + .../supported-software/m/MinCED.md | 9 + .../supported-software/m/MinPath.md | 12 + .../supported-software/m/Mini-XML.md | 12 + .../supported-software/m/MiniCARD.md | 9 + .../supported-software/m/MiniSat.md | 10 + .../supported-software/m/Miniconda2.md | 11 + .../supported-software/m/Miniconda3.md | 18 + .../supported-software/m/Miniforge3.md | 9 + .../supported-software/m/Minimac4.md | 9 + .../supported-software/m/Minipolish.md | 9 + .../supported-software/m/Mish-Cuda.md | 9 + .../supported-software/m/MitoHiFi.md | 9 + .../supported-software/m/MitoZ.md | 9 + .../supported-software/m/MixMHC2pred.md | 9 + .../supported-software/m/Mmg.md | 12 + .../supported-software/m/ModelTest-NG.md | 9 + .../supported-software/m/Molcas.md | 11 + .../supported-software/m/Molden.md | 16 + .../supported-software/m/Molekel.md | 9 + .../supported-software/m/Molpro.md | 14 + .../supported-software/m/Mono.md | 19 + .../supported-software/m/Monocle3.md | 12 + .../supported-software/m/MoreRONN.md | 9 + .../supported-software/m/Mothur.md | 11 + .../supported-software/m/MotionCor2.md | 15 + .../supported-software/m/MotionCor3.md | 9 + .../supported-software/m/MoviePy.md | 11 + .../supported-software/m/MrBayes.md | 16 + .../supported-software/m/MuJoCo.md | 11 + .../supported-software/m/MuPeXI.md | 9 + .../supported-software/m/MuSiC.md | 9 + .../supported-software/m/MuTect.md | 11 + .../supported-software/m/MultiNest.md | 9 + .../supported-software/m/MultiQC.md | 31 + .../m/MultilevelEstimators.md | 9 + .../supported-software/m/Multiwfn.md | 11 + .../supported-software/m/MyCC.md | 9 + .../supported-software/m/MyMediaLite.md | 11 + .../supported-software/m/MySQL-python.md | 10 + .../supported-software/m/MySQL.md | 10 + .../supported-software/m/Myokit.md | 10 + .../supported-software/m/index.md | 274 + .../supported-software/m/m4ri.md | 10 + .../supported-software/m/m4rie.md | 10 + .../supported-software/m/maeparser.md | 15 + .../supported-software/m/magick.md | 9 + .../supported-software/m/magma.md | 29 + .../supported-software/m/mahotas.md | 10 + .../supported-software/m/make.md | 22 + .../supported-software/m/makedepend.md | 20 + .../supported-software/m/makedepf90.md | 9 + .../supported-software/m/makefun.md | 9 + .../supported-software/m/makeinfo.md | 23 + .../supported-software/m/mandrake.md | 9 + .../supported-software/m/mannkendall.md | 9 + .../supported-software/m/manta.md | 13 + .../supported-software/m/mapDamage.md | 12 + .../supported-software/m/matlab-proxy.md | 10 + .../supported-software/m/matplotlib-inline.md | 9 + .../supported-software/m/matplotlib.md | 104 + .../supported-software/m/maturin.md | 15 + .../supported-software/m/mauveAligner.md | 9 + .../supported-software/m/mawk.md | 15 + .../supported-software/m/mayavi.md | 13 + .../supported-software/m/maze.md | 9 + .../supported-software/m/mbuffer.md | 9 + .../supported-software/m/mc.md | 9 + .../supported-software/m/mctc-lib.md | 12 + .../supported-software/m/mcu.md | 9 + .../supported-software/m/mdtest.md | 9 + .../supported-software/m/mdust.md | 9 + .../supported-software/m/meRanTK.md | 9 + .../supported-software/m/meboot.md | 9 + .../supported-software/m/medImgProc.md | 9 + .../supported-software/m/medaka.md | 23 + .../supported-software/m/memkind.md | 9 + .../supported-software/m/memory-profiler.md | 10 + .../supported-software/m/memtester.md | 9 + .../supported-software/m/meshalyzer.md | 11 + .../supported-software/m/meshio.md | 12 + .../supported-software/m/meshtool.md | 10 + .../supported-software/m/meson-python.md | 12 + .../supported-software/m/metaWRAP.md | 11 + .../supported-software/m/metaerg.md | 9 + .../supported-software/m/methylartist.md | 9 + .../supported-software/m/methylpy.md | 10 + .../supported-software/m/mfqe.md | 9 + .../supported-software/m/mgen.md | 9 + .../supported-software/m/mgltools.md | 9 + .../supported-software/m/mhcflurry.md | 10 + .../supported-software/m/mhcnuggets.md | 12 + .../supported-software/m/miRDeep2.md | 10 + .../supported-software/m/microctools.md | 9 + .../supported-software/m/mimalloc.md | 10 + .../supported-software/m/miniasm.md | 10 + .../supported-software/m/minibar.md | 10 + .../supported-software/m/minieigen.md | 14 + .../supported-software/m/minimap2.md | 24 + .../supported-software/m/minizip.md | 9 + .../supported-software/m/misha.md | 9 + .../supported-software/m/mkl-dnn.md | 13 + .../supported-software/m/mkl-service.md | 12 + .../supported-software/m/mkl_fft.md | 9 + .../supported-software/m/ml-collections.md | 9 + .../supported-software/m/ml_dtypes.md | 9 + .../supported-software/m/mlpack.md | 9 + .../supported-software/m/mm-common.md | 10 + .../supported-software/m/mmtf-cpp.md | 9 + .../supported-software/m/modred.md | 9 + .../supported-software/m/mold.md | 16 + .../supported-software/m/molecularGSM.md | 9 + .../supported-software/m/molmod.md | 25 + .../supported-software/m/mongolite.md | 11 + .../supported-software/m/moonjit.md | 9 + .../supported-software/m/mordecai.md | 9 + .../supported-software/m/morphosamplers.md | 9 + .../supported-software/m/mosdepth.md | 12 + .../supported-software/m/motif.md | 26 + .../m/motionSegmentation.md | 9 + .../supported-software/m/mpath.md | 9 + .../supported-software/m/mpi4py.md | 20 + .../supported-software/m/mpiP.md | 11 + .../supported-software/m/mpifileutils.md | 15 + .../supported-software/m/mpmath.md | 18 + .../supported-software/m/mrcfile.md | 13 + .../supported-software/m/msgpack-c.md | 10 + .../supported-software/m/msprime.md | 11 + .../supported-software/m/mstore.md | 13 + .../supported-software/m/muMerge.md | 9 + .../supported-software/m/muParser.md | 14 + .../supported-software/m/mujoco-py.md | 9 + .../supported-software/m/multicharge.md | 11 + .../supported-software/m/multichoose.md | 14 + .../supported-software/m/multiprocess.md | 9 + .../supported-software/m/mumott.md | 9 + .../supported-software/m/muparserx.md | 10 + .../supported-software/m/mutil.md | 9 + .../supported-software/m/mxml.md | 9 + .../supported-software/m/mxmlplus.md | 9 + .../supported-software/m/mygene.md | 11 + .../supported-software/m/mympingpong.md | 14 + .../supported-software/m/mypy.md | 9 + .../supported-software/m/mysqlclient.md | 10 + .../supported-software/n/NAG.md | 12 + .../supported-software/n/NAGfor.md | 10 + .../supported-software/n/NAMD.md | 28 + .../supported-software/n/NASM.md | 35 + .../supported-software/n/NBO.md | 16 + .../supported-software/n/NCBI-Toolkit.md | 9 + .../supported-software/n/NCCL-tests.md | 10 + .../supported-software/n/NCCL.md | 27 + .../supported-software/n/NCIPLOT.md | 11 + .../supported-software/n/NCL.md | 19 + .../supported-software/n/NCO.md | 28 + .../supported-software/n/NECI.md | 10 + .../supported-software/n/NEURON.md | 11 + .../supported-software/n/NEXUS-CL.md | 9 + .../supported-software/n/NEdit.md | 9 + .../supported-software/n/NFFT.md | 17 + .../supported-software/n/NGLess.md | 9 + .../supported-software/n/NGS-Python.md | 11 + .../supported-software/n/NGS.md | 23 + .../supported-software/n/NGSadmix.md | 9 + .../supported-software/n/NGSpeciesID.md | 12 + .../supported-software/n/NIMBLE.md | 9 + .../supported-software/n/NIfTI.md | 9 + .../supported-software/n/NLMpy.md | 9 + .../supported-software/n/NLTK.md | 18 + .../supported-software/n/NLopt.md | 30 + .../supported-software/n/NOVOPlasty.md | 9 + .../supported-software/n/NRGLjubljana.md | 9 + .../supported-software/n/NSPR.md | 20 + .../supported-software/n/NSS.md | 20 + .../supported-software/n/NTL.md | 13 + .../supported-software/n/NTPoly.md | 13 + .../supported-software/n/NVHPC.md | 24 + .../supported-software/n/NVSHMEM.md | 12 + .../supported-software/n/NWChem.md | 17 + .../supported-software/n/NanoCaller.md | 9 + .../supported-software/n/NanoComp.md | 10 + .../supported-software/n/NanoFilt.md | 13 + .../supported-software/n/NanoLyse.md | 9 + .../supported-software/n/NanoPlot.md | 12 + .../supported-software/n/NanoStat.md | 10 + .../supported-software/n/NanopolishComp.md | 9 + .../supported-software/n/Nek5000.md | 9 + .../supported-software/n/Nektar++.md | 9 + .../supported-software/n/Net-core.md | 11 + .../supported-software/n/NetLogo.md | 13 + .../supported-software/n/NetPIPE.md | 11 + .../supported-software/n/NetPyNE.md | 9 + .../supported-software/n/NeuroKit.md | 9 + .../supported-software/n/NewHybrids.md | 9 + .../supported-software/n/NextGenMap.md | 10 + .../supported-software/n/Nextflow.md | 25 + .../supported-software/n/NiBabel.md | 29 + .../supported-software/n/Nilearn.md | 17 + .../supported-software/n/Nim.md | 14 + .../supported-software/n/Ninja.md | 25 + .../supported-software/n/Nipype.md | 13 + .../supported-software/n/Node-RED.md | 9 + .../supported-software/n/Normaliz.md | 12 + .../supported-software/n/Nsight-Compute.md | 10 + .../supported-software/n/Nsight-Systems.md | 9 + .../supported-software/n/NxTrim.md | 9 + .../supported-software/n/index.md | 133 + .../supported-software/n/n2v.md | 10 + .../supported-software/n/namedlist.md | 9 + .../supported-software/n/nano.md | 12 + .../supported-software/n/nanocompore.md | 9 + .../supported-software/n/nanoflann.md | 10 + .../supported-software/n/nanoget.md | 14 + .../supported-software/n/nanomath.md | 13 + .../n/nanomax-analysis-utils.md | 13 + .../supported-software/n/nanonet.md | 9 + .../supported-software/n/nanopolish.md | 15 + .../supported-software/n/napari.md | 12 + .../supported-software/n/nauty.md | 13 + .../supported-software/n/nbclassic.md | 10 + .../supported-software/n/ncbi-vdb.md | 28 + .../supported-software/n/ncdf4.md | 18 + .../supported-software/n/ncdu.md | 15 + .../supported-software/n/ncolor.md | 9 + .../supported-software/n/ncompress.md | 9 + .../supported-software/n/ncurses.md | 57 + .../supported-software/n/ncview.md | 24 + .../supported-software/n/nd2reader.md | 9 + .../supported-software/n/ne.md | 9 + .../supported-software/n/neon.md | 9 + .../supported-software/n/neptune-client.md | 12 + .../supported-software/n/netCDF-C++.md | 9 + .../supported-software/n/netCDF-C++4.md | 34 + .../supported-software/n/netCDF-Fortran.md | 56 + .../supported-software/n/netCDF.md | 70 + .../supported-software/n/netMHC.md | 9 + .../supported-software/n/netMHCII.md | 9 + .../supported-software/n/netMHCIIpan.md | 10 + .../supported-software/n/netMHCpan.md | 9 + .../supported-software/n/netcdf4-python.md | 35 + .../supported-software/n/netloc.md | 9 + .../supported-software/n/nettle.md | 35 + .../supported-software/n/networkTools.md | 9 + .../supported-software/n/networkx.md | 46 + .../supported-software/n/nf-core-mag.md | 9 + .../supported-software/n/nf-core.md | 10 + .../supported-software/n/nghttp2.md | 11 + .../supported-software/n/nghttp3.md | 11 + .../supported-software/n/nglview.md | 13 + .../supported-software/n/ngspice.md | 10 + .../supported-software/n/ngtcp2.md | 11 + .../supported-software/n/nichenetr.md | 10 + .../supported-software/n/nifti2dicom.md | 9 + .../supported-software/n/nlohmann_json.md | 14 + .../supported-software/n/nnU-Net.md | 10 + .../supported-software/n/nodejs.md | 25 + .../supported-software/n/noise.md | 9 + .../n/nose-parameterized.md | 12 + .../supported-software/n/nose3.md | 10 + .../supported-software/n/novaSTA.md | 9 + .../supported-software/n/novoalign.md | 10 + .../supported-software/n/npstat.md | 10 + .../supported-software/n/nsync.md | 16 + .../supported-software/n/ntCard.md | 11 + .../supported-software/n/ntEdit.md | 9 + .../supported-software/n/ntHits.md | 9 + .../supported-software/n/num2words.md | 9 + .../supported-software/n/numactl.md | 46 + .../supported-software/n/numba.md | 38 + .../supported-software/n/numdiff.md | 10 + .../supported-software/n/numexpr.md | 33 + .../supported-software/n/numpy.md | 16 + .../supported-software/n/nvitop.md | 9 + .../supported-software/n/nvofbf.md | 9 + .../supported-software/n/nvompi.md | 9 + .../supported-software/n/nvtop.md | 17 + .../supported-software/o/OBITools.md | 10 + .../supported-software/o/OBITools3.md | 10 + .../supported-software/o/OCNet.md | 9 + .../supported-software/o/OCaml.md | 12 + .../supported-software/o/OGDF.md | 9 + .../supported-software/o/OMA.md | 9 + .../supported-software/o/OMERO.insight.md | 9 + .../supported-software/o/OMERO.py.md | 9 + .../supported-software/o/ONNX-Runtime.md | 11 + .../supported-software/o/ONNX.md | 11 + .../supported-software/o/OOMPA.md | 9 + .../supported-software/o/OPARI2.md | 19 + .../supported-software/o/OPERA-MS.md | 9 + .../supported-software/o/OPERA.md | 10 + .../supported-software/o/OR-Tools.md | 9 + .../supported-software/o/ORCA.md | 25 + .../supported-software/o/ORFfinder.md | 9 + .../supported-software/o/OSPRay.md | 9 + .../o/OSU-Micro-Benchmarks.md | 49 + .../supported-software/o/OTF2.md | 21 + .../supported-software/o/OVITO.md | 9 + .../supported-software/o/Oases.md | 11 + .../supported-software/o/Octave.md | 20 + .../supported-software/o/Octopus-vcf.md | 10 + .../supported-software/o/OmegaFold.md | 9 + .../supported-software/o/Omnipose.md | 10 + .../o/Open-Data-Cube-Core.md | 9 + .../supported-software/o/OpenAI-Gym.md | 11 + .../supported-software/o/OpenBLAS.md | 49 + .../supported-software/o/OpenBabel.md | 19 + .../supported-software/o/OpenCV.md | 46 + .../supported-software/o/OpenCensus-python.md | 9 + .../supported-software/o/OpenCoarrays.md | 12 + .../supported-software/o/OpenColorIO.md | 9 + .../supported-software/o/OpenEXR.md | 21 + .../supported-software/o/OpenFAST.md | 9 + .../supported-software/o/OpenFOAM-Extend.md | 15 + .../supported-software/o/OpenFOAM.md | 68 + .../supported-software/o/OpenFace.md | 10 + .../supported-software/o/OpenFold.md | 11 + .../supported-software/o/OpenForceField.md | 9 + .../supported-software/o/OpenImageIO.md | 18 + .../supported-software/o/OpenJPEG.md | 21 + .../supported-software/o/OpenKIM-API.md | 13 + .../supported-software/o/OpenMEEG.md | 9 + .../supported-software/o/OpenMM-PLUMED.md | 9 + .../supported-software/o/OpenMM.md | 31 + .../supported-software/o/OpenMMTools.md | 9 + .../supported-software/o/OpenMPI.md | 90 + .../supported-software/o/OpenMS.md | 9 + .../supported-software/o/OpenMolcas.md | 17 + .../supported-software/o/OpenNLP.md | 9 + .../supported-software/o/OpenPGM.md | 26 + .../supported-software/o/OpenPIV.md | 9 + .../supported-software/o/OpenRefine.md | 10 + .../supported-software/o/OpenSSL.md | 30 + .../supported-software/o/OpenSceneGraph.md | 11 + .../supported-software/o/OpenSees.md | 10 + .../supported-software/o/OpenSlide-Java.md | 9 + .../supported-software/o/OpenSlide.md | 14 + .../supported-software/o/OpenStackClient.md | 11 + .../supported-software/o/OptaDOS.md | 9 + .../supported-software/o/Optax.md | 10 + .../supported-software/o/OptiType.md | 10 + .../supported-software/o/OptiX.md | 12 + .../supported-software/o/Optuna.md | 12 + .../supported-software/o/OrfM.md | 11 + .../supported-software/o/OrthoFinder.md | 15 + .../supported-software/o/OrthoMCL.md | 10 + .../supported-software/o/Osi.md | 15 + .../supported-software/o/index.md | 90 + .../supported-software/o/ocamlbuild.md | 9 + .../supported-software/o/occt.md | 12 + .../supported-software/o/oceanspy.md | 9 + .../supported-software/o/olaFlow.md | 9 + .../supported-software/o/olego.md | 9 + .../supported-software/o/onedrive.md | 11 + .../supported-software/o/ont-fast5-api.md | 17 + .../supported-software/o/ont-guppy.md | 11 + .../supported-software/o/ont-remora.md | 12 + .../supported-software/o/openCARP.md | 11 + .../supported-software/o/openkim-models.md | 16 + .../supported-software/o/openpyxl.md | 18 + .../supported-software/o/openslide-python.md | 13 + .../supported-software/o/optiSLang.md | 9 + .../supported-software/o/orthAgogue.md | 9 + .../supported-software/o/ownCloud.md | 10 + .../supported-software/o/oxDNA.md | 9 + .../supported-software/o/oxford_asl.md | 9 + .../supported-software/p/PAGAN2.md | 9 + .../supported-software/p/PAL2NAL.md | 10 + .../supported-software/p/PALEOMIX.md | 9 + .../supported-software/p/PAML.md | 15 + .../supported-software/p/PANDAseq.md | 13 + .../supported-software/p/PAPI.md | 23 + .../supported-software/p/PARI-GP.md | 11 + .../supported-software/p/PASA.md | 9 + .../supported-software/p/PAUP.md | 10 + .../supported-software/p/PBSuite.md | 9 + .../supported-software/p/PBZIP2.md | 9 + .../supported-software/p/PCAngsd.md | 9 + .../supported-software/p/PCC.md | 9 + .../supported-software/p/PCL.md | 10 + .../supported-software/p/PCMSolver.md | 14 + .../supported-software/p/PCRE.md | 34 + .../supported-software/p/PCRE2.md | 21 + .../supported-software/p/PCRaster.md | 9 + .../supported-software/p/PDM.md | 9 + .../supported-software/p/PDT.md | 19 + .../supported-software/p/PEAR.md | 18 + .../supported-software/p/PEPT.md | 9 + .../supported-software/p/PEST++.md | 9 + .../supported-software/p/PETSc.md | 31 + .../supported-software/p/PFFT.md | 9 + .../supported-software/p/PGDSpider.md | 9 + .../supported-software/p/PGI.md | 28 + .../supported-software/p/PGPLOT.md | 11 + .../supported-software/p/PHANOTATE.md | 9 + .../supported-software/p/PHASE.md | 9 + .../supported-software/p/PHAST.md | 11 + .../supported-software/p/PHLAT.md | 9 + .../supported-software/p/PHYLIP.md | 14 + .../supported-software/p/PICI-LIGGGHTS.md | 9 + .../supported-software/p/PICRUSt2.md | 10 + .../supported-software/p/PIL.md | 14 + .../supported-software/p/PIMS.md | 9 + .../supported-software/p/PIPITS.md | 12 + .../supported-software/p/PIRATE.md | 9 + .../supported-software/p/PLAMS.md | 9 + .../supported-software/p/PLAST.md | 9 + .../supported-software/p/PLINK.md | 25 + .../supported-software/p/PLINKSEQ.md | 10 + .../supported-software/p/PLUMED.md | 46 + .../supported-software/p/PLY.md | 12 + .../supported-software/p/PLplot.md | 10 + .../supported-software/p/PMIx.md | 33 + .../supported-software/p/POT.md | 10 + .../supported-software/p/POV-Ray.md | 18 + .../supported-software/p/PPanGGOLiN.md | 9 + .../supported-software/p/PPfold.md | 9 + .../supported-software/p/PRANK.md | 15 + .../supported-software/p/PRC.md | 9 + .../supported-software/p/PREQUAL.md | 9 + .../supported-software/p/PRINSEQ.md | 11 + .../supported-software/p/PRISMS-PF.md | 11 + .../supported-software/p/PROJ.md | 33 + .../supported-software/p/PRRTE.md | 9 + .../supported-software/p/PRSice.md | 14 + .../supported-software/p/PSASS.md | 9 + .../supported-software/p/PSI.md | 9 + .../supported-software/p/PSI4.md | 15 + .../supported-software/p/PSIPRED.md | 10 + .../supported-software/p/PSM2.md | 15 + .../supported-software/p/PSORTb.md | 9 + .../supported-software/p/PSolver.md | 20 + .../supported-software/p/PTESFinder.md | 9 + .../supported-software/p/PYPOWER.md | 9 + .../supported-software/p/PYTHIA.md | 10 + .../supported-software/p/PaStiX.md | 9 + .../supported-software/p/Pandoc.md | 13 + .../supported-software/p/Panedr.md | 9 + .../supported-software/p/Pango.md | 34 + .../supported-software/p/ParMETIS.md | 36 + .../supported-software/p/ParMGridGen.md | 15 + .../supported-software/p/ParaView.md | 39 + .../supported-software/p/Parallel-Hashmap.md | 11 + .../supported-software/p/ParallelIO.md | 11 + .../supported-software/p/Paraver.md | 11 + .../supported-software/p/Parcels.md | 9 + .../supported-software/p/ParmEd.md | 11 + .../supported-software/p/Parsl.md | 9 + .../supported-software/p/PartitionFinder.md | 10 + .../supported-software/p/PennCNV.md | 9 + .../supported-software/p/Percolator.md | 9 + .../supported-software/p/Perl-bundle-CPAN.md | 10 + .../supported-software/p/Perl.md | 60 + .../supported-software/p/Perl4-CoreLibs.md | 9 + .../supported-software/p/Perseus.md | 9 + .../supported-software/p/PfamScan.md | 9 + .../p/Phantompeakqualtools.md | 9 + .../supported-software/p/PheWAS.md | 12 + .../supported-software/p/PheWeb.md | 9 + .../supported-software/p/Phenoflow.md | 9 + .../supported-software/p/PhiPack.md | 9 + .../supported-software/p/Philosopher.md | 9 + .../supported-software/p/PhyML.md | 11 + .../supported-software/p/PhyloBayes-MPI.md | 9 + .../supported-software/p/PhyloPhlAn.md | 11 + .../supported-software/p/PileOMeth.md | 9 + .../supported-software/p/Pillow-SIMD.md | 23 + .../supported-software/p/Pillow.md | 47 + .../supported-software/p/Pilon.md | 12 + .../supported-software/p/Pindel.md | 12 + .../supported-software/p/Pingouin.md | 9 + .../supported-software/p/Pint.md | 13 + .../supported-software/p/Pisces.md | 9 + .../supported-software/p/PlaScope.md | 9 + .../supported-software/p/PlasmaPy.md | 9 + .../supported-software/p/Platanus.md | 10 + .../supported-software/p/Platypus-Opt.md | 9 + .../supported-software/p/Platypus.md | 9 + .../supported-software/p/Ploticus.md | 9 + .../supported-software/p/PnetCDF.md | 26 + .../supported-software/p/Porechop.md | 13 + .../supported-software/p/PortAudio.md | 9 + .../supported-software/p/PortMidi.md | 10 + .../supported-software/p/Portcullis.md | 9 + .../supported-software/p/PostgreSQL.md | 29 + .../supported-software/p/Postgres-XL.md | 9 + .../supported-software/p/Primer3.md | 12 + .../supported-software/p/ProBiS.md | 9 + .../supported-software/p/ProFit.md | 9 + .../supported-software/p/ProbABEL.md | 10 + .../supported-software/p/ProjectQ.md | 9 + .../supported-software/p/ProtHint.md | 10 + .../supported-software/p/ProteinMPNN.md | 9 + .../supported-software/p/Proteinortho.md | 10 + .../supported-software/p/PsiCLASS.md | 9 + .../supported-software/p/PuLP.md | 11 + .../supported-software/p/PyAEDT.md | 9 + .../supported-software/p/PyAMG.md | 13 + .../supported-software/p/PyAPS3.md | 9 + .../supported-software/p/PyAV.md | 9 + .../supported-software/p/PyBerny.md | 11 + .../supported-software/p/PyBioLib.md | 9 + .../supported-software/p/PyCUDA.md | 15 + .../supported-software/p/PyCairo.md | 24 + .../supported-software/p/PyCalib.md | 10 + .../supported-software/p/PyCharm.md | 13 + .../supported-software/p/PyCheMPS2.md | 10 + .../supported-software/p/PyCifRW.md | 9 + .../supported-software/p/PyClone.md | 9 + .../supported-software/p/PyCogent.md | 12 + .../supported-software/p/PyDamage.md | 9 + .../supported-software/p/PyDatastream.md | 9 + .../supported-software/p/PyEVTK.md | 10 + .../supported-software/p/PyEXR.md | 9 + .../supported-software/p/PyFFmpeg.md | 10 + .../supported-software/p/PyFMI.md | 9 + .../supported-software/p/PyFR.md | 10 + .../supported-software/p/PyFoam.md | 9 + .../supported-software/p/PyFrag.md | 10 + .../supported-software/p/PyGEOS.md | 13 + .../supported-software/p/PyGObject.md | 19 + .../supported-software/p/PyGTK.md | 12 + .../supported-software/p/PyGTS.md | 13 + .../supported-software/p/PyGWAS.md | 15 + .../supported-software/p/PyHMMER.md | 9 + .../supported-software/p/PyImageJ.md | 9 + .../supported-software/p/PyInstaller.md | 9 + .../supported-software/p/PyMC.md | 11 + .../supported-software/p/PyMC3.md | 14 + .../supported-software/p/PyMOL.md | 9 + .../supported-software/p/PyNAST.md | 11 + .../supported-software/p/PyOD.md | 10 + .../supported-software/p/PyOpenCL.md | 18 + .../supported-software/p/PyOpenGL.md | 21 + .../supported-software/p/PyPSA.md | 9 + .../supported-software/p/PyPy.md | 9 + .../supported-software/p/PyQt-builder.md | 9 + .../supported-software/p/PyQt.md | 15 + .../supported-software/p/PyQt5.md | 29 + .../supported-software/p/PyQtGraph.md | 18 + .../supported-software/p/PyRETIS.md | 13 + .../supported-software/p/PyRe.md | 10 + .../supported-software/p/PyRosetta.md | 9 + .../supported-software/p/PySAT.md | 10 + .../supported-software/p/PySCF.md | 14 + .../supported-software/p/PySINDy.md | 9 + .../supported-software/p/PySide2.md | 9 + .../supported-software/p/PyStan.md | 12 + .../supported-software/p/PyTables.md | 40 + .../supported-software/p/PyTensor.md | 9 + .../supported-software/p/PyTorch-Geometric.md | 18 + .../supported-software/p/PyTorch-Ignite.md | 12 + .../p/PyTorch-Image-Models.md | 10 + .../supported-software/p/PyTorch-Lightning.md | 17 + .../supported-software/p/PyTorch-bundle.md | 12 + .../supported-software/p/PyTorch.md | 59 + .../supported-software/p/PyTorch3D.md | 9 + .../supported-software/p/PyTorchVideo.md | 10 + .../supported-software/p/PyVCF.md | 9 + .../supported-software/p/PyVCF3.md | 9 + .../supported-software/p/PyVista.md | 9 + .../supported-software/p/PyWBGT.md | 10 + .../supported-software/p/PyWavelets.md | 10 + .../supported-software/p/PyYAML.md | 42 + .../supported-software/p/PyZMQ.md | 30 + .../supported-software/p/PycURL.md | 13 + .../supported-software/p/Pychopper.md | 9 + .../supported-software/p/Pygments.md | 10 + .../supported-software/p/Pyke3.md | 9 + .../supported-software/p/Pylint.md | 15 + .../supported-software/p/Pyomo.md | 14 + .../supported-software/p/Pyro4.md | 9 + .../supported-software/p/Pysam.md | 49 + .../supported-software/p/Pysolar.md | 12 + .../p/Python-bundle-PyPI.md | 10 + .../supported-software/p/Python-bundle.md | 9 + .../supported-software/p/Python.md | 107 + .../supported-software/p/index.md | 438 + .../supported-software/p/p11-kit.md | 16 + .../supported-software/p/p4-phylogenetics.md | 9 + .../supported-software/p/p4est.md | 12 + .../supported-software/p/p4vasp.md | 12 + .../supported-software/p/p7zip.md | 18 + .../supported-software/p/pFUnit.md | 12 + .../supported-software/p/pIRS.md | 9 + .../supported-software/p/packmol.md | 13 + .../supported-software/p/pagmo.md | 12 + .../supported-software/p/pairsnp.md | 9 + .../supported-software/p/paladin.md | 10 + .../supported-software/p/panaroo.md | 11 + .../supported-software/p/pandapower.md | 9 + .../supported-software/p/pandas-datareader.md | 9 + .../supported-software/p/pandas.md | 24 + .../supported-software/p/pangolin.md | 11 + .../supported-software/p/panito.md | 9 + .../p/parallel-fastq-dump.md | 12 + .../supported-software/p/parallel.md | 31 + .../supported-software/p/parameterized.md | 11 + .../supported-software/p/paramiko.md | 9 + .../supported-software/p/parasail.md | 20 + .../supported-software/p/pasta.md | 9 + .../supported-software/p/pastml.md | 9 + .../supported-software/p/patch.md | 9 + .../supported-software/p/patchelf.md | 22 + .../supported-software/p/path.py.md | 14 + .../supported-software/p/pauvre.md | 14 + .../supported-software/p/pbbam.md | 10 + .../supported-software/p/pbcopper.md | 9 + .../supported-software/p/pbdagcon.md | 9 + .../supported-software/p/pbipa.md | 9 + .../supported-software/p/pblat.md | 9 + .../supported-software/p/pbmm2.md | 9 + .../supported-software/p/pbs_python.md | 12 + .../supported-software/p/pdf2docx.md | 9 + .../supported-software/p/pdsh.md | 11 + .../supported-software/p/peakdetect.md | 9 + .../p/perl-app-cpanminus.md | 9 + .../supported-software/p/petsc4py.md | 12 + .../supported-software/p/pfind.md | 9 + .../supported-software/p/pftoolsV3.md | 13 + .../supported-software/p/phonemizer.md | 10 + .../supported-software/p/phono3py.md | 12 + .../supported-software/p/phonopy.md | 21 + .../supported-software/p/photontorch.md | 11 + .../supported-software/p/phototonic.md | 9 + .../supported-software/p/phylokit.md | 9 + .../supported-software/p/phylonaut.md | 9 + .../supported-software/p/phyluce.md | 9 + .../supported-software/p/phyx.md | 10 + .../supported-software/p/piSvM-JSC.md | 9 + .../supported-software/p/piSvM.md | 9 + .../supported-software/p/picard.md | 37 + .../supported-software/p/pigz.md | 24 + .../supported-software/p/pip.md | 12 + .../supported-software/p/pixman.md | 26 + .../supported-software/p/pizzly.md | 9 + .../supported-software/p/pkg-config.md | 38 + .../supported-software/p/pkgconf.md | 18 + .../supported-software/p/pkgconfig.md | 45 + .../supported-software/p/planarity.md | 9 + .../supported-software/p/plantcv.md | 9 + .../supported-software/p/plantri.md | 9 + .../supported-software/p/plc.md | 12 + .../supported-software/p/plinkQC.md | 9 + .../supported-software/p/plinkliftover.md | 9 + .../supported-software/p/plmc.md | 9 + .../supported-software/p/plot1cell.md | 10 + .../supported-software/p/plotly-orca.md | 11 + .../supported-software/p/plotly.md | 10 + .../supported-software/p/plotly.py.md | 19 + .../supported-software/p/plotutils.md | 9 + .../supported-software/p/pmt.md | 13 + .../supported-software/p/pmx.md | 9 + .../supported-software/p/pocl.md | 23 + .../supported-software/p/pod5-file-format.md | 9 + .../supported-software/p/poetry.md | 13 + .../supported-software/p/polars.md | 10 + .../supported-software/p/polymake.md | 11 + .../supported-software/p/pomkl.md | 11 + .../supported-software/p/pompi.md | 11 + .../supported-software/p/poppler.md | 16 + .../supported-software/p/poppunk.md | 9 + .../supported-software/p/popscle.md | 10 + .../supported-software/p/popt.md | 12 + .../supported-software/p/porefoam.md | 9 + .../supported-software/p/poretools.md | 9 + .../supported-software/p/powerlaw.md | 9 + .../supported-software/p/pp-sketchlib.md | 9 + .../supported-software/p/ppl.md | 10 + .../supported-software/p/pplacer.md | 9 + .../supported-software/p/pplpy.md | 13 + .../supported-software/p/preCICE.md | 12 + .../supported-software/p/premailer.md | 9 + .../supported-software/p/preseq.md | 15 + .../supported-software/p/presto.md | 12 + .../supported-software/p/pretty-yaml.md | 12 + .../supported-software/p/primecount.md | 9 + .../supported-software/p/primecountpy.md | 9 + .../supported-software/p/printproto.md | 9 + .../supported-software/p/prodigal.md | 20 + .../supported-software/p/prokka.md | 19 + .../supported-software/p/prompt-toolkit.md | 16 + .../supported-software/p/proovread.md | 9 + .../supported-software/p/propy.md | 9 + .../supported-software/p/protobuf-python.md | 35 + .../supported-software/p/protobuf.md | 38 + .../supported-software/p/protozero.md | 10 + .../supported-software/p/pscom.md | 11 + .../supported-software/p/psmc.md | 11 + .../supported-software/p/psmpi.md | 11 + .../supported-software/p/psmpi2.md | 10 + .../supported-software/p/psrecord.md | 12 + .../supported-software/p/pstoedit.md | 11 + .../supported-software/p/psutil.md | 21 + .../supported-software/p/psycopg.md | 10 + .../supported-software/p/psycopg2.md | 15 + .../supported-software/p/ptemcee.md | 9 + .../supported-software/p/pubtcrs.md | 9 + .../supported-software/p/pugixml.md | 11 + .../supported-software/p/pullseq.md | 11 + .../supported-software/p/purge_dups.md | 9 + .../supported-software/p/pv.md | 9 + .../supported-software/p/py-aiger-bdd.md | 9 + .../supported-software/p/py-aiger.md | 10 + .../supported-software/p/py-c3d.md | 9 + .../supported-software/p/py-cpuinfo.md | 15 + .../supported-software/p/py.md | 10 + .../supported-software/p/py3Dmol.md | 10 + .../supported-software/p/pyABC.md | 9 + .../supported-software/p/pyBigWig.md | 17 + .../supported-software/p/pyEGA3.md | 13 + .../supported-software/p/pyFAI.md | 13 + .../supported-software/p/pyFFTW.md | 13 + .../supported-software/p/pyGAM.md | 9 + .../supported-software/p/pyGIMLi.md | 10 + .../supported-software/p/pyGenomeTracks.md | 10 + .../supported-software/p/pyMannKendall.md | 9 + .../supported-software/p/pySCENIC.md | 12 + .../supported-software/p/pyScaf.md | 9 + .../supported-software/p/pyWannier90.md | 10 + .../supported-software/p/pyXDF.md | 10 + .../supported-software/p/pybedtools.md | 22 + .../supported-software/p/pybind11-stubgen.md | 9 + .../supported-software/p/pybind11.md | 20 + .../supported-software/p/pybinding.md | 9 + .../supported-software/p/pyccel.md | 9 + .../supported-software/p/pycma.md | 9 + .../supported-software/p/pycoQC.md | 9 + .../supported-software/p/pycocotools.md | 16 + .../supported-software/p/pycodestyle.md | 11 + .../supported-software/p/pycubescd.md | 9 + .../supported-software/p/pydantic.md | 15 + .../supported-software/p/pydicom-seg.md | 9 + .../supported-software/p/pydicom.md | 17 + .../supported-software/p/pydlpoly.md | 10 + .../supported-software/p/pydot.md | 15 + .../supported-software/p/pyenchant.md | 9 + .../supported-software/p/pyfaidx.md | 16 + .../supported-software/p/pyfasta.md | 9 + .../supported-software/p/pyfits.md | 9 + .../supported-software/p/pygame.md | 10 + .../supported-software/p/pygccxml.md | 10 + .../supported-software/p/pygmo.md | 12 + .../supported-software/p/pygraphviz.md | 13 + .../supported-software/p/pygrib.md | 9 + .../supported-software/p/pyhdf.md | 9 + .../supported-software/p/pyiron.md | 11 + .../supported-software/p/pylift.md | 10 + .../supported-software/p/pylipid.md | 9 + .../supported-software/p/pymatgen-db.md | 9 + .../supported-software/p/pymatgen.md | 17 + .../supported-software/p/pymbar.md | 10 + .../supported-software/p/pymca.md | 13 + .../supported-software/p/pymemcache.md | 10 + .../supported-software/p/pyobjcryst.md | 10 + .../supported-software/p/pyodbc.md | 9 + .../supported-software/p/pyparsing.md | 11 + .../supported-software/p/pyperf.md | 10 + .../supported-software/p/pyplusplus.md | 10 + .../supported-software/p/pypmt.md | 12 + .../supported-software/p/pyproj.md | 18 + .../supported-software/p/pyqstem.md | 12 + .../supported-software/p/pyradiomics.md | 10 + .../supported-software/p/pyringe.md | 9 + .../supported-software/p/pyro-api.md | 9 + .../supported-software/p/pyro-ppl.md | 14 + .../supported-software/p/pysamstats.md | 9 + .../supported-software/p/pyseer.md | 9 + .../supported-software/p/pysheds.md | 9 + .../supported-software/p/pyshp.md | 10 + .../supported-software/p/pyslim.md | 10 + .../supported-software/p/pysndfx.md | 9 + .../supported-software/p/pyspoa.md | 15 + .../supported-software/p/pysqlite.md | 9 + .../supported-software/p/pysteps.md | 9 + .../supported-software/p/pystran.md | 9 + .../supported-software/p/pytesseract.md | 9 + .../supported-software/p/pytest-benchmark.md | 9 + .../supported-software/p/pytest-cpp.md | 9 + .../p/pytest-flakefinder.md | 12 + .../p/pytest-rerunfailures.md | 12 + .../supported-software/p/pytest-shard.md | 12 + .../supported-software/p/pytest-workflow.md | 10 + .../supported-software/p/pytest-xdist.md | 14 + .../supported-software/p/pytest.md | 29 + .../supported-software/p/pythermalcomfort.md | 9 + .../p/python-Levenshtein.md | 11 + .../supported-software/p/python-casacore.md | 9 + .../supported-software/p/python-docx.md | 10 + .../supported-software/p/python-hl7.md | 9 + .../supported-software/p/python-igraph.md | 19 + .../p/python-irodsclient.md | 11 + .../supported-software/p/python-isal.md | 15 + .../supported-software/p/python-libsbml.md | 11 + .../supported-software/p/python-louvain.md | 11 + .../supported-software/p/python-mujoco.md | 10 + .../supported-software/p/python-parasail.md | 22 + .../p/python-telegram-bot.md | 9 + .../p/python-weka-wrapper3.md | 9 + .../supported-software/p/python-xxhash.md | 13 + .../supported-software/p/pythran.md | 9 + .../supported-software/p/pytorch-3dunet.md | 9 + .../p/pytorch-CycleGAN-pix2pix.md | 9 + .../supported-software/q/Q6.md | 9 + .../supported-software/q/QCA.md | 14 + .../supported-software/q/QCG-PilotJob.md | 12 + .../supported-software/q/QCxMS.md | 9 + .../supported-software/q/QD.md | 10 + .../supported-software/q/QDD.md | 9 + .../supported-software/q/QEMU.md | 9 + .../supported-software/q/QGIS.md | 12 + .../supported-software/q/QIIME.md | 9 + .../supported-software/q/QIIME2.md | 19 + .../supported-software/q/QJson.md | 12 + .../supported-software/q/QML.md | 9 + .../supported-software/q/QScintilla.md | 14 + .../supported-software/q/QTLtools.md | 10 + .../supported-software/q/QUAST.md | 19 + .../supported-software/q/Qhull.md | 27 + .../supported-software/q/Qiskit.md | 11 + .../supported-software/q/Qt.md | 26 + .../supported-software/q/Qt5.md | 38 + .../supported-software/q/Qt5Webkit.md | 12 + .../supported-software/q/Qt6.md | 10 + .../supported-software/q/QtKeychain.md | 11 + .../supported-software/q/QtPy.md | 13 + .../supported-software/q/Qtconsole.md | 14 + .../supported-software/q/QuPath.md | 9 + .../supported-software/q/QuTiP.md | 11 + .../supported-software/q/QuaZIP.md | 9 + .../supported-software/q/Qualimap.md | 11 + .../supported-software/q/Quandl.md | 12 + .../supported-software/q/QuantumESPRESSO.md | 43 + .../supported-software/q/QuickFF.md | 14 + .../supported-software/q/QuickPIC.md | 9 + .../supported-software/q/QuickTree.md | 9 + .../supported-software/q/Quip.md | 9 + .../supported-software/q/Quorum.md | 9 + .../supported-software/q/Qwt.md | 19 + .../supported-software/q/QwtPolar.md | 12 + .../supported-software/q/index.md | 48 + .../supported-software/q/q2-krona.md | 9 + .../supported-software/q/qcat.md | 12 + .../supported-software/q/qcint.md | 9 + .../supported-software/q/qforce.md | 9 + .../supported-software/q/qmflows.md | 9 + .../supported-software/q/qnorm.md | 10 + .../supported-software/q/qpth.md | 9 + .../supported-software/q/qrupdate.md | 21 + .../supported-software/q/qtop.md | 9 + .../supported-software/r/R-INLA.md | 9 + .../supported-software/r/R-MXM.md | 9 + .../r/R-bundle-Bioconductor.md | 28 + .../supported-software/r/R-bundle-CRAN.md | 9 + .../supported-software/r/R-keras.md | 15 + .../supported-software/r/R-opencv.md | 9 + .../supported-software/r/R-tesseract.md | 10 + .../supported-software/r/R-transport.md | 9 + .../supported-software/r/R.md | 55 + .../supported-software/r/R2jags.md | 9 + .../supported-software/r/RAPSearch2.md | 9 + .../supported-software/r/RASPA2.md | 11 + .../supported-software/r/RAxML-NG.md | 16 + .../supported-software/r/RAxML.md | 27 + .../supported-software/r/RBFOpt.md | 10 + .../supported-software/r/RCall.md | 9 + .../supported-software/r/RDFlib.md | 14 + .../supported-software/r/RDKit.md | 17 + .../supported-software/r/RDP-Classifier.md | 12 + .../supported-software/r/RE2.md | 16 + .../supported-software/r/RECON.md | 10 + .../supported-software/r/RELION.md | 22 + .../supported-software/r/REMORA.md | 13 + .../supported-software/r/RERconverge.md | 10 + .../supported-software/r/RFdiffusion.md | 10 + .../supported-software/r/RHEIA.md | 9 + .../supported-software/r/RInChI.md | 9 + .../supported-software/r/RLCard.md | 9 + .../supported-software/r/RMBlast.md | 14 + .../supported-software/r/RNA-Bloom.md | 11 + .../supported-software/r/RNA-SeQC.md | 13 + .../supported-software/r/RNAIndel.md | 10 + .../supported-software/r/RNAclust.md | 10 + .../supported-software/r/RNAcode.md | 9 + .../supported-software/r/RNAmmer.md | 9 + .../supported-software/r/RNAz.md | 10 + .../supported-software/r/ROCR-Runtime.md | 9 + .../r/ROCT-Thunk-Interface.md | 9 + .../r/ROCm-CompilerSupport.md | 9 + .../supported-software/r/ROCm.md | 9 + .../supported-software/r/ROI_PAC.md | 9 + .../supported-software/r/ROME.md | 9 + .../supported-software/r/ROOT.md | 25 + .../supported-software/r/RPostgreSQL.md | 10 + .../supported-software/r/RQGIS3.md | 9 + .../supported-software/r/RSEM.md | 20 + .../supported-software/r/RSeQC.md | 14 + .../supported-software/r/RStan.md | 11 + .../supported-software/r/RStudio-Server.md | 15 + .../supported-software/r/RTG-Tools.md | 10 + .../supported-software/r/RaGOO.md | 9 + .../supported-software/r/Racon.md | 20 + .../supported-software/r/RagTag.md | 10 + .../supported-software/r/Ragout.md | 10 + .../supported-software/r/RapidJSON.md | 18 + .../supported-software/r/Raptor.md | 9 + .../supported-software/r/Rascaf.md | 9 + .../supported-software/r/Ratatosk.md | 9 + .../supported-software/r/Raven.md | 9 + .../supported-software/r/Ray-assembler.md | 9 + .../supported-software/r/Ray-project.md | 14 + .../supported-software/r/Raysect.md | 11 + .../supported-software/r/Rcorrector.md | 9 + .../supported-software/r/RcppGSL.md | 9 + .../supported-software/r/ReFrame.md | 35 + .../supported-software/r/ReMatCh.md | 9 + .../supported-software/r/Reads2snp.md | 9 + .../supported-software/r/Reapr.md | 9 + .../supported-software/r/ReaxFF.md | 10 + .../supported-software/r/Red.md | 9 + .../supported-software/r/Redis.md | 13 + .../supported-software/r/Redundans.md | 9 + .../supported-software/r/RegTools.md | 12 + .../supported-software/r/Relate.md | 9 + .../supported-software/r/RepastHPC.md | 9 + .../supported-software/r/RepeatMasker.md | 16 + .../supported-software/r/RepeatModeler.md | 10 + .../supported-software/r/RepeatScout.md | 10 + .../supported-software/r/ResistanceGA.md | 9 + .../supported-software/r/Restrander.md | 9 + .../supported-software/r/RevBayes.md | 11 + .../supported-software/r/Rgurobi.md | 10 + .../supported-software/r/RheoTool.md | 9 + .../supported-software/r/Rhodium.md | 9 + .../supported-software/r/Rivet.md | 10 + .../supported-software/r/Rmath.md | 10 + .../supported-software/r/RnBeads.md | 10 + .../supported-software/r/Roary.md | 13 + .../supported-software/r/Rosetta.md | 11 + .../supported-software/r/Rtree.md | 11 + .../supported-software/r/Ruby-Tk.md | 10 + .../supported-software/r/Ruby.md | 30 + .../supported-software/r/Rust.md | 36 + .../supported-software/r/index.md | 140 + .../supported-software/r/rCUDA.md | 10 + .../supported-software/r/rMATS-turbo.md | 10 + .../supported-software/r/radeontop.md | 9 + .../supported-software/r/radian.md | 9 + .../supported-software/r/rampart.md | 10 + .../supported-software/r/randfold.md | 10 + .../supported-software/r/randrproto.md | 10 + .../supported-software/r/rapidNJ.md | 9 + .../supported-software/r/rapidcsv.md | 10 + .../supported-software/r/rapidtide.md | 9 + .../supported-software/r/rasterio.md | 14 + .../supported-software/r/rasterstats.md | 10 + .../supported-software/r/rclone.md | 15 + .../supported-software/r/re2c.md | 18 + .../supported-software/r/redis-py.md | 12 + .../supported-software/r/regionmask.md | 12 + .../supported-software/r/remake.md | 9 + .../supported-software/r/renderproto.md | 12 + .../supported-software/r/request.md | 9 + .../supported-software/r/requests.md | 14 + .../supported-software/r/resolos.md | 9 + .../supported-software/r/rethinking.md | 9 + .../supported-software/r/retworkx.md | 9 + .../supported-software/r/rgdal.md | 15 + .../supported-software/r/rgeos.md | 13 + .../supported-software/r/rhdf5.md | 10 + .../supported-software/r/rickflow.md | 10 + .../supported-software/r/rioxarray.md | 14 + .../supported-software/r/ripunzip.md | 9 + .../supported-software/r/rising.md | 12 + .../supported-software/r/rjags.md | 24 + .../supported-software/r/rmarkdown.md | 9 + .../supported-software/r/rnaQUAST.md | 11 + .../supported-software/r/rocm-cmake.md | 9 + .../supported-software/r/rocm-smi.md | 11 + .../supported-software/r/rocminfo.md | 9 + .../supported-software/r/root_numpy.md | 9 + .../supported-software/r/rootpy.md | 10 + .../supported-software/r/rpmrebuild.md | 9 + .../supported-software/r/rpy2.md | 14 + .../supported-software/r/rstanarm.md | 9 + .../supported-software/r/ruamel.yaml.md | 14 + .../supported-software/r/ruffus.md | 10 + .../supported-software/r/ruptures.md | 9 + .../supported-software/r/rustworkx.md | 9 + .../supported-software/s/S-Lang.md | 9 + .../supported-software/s/S4.md | 9 + .../supported-software/s/SAGE.md | 10 + .../supported-software/s/SALMON-TDDFT.md | 10 + .../supported-software/s/SALib.md | 9 + .../supported-software/s/SAMtools.md | 69 + .../supported-software/s/SAP.md | 9 + .../supported-software/s/SAS.md | 9 + .../supported-software/s/SBCL.md | 12 + .../supported-software/s/SCALCE.md | 9 + .../supported-software/s/SCENIC.md | 11 + .../supported-software/s/SCGid.md | 9 + .../supported-software/s/SCIP.md | 9 + .../supported-software/s/SCIPhI.md | 9 + .../supported-software/s/SCOOP.md | 13 + .../supported-software/s/SCOTCH.md | 41 + .../supported-software/s/SCReadCounts.md | 9 + .../supported-software/s/SCnorm.md | 9 + .../supported-software/s/SCons.md | 40 + .../supported-software/s/SCopeLoomR.md | 10 + .../supported-software/s/SDCC.md | 9 + .../supported-software/s/SDL.md | 9 + .../supported-software/s/SDL2.md | 25 + .../supported-software/s/SDL2_gfx.md | 9 + .../supported-software/s/SDL2_image.md | 11 + .../supported-software/s/SDL2_mixer.md | 10 + .../supported-software/s/SDL2_ttf.md | 10 + .../supported-software/s/SDL_image.md | 9 + .../supported-software/s/SDSL.md | 9 + .../supported-software/s/SEACells.md | 9 + .../supported-software/s/SECAPR.md | 9 + .../supported-software/s/SELFIES.md | 9 + .../supported-software/s/SEPP.md | 15 + .../supported-software/s/SHAP.md | 12 + .../supported-software/s/SHAPEIT.md | 10 + .../supported-software/s/SHAPEIT4.md | 14 + .../supported-software/s/SHORE.md | 9 + .../supported-software/s/SHTns.md | 10 + .../supported-software/s/SICER2.md | 9 + .../supported-software/s/SIMPLE.md | 10 + .../supported-software/s/SIONlib.md | 22 + .../supported-software/s/SIP.md | 23 + .../supported-software/s/SISSO++.md | 9 + .../supported-software/s/SISSO.md | 10 + .../supported-software/s/SKESA.md | 11 + .../supported-software/s/SLATEC.md | 11 + .../supported-software/s/SLEPc.md | 21 + .../supported-software/s/SLiM.md | 11 + .../supported-software/s/SMAP.md | 9 + .../supported-software/s/SMARTdenovo.md | 9 + .../supported-software/s/SMC++.md | 9 + .../supported-software/s/SMRT-Link.md | 11 + .../supported-software/s/SMV.md | 9 + .../supported-software/s/SNAP-ESA-python.md | 10 + .../supported-software/s/SNAP-ESA.md | 10 + .../supported-software/s/SNAP-HMM.md | 13 + .../supported-software/s/SNAP.md | 12 + .../supported-software/s/SNAPE-pooled.md | 10 + .../supported-software/s/SNPhylo.md | 12 + .../supported-software/s/SNPomatic.md | 9 + .../supported-software/s/SOAPaligner.md | 9 + .../supported-software/s/SOAPdenovo-Trans.md | 10 + .../supported-software/s/SOAPdenovo2.md | 13 + .../supported-software/s/SOAPfuse.md | 10 + .../supported-software/s/SOCI.md | 15 + .../supported-software/s/SPAdes.md | 30 + .../supported-software/s/SPEI.md | 9 + .../supported-software/s/SPLASH.md | 9 + .../supported-software/s/SPM.md | 10 + .../supported-software/s/SPOOLES.md | 11 + .../supported-software/s/SPOTPY.md | 9 + .../supported-software/s/SPRNG.md | 9 + .../supported-software/s/SQLAlchemy.md | 11 + .../supported-software/s/SQLite.md | 48 + .../supported-software/s/SRA-Toolkit.md | 26 + .../supported-software/s/SRPRISM.md | 11 + .../supported-software/s/SRST2.md | 9 + .../supported-software/s/SSAHA2.md | 10 + .../supported-software/s/SSN.md | 9 + .../supported-software/s/SSPACE_Basic.md | 11 + .../supported-software/s/SSW.md | 14 + .../supported-software/s/STACEY.md | 9 + .../supported-software/s/STAMP.md | 11 + .../supported-software/s/STAR-CCM+.md | 23 + .../supported-software/s/STAR-Fusion.md | 11 + .../supported-software/s/STAR.md | 46 + .../supported-software/s/STEAK.md | 10 + .../supported-software/s/STIR.md | 9 + .../supported-software/s/STREAM.md | 16 + .../supported-software/s/STRUMPACK.md | 10 + .../supported-software/s/STRique.md | 9 + .../supported-software/s/SUMACLUST.md | 9 + .../supported-software/s/SUMATRA.md | 9 + .../supported-software/s/SUMO.md | 12 + .../supported-software/s/SUNDIALS.md | 31 + .../supported-software/s/SUPPA.md | 9 + .../supported-software/s/SURVIVOR.md | 10 + .../supported-software/s/SVDetect.md | 10 + .../supported-software/s/SVDquest.md | 9 + .../supported-software/s/SVG.md | 12 + .../supported-software/s/SVIM.md | 9 + .../supported-software/s/SVclone.md | 9 + .../supported-software/s/SWASH.md | 11 + .../supported-software/s/SWAT+.md | 10 + .../supported-software/s/SWIG.md | 49 + .../supported-software/s/SWIPE.md | 9 + .../supported-software/s/SYMMETRICA.md | 10 + .../supported-software/s/SYMPHONY.md | 9 + .../supported-software/s/Sabre.md | 9 + .../supported-software/s/Safetensors.md | 10 + .../supported-software/s/Sailfish.md | 10 + .../supported-software/s/Salmon.md | 23 + .../supported-software/s/Sambamba.md | 13 + .../supported-software/s/Samcef.md | 9 + .../supported-software/s/Satsuma2.md | 9 + .../supported-software/s/Saxon-HE.md | 12 + .../supported-software/s/ScaFaCoS.md | 16 + .../supported-software/s/ScaLAPACK.md | 55 + .../supported-software/s/Scalasca.md | 14 + .../supported-software/s/Scalene.md | 13 + .../supported-software/s/Schrodinger.md | 13 + .../supported-software/s/SciPy-bundle.md | 47 + .../supported-software/s/SciTools-Iris.md | 10 + .../supported-software/s/ScientificPython.md | 10 + .../supported-software/s/Scoary.md | 10 + .../supported-software/s/Score-P.md | 30 + .../supported-software/s/Scrappie.md | 9 + .../supported-software/s/Scythe.md | 9 + .../supported-software/s/SeaView.md | 9 + .../supported-software/s/Seaborn.md | 46 + .../supported-software/s/SearchGUI.md | 9 + .../supported-software/s/Seeder.md | 9 + .../supported-software/s/SeisSol.md | 9 + .../supported-software/s/SelEstim.md | 9 + .../supported-software/s/SemiBin.md | 10 + .../s/Sentence-Transformers.md | 9 + .../supported-software/s/SentencePiece.md | 15 + .../supported-software/s/Seq-Gen.md | 9 + .../supported-software/s/SeqAn.md | 17 + .../supported-software/s/SeqAn3.md | 9 + .../supported-software/s/SeqKit.md | 13 + .../supported-software/s/SeqLib.md | 13 + .../supported-software/s/SeqPrep.md | 9 + .../supported-software/s/Seqmagick.md | 11 + .../supported-software/s/Serf.md | 18 + .../supported-software/s/Seurat.md | 22 + .../supported-software/s/SeuratData.md | 9 + .../supported-software/s/SeuratDisk.md | 10 + .../supported-software/s/SeuratWrappers.md | 10 + .../supported-software/s/Shannon.md | 9 + .../supported-software/s/Shapely.md | 20 + .../supported-software/s/Shasta.md | 9 + .../supported-software/s/ShengBTE.md | 10 + .../supported-software/s/Short-Pair.md | 10 + .../supported-software/s/SiNVICT.md | 9 + .../supported-software/s/Sibelia.md | 11 + .../supported-software/s/Siesta.md | 23 + .../supported-software/s/SignalP.md | 13 + .../supported-software/s/SimNIBS.md | 10 + .../supported-software/s/SimPEG.md | 12 + .../supported-software/s/SimVascular.md | 9 + .../supported-software/s/Simple-DFTD3.md | 9 + .../supported-software/s/SimpleElastix.md | 11 + .../supported-software/s/SimpleITK.md | 18 + .../supported-software/s/Simstrat.md | 9 + .../supported-software/s/SingleM.md | 9 + .../supported-software/s/Singular.md | 12 + .../supported-software/s/SlamDunk.md | 9 + .../supported-software/s/Smoldyn.md | 9 + .../supported-software/s/Sniffles.md | 9 + .../supported-software/s/SoPlex.md | 9 + .../supported-software/s/SoQt.md | 10 + .../supported-software/s/SoX.md | 11 + .../supported-software/s/SoXt.md | 9 + .../supported-software/s/SolexaQA++.md | 9 + .../supported-software/s/SortMeRNA.md | 10 + .../supported-software/s/SoupX.md | 9 + .../supported-software/s/SpaceRanger.md | 16 + .../supported-software/s/Spack.md | 15 + .../supported-software/s/Spark.md | 34 + .../supported-software/s/SpatialDE.md | 9 + .../supported-software/s/SpectrA.md | 12 + .../supported-software/s/Sphinx-RTD-Theme.md | 9 + .../supported-software/s/Sphinx.md | 19 + .../supported-software/s/SpiceyPy.md | 13 + .../supported-software/s/SpiecEasi.md | 11 + .../supported-software/s/SplAdder.md | 9 + .../supported-software/s/SpliceMap.md | 9 + .../supported-software/s/Spyder.md | 13 + .../supported-software/s/SqueezeMeta.md | 11 + .../supported-software/s/Squidpy.md | 10 + .../supported-software/s/StaMPS.md | 9 + .../supported-software/s/Stack.md | 11 + .../supported-software/s/Stacks.md | 33 + .../supported-software/s/Stampy.md | 10 + .../supported-software/s/Stata.md | 11 + .../supported-software/s/Statistics-R.md | 9 + .../supported-software/s/Strainberry.md | 9 + .../supported-software/s/StringTie.md | 24 + .../supported-software/s/Structure.md | 13 + .../s/Structure_threader.md | 9 + .../supported-software/s/SuAVE-biomat.md | 9 + .../supported-software/s/Subread.md | 19 + .../supported-software/s/Subversion.md | 18 + .../supported-software/s/SuiteSparse.md | 51 + .../supported-software/s/SunPy.md | 9 + .../supported-software/s/SuperLU.md | 19 + .../supported-software/s/SuperLU_DIST.md | 14 + .../supported-software/s/SyRI.md | 9 + .../supported-software/s/SymEngine-python.md | 10 + .../supported-software/s/SymEngine.md | 12 + .../supported-software/s/Szip.md | 36 + .../supported-software/s/index.md | 340 + .../supported-software/s/s3fs.md | 9 + .../supported-software/s/safestringlib.md | 9 + .../supported-software/s/samblaster.md | 12 + .../supported-software/s/samclip.md | 12 + .../supported-software/s/samplot.md | 9 + .../supported-software/s/sansa.md | 9 + .../supported-software/s/savvy.md | 9 + .../supported-software/s/sbt.md | 12 + .../supported-software/s/scArches.md | 10 + .../supported-software/s/scCODA.md | 10 + .../supported-software/s/scGSVA.md | 9 + .../supported-software/s/scGeneFit.md | 9 + .../supported-software/s/scHiCExplorer.md | 9 + .../supported-software/s/scPred.md | 9 + .../supported-software/s/scVelo.md | 11 + .../supported-software/s/scanpy.md | 15 + .../supported-software/s/sceasy.md | 9 + .../supported-software/s/sciClone.md | 9 + .../supported-software/s/scib-metrics.md | 9 + .../supported-software/s/scib.md | 11 + .../supported-software/s/scikit-allel.md | 12 + .../supported-software/s/scikit-bio.md | 14 + .../supported-software/s/scikit-build-core.md | 10 + .../supported-software/s/scikit-build.md | 25 + .../supported-software/s/scikit-cuda.md | 9 + .../supported-software/s/scikit-extremes.md | 9 + .../supported-software/s/scikit-image.md | 36 + .../supported-software/s/scikit-learn.md | 73 + .../supported-software/s/scikit-lego.md | 10 + .../supported-software/s/scikit-misc.md | 11 + .../supported-software/s/scikit-multilearn.md | 9 + .../supported-software/s/scikit-optimize.md | 13 + .../supported-software/s/scikit-plot.md | 9 + .../supported-software/s/scikit-uplift.md | 9 + .../supported-software/s/scipy.md | 13 + .../supported-software/s/scp.md | 11 + .../supported-software/s/scrublet.md | 9 + .../supported-software/s/scvi-tools.md | 10 + .../supported-software/s/segemehl.md | 17 + .../supported-software/s/segment-anything.md | 9 + .../s/segmentation-models-pytorch.md | 10 + .../s/segmentation-models.md | 10 + .../supported-software/s/semla.md | 9 + .../supported-software/s/sentinelsat.md | 9 + .../supported-software/s/sep.md | 10 + .../supported-software/s/seq2HLA.md | 10 + .../supported-software/s/seqtk.md | 21 + .../supported-software/s/setuptools-rust.md | 10 + .../supported-software/s/setuptools.md | 11 + .../supported-software/s/sf.md | 9 + .../supported-software/s/sfftk.md | 9 + .../supported-software/s/shapAAR.md | 9 + .../supported-software/s/sharutils.md | 9 + .../supported-software/s/shift.md | 9 + .../supported-software/s/shovill.md | 11 + .../supported-software/s/shrinkwrap.md | 10 + .../supported-software/s/sickle.md | 10 + .../supported-software/s/silhouetteRank.md | 9 + .../supported-software/s/silx.md | 13 + .../supported-software/s/simanneal.md | 9 + .../supported-software/s/simint.md | 9 + .../supported-software/s/simpy.md | 10 + .../supported-software/s/sinto.md | 9 + .../supported-software/s/siscone.md | 10 + .../supported-software/s/sketchmap.md | 9 + .../supported-software/s/skewer.md | 9 + .../supported-software/s/sklearn-pandas.md | 9 + .../supported-software/s/sklearn-som.md | 9 + .../supported-software/s/skorch.md | 12 + .../supported-software/s/sktime.md | 9 + .../supported-software/s/slepc4py.md | 11 + .../supported-software/s/sleuth.md | 10 + .../supported-software/s/slidingwindow.md | 10 + .../supported-software/s/slow5tools.md | 9 + .../supported-software/s/slurm-drmaa.md | 9 + .../supported-software/s/smafa.md | 9 + .../s/smallgenomeutilities.md | 9 + .../supported-software/s/smfishHmrf.md | 9 + .../supported-software/s/smithwaterman.md | 14 + .../supported-software/s/smooth-topk.md | 10 + .../supported-software/s/snakemake.md | 20 + .../supported-software/s/snaphu.md | 11 + .../supported-software/s/snappy.md | 26 + .../supported-software/s/snippy.md | 12 + .../supported-software/s/snp-sites.md | 12 + .../supported-software/s/snpEff.md | 15 + .../supported-software/s/socat.md | 9 + .../supported-software/s/solo.md | 9 + .../supported-software/s/sonic.md | 10 + .../supported-software/s/spaCy.md | 9 + .../supported-software/s/spaln.md | 13 + .../s/sparse-neighbors-search.md | 9 + .../supported-software/s/sparsehash.md | 20 + .../supported-software/s/spatialreg.md | 10 + .../supported-software/s/spdlog.md | 13 + .../supported-software/s/spectral.methods.md | 10 + .../supported-software/s/speech_tools.md | 10 + .../supported-software/s/spektral.md | 9 + .../supported-software/s/spglib-python.md | 32 + .../supported-software/s/spglib.md | 14 + .../supported-software/s/split-seq.md | 9 + .../supported-software/s/splitRef.md | 9 + .../supported-software/s/spoa.md | 17 + .../supported-software/s/sradownloader.md | 9 + .../supported-software/s/stardist.md | 10 + .../supported-software/s/starparser.md | 9 + .../supported-software/s/stars.md | 9 + .../supported-software/s/statsmodels.md | 32 + .../supported-software/s/stpipeline.md | 11 + .../supported-software/s/strace.md | 10 + .../supported-software/s/strelka.md | 12 + .../supported-software/s/stripy.md | 9 + .../supported-software/s/suave.md | 9 + .../supported-software/s/subset-bam.md | 9 + .../supported-software/s/subunit.md | 9 + .../supported-software/s/suds.md | 9 + .../supported-software/s/supermagic.md | 10 + .../supported-software/s/supernova.md | 10 + .../supported-software/s/svist4get.md | 10 + .../supported-software/s/swarm.md | 9 + .../supported-software/s/swifter.md | 10 + .../supported-software/s/swissknife.md | 9 + .../supported-software/s/sympy.md | 30 + .../supported-software/s/synapseclient.md | 9 + .../supported-software/s/synthcity.md | 9 + .../supported-software/s/sysbench.md | 9 + .../supported-software/t/T-Coffee.md | 10 + .../supported-software/t/TALON.md | 9 + .../supported-software/t/TALYS.md | 10 + .../supported-software/t/TAMkin.md | 17 + .../supported-software/t/TBA.md | 9 + .../supported-software/t/TCC.md | 9 + .../supported-software/t/TCLAP.md | 13 + .../supported-software/t/TELEMAC-MASCARET.md | 9 + .../supported-software/t/TEToolkit.md | 9 + .../supported-software/t/TEtranscripts.md | 9 + .../supported-software/t/TF-COMB.md | 9 + .../supported-software/t/TFEA.md | 9 + .../supported-software/t/THetA.md | 9 + .../supported-software/t/TINKER.md | 11 + .../supported-software/t/TM-align.md | 11 + .../supported-software/t/TN93.md | 9 + .../supported-software/t/TOBIAS.md | 11 + .../supported-software/t/TOML-Fortran.md | 14 + .../supported-software/t/TOPAS.md | 9 + .../supported-software/t/TRAVIS-Analyzer.md | 10 + .../supported-software/t/TRF.md | 14 + .../supported-software/t/TRIQS-cthyb.md | 12 + .../supported-software/t/TRIQS-dft_tools.md | 12 + .../supported-software/t/TRIQS-tprf.md | 12 + .../supported-software/t/TRIQS.md | 13 + .../supported-software/t/TRUST.md | 9 + .../supported-software/t/TRUST4.md | 11 + .../supported-software/t/TVB-deps.md | 9 + .../supported-software/t/TVB.md | 10 + .../supported-software/t/TWL-NINJA.md | 10 + .../supported-software/t/TXR.md | 9 + .../supported-software/t/TagDust.md | 10 + .../supported-software/t/TagLib.md | 9 + .../supported-software/t/Taiyaki.md | 10 + .../supported-software/t/Tapenade.md | 9 + .../supported-software/t/Tcl.md | 45 + .../supported-software/t/Telescope.md | 9 + .../supported-software/t/Teneto.md | 9 + .../t/TensorFlow-Datasets.md | 10 + .../t/TensorFlow-Graphics.md | 9 + .../supported-software/t/TensorFlow.md | 93 + .../supported-software/t/TensorRT.md | 10 + .../t/Tesla-Deployment-Kit.md | 9 + .../supported-software/t/TetGen.md | 10 + .../supported-software/t/Text-CSV.md | 9 + .../supported-software/t/Theano.md | 40 + .../supported-software/t/ThemisPy.md | 9 + .../supported-software/t/TiCCutils.md | 11 + .../supported-software/t/TiMBL.md | 11 + .../supported-software/t/Tika.md | 9 + .../supported-software/t/TinyDB.md | 9 + .../supported-software/t/TinyXML.md | 10 + .../supported-software/t/Tk.md | 46 + .../supported-software/t/Tkinter.md | 49 + .../supported-software/t/ToFu.md | 18 + .../supported-software/t/Togl.md | 12 + .../supported-software/t/Tombo.md | 9 + .../supported-software/t/TopHat.md | 22 + .../supported-software/t/TorchIO.md | 9 + .../supported-software/t/TotalView.md | 11 + .../supported-software/t/Tracer.md | 9 + .../supported-software/t/TransDecoder.md | 10 + .../supported-software/t/TranscriptClean.md | 9 + .../supported-software/t/Transformers.md | 15 + .../supported-software/t/Transrate.md | 9 + .../supported-software/t/TreeMix.md | 11 + .../supported-software/t/TreeShrink.md | 9 + .../supported-software/t/Triangle.md | 15 + .../supported-software/t/Trilinos.md | 15 + .../supported-software/t/Trim_Galore.md | 26 + .../supported-software/t/Trimmomatic.md | 15 + .../supported-software/t/Trinity.md | 22 + .../supported-software/t/Trinotate.md | 9 + .../supported-software/t/Triplexator.md | 9 + .../supported-software/t/Triton.md | 9 + .../supported-software/t/Trycycler.md | 11 + .../supported-software/t/TurboVNC.md | 10 + .../supported-software/t/index.md | 136 + .../supported-software/t/t-SNE-CUDA.md | 9 + .../supported-software/t/tMAE.md | 10 + .../supported-software/t/tRNAscan-SE.md | 10 + .../supported-software/t/tabix.md | 19 + .../supported-software/t/tabixpp.md | 14 + .../supported-software/t/taco.md | 9 + .../supported-software/t/tantan.md | 9 + .../supported-software/t/task-spooler.md | 9 + .../supported-software/t/taxator-tk.md | 11 + .../supported-software/t/tbb.md | 38 + .../supported-software/t/tbl2asn.md | 13 + .../supported-software/t/tcsh.md | 21 + .../supported-software/t/tecplot360ex.md | 9 + .../supported-software/t/tensorboard.md | 11 + .../supported-software/t/tensorboardX.md | 15 + .../t/tensorflow-compression.md | 9 + .../t/tensorflow-probability.md | 16 + .../supported-software/t/terastructure.md | 9 + .../supported-software/t/termcolor.md | 9 + .../supported-software/t/tesseract.md | 12 + .../supported-software/t/testpath.md | 14 + .../supported-software/t/texinfo.md | 20 + .../supported-software/t/texlive.md | 15 + .../supported-software/t/thirdorder.md | 9 + .../supported-software/t/thurstonianIRT.md | 9 + .../supported-software/t/tidybayes.md | 9 + .../supported-software/t/tidymodels.md | 10 + .../supported-software/t/tiktoken.md | 9 + .../supported-software/t/time.md | 18 + .../supported-software/t/timm.md | 10 + .../supported-software/t/tiny-cuda-nn.md | 9 + .../supported-software/t/tmap.md | 9 + .../supported-software/t/tmux.md | 25 + .../supported-software/t/toil.md | 9 + .../supported-software/t/tokenizers.md | 11 + .../supported-software/t/topaz.md | 12 + .../supported-software/t/torchaudio.md | 12 + .../supported-software/t/torchdata.md | 9 + .../supported-software/t/torchinfo.md | 10 + .../supported-software/t/torchsampler.md | 10 + .../supported-software/t/torchtext.md | 15 + .../supported-software/t/torchvf.md | 10 + .../supported-software/t/torchvision.md | 36 + .../supported-software/t/tornado.md | 10 + .../supported-software/t/tox.md | 10 + .../supported-software/t/tqdm.md | 26 + .../supported-software/t/travis.md | 10 + .../supported-software/t/treatSens.md | 9 + .../supported-software/t/trimAl.md | 15 + .../supported-software/t/trimesh.md | 10 + .../supported-software/t/tseriesEntropy.md | 9 + .../supported-software/t/tsne.md | 9 + .../supported-software/t/turbinesFoam.md | 9 + .../supported-software/t/tvb-data.md | 10 + .../supported-software/t/tvb-framework.md | 10 + .../supported-software/t/tvb-library.md | 10 + .../supported-software/t/typing-extensions.md | 18 + .../supported-software/u/UCC-CUDA.md | 11 + .../supported-software/u/UCC.md | 13 + .../supported-software/u/UCLUST.md | 9 + .../supported-software/u/UCX-CUDA.md | 17 + .../supported-software/u/UCX-ROCm.md | 9 + .../supported-software/u/UCX.md | 36 + .../supported-software/u/UDUNITS.md | 30 + .../supported-software/u/UFL.md | 10 + .../supported-software/u/UMI-tools.md | 12 + .../supported-software/u/UNAFold.md | 9 + .../supported-software/u/UQTk.md | 9 + .../supported-software/u/USEARCH.md | 12 + .../supported-software/u/USPEX.md | 9 + .../supported-software/u/UShER.md | 10 + .../supported-software/u/Ultralytics.md | 9 + .../supported-software/u/UnZip.md | 23 + .../supported-software/u/UniFrac.md | 9 + .../supported-software/u/Unicycler.md | 12 + .../supported-software/u/Unidecode.md | 10 + .../supported-software/u/index.md | 36 + .../supported-software/u/ucx-py.md | 9 + .../supported-software/u/udocker.md | 10 + .../supported-software/u/umap-learn.md | 15 + .../supported-software/u/umi4cPackage.md | 9 + .../supported-software/u/umis.md | 9 + .../supported-software/u/uncertainties.md | 10 + .../u/uncertainty-calibration.md | 9 + .../supported-software/u/unicore-uftp.md | 9 + .../supported-software/u/unifdef.md | 9 + .../supported-software/u/unimap.md | 10 + .../supported-software/u/units.md | 9 + .../supported-software/u/unixODBC.md | 10 + .../supported-software/u/unrar.md | 11 + .../supported-software/u/utf8proc.md | 18 + .../supported-software/u/util-linux.md | 36 + .../supported-software/v/V8.md | 13 + .../supported-software/v/VAMPIRE-ASM.md | 9 + .../supported-software/v/VASP.md | 10 + .../supported-software/v/VAtools.md | 9 + .../supported-software/v/VBZ-Compression.md | 10 + .../supported-software/v/VCF-kit.md | 9 + .../supported-software/v/VCFtools.md | 25 + .../supported-software/v/VEGAS.md | 9 + .../supported-software/v/VEP.md | 18 + .../supported-software/v/VERSE.md | 9 + .../supported-software/v/VESTA.md | 9 + .../supported-software/v/VMD.md | 16 + .../supported-software/v/VMTK.md | 9 + .../supported-software/v/VSCode.md | 10 + .../supported-software/v/VSEARCH.md | 15 + .../supported-software/v/VTK.md | 43 + .../supported-software/v/VTune.md | 32 + .../supported-software/v/VV.md | 9 + .../supported-software/v/VXL.md | 9 + .../supported-software/v/Vala.md | 10 + .../supported-software/v/Valgrind.md | 28 + .../supported-software/v/Vamb.md | 9 + .../supported-software/v/Vampir.md | 10 + .../supported-software/v/Vampire.md | 9 + .../supported-software/v/VarDict.md | 9 + .../supported-software/v/VarScan.md | 12 + .../supported-software/v/VariantMetaCaller.md | 9 + .../supported-software/v/Velvet.md | 14 + .../supported-software/v/ViennaRNA.md | 17 + .../supported-software/v/Vim.md | 14 + .../supported-software/v/VirSorter.md | 10 + .../supported-software/v/VirSorter2.md | 10 + .../supported-software/v/VirtualGL.md | 12 + .../v/Virtuoso-opensource.md | 9 + .../supported-software/v/VisPy.md | 13 + .../supported-software/v/Voro++.md | 20 + .../supported-software/v/index.md | 60 + .../supported-software/v/vConTACT2.md | 9 + .../supported-software/v/vaeda.md | 9 + .../supported-software/v/variant_tools.md | 9 + .../supported-software/v/vartools.md | 10 + .../supported-software/v/vawk.md | 9 + .../supported-software/v/vcflib.md | 15 + .../supported-software/v/vcfnp.md | 9 + .../supported-software/v/velocyto.md | 11 + .../supported-software/v/verifyBamID.md | 9 + .../supported-software/v/virtualenv.md | 10 + .../supported-software/v/visdom.md | 9 + .../supported-software/v/vispr.md | 9 + .../supported-software/v/vitessce-python.md | 9 + .../supported-software/v/vitessceR.md | 9 + .../supported-software/v/voltools.md | 9 + .../supported-software/v/vorbis-tools.md | 11 + .../supported-software/v/vsc-base.md | 21 + .../supported-software/v/vsc-install.md | 17 + .../v/vsc-mympirun-scoop.md | 9 + .../supported-software/v/vsc-mympirun.md | 38 + .../v/vsc-processcontrol.md | 10 + .../supported-software/v/vt.md | 13 + .../supported-software/w/WCSLIB.md | 11 + .../supported-software/w/WCT.md | 9 + .../supported-software/w/WEKA.md | 10 + .../supported-software/w/WFA2.md | 10 + .../supported-software/w/WGDgc.md | 9 + .../supported-software/w/WHAM.md | 12 + .../supported-software/w/WIEN2k.md | 19 + .../supported-software/w/WISExome.md | 9 + .../supported-software/w/WPS.md | 16 + .../supported-software/w/WRF-Fire.md | 9 + .../supported-software/w/WRF.md | 24 + .../supported-software/w/WSClean.md | 10 + .../supported-software/w/Wannier90.md | 31 + .../supported-software/w/WannierTools.md | 10 + .../supported-software/w/Wayland.md | 14 + .../supported-software/w/Waylandpp.md | 10 + .../supported-software/w/WebKitGTK+.md | 13 + .../supported-software/w/WebSocket++.md | 9 + .../supported-software/w/WhatsHap.md | 14 + .../supported-software/w/WildMagic.md | 10 + .../supported-software/w/Winnowmap.md | 9 + .../supported-software/w/WisecondorX.md | 9 + .../supported-software/w/index.md | 41 + .../supported-software/w/waLBerla.md | 10 + .../supported-software/w/wandb.md | 12 + .../supported-software/w/wcwidth.md | 13 + .../supported-software/w/webin-cli.md | 9 + .../supported-software/w/wfdb.md | 9 + .../supported-software/w/wget.md | 20 + .../supported-software/w/wgsim.md | 10 + .../supported-software/w/wheel.md | 27 + .../supported-software/w/wkhtmltopdf.md | 9 + .../supported-software/w/worker.md | 21 + .../supported-software/w/wpebackend-fdo.md | 10 + .../supported-software/w/wrapt.md | 12 + .../supported-software/w/wrf-python.md | 11 + .../supported-software/w/wtdbg2.md | 12 + .../supported-software/w/wxPropertyGrid.md | 9 + .../supported-software/w/wxPython.md | 20 + .../supported-software/w/wxWidgets.md | 18 + .../supported-software/x/X11.md | 27 + .../supported-software/x/XALT.md | 9 + .../supported-software/x/XBeach.md | 9 + .../supported-software/x/XCFun.md | 15 + .../supported-software/x/XCrySDen.md | 15 + .../supported-software/x/XGBoost.md | 20 + .../supported-software/x/XGrafix.md | 9 + .../supported-software/x/XKeyboardConfig.md | 10 + .../supported-software/x/XMDS2.md | 9 + .../supported-software/x/XML-Compile.md | 10 + .../supported-software/x/XML-LibXML.md | 24 + .../supported-software/x/XML-Parser.md | 24 + .../supported-software/x/XMLSec.md | 9 + .../supported-software/x/XMLStarlet.md | 10 + .../supported-software/x/XOOPIC.md | 9 + .../supported-software/x/XPLOR-NIH.md | 9 + .../supported-software/x/XSD.md | 9 + .../supported-software/x/XTandem.md | 10 + .../supported-software/x/XZ.md | 40 + .../supported-software/x/Xerces-C++.md | 20 + .../supported-software/x/XlsxWriter.md | 15 + .../supported-software/x/Xmipp.md | 12 + .../supported-software/x/Xvfb.md | 18 + .../supported-software/x/index.md | 55 + .../supported-software/x/x13as.md | 10 + .../supported-software/x/x264.md | 32 + .../supported-software/x/x265.md | 24 + .../supported-software/x/xCell.md | 9 + .../supported-software/x/xESMF.md | 10 + .../supported-software/x/xarray.md | 34 + .../supported-software/x/xbitmaps.md | 12 + .../supported-software/x/xcb-proto.md | 10 + .../supported-software/x/xcb-util-image.md | 10 + .../supported-software/x/xcb-util-keysyms.md | 10 + .../x/xcb-util-renderutil.md | 10 + .../supported-software/x/xcb-util-wm.md | 10 + .../supported-software/x/xcb-util.md | 10 + .../supported-software/x/xclip.md | 9 + .../supported-software/x/xdotool.md | 9 + .../supported-software/x/xextproto.md | 12 + .../supported-software/x/xf86vidmodeproto.md | 10 + .../supported-software/x/xineramaproto.md | 10 + .../supported-software/x/xmitgcm.md | 9 + .../supported-software/x/xmlf90.md | 18 + .../supported-software/x/xonsh.md | 9 + .../supported-software/x/xorg-macros.md | 29 + .../supported-software/x/xpdf.md | 9 + .../supported-software/x/xprop.md | 27 + .../supported-software/x/xproto.md | 23 + .../supported-software/x/xtb.md | 19 + .../supported-software/x/xtensor.md | 9 + .../supported-software/x/xtrans.md | 12 + .../supported-software/x/xxHash.md | 14 + .../supported-software/x/xxd.md | 15 + .../supported-software/y/YACS.md | 14 + .../supported-software/y/YANK.md | 9 + .../supported-software/y/YAPS.md | 10 + .../supported-software/y/YAXT.md | 22 + .../supported-software/y/YODA.md | 10 + .../supported-software/y/Yade.md | 14 + .../supported-software/y/Yambo.md | 11 + .../supported-software/y/Yasm.md | 28 + .../supported-software/y/Yices.md | 10 + .../supported-software/y/index.md | 14 + .../supported-software/y/yaff.md | 25 + .../supported-software/y/yaml-cpp.md | 13 + .../supported-software/y/yt.md | 9 + .../supported-software/z/Z3.md | 24 + .../supported-software/z/ZIMPL.md | 9 + .../supported-software/z/ZPAQ.md | 9 + .../supported-software/z/Zeo++.md | 9 + .../supported-software/z/ZeroMQ.md | 34 + .../supported-software/z/Zgoubi.md | 9 + .../supported-software/z/Zip.md | 20 + .../supported-software/z/Zopfli.md | 12 + .../supported-software/z/index.md | 20 + .../supported-software/z/zUMIs.md | 9 + .../supported-software/z/zarr.md | 16 + .../supported-software/z/zeus-mcmc.md | 9 + .../supported-software/z/zfp.md | 13 + .../supported-software/z/zingeR.md | 9 + .../supported-software/z/zlib-ng.md | 12 + .../supported-software/z/zlib.md | 77 + .../supported-software/z/zlibbioc.md | 10 + .../supported-software/z/zsh.md | 13 + .../supported-software/z/zstd.md | 22 + 3581 files changed, 55590 insertions(+), 44897 deletions(-) delete mode 100644 docs/version-specific/supported-software.md create mode 100644 docs/version-specific/supported-software/0/3d-dna.md create mode 100644 docs/version-specific/supported-software/0/3to2.md create mode 100644 docs/version-specific/supported-software/0/4ti2.md create mode 100644 docs/version-specific/supported-software/0/index.md create mode 100644 docs/version-specific/supported-software/a/ABAQUS.md create mode 100644 docs/version-specific/supported-software/a/ABINIT.md create mode 100644 docs/version-specific/supported-software/a/ABRA2.md create mode 100644 docs/version-specific/supported-software/a/ABRicate.md create mode 100644 docs/version-specific/supported-software/a/ABySS.md create mode 100644 docs/version-specific/supported-software/a/ACTC.md create mode 100644 docs/version-specific/supported-software/a/ADDA.md create mode 100644 docs/version-specific/supported-software/a/ADF.md create mode 100644 docs/version-specific/supported-software/a/ADIOS.md create mode 100644 docs/version-specific/supported-software/a/ADMIXTURE.md create mode 100644 docs/version-specific/supported-software/a/ADOL-C.md create mode 100644 docs/version-specific/supported-software/a/AEDT.md create mode 100644 docs/version-specific/supported-software/a/AFNI.md create mode 100644 docs/version-specific/supported-software/a/AGAT.md create mode 100644 docs/version-specific/supported-software/a/AGFusion.md create mode 100644 docs/version-specific/supported-software/a/AGeNT.md create mode 100644 docs/version-specific/supported-software/a/AICSImageIO.md create mode 100644 docs/version-specific/supported-software/a/AIMAll.md create mode 100644 docs/version-specific/supported-software/a/ALADIN.md create mode 100644 docs/version-specific/supported-software/a/ALAMODE.md create mode 100644 docs/version-specific/supported-software/a/ALFA.md create mode 100644 docs/version-specific/supported-software/a/ALL.md create mode 100644 docs/version-specific/supported-software/a/ALLPATHS-LG.md create mode 100644 docs/version-specific/supported-software/a/ALPS.md create mode 100644 docs/version-specific/supported-software/a/AMAPVox.md create mode 100644 docs/version-specific/supported-software/a/AMD-LibM.md create mode 100644 docs/version-specific/supported-software/a/AMD-RNG.md create mode 100644 docs/version-specific/supported-software/a/AMD-SecureRNG.md create mode 100644 docs/version-specific/supported-software/a/AMD-uProf.md create mode 100644 docs/version-specific/supported-software/a/AMGX.md create mode 100644 docs/version-specific/supported-software/a/AMICA.md create mode 100644 docs/version-specific/supported-software/a/AMOS.md create mode 100644 docs/version-specific/supported-software/a/AMPHORA2.md create mode 100644 docs/version-specific/supported-software/a/AMPL-MP.md create mode 100644 docs/version-specific/supported-software/a/AMPtk.md create mode 100644 docs/version-specific/supported-software/a/AMRFinderPlus.md create mode 100644 docs/version-specific/supported-software/a/AMS.md create mode 100644 docs/version-specific/supported-software/a/ANGEL.md create mode 100644 docs/version-specific/supported-software/a/ANIcalculator.md create mode 100644 docs/version-specific/supported-software/a/ANSYS.md create mode 100644 docs/version-specific/supported-software/a/ANSYS_CFD.md create mode 100644 docs/version-specific/supported-software/a/ANTIC.md create mode 100644 docs/version-specific/supported-software/a/ANTLR.md create mode 100644 docs/version-specific/supported-software/a/ANTs.md create mode 100644 docs/version-specific/supported-software/a/AOCC.md create mode 100644 docs/version-specific/supported-software/a/AOFlagger.md create mode 100644 docs/version-specific/supported-software/a/AOMP.md create mode 100644 docs/version-specific/supported-software/a/APBS.md create mode 100644 docs/version-specific/supported-software/a/APR-util.md create mode 100644 docs/version-specific/supported-software/a/APR.md create mode 100644 docs/version-specific/supported-software/a/ARAGORN.md create mode 100644 docs/version-specific/supported-software/a/ARCH.md create mode 100644 docs/version-specific/supported-software/a/ARGoS.md create mode 100644 docs/version-specific/supported-software/a/ARPACK++.md create mode 100644 docs/version-specific/supported-software/a/ART.md create mode 100644 docs/version-specific/supported-software/a/ARTS.md create mode 100644 docs/version-specific/supported-software/a/ARWEN.md create mode 100644 docs/version-specific/supported-software/a/ASAP.md create mode 100644 docs/version-specific/supported-software/a/ASAP3.md create mode 100644 docs/version-specific/supported-software/a/ASCAT.md create mode 100644 docs/version-specific/supported-software/a/ASE.md create mode 100644 docs/version-specific/supported-software/a/ASF-SearchAPI.md create mode 100644 docs/version-specific/supported-software/a/ASHS.md create mode 100644 docs/version-specific/supported-software/a/ASTRID.md create mode 100644 docs/version-specific/supported-software/a/ATAT.md create mode 100644 docs/version-specific/supported-software/a/ATK.md create mode 100644 docs/version-specific/supported-software/a/ATLAS.md create mode 100644 docs/version-specific/supported-software/a/ATSAS.md create mode 100644 docs/version-specific/supported-software/a/AUGUSTUS.md create mode 100644 docs/version-specific/supported-software/a/AUTO-07p.md create mode 100644 docs/version-specific/supported-software/a/Abseil.md create mode 100644 docs/version-specific/supported-software/a/AdapterRemoval.md create mode 100644 docs/version-specific/supported-software/a/Advisor.md create mode 100644 docs/version-specific/supported-software/a/Albacore.md create mode 100644 docs/version-specific/supported-software/a/Albumentations.md create mode 100644 docs/version-specific/supported-software/a/Alfred.md create mode 100644 docs/version-specific/supported-software/a/Allinea.md create mode 100644 docs/version-specific/supported-software/a/Alpha.md create mode 100644 docs/version-specific/supported-software/a/AlphaFold.md create mode 100644 docs/version-specific/supported-software/a/AlphaPulldown.md create mode 100644 docs/version-specific/supported-software/a/Amara.md create mode 100644 docs/version-specific/supported-software/a/Amber.md create mode 100644 docs/version-specific/supported-software/a/AmberMini.md create mode 100644 docs/version-specific/supported-software/a/AmberTools.md create mode 100644 docs/version-specific/supported-software/a/AmrPlusPlus.md create mode 100644 docs/version-specific/supported-software/a/Anaconda2.md create mode 100644 docs/version-specific/supported-software/a/Anaconda3.md create mode 100644 docs/version-specific/supported-software/a/Annif.md create mode 100644 docs/version-specific/supported-software/a/Annocript.md create mode 100644 docs/version-specific/supported-software/a/AptaSUITE.md create mode 100644 docs/version-specific/supported-software/a/Arb.md create mode 100644 docs/version-specific/supported-software/a/Arcade-Learning-Environment.md create mode 100644 docs/version-specific/supported-software/a/ArchR.md create mode 100644 docs/version-specific/supported-software/a/Archive-Zip.md create mode 100644 docs/version-specific/supported-software/a/AreTomo2.md create mode 100644 docs/version-specific/supported-software/a/Arlequin.md create mode 100644 docs/version-specific/supported-software/a/Armadillo.md create mode 100644 docs/version-specific/supported-software/a/ArrayFire.md create mode 100644 docs/version-specific/supported-software/a/Arriba.md create mode 100644 docs/version-specific/supported-software/a/Arrow.md create mode 100644 docs/version-specific/supported-software/a/Artemis.md create mode 100644 docs/version-specific/supported-software/a/ArviZ.md create mode 100644 docs/version-specific/supported-software/a/Aspera-CLI.md create mode 100644 docs/version-specific/supported-software/a/Aspera-Connect.md create mode 100644 docs/version-specific/supported-software/a/Assimulo.md create mode 100644 docs/version-specific/supported-software/a/AtomPAW.md create mode 100644 docs/version-specific/supported-software/a/Austin.md create mode 100644 docs/version-specific/supported-software/a/AutoDock-GPU.md create mode 100644 docs/version-specific/supported-software/a/AutoDock-Vina.md create mode 100644 docs/version-specific/supported-software/a/AutoDock.md create mode 100644 docs/version-specific/supported-software/a/AutoDockSuite.md create mode 100644 docs/version-specific/supported-software/a/AutoGeneS.md create mode 100644 docs/version-specific/supported-software/a/AutoGrid.md create mode 100644 docs/version-specific/supported-software/a/AutoMap.md create mode 100644 docs/version-specific/supported-software/a/Autoconf-archive.md create mode 100644 docs/version-specific/supported-software/a/Autoconf.md create mode 100644 docs/version-specific/supported-software/a/Automake.md create mode 100644 docs/version-specific/supported-software/a/Autotools.md create mode 100644 docs/version-specific/supported-software/a/Avogadro2.md create mode 100644 docs/version-specific/supported-software/a/Ax.md create mode 100644 docs/version-specific/supported-software/a/aNCI.md create mode 100644 docs/version-specific/supported-software/a/abTEM.md create mode 100644 docs/version-specific/supported-software/a/ack.md create mode 100644 docs/version-specific/supported-software/a/ada.md create mode 100644 docs/version-specific/supported-software/a/adjustText.md create mode 100644 docs/version-specific/supported-software/a/affinity.md create mode 100644 docs/version-specific/supported-software/a/aiohttp.md create mode 100644 docs/version-specific/supported-software/a/alevin-fry.md create mode 100644 docs/version-specific/supported-software/a/alleleCount.md create mode 100644 docs/version-specific/supported-software/a/alleleIntegrator.md create mode 100644 docs/version-specific/supported-software/a/almosthere.md create mode 100644 docs/version-specific/supported-software/a/alsa-lib.md create mode 100644 docs/version-specific/supported-software/a/amask.md create mode 100644 docs/version-specific/supported-software/a/amdahl.md create mode 100644 docs/version-specific/supported-software/a/amplimap.md create mode 100644 docs/version-specific/supported-software/a/anadama2.md create mode 100644 docs/version-specific/supported-software/a/andi.md create mode 100644 docs/version-specific/supported-software/a/angsd.md create mode 100644 docs/version-specific/supported-software/a/anndata.md create mode 100644 docs/version-specific/supported-software/a/annovar.md create mode 100644 docs/version-specific/supported-software/a/ant.md create mode 100644 docs/version-specific/supported-software/a/antiSMASH.md create mode 100644 docs/version-specific/supported-software/a/anvio.md create mode 100644 docs/version-specific/supported-software/a/any2fasta.md create mode 100644 docs/version-specific/supported-software/a/apex.md create mode 100644 docs/version-specific/supported-software/a/arcasHLA.md create mode 100644 docs/version-specific/supported-software/a/archspec.md create mode 100644 docs/version-specific/supported-software/a/argtable.md create mode 100644 docs/version-specific/supported-software/a/aria2.md create mode 100644 docs/version-specific/supported-software/a/arosics.md create mode 100644 docs/version-specific/supported-software/a/arpack-ng.md create mode 100644 docs/version-specific/supported-software/a/arrow-R.md create mode 100644 docs/version-specific/supported-software/a/artic-ncov2019.md create mode 100644 docs/version-specific/supported-software/a/assembly-stats.md create mode 100644 docs/version-specific/supported-software/a/assimp.md create mode 100644 docs/version-specific/supported-software/a/astro-tulips.md create mode 100644 docs/version-specific/supported-software/a/astropy.md create mode 100644 docs/version-specific/supported-software/a/at-spi2-atk.md create mode 100644 docs/version-specific/supported-software/a/at-spi2-core.md create mode 100644 docs/version-specific/supported-software/a/atomate.md create mode 100644 docs/version-specific/supported-software/a/atools.md create mode 100644 docs/version-specific/supported-software/a/atropos.md create mode 100644 docs/version-specific/supported-software/a/attr.md create mode 100644 docs/version-specific/supported-software/a/attrdict.md create mode 100644 docs/version-specific/supported-software/a/attrdict3.md create mode 100644 docs/version-specific/supported-software/a/augur.md create mode 100644 docs/version-specific/supported-software/a/autopep8.md create mode 100644 docs/version-specific/supported-software/a/avro-cpp.md create mode 100644 docs/version-specific/supported-software/a/awscli.md create mode 100644 docs/version-specific/supported-software/a/axel.md create mode 100644 docs/version-specific/supported-software/a/index.md create mode 100644 docs/version-specific/supported-software/b/BA3-SNPS-autotune.md create mode 100644 docs/version-specific/supported-software/b/BAGEL.md create mode 100644 docs/version-specific/supported-software/b/BAMM.md create mode 100644 docs/version-specific/supported-software/b/BAMSurgeon.md create mode 100644 docs/version-specific/supported-software/b/BAli-Phy.md create mode 100644 docs/version-specific/supported-software/b/BBMap.md create mode 100644 docs/version-specific/supported-software/b/BCALM.md create mode 100644 docs/version-specific/supported-software/b/BCEL.md create mode 100644 docs/version-specific/supported-software/b/BCFtools.md create mode 100644 docs/version-specific/supported-software/b/BDBag.md create mode 100644 docs/version-specific/supported-software/b/BEDOPS.md create mode 100644 docs/version-specific/supported-software/b/BEDTools.md create mode 100644 docs/version-specific/supported-software/b/BEEF.md create mode 100644 docs/version-specific/supported-software/b/BFAST.md create mode 100644 docs/version-specific/supported-software/b/BFC.md create mode 100644 docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md create mode 100644 docs/version-specific/supported-software/b/BLACS.md create mode 100644 docs/version-specific/supported-software/b/BLASR.md create mode 100644 docs/version-specific/supported-software/b/BLAST+.md create mode 100644 docs/version-specific/supported-software/b/BLAST.md create mode 100644 docs/version-specific/supported-software/b/BLAT.md create mode 100644 docs/version-specific/supported-software/b/BLIS.md create mode 100644 docs/version-specific/supported-software/b/BLT.md create mode 100644 docs/version-specific/supported-software/b/BMTK.md create mode 100644 docs/version-specific/supported-software/b/BOINC.md create mode 100644 docs/version-specific/supported-software/b/BOPTEST.md create mode 100644 docs/version-specific/supported-software/b/BRAKER.md create mode 100644 docs/version-specific/supported-software/b/BRiAl.md create mode 100644 docs/version-specific/supported-software/b/BSMAPz.md create mode 100644 docs/version-specific/supported-software/b/BSseeker2.md create mode 100644 docs/version-specific/supported-software/b/BUFRLIB.md create mode 100644 docs/version-specific/supported-software/b/BUSCO.md create mode 100644 docs/version-specific/supported-software/b/BUStools.md create mode 100644 docs/version-specific/supported-software/b/BWA.md create mode 100644 docs/version-specific/supported-software/b/BWISE.md create mode 100644 docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md create mode 100644 docs/version-specific/supported-software/b/BabelStream.md create mode 100644 docs/version-specific/supported-software/b/Bader.md create mode 100644 docs/version-specific/supported-software/b/BamTools.md create mode 100644 docs/version-specific/supported-software/b/BamUtil.md create mode 100644 docs/version-specific/supported-software/b/Bambi.md create mode 100644 docs/version-specific/supported-software/b/Bandage.md create mode 100644 docs/version-specific/supported-software/b/Bash.md create mode 100644 docs/version-specific/supported-software/b/BatMeth2.md create mode 100644 docs/version-specific/supported-software/b/BayeScEnv.md create mode 100644 docs/version-specific/supported-software/b/BayeScan.md create mode 100644 docs/version-specific/supported-software/b/BayesAss.md create mode 100644 docs/version-specific/supported-software/b/BayesAss3-SNPs.md create mode 100644 docs/version-specific/supported-software/b/BayesPrism.md create mode 100644 docs/version-specific/supported-software/b/BayesTraits.md create mode 100644 docs/version-specific/supported-software/b/Bazel.md create mode 100644 docs/version-specific/supported-software/b/Beagle.md create mode 100644 docs/version-specific/supported-software/b/Beast.md create mode 100644 docs/version-specific/supported-software/b/BeautifulSoup.md create mode 100644 docs/version-specific/supported-software/b/BerkeleyGW.md create mode 100644 docs/version-specific/supported-software/b/BgeeCall.md create mode 100644 docs/version-specific/supported-software/b/BgeeDB.md create mode 100644 docs/version-specific/supported-software/b/BiG-SCAPE.md create mode 100644 docs/version-specific/supported-software/b/BiasAdjustCXX.md create mode 100644 docs/version-specific/supported-software/b/BigDFT.md create mode 100644 docs/version-specific/supported-software/b/BinSanity.md create mode 100644 docs/version-specific/supported-software/b/Bio-DB-HTS.md create mode 100644 docs/version-specific/supported-software/b/Bio-EUtilities.md create mode 100644 docs/version-specific/supported-software/b/Bio-FeatureIO.md create mode 100644 docs/version-specific/supported-software/b/Bio-SamTools.md create mode 100644 docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md create mode 100644 docs/version-specific/supported-software/b/BioPP.md create mode 100644 docs/version-specific/supported-software/b/BioPerl.md create mode 100644 docs/version-specific/supported-software/b/BioServices.md create mode 100644 docs/version-specific/supported-software/b/Biopython.md create mode 100644 docs/version-specific/supported-software/b/BirdNET.md create mode 100644 docs/version-specific/supported-software/b/Bismark.md create mode 100644 docs/version-specific/supported-software/b/Bison.md create mode 100644 docs/version-specific/supported-software/b/Blender.md create mode 100644 docs/version-specific/supported-software/b/Blitz++.md create mode 100644 docs/version-specific/supported-software/b/BlobTools.md create mode 100644 docs/version-specific/supported-software/b/Block.md create mode 100644 docs/version-specific/supported-software/b/Blosc.md create mode 100644 docs/version-specific/supported-software/b/Blosc2.md create mode 100644 docs/version-specific/supported-software/b/BoltzTraP.md create mode 100644 docs/version-specific/supported-software/b/BoltzTraP2.md create mode 100644 docs/version-specific/supported-software/b/Bonito.md create mode 100644 docs/version-specific/supported-software/b/Bonmin.md create mode 100644 docs/version-specific/supported-software/b/Bonnie++.md create mode 100644 docs/version-specific/supported-software/b/Boost.MPI.md create mode 100644 docs/version-specific/supported-software/b/Boost.Python-NumPy.md create mode 100644 docs/version-specific/supported-software/b/Boost.Python.md create mode 100644 docs/version-specific/supported-software/b/Boost.md create mode 100644 docs/version-specific/supported-software/b/Bottleneck.md create mode 100644 docs/version-specific/supported-software/b/Bowtie.md create mode 100644 docs/version-specific/supported-software/b/Bowtie2.md create mode 100644 docs/version-specific/supported-software/b/Bpipe.md create mode 100644 docs/version-specific/supported-software/b/Bracken.md create mode 100644 docs/version-specific/supported-software/b/Braindecode.md create mode 100644 docs/version-specific/supported-software/b/BreakDancer.md create mode 100644 docs/version-specific/supported-software/b/Brotli-python.md create mode 100644 docs/version-specific/supported-software/b/Brotli.md create mode 100644 docs/version-specific/supported-software/b/Brunsli.md create mode 100644 docs/version-specific/supported-software/b/Bsoft.md create mode 100644 docs/version-specific/supported-software/b/BuDDy.md create mode 100644 docs/version-specific/supported-software/b/Bullet.md create mode 100644 docs/version-specific/supported-software/b/babl.md create mode 100644 docs/version-specific/supported-software/b/bam-readcount.md create mode 100644 docs/version-specific/supported-software/b/bamFilters.md create mode 100644 docs/version-specific/supported-software/b/bamtofastq.md create mode 100644 docs/version-specific/supported-software/b/barrnap.md create mode 100644 docs/version-specific/supported-software/b/basemap.md create mode 100644 docs/version-specific/supported-software/b/bases2fastq.md create mode 100644 docs/version-specific/supported-software/b/bashplotlib.md create mode 100644 docs/version-specific/supported-software/b/bat.md create mode 100644 docs/version-specific/supported-software/b/batchgenerators.md create mode 100644 docs/version-specific/supported-software/b/bbFTP.md create mode 100644 docs/version-specific/supported-software/b/bbcp.md create mode 100644 docs/version-specific/supported-software/b/bc.md create mode 100644 docs/version-specific/supported-software/b/bcbio-gff.md create mode 100644 docs/version-specific/supported-software/b/bcgTree.md create mode 100644 docs/version-specific/supported-software/b/bcl-convert.md create mode 100644 docs/version-specific/supported-software/b/bcl2fastq2.md create mode 100644 docs/version-specific/supported-software/b/bcolz.md create mode 100644 docs/version-specific/supported-software/b/bcrypt.md create mode 100644 docs/version-specific/supported-software/b/beagle-lib.md create mode 100644 docs/version-specific/supported-software/b/behave.md create mode 100644 docs/version-specific/supported-software/b/bench.md create mode 100644 docs/version-specific/supported-software/b/bgen-reader.md create mode 100644 docs/version-specific/supported-software/b/bgen.md create mode 100644 docs/version-specific/supported-software/b/bibtexparser.md create mode 100644 docs/version-specific/supported-software/b/binutils.md create mode 100644 docs/version-specific/supported-software/b/bioawk.md create mode 100644 docs/version-specific/supported-software/b/biobakery-workflows.md create mode 100644 docs/version-specific/supported-software/b/biobambam2.md create mode 100644 docs/version-specific/supported-software/b/biogeme.md create mode 100644 docs/version-specific/supported-software/b/biom-format.md create mode 100644 docs/version-specific/supported-software/b/biomart-perl.md create mode 100644 docs/version-specific/supported-software/b/biscuit.md create mode 100644 docs/version-specific/supported-software/b/bitarray.md create mode 100644 docs/version-specific/supported-software/b/bitshuffle.md create mode 100644 docs/version-specific/supported-software/b/blasr_libcpp.md create mode 100644 docs/version-specific/supported-software/b/bmtagger.md create mode 100644 docs/version-specific/supported-software/b/bnpy.md create mode 100644 docs/version-specific/supported-software/b/bokeh.md create mode 100644 docs/version-specific/supported-software/b/boost_histogram.md create mode 100644 docs/version-specific/supported-software/b/boto3.md create mode 100644 docs/version-specific/supported-software/b/bpp.md create mode 100644 docs/version-specific/supported-software/b/bpytop.md create mode 100644 docs/version-specific/supported-software/b/breseq.md create mode 100644 docs/version-specific/supported-software/b/bsddb3.md create mode 100644 docs/version-specific/supported-software/b/btllib.md create mode 100644 docs/version-specific/supported-software/b/build.md create mode 100644 docs/version-specific/supported-software/b/buildenv.md create mode 100644 docs/version-specific/supported-software/b/buildingspy.md create mode 100644 docs/version-specific/supported-software/b/bwa-mem2.md create mode 100644 docs/version-specific/supported-software/b/bwa-meth.md create mode 100644 docs/version-specific/supported-software/b/bwakit.md create mode 100644 docs/version-specific/supported-software/b/bwidget.md create mode 100644 docs/version-specific/supported-software/b/bx-python.md create mode 100644 docs/version-specific/supported-software/b/byacc.md create mode 100644 docs/version-specific/supported-software/b/byobu.md create mode 100644 docs/version-specific/supported-software/b/bzip2.md create mode 100644 docs/version-specific/supported-software/b/index.md create mode 100644 docs/version-specific/supported-software/c/C3D.md create mode 100644 docs/version-specific/supported-software/c/CAFE5.md create mode 100644 docs/version-specific/supported-software/c/CAMPARI.md create mode 100644 docs/version-specific/supported-software/c/CAP3.md create mode 100644 docs/version-specific/supported-software/c/CASA.md create mode 100644 docs/version-specific/supported-software/c/CASPR.md create mode 100644 docs/version-specific/supported-software/c/CASTEP.md create mode 100644 docs/version-specific/supported-software/c/CAT-BAT.md create mode 100644 docs/version-specific/supported-software/c/CAVIAR.md create mode 100644 docs/version-specific/supported-software/c/CBLAS.md create mode 100644 docs/version-specific/supported-software/c/CCCL.md create mode 100644 docs/version-specific/supported-software/c/CCL.md create mode 100644 docs/version-specific/supported-software/c/CCfits.md create mode 100644 docs/version-specific/supported-software/c/CD-HIT.md create mode 100644 docs/version-specific/supported-software/c/CDAT.md create mode 100644 docs/version-specific/supported-software/c/CDBtools.md create mode 100644 docs/version-specific/supported-software/c/CDFlib.md create mode 100644 docs/version-specific/supported-software/c/CDO.md create mode 100644 docs/version-specific/supported-software/c/CENSO.md create mode 100644 docs/version-specific/supported-software/c/CESM-deps.md create mode 100644 docs/version-specific/supported-software/c/CFDEMcoupling.md create mode 100644 docs/version-specific/supported-software/c/CFITSIO.md create mode 100644 docs/version-specific/supported-software/c/CGAL.md create mode 100644 docs/version-specific/supported-software/c/CGNS.md create mode 100644 docs/version-specific/supported-software/c/CGmapTools.md create mode 100644 docs/version-specific/supported-software/c/CHASE.md create mode 100644 docs/version-specific/supported-software/c/CHERAB.md create mode 100644 docs/version-specific/supported-software/c/CIF2Cell.md create mode 100644 docs/version-specific/supported-software/c/CIRCexplorer.md create mode 100644 docs/version-specific/supported-software/c/CIRCexplorer2.md create mode 100644 docs/version-specific/supported-software/c/CIRI-long.md create mode 100644 docs/version-specific/supported-software/c/CIRI.md create mode 100644 docs/version-specific/supported-software/c/CIRIquant.md create mode 100644 docs/version-specific/supported-software/c/CITE-seq-Count.md create mode 100644 docs/version-specific/supported-software/c/CLAPACK.md create mode 100644 docs/version-specific/supported-software/c/CLEAR.md create mode 100644 docs/version-specific/supported-software/c/CLEASE.md create mode 100644 docs/version-specific/supported-software/c/CLHEP.md create mode 100644 docs/version-specific/supported-software/c/CLIP.md create mode 100644 docs/version-specific/supported-software/c/CLISP.md create mode 100644 docs/version-specific/supported-software/c/CLooG.md create mode 100644 docs/version-specific/supported-software/c/CMAverse.md create mode 100644 docs/version-specific/supported-software/c/CMSeq.md create mode 100644 docs/version-specific/supported-software/c/CMake.md create mode 100644 docs/version-specific/supported-software/c/CNT-ILP.md create mode 100644 docs/version-specific/supported-software/c/CNVkit.md create mode 100644 docs/version-specific/supported-software/c/CNVnator.md create mode 100644 docs/version-specific/supported-software/c/COBRApy.md create mode 100644 docs/version-specific/supported-software/c/CODEX2.md create mode 100644 docs/version-specific/supported-software/c/COMEBin.md create mode 100644 docs/version-specific/supported-software/c/COMSOL.md create mode 100644 docs/version-specific/supported-software/c/CONCOCT.md create mode 100644 docs/version-specific/supported-software/c/CONN.md create mode 100644 docs/version-specific/supported-software/c/CP2K.md create mode 100644 docs/version-specific/supported-software/c/CPB.md create mode 100644 docs/version-specific/supported-software/c/CPC2.md create mode 100644 docs/version-specific/supported-software/c/CPLEX.md create mode 100644 docs/version-specific/supported-software/c/CPMD.md create mode 100644 docs/version-specific/supported-software/c/CPPE.md create mode 100644 docs/version-specific/supported-software/c/CREST.md create mode 100644 docs/version-specific/supported-software/c/CRF++.md create mode 100644 docs/version-specific/supported-software/c/CRISPR-DAV.md create mode 100644 docs/version-specific/supported-software/c/CRISPResso2.md create mode 100644 docs/version-specific/supported-software/c/CRPropa.md create mode 100644 docs/version-specific/supported-software/c/CSB.md create mode 100644 docs/version-specific/supported-software/c/CSBDeep.md create mode 100644 docs/version-specific/supported-software/c/CSBLAST.md create mode 100644 docs/version-specific/supported-software/c/CTPL.md create mode 100644 docs/version-specific/supported-software/c/CUDA-Samples.md create mode 100644 docs/version-specific/supported-software/c/CUDA.md create mode 100644 docs/version-specific/supported-software/c/CUDAcompat.md create mode 100644 docs/version-specific/supported-software/c/CUDAcore.md create mode 100644 docs/version-specific/supported-software/c/CUDD.md create mode 100644 docs/version-specific/supported-software/c/CUTLASS.md create mode 100644 docs/version-specific/supported-software/c/CUnit.md create mode 100644 docs/version-specific/supported-software/c/CVX.md create mode 100644 docs/version-specific/supported-software/c/CVXOPT.md create mode 100644 docs/version-specific/supported-software/c/CVXPY.md create mode 100644 docs/version-specific/supported-software/c/CVglasso.md create mode 100644 docs/version-specific/supported-software/c/CWIPI.md create mode 100644 docs/version-specific/supported-software/c/CaDiCaL.md create mode 100644 docs/version-specific/supported-software/c/CaSpER.md create mode 100644 docs/version-specific/supported-software/c/CaVEMan.md create mode 100644 docs/version-specific/supported-software/c/Caffe.md create mode 100644 docs/version-specific/supported-software/c/Calcam.md create mode 100644 docs/version-specific/supported-software/c/CalculiX-CrunchiX.md create mode 100644 docs/version-specific/supported-software/c/Calendrical.md create mode 100644 docs/version-specific/supported-software/c/Calib.md create mode 100644 docs/version-specific/supported-software/c/Cantera.md create mode 100644 docs/version-specific/supported-software/c/Canvas.md create mode 100644 docs/version-specific/supported-software/c/CapnProto.md create mode 100644 docs/version-specific/supported-software/c/Cargo.md create mode 100644 docs/version-specific/supported-software/c/Carma.md create mode 100644 docs/version-specific/supported-software/c/Cartopy.md create mode 100644 docs/version-specific/supported-software/c/Casanovo.md create mode 100644 docs/version-specific/supported-software/c/Cassiopeia.md create mode 100644 docs/version-specific/supported-software/c/CastXML.md create mode 100644 docs/version-specific/supported-software/c/CatBoost.md create mode 100644 docs/version-specific/supported-software/c/CatLearn.md create mode 100644 docs/version-specific/supported-software/c/CatMAP.md create mode 100644 docs/version-specific/supported-software/c/Catch2.md create mode 100644 docs/version-specific/supported-software/c/Cbc.md create mode 100644 docs/version-specific/supported-software/c/CellBender.md create mode 100644 docs/version-specific/supported-software/c/CellChat.md create mode 100644 docs/version-specific/supported-software/c/CellMix.md create mode 100644 docs/version-specific/supported-software/c/CellOracle.md create mode 100644 docs/version-specific/supported-software/c/CellRanger-ARC.md create mode 100644 docs/version-specific/supported-software/c/CellRanger-ATAC.md create mode 100644 docs/version-specific/supported-software/c/CellRanger.md create mode 100644 docs/version-specific/supported-software/c/CellRank.md create mode 100644 docs/version-specific/supported-software/c/CellTypist.md create mode 100644 docs/version-specific/supported-software/c/Cellpose.md create mode 100644 docs/version-specific/supported-software/c/Centrifuge.md create mode 100644 docs/version-specific/supported-software/c/Cereal.md create mode 100644 docs/version-specific/supported-software/c/Cgl.md create mode 100644 docs/version-specific/supported-software/c/ChIPseeker.md create mode 100644 docs/version-specific/supported-software/c/CharLS.md create mode 100644 docs/version-specific/supported-software/c/CheMPS2.md create mode 100644 docs/version-specific/supported-software/c/Check.md create mode 100644 docs/version-specific/supported-software/c/CheckM-Database.md create mode 100644 docs/version-specific/supported-software/c/CheckM.md create mode 100644 docs/version-specific/supported-software/c/CheckM2.md create mode 100644 docs/version-specific/supported-software/c/Cheetah.md create mode 100644 docs/version-specific/supported-software/c/Chemaxon-Marvin.md create mode 100644 docs/version-specific/supported-software/c/ChimPipe.md create mode 100644 docs/version-specific/supported-software/c/Chimera.md create mode 100644 docs/version-specific/supported-software/c/Chromaprint.md create mode 100644 docs/version-specific/supported-software/c/Circlator.md create mode 100644 docs/version-specific/supported-software/c/Circos.md create mode 100644 docs/version-specific/supported-software/c/Circuitscape.md create mode 100644 docs/version-specific/supported-software/c/Clair3.md create mode 100644 docs/version-specific/supported-software/c/Clang-AOMP.md create mode 100644 docs/version-specific/supported-software/c/Clang-Python-bindings.md create mode 100644 docs/version-specific/supported-software/c/Clang.md create mode 100644 docs/version-specific/supported-software/c/Clarabel.rs.md create mode 100644 docs/version-specific/supported-software/c/CliMetLab.md create mode 100644 docs/version-specific/supported-software/c/ClonalFrameML.md create mode 100644 docs/version-specific/supported-software/c/CloudCompare.md create mode 100644 docs/version-specific/supported-software/c/Clp.md create mode 100644 docs/version-specific/supported-software/c/Clustal-Omega.md create mode 100644 docs/version-specific/supported-software/c/ClustalW2.md create mode 100644 docs/version-specific/supported-software/c/Cluster-Buster.md create mode 100644 docs/version-specific/supported-software/c/ClusterShell.md create mode 100644 docs/version-specific/supported-software/c/CmdStanR.md create mode 100644 docs/version-specific/supported-software/c/Co-phylog.md create mode 100644 docs/version-specific/supported-software/c/CoCoALib.md create mode 100644 docs/version-specific/supported-software/c/CoSymLib.md create mode 100644 docs/version-specific/supported-software/c/CodAn.md create mode 100644 docs/version-specific/supported-software/c/CodingQuarry.md create mode 100644 docs/version-specific/supported-software/c/Cogent.md create mode 100644 docs/version-specific/supported-software/c/Coin.md create mode 100644 docs/version-specific/supported-software/c/CoinUtils.md create mode 100644 docs/version-specific/supported-software/c/ColabFold.md create mode 100644 docs/version-specific/supported-software/c/Commet.md create mode 100644 docs/version-specific/supported-software/c/CompareM.md create mode 100644 docs/version-specific/supported-software/c/Compass.md create mode 100644 docs/version-specific/supported-software/c/Compress-Raw-Zlib.md create mode 100644 docs/version-specific/supported-software/c/Con3F.md create mode 100644 docs/version-specific/supported-software/c/Concorde.md create mode 100644 docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md create mode 100644 docs/version-specific/supported-software/c/ConnectomeWorkbench.md create mode 100644 docs/version-specific/supported-software/c/Control-FREEC.md create mode 100644 docs/version-specific/supported-software/c/CoordgenLibs.md create mode 100644 docs/version-specific/supported-software/c/Coot.md create mode 100644 docs/version-specific/supported-software/c/CopyKAT.md create mode 100644 docs/version-specific/supported-software/c/Coreutils.md create mode 100644 docs/version-specific/supported-software/c/CppHeaderParser.md create mode 100644 docs/version-specific/supported-software/c/CppUnit.md create mode 100644 docs/version-specific/supported-software/c/CrayCCE.md create mode 100644 docs/version-specific/supported-software/c/CrayGNU.md create mode 100644 docs/version-specific/supported-software/c/CrayIntel.md create mode 100644 docs/version-specific/supported-software/c/CrayPGI.md create mode 100644 docs/version-specific/supported-software/c/CrossMap.md create mode 100644 docs/version-specific/supported-software/c/CrossTalkZ.md create mode 100644 docs/version-specific/supported-software/c/Crumble.md create mode 100644 docs/version-specific/supported-software/c/CryptoMiniSat.md create mode 100644 docs/version-specific/supported-software/c/CrystFEL.md create mode 100644 docs/version-specific/supported-software/c/CuCLARK.md create mode 100644 docs/version-specific/supported-software/c/CuPy.md create mode 100644 docs/version-specific/supported-software/c/Cube.md create mode 100644 docs/version-specific/supported-software/c/CubeGUI.md create mode 100644 docs/version-specific/supported-software/c/CubeLib.md create mode 100644 docs/version-specific/supported-software/c/CubeWriter.md create mode 100644 docs/version-specific/supported-software/c/Cufflinks.md create mode 100644 docs/version-specific/supported-software/c/Cython.md create mode 100644 docs/version-specific/supported-software/c/Cytoscape.md create mode 100644 docs/version-specific/supported-software/c/c-ares.md create mode 100644 docs/version-specific/supported-software/c/cDNA_Cupcake.md create mode 100644 docs/version-specific/supported-software/c/cURL.md create mode 100644 docs/version-specific/supported-software/c/cadaver.md create mode 100644 docs/version-specific/supported-software/c/cairo.md create mode 100644 docs/version-specific/supported-software/c/cairomm.md create mode 100644 docs/version-specific/supported-software/c/canu.md create mode 100644 docs/version-specific/supported-software/c/captum.md create mode 100644 docs/version-specific/supported-software/c/carputils.md create mode 100644 docs/version-specific/supported-software/c/casacore.md create mode 100644 docs/version-specific/supported-software/c/castor.md create mode 100644 docs/version-specific/supported-software/c/category_encoders.md create mode 100644 docs/version-specific/supported-software/c/causallift.md create mode 100644 docs/version-specific/supported-software/c/causalml.md create mode 100644 docs/version-specific/supported-software/c/ccache.md create mode 100644 docs/version-specific/supported-software/c/cclib.md create mode 100644 docs/version-specific/supported-software/c/cctbx-base.md create mode 100644 docs/version-specific/supported-software/c/cctools.md create mode 100644 docs/version-specific/supported-software/c/cdbfasta.md create mode 100644 docs/version-specific/supported-software/c/cddlib.md create mode 100644 docs/version-specific/supported-software/c/cdo-bindings.md create mode 100644 docs/version-specific/supported-software/c/cdsapi.md create mode 100644 docs/version-specific/supported-software/c/cell2location.md create mode 100644 docs/version-specific/supported-software/c/centerline.md create mode 100644 docs/version-specific/supported-software/c/cffi.md create mode 100644 docs/version-specific/supported-software/c/cftime.md create mode 100644 docs/version-specific/supported-software/c/cget.md create mode 100644 docs/version-specific/supported-software/c/charm-gems.md create mode 100644 docs/version-specific/supported-software/c/chemprop.md create mode 100644 docs/version-specific/supported-software/c/chewBBACA.md create mode 100644 docs/version-specific/supported-software/c/chi2comb.md create mode 100644 docs/version-specific/supported-software/c/chromVARmotifs.md create mode 100644 docs/version-specific/supported-software/c/cicero.md create mode 100644 docs/version-specific/supported-software/c/cimfomfa.md create mode 100644 docs/version-specific/supported-software/c/cisTEM.md create mode 100644 docs/version-specific/supported-software/c/cliquer.md create mode 100644 docs/version-specific/supported-software/c/cmocean.md create mode 100644 docs/version-specific/supported-software/c/cmph.md create mode 100644 docs/version-specific/supported-software/c/code-cli.md create mode 100644 docs/version-specific/supported-software/c/code-server.md create mode 100644 docs/version-specific/supported-software/c/colossalai.md create mode 100644 docs/version-specific/supported-software/c/conan.md create mode 100644 docs/version-specific/supported-software/c/configparser.md create mode 100644 docs/version-specific/supported-software/c/configurable-http-proxy.md create mode 100644 docs/version-specific/supported-software/c/connected-components-3d.md create mode 100644 docs/version-specific/supported-software/c/contextily.md create mode 100644 docs/version-specific/supported-software/c/cooler.md create mode 100644 docs/version-specific/supported-software/c/core-counter.md create mode 100644 docs/version-specific/supported-software/c/corner.md create mode 100644 docs/version-specific/supported-software/c/coverage.md create mode 100644 docs/version-specific/supported-software/c/cowsay.md create mode 100644 docs/version-specific/supported-software/c/cpio.md create mode 100644 docs/version-specific/supported-software/c/cppy.md create mode 100644 docs/version-specific/supported-software/c/cppyy.md create mode 100644 docs/version-specific/supported-software/c/cppzmq.md create mode 100644 docs/version-specific/supported-software/c/cpu_features.md create mode 100644 docs/version-specific/supported-software/c/cram.md create mode 100644 docs/version-specific/supported-software/c/cramtools.md create mode 100644 docs/version-specific/supported-software/c/crb-blast.md create mode 100644 docs/version-specific/supported-software/c/cromwell.md create mode 100644 docs/version-specific/supported-software/c/crossguid.md create mode 100644 docs/version-specific/supported-software/c/cryoCARE.md create mode 100644 docs/version-specific/supported-software/c/cryoDRGN.md create mode 100644 docs/version-specific/supported-software/c/cryptography.md create mode 100644 docs/version-specific/supported-software/c/cscope.md create mode 100644 docs/version-specific/supported-software/c/csvkit.md create mode 100644 docs/version-specific/supported-software/c/ctags.md create mode 100644 docs/version-specific/supported-software/c/ctffind.md create mode 100644 docs/version-specific/supported-software/c/ctffind5.md create mode 100644 docs/version-specific/supported-software/c/cuDNN.md create mode 100644 docs/version-specific/supported-software/c/cuSPARSELt.md create mode 100644 docs/version-specific/supported-software/c/cuTENSOR.md create mode 100644 docs/version-specific/supported-software/c/currentNe.md create mode 100644 docs/version-specific/supported-software/c/custodian.md create mode 100644 docs/version-specific/supported-software/c/cutadapt.md create mode 100644 docs/version-specific/supported-software/c/cuteSV.md create mode 100644 docs/version-specific/supported-software/c/cwltool.md create mode 100644 docs/version-specific/supported-software/c/cxxopts.md create mode 100644 docs/version-specific/supported-software/c/cysignals.md create mode 100644 docs/version-specific/supported-software/c/cython-blis.md create mode 100644 docs/version-specific/supported-software/c/cytoolz.md create mode 100644 docs/version-specific/supported-software/c/cytosim.md create mode 100644 docs/version-specific/supported-software/c/cyvcf2.md create mode 100644 docs/version-specific/supported-software/c/index.md create mode 100644 docs/version-specific/supported-software/d/DALI.md create mode 100644 docs/version-specific/supported-software/d/DANPOS2.md create mode 100644 docs/version-specific/supported-software/d/DAS_Tool.md create mode 100644 docs/version-specific/supported-software/d/DB.md create mode 100644 docs/version-specific/supported-software/d/DBCSR.md create mode 100644 docs/version-specific/supported-software/d/DBD-mysql.md create mode 100644 docs/version-specific/supported-software/d/DBG2OLC.md create mode 100644 docs/version-specific/supported-software/d/DB_File.md create mode 100644 docs/version-specific/supported-software/d/DBus.md create mode 100644 docs/version-specific/supported-software/d/DCMTK.md create mode 100644 docs/version-specific/supported-software/d/DEICODE.md create mode 100644 docs/version-specific/supported-software/d/DETONATE.md create mode 100644 docs/version-specific/supported-software/d/DFA.md create mode 100644 docs/version-specific/supported-software/d/DFT-D3.md create mode 100644 docs/version-specific/supported-software/d/DFT-D4.md create mode 100644 docs/version-specific/supported-software/d/DFTB+.md create mode 100644 docs/version-specific/supported-software/d/DGL.md create mode 100644 docs/version-specific/supported-software/d/DIA-NN.md create mode 100644 docs/version-specific/supported-software/d/DIAL.md create mode 100644 docs/version-specific/supported-software/d/DIALOGUE.md create mode 100644 docs/version-specific/supported-software/d/DIAMOND.md create mode 100644 docs/version-specific/supported-software/d/DIRAC.md create mode 100644 docs/version-specific/supported-software/d/DLPack.md create mode 100644 docs/version-specific/supported-software/d/DL_POLY_4.md create mode 100644 docs/version-specific/supported-software/d/DL_POLY_Classic.md create mode 100644 docs/version-specific/supported-software/d/DMCfun.md create mode 100644 docs/version-specific/supported-software/d/DMLC-Core.md create mode 100644 docs/version-specific/supported-software/d/DMTCP.md create mode 100644 docs/version-specific/supported-software/d/DOLFIN.md create mode 100644 docs/version-specific/supported-software/d/DP3.md create mode 100644 docs/version-specific/supported-software/d/DRAGMAP.md create mode 100644 docs/version-specific/supported-software/d/DROP.md create mode 100644 docs/version-specific/supported-software/d/DSA.md create mode 100644 docs/version-specific/supported-software/d/DSRC.md create mode 100644 docs/version-specific/supported-software/d/DUBStepR.md create mode 100644 docs/version-specific/supported-software/d/Dakota.md create mode 100644 docs/version-specific/supported-software/d/DaliLite.md create mode 100644 docs/version-specific/supported-software/d/Dalton.md create mode 100644 docs/version-specific/supported-software/d/DeMixT.md create mode 100644 docs/version-specific/supported-software/d/DeconICA.md create mode 100644 docs/version-specific/supported-software/d/DeepLabCut.md create mode 100644 docs/version-specific/supported-software/d/DeepLoc.md create mode 100644 docs/version-specific/supported-software/d/DeepMod2.md create mode 100644 docs/version-specific/supported-software/d/DeepSurv.md create mode 100644 docs/version-specific/supported-software/d/Delft3D.md create mode 100644 docs/version-specific/supported-software/d/Delly.md create mode 100644 docs/version-specific/supported-software/d/DeltaLake.md create mode 100644 docs/version-specific/supported-software/d/Demystify.md create mode 100644 docs/version-specific/supported-software/d/DendroPy.md create mode 100644 docs/version-specific/supported-software/d/DensPart.md create mode 100644 docs/version-specific/supported-software/d/Deprecated.md create mode 100644 docs/version-specific/supported-software/d/Detectron2.md create mode 100644 docs/version-specific/supported-software/d/Devito.md create mode 100644 docs/version-specific/supported-software/d/DiCE-ML.md create mode 100644 docs/version-specific/supported-software/d/Dice.md create mode 100644 docs/version-specific/supported-software/d/DicomBrowser.md create mode 100644 docs/version-specific/supported-software/d/DiffBind.md create mode 100644 docs/version-specific/supported-software/d/Diffutils.md create mode 100644 docs/version-specific/supported-software/d/DistributedStream.md create mode 100644 docs/version-specific/supported-software/d/DjVuLibre.md create mode 100644 docs/version-specific/supported-software/d/Doris.md create mode 100644 docs/version-specific/supported-software/d/DosageConvertor.md create mode 100644 docs/version-specific/supported-software/d/DoubletFinder.md create mode 100644 docs/version-specific/supported-software/d/Doxygen.md create mode 100644 docs/version-specific/supported-software/d/Drake.md create mode 100644 docs/version-specific/supported-software/d/Dsuite.md create mode 100644 docs/version-specific/supported-software/d/DualSPHysics.md create mode 100644 docs/version-specific/supported-software/d/DyMat.md create mode 100644 docs/version-specific/supported-software/d/dRep.md create mode 100644 docs/version-specific/supported-software/d/dSFMT.md create mode 100644 docs/version-specific/supported-software/d/dadi.md create mode 100644 docs/version-specific/supported-software/d/dagitty.md create mode 100644 docs/version-specific/supported-software/d/damageproto.md create mode 100644 docs/version-specific/supported-software/d/dammit.md create mode 100644 docs/version-specific/supported-software/d/dask-labextension.md create mode 100644 docs/version-specific/supported-software/d/dask.md create mode 100644 docs/version-specific/supported-software/d/datalad.md create mode 100644 docs/version-specific/supported-software/d/datamash.md create mode 100644 docs/version-specific/supported-software/d/davix.md create mode 100644 docs/version-specific/supported-software/d/dbus-glib.md create mode 100644 docs/version-specific/supported-software/d/dclone.md create mode 100644 docs/version-specific/supported-software/d/dcm2niix.md create mode 100644 docs/version-specific/supported-software/d/dd.md create mode 100644 docs/version-specific/supported-software/d/deal.II.md create mode 100644 docs/version-specific/supported-software/d/deap.md create mode 100644 docs/version-specific/supported-software/d/decona.md create mode 100644 docs/version-specific/supported-software/d/deconf.md create mode 100644 docs/version-specific/supported-software/d/deepTools.md create mode 100644 docs/version-specific/supported-software/d/deepdiff.md create mode 100644 docs/version-specific/supported-software/d/deepfold.md create mode 100644 docs/version-specific/supported-software/d/deepmedic.md create mode 100644 docs/version-specific/supported-software/d/denseweight.md create mode 100644 docs/version-specific/supported-software/d/desktop-file-utils.md create mode 100644 docs/version-specific/supported-software/d/destiny.md create mode 100644 docs/version-specific/supported-software/d/devbio-napari.md create mode 100644 docs/version-specific/supported-software/d/dftd3-lib.md create mode 100644 docs/version-specific/supported-software/d/dftd4.md create mode 100644 docs/version-specific/supported-software/d/dialog.md create mode 100644 docs/version-specific/supported-software/d/dicom2nifti.md create mode 100644 docs/version-specific/supported-software/d/dijitso.md create mode 100644 docs/version-specific/supported-software/d/dill.md create mode 100644 docs/version-specific/supported-software/d/distributed.md create mode 100644 docs/version-specific/supported-software/d/dlb.md create mode 100644 docs/version-specific/supported-software/d/dlib.md create mode 100644 docs/version-specific/supported-software/d/dm-haiku.md create mode 100644 docs/version-specific/supported-software/d/dm-reverb.md create mode 100644 docs/version-specific/supported-software/d/dm-tree.md create mode 100644 docs/version-specific/supported-software/d/dominate.md create mode 100644 docs/version-specific/supported-software/d/dorado.md create mode 100644 docs/version-specific/supported-software/d/dotNET-Core-Runtime.md create mode 100644 docs/version-specific/supported-software/d/dotNET-Core.md create mode 100644 docs/version-specific/supported-software/d/dotNET-SDK.md create mode 100644 docs/version-specific/supported-software/d/double-conversion.md create mode 100644 docs/version-specific/supported-software/d/drmaa-python.md create mode 100644 docs/version-specific/supported-software/d/dropEst.md create mode 100644 docs/version-specific/supported-software/d/dtcmp.md create mode 100644 docs/version-specific/supported-software/d/dtcwt.md create mode 100644 docs/version-specific/supported-software/d/dune-core.md create mode 100644 docs/version-specific/supported-software/d/dune-fem.md create mode 100644 docs/version-specific/supported-software/d/duplex-tools.md create mode 100644 docs/version-specific/supported-software/d/dx-toolkit.md create mode 100644 docs/version-specific/supported-software/d/dxpy.md create mode 100644 docs/version-specific/supported-software/d/dynesty.md create mode 100644 docs/version-specific/supported-software/d/index.md create mode 100644 docs/version-specific/supported-software/e/E-ANTIC.md create mode 100644 docs/version-specific/supported-software/e/ECL.md create mode 100644 docs/version-specific/supported-software/e/ED2.md create mode 100644 docs/version-specific/supported-software/e/EDirect.md create mode 100644 docs/version-specific/supported-software/e/EGTtools.md create mode 100644 docs/version-specific/supported-software/e/EIGENSOFT.md create mode 100644 docs/version-specific/supported-software/e/ELFIO.md create mode 100644 docs/version-specific/supported-software/e/ELPA.md create mode 100644 docs/version-specific/supported-software/e/ELPH.md create mode 100644 docs/version-specific/supported-software/e/ELSI-RCI.md create mode 100644 docs/version-specific/supported-software/e/ELSI.md create mode 100644 docs/version-specific/supported-software/e/EMAN2.md create mode 100644 docs/version-specific/supported-software/e/EMBOSS.md create mode 100644 docs/version-specific/supported-software/e/EMU.md create mode 100644 docs/version-specific/supported-software/e/EPD.md create mode 100644 docs/version-specific/supported-software/e/EPIC.md create mode 100644 docs/version-specific/supported-software/e/ESL-Bundle.md create mode 100644 docs/version-specific/supported-software/e/ESM-2.md create mode 100644 docs/version-specific/supported-software/e/ESMF.md create mode 100644 docs/version-specific/supported-software/e/ESMPy.md create mode 100644 docs/version-specific/supported-software/e/ESMValTool.md create mode 100644 docs/version-specific/supported-software/e/ESPResSo.md create mode 100644 docs/version-specific/supported-software/e/ETE.md create mode 100644 docs/version-specific/supported-software/e/ETSF_IO.md create mode 100644 docs/version-specific/supported-software/e/EUKulele.md create mode 100644 docs/version-specific/supported-software/e/EVcouplings.md create mode 100644 docs/version-specific/supported-software/e/EZC3D.md create mode 100644 docs/version-specific/supported-software/e/EasyBuild.md create mode 100644 docs/version-specific/supported-software/e/EasyMocap.md create mode 100644 docs/version-specific/supported-software/e/EasyQC.md create mode 100644 docs/version-specific/supported-software/e/EggLib.md create mode 100644 docs/version-specific/supported-software/e/Eigen.md create mode 100644 docs/version-specific/supported-software/e/EigenExa.md create mode 100644 docs/version-specific/supported-software/e/Elk.md create mode 100644 docs/version-specific/supported-software/e/Elmer.md create mode 100644 docs/version-specific/supported-software/e/Emacs.md create mode 100644 docs/version-specific/supported-software/e/Embree.md create mode 100644 docs/version-specific/supported-software/e/EnergyPlus.md create mode 100644 docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md create mode 100644 docs/version-specific/supported-software/e/EpiSCORE.md create mode 100644 docs/version-specific/supported-software/e/EricScript.md create mode 100644 docs/version-specific/supported-software/e/Essentia.md create mode 100644 docs/version-specific/supported-software/e/Evcxr-REPL.md create mode 100644 docs/version-specific/supported-software/e/EveryBeam.md create mode 100644 docs/version-specific/supported-software/e/EvidentialGene.md create mode 100644 docs/version-specific/supported-software/e/ExaBayes.md create mode 100644 docs/version-specific/supported-software/e/ExaML.md create mode 100644 docs/version-specific/supported-software/e/Excel-Writer-XLSX.md create mode 100644 docs/version-specific/supported-software/e/ExifTool.md create mode 100644 docs/version-specific/supported-software/e/Exonerate.md create mode 100644 docs/version-specific/supported-software/e/ExpressBetaDiversity.md create mode 100644 docs/version-specific/supported-software/e/Extrae.md create mode 100644 docs/version-specific/supported-software/e/ExtremeLy.md create mode 100644 docs/version-specific/supported-software/e/e3nn.md create mode 100644 docs/version-specific/supported-software/e/eQuilibrator.md create mode 100644 docs/version-specific/supported-software/e/eSpeak-NG.md create mode 100644 docs/version-specific/supported-software/e/eXpress.md create mode 100644 docs/version-specific/supported-software/e/ea-utils.md create mode 100644 docs/version-specific/supported-software/e/earthengine-api.md create mode 100644 docs/version-specific/supported-software/e/easel.md create mode 100644 docs/version-specific/supported-software/e/ebGSEA.md create mode 100644 docs/version-specific/supported-software/e/ecBuild.md create mode 100644 docs/version-specific/supported-software/e/ecCodes.md create mode 100644 docs/version-specific/supported-software/e/ecFlow.md create mode 100644 docs/version-specific/supported-software/e/eccodes-python.md create mode 100644 docs/version-specific/supported-software/e/eclib.md create mode 100644 docs/version-specific/supported-software/e/edlib.md create mode 100644 docs/version-specific/supported-software/e/eggnog-mapper.md create mode 100644 docs/version-specific/supported-software/e/eht-imaging.md create mode 100644 docs/version-specific/supported-software/e/einops.md create mode 100644 docs/version-specific/supported-software/e/elastix.md create mode 100644 docs/version-specific/supported-software/e/elbencho.md create mode 100644 docs/version-specific/supported-software/e/elfutils.md create mode 100644 docs/version-specific/supported-software/e/elprep.md create mode 100644 docs/version-specific/supported-software/e/emcee.md create mode 100644 docs/version-specific/supported-software/e/enaBrowserTool.md create mode 100644 docs/version-specific/supported-software/e/enchant-2.md create mode 100644 docs/version-specific/supported-software/e/enchant.md create mode 100644 docs/version-specific/supported-software/e/ensmallen.md create mode 100644 docs/version-specific/supported-software/e/entrypoints.md create mode 100644 docs/version-specific/supported-software/e/epct.md create mode 100644 docs/version-specific/supported-software/e/epiScanpy.md create mode 100644 docs/version-specific/supported-software/e/eudev.md create mode 100644 docs/version-specific/supported-software/e/evince.md create mode 100644 docs/version-specific/supported-software/e/evmix.md create mode 100644 docs/version-specific/supported-software/e/exiv2.md create mode 100644 docs/version-specific/supported-software/e/expat.md create mode 100644 docs/version-specific/supported-software/e/expect.md create mode 100644 docs/version-specific/supported-software/e/expecttest.md create mode 100644 docs/version-specific/supported-software/e/index.md create mode 100644 docs/version-specific/supported-software/f/FACE.md create mode 100644 docs/version-specific/supported-software/f/FALCON.md create mode 100644 docs/version-specific/supported-software/f/FANN.md create mode 100644 docs/version-specific/supported-software/f/FASTA.md create mode 100644 docs/version-specific/supported-software/f/FASTX-Toolkit.md create mode 100644 docs/version-specific/supported-software/f/FBPIC.md create mode 100644 docs/version-specific/supported-software/f/FCC.md create mode 100644 docs/version-specific/supported-software/f/FCM.md create mode 100644 docs/version-specific/supported-software/f/FDMNES.md create mode 100644 docs/version-specific/supported-software/f/FDS.md create mode 100644 docs/version-specific/supported-software/f/FDTD_Solutions.md create mode 100644 docs/version-specific/supported-software/f/FEniCS.md create mode 100644 docs/version-specific/supported-software/f/FFAVES.md create mode 100644 docs/version-specific/supported-software/f/FFC.md create mode 100644 docs/version-specific/supported-software/f/FFLAS-FFPACK.md create mode 100644 docs/version-specific/supported-software/f/FFTW.MPI.md create mode 100644 docs/version-specific/supported-software/f/FFTW.md create mode 100644 docs/version-specific/supported-software/f/FFmpeg.md create mode 100644 docs/version-specific/supported-software/f/FGSL.md create mode 100644 docs/version-specific/supported-software/f/FHI-aims.md create mode 100644 docs/version-specific/supported-software/f/FIAT.md create mode 100644 docs/version-specific/supported-software/f/FIGARO.md create mode 100644 docs/version-specific/supported-software/f/FIRESTARTER.md create mode 100644 docs/version-specific/supported-software/f/FIX.md create mode 100644 docs/version-specific/supported-software/f/FIt-SNE.md create mode 100644 docs/version-specific/supported-software/f/FLAC.md create mode 100644 docs/version-specific/supported-software/f/FLAIR.md create mode 100644 docs/version-specific/supported-software/f/FLANN.md create mode 100644 docs/version-specific/supported-software/f/FLASH.md create mode 100644 docs/version-specific/supported-software/f/FLEUR.md create mode 100644 docs/version-specific/supported-software/f/FLINT.md create mode 100644 docs/version-specific/supported-software/f/FLTK.md create mode 100644 docs/version-specific/supported-software/f/FLUENT.md create mode 100644 docs/version-specific/supported-software/f/FMILibrary.md create mode 100644 docs/version-specific/supported-software/f/FMM3D.md create mode 100644 docs/version-specific/supported-software/f/FMPy.md create mode 100644 docs/version-specific/supported-software/f/FMRIprep.md create mode 100644 docs/version-specific/supported-software/f/FMS.md create mode 100644 docs/version-specific/supported-software/f/FORD.md create mode 100644 docs/version-specific/supported-software/f/FOX-Toolkit.md create mode 100644 docs/version-specific/supported-software/f/FPM.md create mode 100644 docs/version-specific/supported-software/f/FRANz.md create mode 100644 docs/version-specific/supported-software/f/FRUIT.md create mode 100644 docs/version-specific/supported-software/f/FRUIT_processor.md create mode 100644 docs/version-specific/supported-software/f/FSL.md create mode 100644 docs/version-specific/supported-software/f/FSLeyes.md create mode 100644 docs/version-specific/supported-software/f/FSON.md create mode 100644 docs/version-specific/supported-software/f/FTGL.md create mode 100644 docs/version-specific/supported-software/f/FUNWAVE-TVD.md create mode 100644 docs/version-specific/supported-software/f/FUSE.md create mode 100644 docs/version-specific/supported-software/f/FabIO.md create mode 100644 docs/version-specific/supported-software/f/Faber.md create mode 100644 docs/version-specific/supported-software/f/Faiss.md create mode 100644 docs/version-specific/supported-software/f/FastANI.md create mode 100644 docs/version-specific/supported-software/f/FastFold.md create mode 100644 docs/version-specific/supported-software/f/FastME.md create mode 100644 docs/version-specific/supported-software/f/FastQC.md create mode 100644 docs/version-specific/supported-software/f/FastQTL.md create mode 100644 docs/version-specific/supported-software/f/FastQ_Screen.md create mode 100644 docs/version-specific/supported-software/f/FastRFS.md create mode 100644 docs/version-specific/supported-software/f/FastTree.md create mode 100644 docs/version-specific/supported-software/f/FastViromeExplorer.md create mode 100644 docs/version-specific/supported-software/f/FastaIndex.md create mode 100644 docs/version-specific/supported-software/f/Fastaq.md create mode 100644 docs/version-specific/supported-software/f/Ferret.md create mode 100644 docs/version-specific/supported-software/f/FigureGen.md create mode 100644 docs/version-specific/supported-software/f/Fiji.md create mode 100644 docs/version-specific/supported-software/f/Filtlong.md create mode 100644 docs/version-specific/supported-software/f/Fiona.md create mode 100644 docs/version-specific/supported-software/f/FireWorks.md create mode 100644 docs/version-specific/supported-software/f/Firefox.md create mode 100644 docs/version-specific/supported-software/f/Flask.md create mode 100644 docs/version-specific/supported-software/f/Flexbar.md create mode 100644 docs/version-specific/supported-software/f/FlexiBLAS.md create mode 100644 docs/version-specific/supported-software/f/FlexiDot.md create mode 100644 docs/version-specific/supported-software/f/Flink.md create mode 100644 docs/version-specific/supported-software/f/Flye.md create mode 100644 docs/version-specific/supported-software/f/FoBiS.md create mode 100644 docs/version-specific/supported-software/f/FoX.md create mode 100644 docs/version-specific/supported-software/f/FoldX.md create mode 100644 docs/version-specific/supported-software/f/FragGeneScan.md create mode 100644 docs/version-specific/supported-software/f/FragPipe.md create mode 100644 docs/version-specific/supported-software/f/FreeBarcodes.md create mode 100644 docs/version-specific/supported-software/f/FreeFEM.md create mode 100644 docs/version-specific/supported-software/f/FreeFem++.md create mode 100644 docs/version-specific/supported-software/f/FreeImage.md create mode 100644 docs/version-specific/supported-software/f/FreeSASA.md create mode 100644 docs/version-specific/supported-software/f/FreeSurfer.md create mode 100644 docs/version-specific/supported-software/f/FreeTDS.md create mode 100644 docs/version-specific/supported-software/f/FreeXL.md create mode 100644 docs/version-specific/supported-software/f/FriBidi.md create mode 100644 docs/version-specific/supported-software/f/FuSeq.md create mode 100644 docs/version-specific/supported-software/f/Fujitsu.md create mode 100644 docs/version-specific/supported-software/f/FunGAP.md create mode 100644 docs/version-specific/supported-software/f/FusionCatcher.md create mode 100644 docs/version-specific/supported-software/f/f90cache.md create mode 100644 docs/version-specific/supported-software/f/f90nml.md create mode 100644 docs/version-specific/supported-software/f/f90wrap.md create mode 100644 docs/version-specific/supported-software/f/faceswap.md create mode 100644 docs/version-specific/supported-software/f/fast5.md create mode 100644 docs/version-specific/supported-software/f/fastPHASE.md create mode 100644 docs/version-specific/supported-software/f/fastStructure.md create mode 100644 docs/version-specific/supported-software/f/fasta-reader.md create mode 100644 docs/version-specific/supported-software/f/fastahack.md create mode 100644 docs/version-specific/supported-software/f/fastai.md create mode 100644 docs/version-specific/supported-software/f/fastjet-contrib.md create mode 100644 docs/version-specific/supported-software/f/fastjet.md create mode 100644 docs/version-specific/supported-software/f/fastml.md create mode 100644 docs/version-specific/supported-software/f/fastp.md create mode 100644 docs/version-specific/supported-software/f/fastparquet.md create mode 100644 docs/version-specific/supported-software/f/fastq-pair.md create mode 100644 docs/version-specific/supported-software/f/fastq-tools.md create mode 100644 docs/version-specific/supported-software/f/fastqsplitter.md create mode 100644 docs/version-specific/supported-software/f/fastqz.md create mode 100644 docs/version-specific/supported-software/f/fatslim.md create mode 100644 docs/version-specific/supported-software/f/fbm.md create mode 100644 docs/version-specific/supported-software/f/fdict.md create mode 100644 docs/version-specific/supported-software/f/fdstools.md create mode 100644 docs/version-specific/supported-software/f/feh.md create mode 100644 docs/version-specific/supported-software/f/fermi-lite.md create mode 100644 docs/version-specific/supported-software/f/festival.md create mode 100644 docs/version-specific/supported-software/f/fetchMG.md create mode 100644 docs/version-specific/supported-software/f/ffmpi.md create mode 100644 docs/version-specific/supported-software/f/ffnet.md create mode 100644 docs/version-specific/supported-software/f/ffnvcodec.md create mode 100644 docs/version-specific/supported-software/f/fftlib.md create mode 100644 docs/version-specific/supported-software/f/fgbio.md create mode 100644 docs/version-specific/supported-software/f/file.md create mode 100644 docs/version-specific/supported-software/f/filevercmp.md create mode 100644 docs/version-specific/supported-software/f/find_circ.md create mode 100644 docs/version-specific/supported-software/f/finder.md create mode 100644 docs/version-specific/supported-software/f/findhap.md create mode 100644 docs/version-specific/supported-software/f/findutils.md create mode 100644 docs/version-specific/supported-software/f/fineRADstructure.md create mode 100644 docs/version-specific/supported-software/f/fineSTRUCTURE.md create mode 100644 docs/version-specific/supported-software/f/fio.md create mode 100644 docs/version-specific/supported-software/f/fixesproto.md create mode 100644 docs/version-specific/supported-software/f/flair-NLP.md create mode 100644 docs/version-specific/supported-software/f/flatbuffers-python.md create mode 100644 docs/version-specific/supported-software/f/flatbuffers.md create mode 100644 docs/version-specific/supported-software/f/flex.md create mode 100644 docs/version-specific/supported-software/f/flit.md create mode 100644 docs/version-specific/supported-software/f/flook.md create mode 100644 docs/version-specific/supported-software/f/flowFDA.md create mode 100644 docs/version-specific/supported-software/f/fmt.md create mode 100644 docs/version-specific/supported-software/f/fontconfig.md create mode 100644 docs/version-specific/supported-software/f/fontsproto.md create mode 100644 docs/version-specific/supported-software/f/forbear.md create mode 100644 docs/version-specific/supported-software/f/foss.md create mode 100644 docs/version-specific/supported-software/f/fosscuda.md create mode 100644 docs/version-specific/supported-software/f/fplll.md create mode 100644 docs/version-specific/supported-software/f/fpocket.md create mode 100644 docs/version-specific/supported-software/f/fpylll.md create mode 100644 docs/version-specific/supported-software/f/fqtrim.md create mode 100644 docs/version-specific/supported-software/f/fqzcomp.md create mode 100644 docs/version-specific/supported-software/f/freebayes.md create mode 100644 docs/version-specific/supported-software/f/freeglut.md create mode 100644 docs/version-specific/supported-software/f/freetype-py.md create mode 100644 docs/version-specific/supported-software/f/freetype.md create mode 100644 docs/version-specific/supported-software/f/freud-analysis.md create mode 100644 docs/version-specific/supported-software/f/fsom.md create mode 100644 docs/version-specific/supported-software/f/ftfy.md create mode 100644 docs/version-specific/supported-software/f/fugue.md create mode 100644 docs/version-specific/supported-software/f/fullrmc.md create mode 100644 docs/version-specific/supported-software/f/fumi_tools.md create mode 100644 docs/version-specific/supported-software/f/funannotate.md create mode 100644 docs/version-specific/supported-software/f/futhark.md create mode 100644 docs/version-specific/supported-software/f/futile.md create mode 100644 docs/version-specific/supported-software/f/future.md create mode 100644 docs/version-specific/supported-software/f/fxtract.md create mode 100644 docs/version-specific/supported-software/f/index.md create mode 100644 docs/version-specific/supported-software/g/G-PhoCS.md create mode 100644 docs/version-specific/supported-software/g/GAMESS-US.md create mode 100644 docs/version-specific/supported-software/g/GAPPadder.md create mode 100644 docs/version-specific/supported-software/g/GARLI.md create mode 100644 docs/version-specific/supported-software/g/GAT.md create mode 100644 docs/version-specific/supported-software/g/GATB-Core.md create mode 100644 docs/version-specific/supported-software/g/GATE.md create mode 100644 docs/version-specific/supported-software/g/GATK.md create mode 100644 docs/version-specific/supported-software/g/GBprocesS.md create mode 100644 docs/version-specific/supported-software/g/GC3Pie.md create mode 100644 docs/version-specific/supported-software/g/GCC.md create mode 100644 docs/version-specific/supported-software/g/GCCcore.md create mode 100644 docs/version-specific/supported-software/g/GCTA.md create mode 100644 docs/version-specific/supported-software/g/GConf.md create mode 100644 docs/version-specific/supported-software/g/GD.md create mode 100644 docs/version-specific/supported-software/g/GDAL.md create mode 100644 docs/version-specific/supported-software/g/GDB.md create mode 100644 docs/version-specific/supported-software/g/GDCHART.md create mode 100644 docs/version-specific/supported-software/g/GDCM.md create mode 100644 docs/version-specific/supported-software/g/GDGraph.md create mode 100644 docs/version-specific/supported-software/g/GDRCopy.md create mode 100644 docs/version-specific/supported-software/g/GEGL.md create mode 100644 docs/version-specific/supported-software/g/GEM-library.md create mode 100644 docs/version-specific/supported-software/g/GEM.md create mode 100644 docs/version-specific/supported-software/g/GEMMA.md create mode 100644 docs/version-specific/supported-software/g/GEOS.md create mode 100644 docs/version-specific/supported-software/g/GETORB.md create mode 100644 docs/version-specific/supported-software/g/GFF3-toolkit.md create mode 100644 docs/version-specific/supported-software/g/GFOLD.md create mode 100644 docs/version-specific/supported-software/g/GHC.md create mode 100644 docs/version-specific/supported-software/g/GI-DocGen.md create mode 100644 docs/version-specific/supported-software/g/GIMIC.md create mode 100644 docs/version-specific/supported-software/g/GIMP.md create mode 100644 docs/version-specific/supported-software/g/GIMPS.md create mode 100644 docs/version-specific/supported-software/g/GKeyll.md create mode 100644 docs/version-specific/supported-software/g/GKlib-METIS.md create mode 100644 docs/version-specific/supported-software/g/GL2PS.md create mode 100644 docs/version-specific/supported-software/g/GLFW.md create mode 100644 docs/version-specific/supported-software/g/GLI.md create mode 100644 docs/version-specific/supported-software/g/GLIMMER.md create mode 100644 docs/version-specific/supported-software/g/GLIMPSE.md create mode 100644 docs/version-specific/supported-software/g/GLM-AED.md create mode 100644 docs/version-specific/supported-software/g/GLM.md create mode 100644 docs/version-specific/supported-software/g/GLPK.md create mode 100644 docs/version-specific/supported-software/g/GLib.md create mode 100644 docs/version-specific/supported-software/g/GLibmm.md create mode 100644 docs/version-specific/supported-software/g/GMAP-GSNAP.md create mode 100644 docs/version-specific/supported-software/g/GMP-ECM.md create mode 100644 docs/version-specific/supported-software/g/GMP.md create mode 100644 docs/version-specific/supported-software/g/GMT.md create mode 100644 docs/version-specific/supported-software/g/GNU.md create mode 100644 docs/version-specific/supported-software/g/GOATOOLS.md create mode 100644 docs/version-specific/supported-software/g/GOBNILP.md create mode 100644 docs/version-specific/supported-software/g/GObject-Introspection.md create mode 100644 docs/version-specific/supported-software/g/GP2C.md create mode 100644 docs/version-specific/supported-software/g/GPAW-setups.md create mode 100644 docs/version-specific/supported-software/g/GPAW.md create mode 100644 docs/version-specific/supported-software/g/GPy.md create mode 100644 docs/version-specific/supported-software/g/GPyOpt.md create mode 100644 docs/version-specific/supported-software/g/GPyTorch.md create mode 100644 docs/version-specific/supported-software/g/GRASP-suite.md create mode 100644 docs/version-specific/supported-software/g/GRASP.md create mode 100644 docs/version-specific/supported-software/g/GRASS.md create mode 100644 docs/version-specific/supported-software/g/GRIDSS.md create mode 100644 docs/version-specific/supported-software/g/GRIT.md create mode 100644 docs/version-specific/supported-software/g/GRNBoost.md create mode 100644 docs/version-specific/supported-software/g/GROMACS.md create mode 100644 docs/version-specific/supported-software/g/GSD.md create mode 100644 docs/version-specific/supported-software/g/GSEA.md create mode 100644 docs/version-specific/supported-software/g/GSL.md create mode 100644 docs/version-specific/supported-software/g/GST-plugins-bad.md create mode 100644 docs/version-specific/supported-software/g/GST-plugins-base.md create mode 100644 docs/version-specific/supported-software/g/GStreamer.md create mode 100644 docs/version-specific/supported-software/g/GTDB-Tk.md create mode 100644 docs/version-specific/supported-software/g/GTK+.md create mode 100644 docs/version-specific/supported-software/g/GTK2.md create mode 100644 docs/version-specific/supported-software/g/GTK3.md create mode 100644 docs/version-specific/supported-software/g/GTK4.md create mode 100644 docs/version-specific/supported-software/g/GTOOL.md create mode 100644 docs/version-specific/supported-software/g/GTS.md create mode 100644 docs/version-specific/supported-software/g/GUIDANCE.md create mode 100644 docs/version-specific/supported-software/g/GULP.md create mode 100644 docs/version-specific/supported-software/g/GUSHR.md create mode 100644 docs/version-specific/supported-software/g/Gaia.md create mode 100644 docs/version-specific/supported-software/g/GapCloser.md create mode 100644 docs/version-specific/supported-software/g/GapFiller.md create mode 100644 docs/version-specific/supported-software/g/Gaussian.md create mode 100644 docs/version-specific/supported-software/g/Gblocks.md create mode 100644 docs/version-specific/supported-software/g/Gctf.md create mode 100644 docs/version-specific/supported-software/g/Gdk-Pixbuf.md create mode 100644 docs/version-specific/supported-software/g/Gdspy.md create mode 100644 docs/version-specific/supported-software/g/Geant4-data.md create mode 100644 docs/version-specific/supported-software/g/Geant4.md create mode 100644 docs/version-specific/supported-software/g/GenMap.md create mode 100644 docs/version-specific/supported-software/g/GeneMark-ET.md create mode 100644 docs/version-specific/supported-software/g/GenerativeModels.md create mode 100644 docs/version-specific/supported-software/g/GenomeComb.md create mode 100644 docs/version-specific/supported-software/g/GenomeMapper.md create mode 100644 docs/version-specific/supported-software/g/GenomeTester4.md create mode 100644 docs/version-specific/supported-software/g/GenomeThreader.md create mode 100644 docs/version-specific/supported-software/g/GenomeTools.md create mode 100644 docs/version-specific/supported-software/g/GenomeWorks.md create mode 100644 docs/version-specific/supported-software/g/Genome_Profiler.md create mode 100644 docs/version-specific/supported-software/g/GenotypeHarmonizer.md create mode 100644 docs/version-specific/supported-software/g/Gerris.md create mode 100644 docs/version-specific/supported-software/g/GetOrganelle.md create mode 100644 docs/version-specific/supported-software/g/GffCompare.md create mode 100644 docs/version-specific/supported-software/g/Ghostscript.md create mode 100644 docs/version-specific/supported-software/g/Gibbs2.md create mode 100644 docs/version-specific/supported-software/g/GimmeMotifs.md create mode 100644 docs/version-specific/supported-software/g/Giotto-Suite.md create mode 100644 docs/version-specific/supported-software/g/GitPython.md create mode 100644 docs/version-specific/supported-software/g/Givaro.md create mode 100644 docs/version-specific/supported-software/g/Giza.md create mode 100644 docs/version-specific/supported-software/g/Glade.md create mode 100644 docs/version-specific/supported-software/g/GlimmerHMM.md create mode 100644 docs/version-specific/supported-software/g/GlobalArrays.md create mode 100644 docs/version-specific/supported-software/g/Globus-CLI.md create mode 100644 docs/version-specific/supported-software/g/GlobusConnectPersonal.md create mode 100644 docs/version-specific/supported-software/g/Glucose.md create mode 100644 docs/version-specific/supported-software/g/GnuTLS.md create mode 100644 docs/version-specific/supported-software/g/Go.md create mode 100644 docs/version-specific/supported-software/g/Godon.md create mode 100644 docs/version-specific/supported-software/g/GraPhlAn.md create mode 100644 docs/version-specific/supported-software/g/Grace.md create mode 100644 docs/version-specific/supported-software/g/Gradle.md create mode 100644 docs/version-specific/supported-software/g/GraphDB.md create mode 100644 docs/version-specific/supported-software/g/GraphMap.md create mode 100644 docs/version-specific/supported-software/g/GraphMap2.md create mode 100644 docs/version-specific/supported-software/g/Graphene.md create mode 100644 docs/version-specific/supported-software/g/GraphicsMagick.md create mode 100644 docs/version-specific/supported-software/g/Graphviz.md create mode 100644 docs/version-specific/supported-software/g/Greenlet.md create mode 100644 docs/version-specific/supported-software/g/Grep.md create mode 100644 docs/version-specific/supported-software/g/GroIMP.md create mode 100644 docs/version-specific/supported-software/g/GromacsWrapper.md create mode 100644 docs/version-specific/supported-software/g/Groovy.md create mode 100644 docs/version-specific/supported-software/g/GtkSourceView.md create mode 100644 docs/version-specific/supported-software/g/Guile.md create mode 100644 docs/version-specific/supported-software/g/Gurobi.md create mode 100644 docs/version-specific/supported-software/g/g2clib.md create mode 100644 docs/version-specific/supported-software/g/g2lib.md create mode 100644 docs/version-specific/supported-software/g/g2log.md create mode 100644 docs/version-specific/supported-software/g/gRPC.md create mode 100644 docs/version-specific/supported-software/g/gSOAP.md create mode 100644 docs/version-specific/supported-software/g/gap.md create mode 100644 docs/version-specific/supported-software/g/gappa.md create mode 100644 docs/version-specific/supported-software/g/garnett.md create mode 100644 docs/version-specific/supported-software/g/gawk.md create mode 100644 docs/version-specific/supported-software/g/gbasis.md create mode 100644 docs/version-specific/supported-software/g/gbs2ploidy.md create mode 100644 docs/version-specific/supported-software/g/gc.md create mode 100644 docs/version-specific/supported-software/g/gcccuda.md create mode 100644 docs/version-specific/supported-software/g/gcloud.md create mode 100644 docs/version-specific/supported-software/g/gcsfs.md create mode 100644 docs/version-specific/supported-software/g/gdbgui.md create mode 100644 docs/version-specific/supported-software/g/gdbm.md create mode 100644 docs/version-specific/supported-software/g/gdc-client.md create mode 100644 docs/version-specific/supported-software/g/gdist.md create mode 100644 docs/version-specific/supported-software/g/gearshifft.md create mode 100644 docs/version-specific/supported-software/g/gemelli.md create mode 100644 docs/version-specific/supported-software/g/gemmi.md create mode 100644 docs/version-specific/supported-software/g/gencore_variant_detection.md create mode 100644 docs/version-specific/supported-software/g/gengetopt.md create mode 100644 docs/version-specific/supported-software/g/genomepy.md create mode 100644 docs/version-specific/supported-software/g/genozip.md create mode 100644 docs/version-specific/supported-software/g/gensim.md create mode 100644 docs/version-specific/supported-software/g/geocube.md create mode 100644 docs/version-specific/supported-software/g/geopandas.md create mode 100644 docs/version-specific/supported-software/g/geopy.md create mode 100644 docs/version-specific/supported-software/g/georges.md create mode 100644 docs/version-specific/supported-software/g/geosphere.md create mode 100644 docs/version-specific/supported-software/g/gettext.md create mode 100644 docs/version-specific/supported-software/g/gexiv2.md create mode 100644 docs/version-specific/supported-software/g/gfbf.md create mode 100644 docs/version-specific/supported-software/g/gffread.md create mode 100644 docs/version-specific/supported-software/g/gffutils.md create mode 100644 docs/version-specific/supported-software/g/gflags.md create mode 100644 docs/version-specific/supported-software/g/gh.md create mode 100644 docs/version-specific/supported-software/g/giac.md create mode 100644 docs/version-specific/supported-software/g/giflib.md create mode 100644 docs/version-specific/supported-software/g/gifsicle.md create mode 100644 docs/version-specific/supported-software/g/gimkl.md create mode 100644 docs/version-specific/supported-software/g/gimpi.md create mode 100644 docs/version-specific/supported-software/g/gimpic.md create mode 100644 docs/version-specific/supported-software/g/giolf.md create mode 100644 docs/version-specific/supported-software/g/giolfc.md create mode 100644 docs/version-specific/supported-software/g/git-annex.md create mode 100644 docs/version-specific/supported-software/g/git-extras.md create mode 100644 docs/version-specific/supported-software/g/git-lfs.md create mode 100644 docs/version-specific/supported-software/g/git.md create mode 100644 docs/version-specific/supported-software/g/gkmSVM.md create mode 100644 docs/version-specific/supported-software/g/glew.md create mode 100644 docs/version-specific/supported-software/g/glib-networking.md create mode 100644 docs/version-specific/supported-software/g/glibc.md create mode 100644 docs/version-specific/supported-software/g/glog.md create mode 100644 docs/version-specific/supported-software/g/glproto.md create mode 100644 docs/version-specific/supported-software/g/gmpich.md create mode 100644 docs/version-specific/supported-software/g/gmpolf.md create mode 100644 docs/version-specific/supported-software/g/gmpy2.md create mode 100644 docs/version-specific/supported-software/g/gmsh.md create mode 100644 docs/version-specific/supported-software/g/gmvapich2.md create mode 100644 docs/version-specific/supported-software/g/gmvolf.md create mode 100644 docs/version-specific/supported-software/g/gnupg-bundle.md create mode 100644 docs/version-specific/supported-software/g/gnuplot.md create mode 100644 docs/version-specific/supported-software/g/goalign.md create mode 100644 docs/version-specific/supported-software/g/gobff.md create mode 100644 docs/version-specific/supported-software/g/goblf.md create mode 100644 docs/version-specific/supported-software/g/gofasta.md create mode 100644 docs/version-specific/supported-software/g/golf.md create mode 100644 docs/version-specific/supported-software/g/gomkl.md create mode 100644 docs/version-specific/supported-software/g/gompi.md create mode 100644 docs/version-specific/supported-software/g/gompic.md create mode 100644 docs/version-specific/supported-software/g/google-java-format.md create mode 100644 docs/version-specific/supported-software/g/googletest.md create mode 100644 docs/version-specific/supported-software/g/gotree.md create mode 100644 docs/version-specific/supported-software/g/gperf.md create mode 100644 docs/version-specific/supported-software/g/gperftools.md create mode 100644 docs/version-specific/supported-software/g/gpustat.md create mode 100644 docs/version-specific/supported-software/g/gradunwarp.md create mode 100644 docs/version-specific/supported-software/g/graph-tool.md create mode 100644 docs/version-specific/supported-software/g/graphite2.md create mode 100644 docs/version-specific/supported-software/g/graphviz-python.md create mode 100644 docs/version-specific/supported-software/g/gretl.md create mode 100644 docs/version-specific/supported-software/g/grib_api.md create mode 100644 docs/version-specific/supported-software/g/grid.md create mode 100644 docs/version-specific/supported-software/g/groff.md create mode 100644 docs/version-specific/supported-software/g/grpcio.md create mode 100644 docs/version-specific/supported-software/g/gsettings-desktop-schemas.md create mode 100644 docs/version-specific/supported-software/g/gspell.md create mode 100644 docs/version-specific/supported-software/g/gsport.md create mode 100644 docs/version-specific/supported-software/g/gsutil.md create mode 100644 docs/version-specific/supported-software/g/gsw.md create mode 100644 docs/version-specific/supported-software/g/gubbins.md create mode 100644 docs/version-specific/supported-software/g/guenomu.md create mode 100644 docs/version-specific/supported-software/g/gzip.md create mode 100644 docs/version-specific/supported-software/g/index.md create mode 100644 docs/version-specific/supported-software/h/H5hut.md create mode 100644 docs/version-specific/supported-software/h/HAL.md create mode 100644 docs/version-specific/supported-software/h/HAPGEN2.md create mode 100644 docs/version-specific/supported-software/h/HBase.md create mode 100644 docs/version-specific/supported-software/h/HD-BET.md create mode 100644 docs/version-specific/supported-software/h/HDBSCAN.md create mode 100644 docs/version-specific/supported-software/h/HDDM.md create mode 100644 docs/version-specific/supported-software/h/HDF-EOS.md create mode 100644 docs/version-specific/supported-software/h/HDF-EOS2.md create mode 100644 docs/version-specific/supported-software/h/HDF-EOS5.md create mode 100644 docs/version-specific/supported-software/h/HDF.md create mode 100644 docs/version-specific/supported-software/h/HDF5.md create mode 100644 docs/version-specific/supported-software/h/HDFView.md create mode 100644 docs/version-specific/supported-software/h/HEALPix.md create mode 100644 docs/version-specific/supported-software/h/HF-Datasets.md create mode 100644 docs/version-specific/supported-software/h/HH-suite.md create mode 100644 docs/version-specific/supported-software/h/HIP.md create mode 100644 docs/version-specific/supported-software/h/HIPS.md create mode 100644 docs/version-specific/supported-software/h/HISAT2.md create mode 100644 docs/version-specific/supported-software/h/HLAminer.md create mode 100644 docs/version-specific/supported-software/h/HMMER.md create mode 100644 docs/version-specific/supported-software/h/HMMER2.md create mode 100644 docs/version-specific/supported-software/h/HOME.md create mode 100644 docs/version-specific/supported-software/h/HOMER.md create mode 100644 docs/version-specific/supported-software/h/HOOMD-blue.md create mode 100644 docs/version-specific/supported-software/h/HPCC.md create mode 100644 docs/version-specific/supported-software/h/HPCG.md create mode 100644 docs/version-specific/supported-software/h/HPCX.md create mode 100644 docs/version-specific/supported-software/h/HPDBSCAN.md create mode 100644 docs/version-specific/supported-software/h/HPL.md create mode 100644 docs/version-specific/supported-software/h/HTSeq.md create mode 100644 docs/version-specific/supported-software/h/HTSlib.md create mode 100644 docs/version-specific/supported-software/h/HTSplotter.md create mode 100644 docs/version-specific/supported-software/h/Hadoop.md create mode 100644 docs/version-specific/supported-software/h/HarfBuzz.md create mode 100644 docs/version-specific/supported-software/h/Harminv.md create mode 100644 docs/version-specific/supported-software/h/HeFFTe.md create mode 100644 docs/version-specific/supported-software/h/Health-GPS.md create mode 100644 docs/version-specific/supported-software/h/Hello.md create mode 100644 docs/version-specific/supported-software/h/HepMC.md create mode 100644 docs/version-specific/supported-software/h/HepMC3.md create mode 100644 docs/version-specific/supported-software/h/HiC-Pro.md create mode 100644 docs/version-specific/supported-software/h/HiCExplorer.md create mode 100644 docs/version-specific/supported-software/h/HiCMatrix.md create mode 100644 docs/version-specific/supported-software/h/HiGHS.md create mode 100644 docs/version-specific/supported-software/h/HighFive.md create mode 100644 docs/version-specific/supported-software/h/Highway.md create mode 100644 docs/version-specific/supported-software/h/Horovod.md create mode 100644 docs/version-specific/supported-software/h/HyPhy.md create mode 100644 docs/version-specific/supported-software/h/HyPo.md create mode 100644 docs/version-specific/supported-software/h/Hybpiper.md create mode 100644 docs/version-specific/supported-software/h/Hydra.md create mode 100644 docs/version-specific/supported-software/h/HyperQueue.md create mode 100644 docs/version-specific/supported-software/h/Hyperopt.md create mode 100644 docs/version-specific/supported-software/h/Hypre.md create mode 100644 docs/version-specific/supported-software/h/h4toh5.md create mode 100644 docs/version-specific/supported-software/h/h5netcdf.md create mode 100644 docs/version-specific/supported-software/h/h5py.md create mode 100644 docs/version-specific/supported-software/h/hampel.md create mode 100644 docs/version-specific/supported-software/h/hanythingondemand.md create mode 100644 docs/version-specific/supported-software/h/harmony.md create mode 100644 docs/version-specific/supported-software/h/hatch-jupyter-builder.md create mode 100644 docs/version-specific/supported-software/h/hatchling.md create mode 100644 docs/version-specific/supported-software/h/hdWGCNA.md create mode 100644 docs/version-specific/supported-software/h/hdf5storage.md create mode 100644 docs/version-specific/supported-software/h/heaptrack.md create mode 100644 docs/version-specific/supported-software/h/hector.md create mode 100644 docs/version-specific/supported-software/h/help2man.md create mode 100644 docs/version-specific/supported-software/h/hevea.md create mode 100644 docs/version-specific/supported-software/h/hic-straw.md create mode 100644 docs/version-specific/supported-software/h/hierfstat.md create mode 100644 docs/version-specific/supported-software/h/hifiasm.md create mode 100644 docs/version-specific/supported-software/h/hipSYCL.md create mode 100644 docs/version-specific/supported-software/h/hipify-clang.md create mode 100644 docs/version-specific/supported-software/h/hiredis.md create mode 100644 docs/version-specific/supported-software/h/histolab.md create mode 100644 docs/version-specific/supported-software/h/hivtrace.md create mode 100644 docs/version-specific/supported-software/h/hl7apy.md create mode 100644 docs/version-specific/supported-software/h/hmmcopy_utils.md create mode 100644 docs/version-specific/supported-software/h/hmmlearn.md create mode 100644 docs/version-specific/supported-software/h/horton.md create mode 100644 docs/version-specific/supported-software/h/how_are_we_stranded_here.md create mode 100644 docs/version-specific/supported-software/h/htop.md create mode 100644 docs/version-specific/supported-software/h/hub.md create mode 100644 docs/version-specific/supported-software/h/humann.md create mode 100644 docs/version-specific/supported-software/h/hunspell.md create mode 100644 docs/version-specific/supported-software/h/hwloc.md create mode 100644 docs/version-specific/supported-software/h/hyperspy.md create mode 100644 docs/version-specific/supported-software/h/hypothesis.md create mode 100644 docs/version-specific/supported-software/h/index.md create mode 100644 docs/version-specific/supported-software/i/I-TASSER.md create mode 100644 docs/version-specific/supported-software/i/ICA-AROMA.md create mode 100644 docs/version-specific/supported-software/i/ICON.md create mode 100644 docs/version-specific/supported-software/i/ICU.md create mode 100644 docs/version-specific/supported-software/i/IDBA-UD.md create mode 100644 docs/version-specific/supported-software/i/IDG.md create mode 100644 docs/version-specific/supported-software/i/IGMPlot.md create mode 100644 docs/version-specific/supported-software/i/IGV.md create mode 100644 docs/version-specific/supported-software/i/IGVTools.md create mode 100644 docs/version-specific/supported-software/i/IJulia.md create mode 100644 docs/version-specific/supported-software/i/ILAMB.md create mode 100644 docs/version-specific/supported-software/i/IMB.md create mode 100644 docs/version-specific/supported-software/i/IML.md create mode 100644 docs/version-specific/supported-software/i/IMOD.md create mode 100644 docs/version-specific/supported-software/i/IMPUTE2.md create mode 100644 docs/version-specific/supported-software/i/IMa2.md create mode 100644 docs/version-specific/supported-software/i/IMa2p.md create mode 100644 docs/version-specific/supported-software/i/INTEGRATE-Neo.md create mode 100644 docs/version-specific/supported-software/i/INTEGRATE.md create mode 100644 docs/version-specific/supported-software/i/IOR.md create mode 100644 docs/version-specific/supported-software/i/IOzone.md create mode 100644 docs/version-specific/supported-software/i/IPM.md create mode 100644 docs/version-specific/supported-software/i/IPy.md create mode 100644 docs/version-specific/supported-software/i/IPython.md create mode 100644 docs/version-specific/supported-software/i/IQ-TREE.md create mode 100644 docs/version-specific/supported-software/i/IRkernel.md create mode 100644 docs/version-specific/supported-software/i/ISA-L.md create mode 100644 docs/version-specific/supported-software/i/ISL.md create mode 100644 docs/version-specific/supported-software/i/ITK.md create mode 100644 docs/version-specific/supported-software/i/ITSTool.md create mode 100644 docs/version-specific/supported-software/i/ITSx.md create mode 100644 docs/version-specific/supported-software/i/IgBLAST.md create mode 100644 docs/version-specific/supported-software/i/ImageJ.md create mode 100644 docs/version-specific/supported-software/i/ImageMagick.md create mode 100644 docs/version-specific/supported-software/i/Imath.md create mode 100644 docs/version-specific/supported-software/i/Imlib2.md create mode 100644 docs/version-specific/supported-software/i/InChI.md create mode 100644 docs/version-specific/supported-software/i/InParanoid.md create mode 100644 docs/version-specific/supported-software/i/Inelastica.md create mode 100644 docs/version-specific/supported-software/i/Inferelator.md create mode 100644 docs/version-specific/supported-software/i/Infernal.md create mode 100644 docs/version-specific/supported-software/i/Infomap.md create mode 100644 docs/version-specific/supported-software/i/Inspector.md create mode 100644 docs/version-specific/supported-software/i/IntaRNA.md create mode 100644 docs/version-specific/supported-software/i/IntelClusterChecker.md create mode 100644 docs/version-specific/supported-software/i/IntelDAAL.md create mode 100644 docs/version-specific/supported-software/i/IntelPython.md create mode 100644 docs/version-specific/supported-software/i/InterOp.md create mode 100644 docs/version-specific/supported-software/i/InterProScan.md create mode 100644 docs/version-specific/supported-software/i/InterProScan_data.md create mode 100644 docs/version-specific/supported-software/i/IonQuant.md create mode 100644 docs/version-specific/supported-software/i/Ipopt.md create mode 100644 docs/version-specific/supported-software/i/Iris.md create mode 100644 docs/version-specific/supported-software/i/IronPython.md create mode 100644 docs/version-specific/supported-software/i/IsoNet.md create mode 100644 docs/version-specific/supported-software/i/IsoQuant.md create mode 100644 docs/version-specific/supported-software/i/IsoSeq.md create mode 100644 docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md create mode 100644 docs/version-specific/supported-software/i/i-PI.md create mode 100644 docs/version-specific/supported-software/i/i-cisTarget.md create mode 100644 docs/version-specific/supported-software/i/i7z.md create mode 100644 docs/version-specific/supported-software/i/iCount.md create mode 100644 docs/version-specific/supported-software/i/iVar.md create mode 100644 docs/version-specific/supported-software/i/icc.md create mode 100644 docs/version-specific/supported-software/i/iccifort.md create mode 100644 docs/version-specific/supported-software/i/iccifortcuda.md create mode 100644 docs/version-specific/supported-software/i/iced.md create mode 100644 docs/version-specific/supported-software/i/ichorCNA.md create mode 100644 docs/version-specific/supported-software/i/icmake.md create mode 100644 docs/version-specific/supported-software/i/idemux.md create mode 100644 docs/version-specific/supported-software/i/ieeg-cli.md create mode 100644 docs/version-specific/supported-software/i/ifort.md create mode 100644 docs/version-specific/supported-software/i/igraph.md create mode 100644 docs/version-specific/supported-software/i/igv-reports.md create mode 100644 docs/version-specific/supported-software/i/igvShiny.md create mode 100644 docs/version-specific/supported-software/i/iibff.md create mode 100644 docs/version-specific/supported-software/i/iimkl.md create mode 100644 docs/version-specific/supported-software/i/iimpi.md create mode 100644 docs/version-specific/supported-software/i/iimpic.md create mode 100644 docs/version-specific/supported-software/i/imagecodecs.md create mode 100644 docs/version-specific/supported-software/i/imageio.md create mode 100644 docs/version-specific/supported-software/i/imake.md create mode 100644 docs/version-specific/supported-software/i/imbalanced-learn.md create mode 100644 docs/version-specific/supported-software/i/imgaug.md create mode 100644 docs/version-specific/supported-software/i/imkl-FFTW.md create mode 100644 docs/version-specific/supported-software/i/imkl.md create mode 100644 docs/version-specific/supported-software/i/immunedeconv.md create mode 100644 docs/version-specific/supported-software/i/impi.md create mode 100644 docs/version-specific/supported-software/i/imutils.md create mode 100644 docs/version-specific/supported-software/i/index.md create mode 100644 docs/version-specific/supported-software/i/indicators.md create mode 100644 docs/version-specific/supported-software/i/inferCNV.md create mode 100644 docs/version-specific/supported-software/i/infercnvpy.md create mode 100644 docs/version-specific/supported-software/i/inflection.md create mode 100644 docs/version-specific/supported-software/i/inih.md create mode 100644 docs/version-specific/supported-software/i/inline.md create mode 100644 docs/version-specific/supported-software/i/inputproto.md create mode 100644 docs/version-specific/supported-software/i/intel-compilers.md create mode 100644 docs/version-specific/supported-software/i/intel.md create mode 100644 docs/version-specific/supported-software/i/intelcuda.md create mode 100644 docs/version-specific/supported-software/i/intervaltree-python.md create mode 100644 docs/version-specific/supported-software/i/intervaltree.md create mode 100644 docs/version-specific/supported-software/i/intltool.md create mode 100644 docs/version-specific/supported-software/i/io_lib.md create mode 100644 docs/version-specific/supported-software/i/ioapi.md create mode 100644 docs/version-specific/supported-software/i/iodata.md create mode 100644 docs/version-specific/supported-software/i/iomkl.md create mode 100644 docs/version-specific/supported-software/i/iompi.md create mode 100644 docs/version-specific/supported-software/i/iperf.md create mode 100644 docs/version-specific/supported-software/i/ipp.md create mode 100644 docs/version-specific/supported-software/i/ipympl.md create mode 100644 docs/version-specific/supported-software/i/ipyparallel.md create mode 100644 docs/version-specific/supported-software/i/ipyrad.md create mode 100644 docs/version-specific/supported-software/i/irodsfs.md create mode 100644 docs/version-specific/supported-software/i/isoCirc.md create mode 100644 docs/version-specific/supported-software/i/ispc.md create mode 100644 docs/version-specific/supported-software/i/itac.md create mode 100644 docs/version-specific/supported-software/i/itpp.md create mode 100644 docs/version-specific/supported-software/index.md create mode 100644 docs/version-specific/supported-software/j/JAGS.md create mode 100644 docs/version-specific/supported-software/j/JAXFrontCE.md create mode 100644 docs/version-specific/supported-software/j/JSON-GLib.md create mode 100644 docs/version-specific/supported-software/j/JUBE.md create mode 100644 docs/version-specific/supported-software/j/JUnit.md create mode 100644 docs/version-specific/supported-software/j/JWM.md create mode 100644 docs/version-specific/supported-software/j/Jansson.md create mode 100644 docs/version-specific/supported-software/j/JasPer.md create mode 100644 docs/version-specific/supported-software/j/Jasmine.md create mode 100644 docs/version-specific/supported-software/j/Java.md create mode 100644 docs/version-specific/supported-software/j/JavaFX.md create mode 100644 docs/version-specific/supported-software/j/Jblob.md create mode 100644 docs/version-specific/supported-software/j/Jellyfish.md create mode 100644 docs/version-specific/supported-software/j/JiTCODE.md create mode 100644 docs/version-specific/supported-software/j/Jmol.md create mode 100644 docs/version-specific/supported-software/j/Jorg.md create mode 100644 docs/version-specific/supported-software/j/JsonCpp.md create mode 100644 docs/version-specific/supported-software/j/Judy.md create mode 100644 docs/version-specific/supported-software/j/Julia.md create mode 100644 docs/version-specific/supported-software/j/Jupyter-bundle.md create mode 100644 docs/version-specific/supported-software/j/JupyterHub.md create mode 100644 docs/version-specific/supported-software/j/JupyterLab.md create mode 100644 docs/version-specific/supported-software/j/JupyterNotebook.md create mode 100644 docs/version-specific/supported-software/j/index.md create mode 100644 docs/version-specific/supported-software/j/jModelTest.md create mode 100644 docs/version-specific/supported-software/j/jax.md create mode 100644 docs/version-specific/supported-software/j/jbigkit.md create mode 100644 docs/version-specific/supported-software/j/jedi-language-server.md create mode 100644 docs/version-specific/supported-software/j/jedi.md create mode 100644 docs/version-specific/supported-software/j/jemalloc.md create mode 100644 docs/version-specific/supported-software/j/jhbuild.md create mode 100644 docs/version-specific/supported-software/j/jiter.md create mode 100644 docs/version-specific/supported-software/j/joypy.md create mode 100644 docs/version-specific/supported-software/j/jq.md create mode 100644 docs/version-specific/supported-software/j/json-c.md create mode 100644 docs/version-specific/supported-software/j/json-fortran.md create mode 100644 docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md create mode 100644 docs/version-specific/supported-software/j/jupyter-matlab-proxy.md create mode 100644 docs/version-specific/supported-software/j/jupyter-resource-usage.md create mode 100644 docs/version-specific/supported-software/j/jupyter-rsession-proxy.md create mode 100644 docs/version-specific/supported-software/j/jupyter-server-proxy.md create mode 100644 docs/version-specific/supported-software/j/jupyter-server.md create mode 100644 docs/version-specific/supported-software/j/jupyterlab-lmod.md create mode 100644 docs/version-specific/supported-software/j/jupyterlmod.md create mode 100644 docs/version-specific/supported-software/j/jxrlib.md create mode 100644 docs/version-specific/supported-software/k/KAT.md create mode 100644 docs/version-specific/supported-software/k/KITE.md create mode 100644 docs/version-specific/supported-software/k/KMC.md create mode 100644 docs/version-specific/supported-software/k/KMCP.md create mode 100644 docs/version-specific/supported-software/k/KNIME.md create mode 100644 docs/version-specific/supported-software/k/KWIML.md create mode 100644 docs/version-specific/supported-software/k/KaHIP.md create mode 100644 docs/version-specific/supported-software/k/Kaiju.md create mode 100644 docs/version-specific/supported-software/k/Kaleido.md create mode 100644 docs/version-specific/supported-software/k/Kalign.md create mode 100644 docs/version-specific/supported-software/k/Kent_tools.md create mode 100644 docs/version-specific/supported-software/k/Keras.md create mode 100644 docs/version-specific/supported-software/k/KerasTuner.md create mode 100644 docs/version-specific/supported-software/k/KmerGenie.md create mode 100644 docs/version-specific/supported-software/k/Kraken.md create mode 100644 docs/version-specific/supported-software/k/Kraken2.md create mode 100644 docs/version-specific/supported-software/k/KrakenUniq.md create mode 100644 docs/version-specific/supported-software/k/Kratos.md create mode 100644 docs/version-specific/supported-software/k/KronaTools.md create mode 100644 docs/version-specific/supported-software/k/KyotoCabinet.md create mode 100644 docs/version-specific/supported-software/k/index.md create mode 100644 docs/version-specific/supported-software/k/kWIP.md create mode 100644 docs/version-specific/supported-software/k/kallisto.md create mode 100644 docs/version-specific/supported-software/k/kb-python.md create mode 100644 docs/version-specific/supported-software/k/kbproto.md create mode 100644 docs/version-specific/supported-software/k/kedro.md create mode 100644 docs/version-specific/supported-software/k/khmer.md create mode 100644 docs/version-specific/supported-software/k/kim-api.md create mode 100644 docs/version-specific/supported-software/k/kineto.md create mode 100644 docs/version-specific/supported-software/k/king.md create mode 100644 docs/version-specific/supported-software/k/kma.md create mode 100644 docs/version-specific/supported-software/k/kneaddata.md create mode 100644 docs/version-specific/supported-software/k/kpcalg.md create mode 100644 docs/version-specific/supported-software/k/krbalancing.md create mode 100644 docs/version-specific/supported-software/k/kwant.md create mode 100644 docs/version-specific/supported-software/l/LADR.md create mode 100644 docs/version-specific/supported-software/l/LAME.md create mode 100644 docs/version-specific/supported-software/l/LAMMPS.md create mode 100644 docs/version-specific/supported-software/l/LAPACK.md create mode 100644 docs/version-specific/supported-software/l/LASSO-Python.md create mode 100644 docs/version-specific/supported-software/l/LAST.md create mode 100644 docs/version-specific/supported-software/l/LASTZ.md create mode 100644 docs/version-specific/supported-software/l/LBFGS++.md create mode 100644 docs/version-specific/supported-software/l/LCov.md create mode 100644 docs/version-specific/supported-software/l/LDC.md create mode 100644 docs/version-specific/supported-software/l/LEMON.md create mode 100644 docs/version-specific/supported-software/l/LERC.md create mode 100644 docs/version-specific/supported-software/l/LHAPDF.md create mode 100644 docs/version-specific/supported-software/l/LIANA.md create mode 100644 docs/version-specific/supported-software/l/LIBSVM-MATLAB.md create mode 100644 docs/version-specific/supported-software/l/LIBSVM-Python.md create mode 100644 docs/version-specific/supported-software/l/LIBSVM.md create mode 100644 docs/version-specific/supported-software/l/LISFLOOD-FP.md create mode 100644 docs/version-specific/supported-software/l/LLDB.md create mode 100644 docs/version-specific/supported-software/l/LLVM.md create mode 100644 docs/version-specific/supported-software/l/LMDB.md create mode 100644 docs/version-specific/supported-software/l/LMfit.md create mode 100644 docs/version-specific/supported-software/l/LOHHLA.md create mode 100644 docs/version-specific/supported-software/l/LPJmL.md create mode 100644 docs/version-specific/supported-software/l/LPeg.md create mode 100644 docs/version-specific/supported-software/l/LS-PrePost.md create mode 100644 docs/version-specific/supported-software/l/LSD2.md create mode 100644 docs/version-specific/supported-software/l/LSMS.md create mode 100644 docs/version-specific/supported-software/l/LTR_retriever.md create mode 100644 docs/version-specific/supported-software/l/LUMPY.md create mode 100644 docs/version-specific/supported-software/l/LUSCUS.md create mode 100644 docs/version-specific/supported-software/l/LZO.md create mode 100644 docs/version-specific/supported-software/l/L_RNA_scaffolder.md create mode 100644 docs/version-specific/supported-software/l/Lab-Streaming-Layer.md create mode 100644 docs/version-specific/supported-software/l/Lace.md create mode 100644 docs/version-specific/supported-software/l/LangChain.md create mode 100644 docs/version-specific/supported-software/l/LayoutParser.md create mode 100644 docs/version-specific/supported-software/l/LeadIT.md create mode 100644 docs/version-specific/supported-software/l/Leptonica.md create mode 100644 docs/version-specific/supported-software/l/LevelDB.md create mode 100644 docs/version-specific/supported-software/l/Levenshtein.md create mode 100644 docs/version-specific/supported-software/l/LiBis.md create mode 100644 docs/version-specific/supported-software/l/LibLZF.md create mode 100644 docs/version-specific/supported-software/l/LibSoup.md create mode 100644 docs/version-specific/supported-software/l/LibTIFF.md create mode 100644 docs/version-specific/supported-software/l/LibUUID.md create mode 100644 docs/version-specific/supported-software/l/Libint.md create mode 100644 docs/version-specific/supported-software/l/Lighter.md create mode 100644 docs/version-specific/supported-software/l/Lightning.md create mode 100644 docs/version-specific/supported-software/l/LinBox.md create mode 100644 docs/version-specific/supported-software/l/Lingeling.md create mode 100644 docs/version-specific/supported-software/l/LittleCMS.md create mode 100644 docs/version-specific/supported-software/l/Lmod.md create mode 100644 docs/version-specific/supported-software/l/LncLOOM.md create mode 100644 docs/version-specific/supported-software/l/LoFreq.md create mode 100644 docs/version-specific/supported-software/l/LoRDEC.md create mode 100644 docs/version-specific/supported-software/l/LocARNA.md create mode 100644 docs/version-specific/supported-software/l/Log-Log4perl.md create mode 100644 docs/version-specific/supported-software/l/Loki.md create mode 100644 docs/version-specific/supported-software/l/Longshot.md create mode 100644 docs/version-specific/supported-software/l/LoopTools.md create mode 100644 docs/version-specific/supported-software/l/LtrDetector.md create mode 100644 docs/version-specific/supported-software/l/Lua.md create mode 100644 docs/version-specific/supported-software/l/LuaJIT.md create mode 100644 docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md create mode 100644 docs/version-specific/supported-software/l/LuaRocks.md create mode 100644 docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md create mode 100644 docs/version-specific/supported-software/l/index.md create mode 100644 docs/version-specific/supported-software/l/lDDT.md create mode 100644 docs/version-specific/supported-software/l/lagrangian-filtering.md create mode 100644 docs/version-specific/supported-software/l/lancet.md create mode 100644 docs/version-specific/supported-software/l/langchain-anthropic.md create mode 100644 docs/version-specific/supported-software/l/lavaan.md create mode 100644 docs/version-specific/supported-software/l/lcalc.md create mode 100644 docs/version-specific/supported-software/l/leafcutter.md create mode 100644 docs/version-specific/supported-software/l/leidenalg.md create mode 100644 docs/version-specific/supported-software/l/less.md create mode 100644 docs/version-specific/supported-software/l/lftp.md create mode 100644 docs/version-specific/supported-software/l/libBigWig.md create mode 100644 docs/version-specific/supported-software/l/libFLAME.md create mode 100644 docs/version-specific/supported-software/l/libGDSII.md create mode 100644 docs/version-specific/supported-software/l/libGLU.md create mode 100644 docs/version-specific/supported-software/l/libGridXC.md create mode 100644 docs/version-specific/supported-software/l/libICE.md create mode 100644 docs/version-specific/supported-software/l/libMemcached.md create mode 100644 docs/version-specific/supported-software/l/libPSML.md create mode 100644 docs/version-specific/supported-software/l/libQGLViewer.md create mode 100644 docs/version-specific/supported-software/l/libRmath.md create mode 100644 docs/version-specific/supported-software/l/libSBML.md create mode 100644 docs/version-specific/supported-software/l/libSM.md create mode 100644 docs/version-specific/supported-software/l/libStatGen.md create mode 100644 docs/version-specific/supported-software/l/libWallModelledLES.md create mode 100644 docs/version-specific/supported-software/l/libX11.md create mode 100644 docs/version-specific/supported-software/l/libXau.md create mode 100644 docs/version-specific/supported-software/l/libXcursor.md create mode 100644 docs/version-specific/supported-software/l/libXdamage.md create mode 100644 docs/version-specific/supported-software/l/libXdmcp.md create mode 100644 docs/version-specific/supported-software/l/libXext.md create mode 100644 docs/version-specific/supported-software/l/libXfixes.md create mode 100644 docs/version-specific/supported-software/l/libXfont.md create mode 100644 docs/version-specific/supported-software/l/libXft.md create mode 100644 docs/version-specific/supported-software/l/libXi.md create mode 100644 docs/version-specific/supported-software/l/libXinerama.md create mode 100644 docs/version-specific/supported-software/l/libXmu.md create mode 100644 docs/version-specific/supported-software/l/libXp.md create mode 100644 docs/version-specific/supported-software/l/libXpm.md create mode 100644 docs/version-specific/supported-software/l/libXrandr.md create mode 100644 docs/version-specific/supported-software/l/libXrender.md create mode 100644 docs/version-specific/supported-software/l/libXt.md create mode 100644 docs/version-specific/supported-software/l/libXxf86vm.md create mode 100644 docs/version-specific/supported-software/l/libabigail.md create mode 100644 docs/version-specific/supported-software/l/libaec.md create mode 100644 docs/version-specific/supported-software/l/libaed2.md create mode 100644 docs/version-specific/supported-software/l/libaio.md create mode 100644 docs/version-specific/supported-software/l/libarchive.md create mode 100644 docs/version-specific/supported-software/l/libav.md create mode 100644 docs/version-specific/supported-software/l/libavif.md create mode 100644 docs/version-specific/supported-software/l/libbaseencode.md create mode 100644 docs/version-specific/supported-software/l/libbitmask.md create mode 100644 docs/version-specific/supported-software/l/libbraiding.md create mode 100644 docs/version-specific/supported-software/l/libcdms.md create mode 100644 docs/version-specific/supported-software/l/libcerf.md create mode 100644 docs/version-specific/supported-software/l/libcint.md create mode 100644 docs/version-specific/supported-software/l/libcircle.md create mode 100644 docs/version-specific/supported-software/l/libcmaes.md create mode 100644 docs/version-specific/supported-software/l/libconfig.md create mode 100644 docs/version-specific/supported-software/l/libcotp.md create mode 100644 docs/version-specific/supported-software/l/libcpuset.md create mode 100644 docs/version-specific/supported-software/l/libcroco.md create mode 100644 docs/version-specific/supported-software/l/libctl.md create mode 100644 docs/version-specific/supported-software/l/libdap.md create mode 100644 docs/version-specific/supported-software/l/libde265.md create mode 100644 docs/version-specific/supported-software/l/libdeflate.md create mode 100644 docs/version-specific/supported-software/l/libdivsufsort.md create mode 100644 docs/version-specific/supported-software/l/libdrm.md create mode 100644 docs/version-specific/supported-software/l/libdrs.md create mode 100644 docs/version-specific/supported-software/l/libdwarf.md create mode 100644 docs/version-specific/supported-software/l/libedit.md create mode 100644 docs/version-specific/supported-software/l/libelf.md create mode 100644 docs/version-specific/supported-software/l/libemf.md create mode 100644 docs/version-specific/supported-software/l/libepoxy.md create mode 100644 docs/version-specific/supported-software/l/libev.md create mode 100644 docs/version-specific/supported-software/l/libevent.md create mode 100644 docs/version-specific/supported-software/l/libexif.md create mode 100644 docs/version-specific/supported-software/l/libfabric.md create mode 100644 docs/version-specific/supported-software/l/libfdf.md create mode 100644 docs/version-specific/supported-software/l/libffcall.md create mode 100644 docs/version-specific/supported-software/l/libffi.md create mode 100644 docs/version-specific/supported-software/l/libfontenc.md create mode 100644 docs/version-specific/supported-software/l/libfyaml.md create mode 100644 docs/version-specific/supported-software/l/libgcrypt.md create mode 100644 docs/version-specific/supported-software/l/libgd.md create mode 100644 docs/version-specific/supported-software/l/libgdiplus.md create mode 100644 docs/version-specific/supported-software/l/libgeotiff.md create mode 100644 docs/version-specific/supported-software/l/libgit2.md create mode 100644 docs/version-specific/supported-software/l/libglade.md create mode 100644 docs/version-specific/supported-software/l/libglvnd.md create mode 100644 docs/version-specific/supported-software/l/libgpg-error.md create mode 100644 docs/version-specific/supported-software/l/libgpuarray.md create mode 100644 docs/version-specific/supported-software/l/libgtextutils.md create mode 100644 docs/version-specific/supported-software/l/libgxps.md create mode 100644 docs/version-specific/supported-software/l/libhandy.md create mode 100644 docs/version-specific/supported-software/l/libharu.md create mode 100644 docs/version-specific/supported-software/l/libheif.md create mode 100644 docs/version-specific/supported-software/l/libhomfly.md create mode 100644 docs/version-specific/supported-software/l/libibmad.md create mode 100644 docs/version-specific/supported-software/l/libibumad.md create mode 100644 docs/version-specific/supported-software/l/libiconv.md create mode 100644 docs/version-specific/supported-software/l/libidn.md create mode 100644 docs/version-specific/supported-software/l/libidn2.md create mode 100644 docs/version-specific/supported-software/l/libjpeg-turbo.md create mode 100644 docs/version-specific/supported-software/l/libjxl.md create mode 100644 docs/version-specific/supported-software/l/libleidenalg.md create mode 100644 docs/version-specific/supported-software/l/libmad.md create mode 100644 docs/version-specific/supported-software/l/libmatheval.md create mode 100644 docs/version-specific/supported-software/l/libmaus2.md create mode 100644 docs/version-specific/supported-software/l/libmbd.md create mode 100644 docs/version-specific/supported-software/l/libmicrohttpd.md create mode 100644 docs/version-specific/supported-software/l/libmo_unpack.md create mode 100644 docs/version-specific/supported-software/l/libmypaint.md create mode 100644 docs/version-specific/supported-software/l/libnsl.md create mode 100644 docs/version-specific/supported-software/l/libobjcryst.md create mode 100644 docs/version-specific/supported-software/l/libogg.md create mode 100644 docs/version-specific/supported-software/l/libopus.md create mode 100644 docs/version-specific/supported-software/l/libosmium.md create mode 100644 docs/version-specific/supported-software/l/libpci.md create mode 100644 docs/version-specific/supported-software/l/libpciaccess.md create mode 100644 docs/version-specific/supported-software/l/libplinkio.md create mode 100644 docs/version-specific/supported-software/l/libpng.md create mode 100644 docs/version-specific/supported-software/l/libpsl.md create mode 100644 docs/version-specific/supported-software/l/libpsortb.md create mode 100644 docs/version-specific/supported-software/l/libpspio.md create mode 100644 docs/version-specific/supported-software/l/libpthread-stubs.md create mode 100644 docs/version-specific/supported-software/l/libreadline.md create mode 100644 docs/version-specific/supported-software/l/librosa.md create mode 100644 docs/version-specific/supported-software/l/librsb.md create mode 100644 docs/version-specific/supported-software/l/librsvg.md create mode 100644 docs/version-specific/supported-software/l/librttopo.md create mode 100644 docs/version-specific/supported-software/l/libsamplerate.md create mode 100644 docs/version-specific/supported-software/l/libsigc++.md create mode 100644 docs/version-specific/supported-software/l/libsigsegv.md create mode 100644 docs/version-specific/supported-software/l/libsndfile.md create mode 100644 docs/version-specific/supported-software/l/libsodium.md create mode 100644 docs/version-specific/supported-software/l/libspatialindex.md create mode 100644 docs/version-specific/supported-software/l/libspatialite.md create mode 100644 docs/version-specific/supported-software/l/libspectre.md create mode 100644 docs/version-specific/supported-software/l/libssh.md create mode 100644 docs/version-specific/supported-software/l/libsupermesh.md create mode 100644 docs/version-specific/supported-software/l/libtar.md create mode 100644 docs/version-specific/supported-software/l/libtasn1.md create mode 100644 docs/version-specific/supported-software/l/libtecla.md create mode 100644 docs/version-specific/supported-software/l/libtirpc.md create mode 100644 docs/version-specific/supported-software/l/libtool.md create mode 100644 docs/version-specific/supported-software/l/libtree.md create mode 100644 docs/version-specific/supported-software/l/libunistring.md create mode 100644 docs/version-specific/supported-software/l/libunwind.md create mode 100644 docs/version-specific/supported-software/l/libutempter.md create mode 100644 docs/version-specific/supported-software/l/libuv.md create mode 100644 docs/version-specific/supported-software/l/libvdwxc.md create mode 100644 docs/version-specific/supported-software/l/libvorbis.md create mode 100644 docs/version-specific/supported-software/l/libvori.md create mode 100644 docs/version-specific/supported-software/l/libwebp.md create mode 100644 docs/version-specific/supported-software/l/libwpe.md create mode 100644 docs/version-specific/supported-software/l/libxc.md create mode 100644 docs/version-specific/supported-software/l/libxcb.md create mode 100644 docs/version-specific/supported-software/l/libxkbcommon.md create mode 100644 docs/version-specific/supported-software/l/libxml++.md create mode 100644 docs/version-specific/supported-software/l/libxml2-python.md create mode 100644 docs/version-specific/supported-software/l/libxml2.md create mode 100644 docs/version-specific/supported-software/l/libxslt.md create mode 100644 docs/version-specific/supported-software/l/libxsmm.md create mode 100644 docs/version-specific/supported-software/l/libyaml.md create mode 100644 docs/version-specific/supported-software/l/libzeep.md create mode 100644 docs/version-specific/supported-software/l/libzip.md create mode 100644 docs/version-specific/supported-software/l/lie_learn.md create mode 100644 docs/version-specific/supported-software/l/lifelines.md create mode 100644 docs/version-specific/supported-software/l/liknorm.md create mode 100644 docs/version-specific/supported-software/l/likwid.md create mode 100644 docs/version-specific/supported-software/l/lil-aretomo.md create mode 100644 docs/version-specific/supported-software/l/limix.md create mode 100644 docs/version-specific/supported-software/l/line_profiler.md create mode 100644 docs/version-specific/supported-software/l/lit.md create mode 100644 docs/version-specific/supported-software/l/lmoments3.md create mode 100644 docs/version-specific/supported-software/l/logaddexp.md create mode 100644 docs/version-specific/supported-software/l/longestrunsubsequence.md create mode 100644 docs/version-specific/supported-software/l/longread_umi.md create mode 100644 docs/version-specific/supported-software/l/loomR.md create mode 100644 docs/version-specific/supported-software/l/loompy.md create mode 100644 docs/version-specific/supported-software/l/lpsolve.md create mode 100644 docs/version-specific/supported-software/l/lrslib.md create mode 100644 docs/version-specific/supported-software/l/lwgrp.md create mode 100644 docs/version-specific/supported-software/l/lxml.md create mode 100644 docs/version-specific/supported-software/l/lynx.md create mode 100644 docs/version-specific/supported-software/l/lz4.md create mode 100644 docs/version-specific/supported-software/m/M1QN3.md create mode 100644 docs/version-specific/supported-software/m/M3GNet.md create mode 100644 docs/version-specific/supported-software/m/M4.md create mode 100644 docs/version-specific/supported-software/m/MACH.md create mode 100644 docs/version-specific/supported-software/m/MACS2.md create mode 100644 docs/version-specific/supported-software/m/MACS3.md create mode 100644 docs/version-specific/supported-software/m/MACSE.md create mode 100644 docs/version-specific/supported-software/m/MAFFT.md create mode 100644 docs/version-specific/supported-software/m/MAGMA-gene-analysis.md create mode 100644 docs/version-specific/supported-software/m/MAGeCK.md create mode 100644 docs/version-specific/supported-software/m/MAJIQ.md create mode 100644 docs/version-specific/supported-software/m/MAKER.md create mode 100644 docs/version-specific/supported-software/m/MARS.md create mode 100644 docs/version-specific/supported-software/m/MATIO.md create mode 100644 docs/version-specific/supported-software/m/MATLAB-Engine.md create mode 100644 docs/version-specific/supported-software/m/MATLAB.md create mode 100644 docs/version-specific/supported-software/m/MATSim.md create mode 100644 docs/version-specific/supported-software/m/MBROLA.md create mode 100644 docs/version-specific/supported-software/m/MCL.md create mode 100644 docs/version-specific/supported-software/m/MCR.md create mode 100644 docs/version-specific/supported-software/m/MDAnalysis.md create mode 100644 docs/version-specific/supported-software/m/MDBM.md create mode 100644 docs/version-specific/supported-software/m/MDI.md create mode 100644 docs/version-specific/supported-software/m/MDSplus-Java.md create mode 100644 docs/version-specific/supported-software/m/MDSplus-Python.md create mode 100644 docs/version-specific/supported-software/m/MDSplus.md create mode 100644 docs/version-specific/supported-software/m/MDTraj.md create mode 100644 docs/version-specific/supported-software/m/MEGA.md create mode 100644 docs/version-specific/supported-software/m/MEGACC.md create mode 100644 docs/version-specific/supported-software/m/MEGAHIT.md create mode 100644 docs/version-specific/supported-software/m/MEGAN.md create mode 100644 docs/version-specific/supported-software/m/MEM.md create mode 100644 docs/version-specific/supported-software/m/MEME.md create mode 100644 docs/version-specific/supported-software/m/MEMOTE.md create mode 100644 docs/version-specific/supported-software/m/MERCKX.md create mode 100644 docs/version-specific/supported-software/m/MESS.md create mode 100644 docs/version-specific/supported-software/m/METIS.md create mode 100644 docs/version-specific/supported-software/m/MICOM.md create mode 100644 docs/version-specific/supported-software/m/MIGRATE-N.md create mode 100644 docs/version-specific/supported-software/m/MINC.md create mode 100644 docs/version-specific/supported-software/m/MINPACK.md create mode 100644 docs/version-specific/supported-software/m/MIRA.md create mode 100644 docs/version-specific/supported-software/m/MITObim.md create mode 100644 docs/version-specific/supported-software/m/MITgcmutils.md create mode 100644 docs/version-specific/supported-software/m/MLC.md create mode 100644 docs/version-specific/supported-software/m/MLflow.md create mode 100644 docs/version-specific/supported-software/m/MLxtend.md create mode 100644 docs/version-specific/supported-software/m/MMSEQ.md create mode 100644 docs/version-specific/supported-software/m/MMseqs2.md create mode 100644 docs/version-specific/supported-software/m/MNE-Python.md create mode 100644 docs/version-specific/supported-software/m/MOABB.md create mode 100644 docs/version-specific/supported-software/m/MOABS.md create mode 100644 docs/version-specific/supported-software/m/MOB-suite.md create mode 100644 docs/version-specific/supported-software/m/MODFLOW.md create mode 100644 docs/version-specific/supported-software/m/MOFA2.md create mode 100644 docs/version-specific/supported-software/m/MONA.md create mode 100644 docs/version-specific/supported-software/m/MONAI-Label.md create mode 100644 docs/version-specific/supported-software/m/MONAI.md create mode 100644 docs/version-specific/supported-software/m/MOOSE.md create mode 100644 docs/version-specific/supported-software/m/MPB.md create mode 100644 docs/version-specific/supported-software/m/MPC.md create mode 100644 docs/version-specific/supported-software/m/MPFI.md create mode 100644 docs/version-specific/supported-software/m/MPFR.md create mode 100644 docs/version-specific/supported-software/m/MPICH.md create mode 100644 docs/version-specific/supported-software/m/MPICH2.md create mode 100644 docs/version-specific/supported-software/m/MPJ-Express.md create mode 100644 docs/version-specific/supported-software/m/MRCPP.md create mode 100644 docs/version-specific/supported-software/m/MRChem.md create mode 100644 docs/version-specific/supported-software/m/MRIcron.md create mode 100644 docs/version-specific/supported-software/m/MRPRESSO.md create mode 100644 docs/version-specific/supported-software/m/MRtrix.md create mode 100644 docs/version-specific/supported-software/m/MSFragger.md create mode 100644 docs/version-specific/supported-software/m/MSM.md create mode 100644 docs/version-specific/supported-software/m/MSPC.md create mode 100644 docs/version-specific/supported-software/m/MTL4.md create mode 100644 docs/version-specific/supported-software/m/MUMPS.md create mode 100644 docs/version-specific/supported-software/m/MUMmer.md create mode 100644 docs/version-specific/supported-software/m/MUSCLE.md create mode 100644 docs/version-specific/supported-software/m/MUSCLE3.md create mode 100644 docs/version-specific/supported-software/m/MUST.md create mode 100644 docs/version-specific/supported-software/m/MVAPICH2.md create mode 100644 docs/version-specific/supported-software/m/MView.md create mode 100644 docs/version-specific/supported-software/m/MXNet.md create mode 100644 docs/version-specific/supported-software/m/MaSuRCA.md create mode 100644 docs/version-specific/supported-software/m/Magics.md create mode 100644 docs/version-specific/supported-software/m/MagresPython.md create mode 100644 docs/version-specific/supported-software/m/Mako.md create mode 100644 docs/version-specific/supported-software/m/Mamba.md create mode 100644 docs/version-specific/supported-software/m/MapSplice.md create mode 100644 docs/version-specific/supported-software/m/Maple.md create mode 100644 docs/version-specific/supported-software/m/Maq.md create mode 100644 docs/version-specific/supported-software/m/MariaDB-connector-c.md create mode 100644 docs/version-specific/supported-software/m/MariaDB.md create mode 100644 docs/version-specific/supported-software/m/Markdown.md create mode 100644 docs/version-specific/supported-software/m/Mash.md create mode 100644 docs/version-specific/supported-software/m/Mashtree.md create mode 100644 docs/version-specific/supported-software/m/MathGL.md create mode 100644 docs/version-specific/supported-software/m/Mathematica.md create mode 100644 docs/version-specific/supported-software/m/Maude.md create mode 100644 docs/version-specific/supported-software/m/Maven.md create mode 100644 docs/version-specific/supported-software/m/MaxBin.md create mode 100644 docs/version-specific/supported-software/m/MaxQuant.md create mode 100644 docs/version-specific/supported-software/m/MbedTLS.md create mode 100644 docs/version-specific/supported-software/m/MedPy.md create mode 100644 docs/version-specific/supported-software/m/Meep.md create mode 100644 docs/version-specific/supported-software/m/Megalodon.md create mode 100644 docs/version-specific/supported-software/m/Meld.md create mode 100644 docs/version-specific/supported-software/m/Mercurial.md create mode 100644 docs/version-specific/supported-software/m/Mesa-demos.md create mode 100644 docs/version-specific/supported-software/m/Mesa.md create mode 100644 docs/version-specific/supported-software/m/Meson.md create mode 100644 docs/version-specific/supported-software/m/Mesquite.md create mode 100644 docs/version-specific/supported-software/m/MetaBAT.md create mode 100644 docs/version-specific/supported-software/m/MetaDecoder.md create mode 100644 docs/version-specific/supported-software/m/MetaEuk.md create mode 100644 docs/version-specific/supported-software/m/MetaGeneAnnotator.md create mode 100644 docs/version-specific/supported-software/m/MetaMorpheus.md create mode 100644 docs/version-specific/supported-software/m/MetaPhlAn.md create mode 100644 docs/version-specific/supported-software/m/MetaPhlAn2.md create mode 100644 docs/version-specific/supported-software/m/MetaboAnalystR.md create mode 100644 docs/version-specific/supported-software/m/Metagenome-Atlas.md create mode 100644 docs/version-specific/supported-software/m/Metal.md create mode 100644 docs/version-specific/supported-software/m/MetalWalls.md create mode 100644 docs/version-specific/supported-software/m/Metaxa2.md create mode 100644 docs/version-specific/supported-software/m/MethylDackel.md create mode 100644 docs/version-specific/supported-software/m/MiGEC.md create mode 100644 docs/version-specific/supported-software/m/MiXCR.md create mode 100644 docs/version-specific/supported-software/m/MicrobeAnnotator.md create mode 100644 docs/version-specific/supported-software/m/Mikado.md create mode 100644 docs/version-specific/supported-software/m/Miller.md create mode 100644 docs/version-specific/supported-software/m/MinCED.md create mode 100644 docs/version-specific/supported-software/m/MinPath.md create mode 100644 docs/version-specific/supported-software/m/Mini-XML.md create mode 100644 docs/version-specific/supported-software/m/MiniCARD.md create mode 100644 docs/version-specific/supported-software/m/MiniSat.md create mode 100644 docs/version-specific/supported-software/m/Miniconda2.md create mode 100644 docs/version-specific/supported-software/m/Miniconda3.md create mode 100644 docs/version-specific/supported-software/m/Miniforge3.md create mode 100644 docs/version-specific/supported-software/m/Minimac4.md create mode 100644 docs/version-specific/supported-software/m/Minipolish.md create mode 100644 docs/version-specific/supported-software/m/Mish-Cuda.md create mode 100644 docs/version-specific/supported-software/m/MitoHiFi.md create mode 100644 docs/version-specific/supported-software/m/MitoZ.md create mode 100644 docs/version-specific/supported-software/m/MixMHC2pred.md create mode 100644 docs/version-specific/supported-software/m/Mmg.md create mode 100644 docs/version-specific/supported-software/m/ModelTest-NG.md create mode 100644 docs/version-specific/supported-software/m/Molcas.md create mode 100644 docs/version-specific/supported-software/m/Molden.md create mode 100644 docs/version-specific/supported-software/m/Molekel.md create mode 100644 docs/version-specific/supported-software/m/Molpro.md create mode 100644 docs/version-specific/supported-software/m/Mono.md create mode 100644 docs/version-specific/supported-software/m/Monocle3.md create mode 100644 docs/version-specific/supported-software/m/MoreRONN.md create mode 100644 docs/version-specific/supported-software/m/Mothur.md create mode 100644 docs/version-specific/supported-software/m/MotionCor2.md create mode 100644 docs/version-specific/supported-software/m/MotionCor3.md create mode 100644 docs/version-specific/supported-software/m/MoviePy.md create mode 100644 docs/version-specific/supported-software/m/MrBayes.md create mode 100644 docs/version-specific/supported-software/m/MuJoCo.md create mode 100644 docs/version-specific/supported-software/m/MuPeXI.md create mode 100644 docs/version-specific/supported-software/m/MuSiC.md create mode 100644 docs/version-specific/supported-software/m/MuTect.md create mode 100644 docs/version-specific/supported-software/m/MultiNest.md create mode 100644 docs/version-specific/supported-software/m/MultiQC.md create mode 100644 docs/version-specific/supported-software/m/MultilevelEstimators.md create mode 100644 docs/version-specific/supported-software/m/Multiwfn.md create mode 100644 docs/version-specific/supported-software/m/MyCC.md create mode 100644 docs/version-specific/supported-software/m/MyMediaLite.md create mode 100644 docs/version-specific/supported-software/m/MySQL-python.md create mode 100644 docs/version-specific/supported-software/m/MySQL.md create mode 100644 docs/version-specific/supported-software/m/Myokit.md create mode 100644 docs/version-specific/supported-software/m/index.md create mode 100644 docs/version-specific/supported-software/m/m4ri.md create mode 100644 docs/version-specific/supported-software/m/m4rie.md create mode 100644 docs/version-specific/supported-software/m/maeparser.md create mode 100644 docs/version-specific/supported-software/m/magick.md create mode 100644 docs/version-specific/supported-software/m/magma.md create mode 100644 docs/version-specific/supported-software/m/mahotas.md create mode 100644 docs/version-specific/supported-software/m/make.md create mode 100644 docs/version-specific/supported-software/m/makedepend.md create mode 100644 docs/version-specific/supported-software/m/makedepf90.md create mode 100644 docs/version-specific/supported-software/m/makefun.md create mode 100644 docs/version-specific/supported-software/m/makeinfo.md create mode 100644 docs/version-specific/supported-software/m/mandrake.md create mode 100644 docs/version-specific/supported-software/m/mannkendall.md create mode 100644 docs/version-specific/supported-software/m/manta.md create mode 100644 docs/version-specific/supported-software/m/mapDamage.md create mode 100644 docs/version-specific/supported-software/m/matlab-proxy.md create mode 100644 docs/version-specific/supported-software/m/matplotlib-inline.md create mode 100644 docs/version-specific/supported-software/m/matplotlib.md create mode 100644 docs/version-specific/supported-software/m/maturin.md create mode 100644 docs/version-specific/supported-software/m/mauveAligner.md create mode 100644 docs/version-specific/supported-software/m/mawk.md create mode 100644 docs/version-specific/supported-software/m/mayavi.md create mode 100644 docs/version-specific/supported-software/m/maze.md create mode 100644 docs/version-specific/supported-software/m/mbuffer.md create mode 100644 docs/version-specific/supported-software/m/mc.md create mode 100644 docs/version-specific/supported-software/m/mctc-lib.md create mode 100644 docs/version-specific/supported-software/m/mcu.md create mode 100644 docs/version-specific/supported-software/m/mdtest.md create mode 100644 docs/version-specific/supported-software/m/mdust.md create mode 100644 docs/version-specific/supported-software/m/meRanTK.md create mode 100644 docs/version-specific/supported-software/m/meboot.md create mode 100644 docs/version-specific/supported-software/m/medImgProc.md create mode 100644 docs/version-specific/supported-software/m/medaka.md create mode 100644 docs/version-specific/supported-software/m/memkind.md create mode 100644 docs/version-specific/supported-software/m/memory-profiler.md create mode 100644 docs/version-specific/supported-software/m/memtester.md create mode 100644 docs/version-specific/supported-software/m/meshalyzer.md create mode 100644 docs/version-specific/supported-software/m/meshio.md create mode 100644 docs/version-specific/supported-software/m/meshtool.md create mode 100644 docs/version-specific/supported-software/m/meson-python.md create mode 100644 docs/version-specific/supported-software/m/metaWRAP.md create mode 100644 docs/version-specific/supported-software/m/metaerg.md create mode 100644 docs/version-specific/supported-software/m/methylartist.md create mode 100644 docs/version-specific/supported-software/m/methylpy.md create mode 100644 docs/version-specific/supported-software/m/mfqe.md create mode 100644 docs/version-specific/supported-software/m/mgen.md create mode 100644 docs/version-specific/supported-software/m/mgltools.md create mode 100644 docs/version-specific/supported-software/m/mhcflurry.md create mode 100644 docs/version-specific/supported-software/m/mhcnuggets.md create mode 100644 docs/version-specific/supported-software/m/miRDeep2.md create mode 100644 docs/version-specific/supported-software/m/microctools.md create mode 100644 docs/version-specific/supported-software/m/mimalloc.md create mode 100644 docs/version-specific/supported-software/m/miniasm.md create mode 100644 docs/version-specific/supported-software/m/minibar.md create mode 100644 docs/version-specific/supported-software/m/minieigen.md create mode 100644 docs/version-specific/supported-software/m/minimap2.md create mode 100644 docs/version-specific/supported-software/m/minizip.md create mode 100644 docs/version-specific/supported-software/m/misha.md create mode 100644 docs/version-specific/supported-software/m/mkl-dnn.md create mode 100644 docs/version-specific/supported-software/m/mkl-service.md create mode 100644 docs/version-specific/supported-software/m/mkl_fft.md create mode 100644 docs/version-specific/supported-software/m/ml-collections.md create mode 100644 docs/version-specific/supported-software/m/ml_dtypes.md create mode 100644 docs/version-specific/supported-software/m/mlpack.md create mode 100644 docs/version-specific/supported-software/m/mm-common.md create mode 100644 docs/version-specific/supported-software/m/mmtf-cpp.md create mode 100644 docs/version-specific/supported-software/m/modred.md create mode 100644 docs/version-specific/supported-software/m/mold.md create mode 100644 docs/version-specific/supported-software/m/molecularGSM.md create mode 100644 docs/version-specific/supported-software/m/molmod.md create mode 100644 docs/version-specific/supported-software/m/mongolite.md create mode 100644 docs/version-specific/supported-software/m/moonjit.md create mode 100644 docs/version-specific/supported-software/m/mordecai.md create mode 100644 docs/version-specific/supported-software/m/morphosamplers.md create mode 100644 docs/version-specific/supported-software/m/mosdepth.md create mode 100644 docs/version-specific/supported-software/m/motif.md create mode 100644 docs/version-specific/supported-software/m/motionSegmentation.md create mode 100644 docs/version-specific/supported-software/m/mpath.md create mode 100644 docs/version-specific/supported-software/m/mpi4py.md create mode 100644 docs/version-specific/supported-software/m/mpiP.md create mode 100644 docs/version-specific/supported-software/m/mpifileutils.md create mode 100644 docs/version-specific/supported-software/m/mpmath.md create mode 100644 docs/version-specific/supported-software/m/mrcfile.md create mode 100644 docs/version-specific/supported-software/m/msgpack-c.md create mode 100644 docs/version-specific/supported-software/m/msprime.md create mode 100644 docs/version-specific/supported-software/m/mstore.md create mode 100644 docs/version-specific/supported-software/m/muMerge.md create mode 100644 docs/version-specific/supported-software/m/muParser.md create mode 100644 docs/version-specific/supported-software/m/mujoco-py.md create mode 100644 docs/version-specific/supported-software/m/multicharge.md create mode 100644 docs/version-specific/supported-software/m/multichoose.md create mode 100644 docs/version-specific/supported-software/m/multiprocess.md create mode 100644 docs/version-specific/supported-software/m/mumott.md create mode 100644 docs/version-specific/supported-software/m/muparserx.md create mode 100644 docs/version-specific/supported-software/m/mutil.md create mode 100644 docs/version-specific/supported-software/m/mxml.md create mode 100644 docs/version-specific/supported-software/m/mxmlplus.md create mode 100644 docs/version-specific/supported-software/m/mygene.md create mode 100644 docs/version-specific/supported-software/m/mympingpong.md create mode 100644 docs/version-specific/supported-software/m/mypy.md create mode 100644 docs/version-specific/supported-software/m/mysqlclient.md create mode 100644 docs/version-specific/supported-software/n/NAG.md create mode 100644 docs/version-specific/supported-software/n/NAGfor.md create mode 100644 docs/version-specific/supported-software/n/NAMD.md create mode 100644 docs/version-specific/supported-software/n/NASM.md create mode 100644 docs/version-specific/supported-software/n/NBO.md create mode 100644 docs/version-specific/supported-software/n/NCBI-Toolkit.md create mode 100644 docs/version-specific/supported-software/n/NCCL-tests.md create mode 100644 docs/version-specific/supported-software/n/NCCL.md create mode 100644 docs/version-specific/supported-software/n/NCIPLOT.md create mode 100644 docs/version-specific/supported-software/n/NCL.md create mode 100644 docs/version-specific/supported-software/n/NCO.md create mode 100644 docs/version-specific/supported-software/n/NECI.md create mode 100644 docs/version-specific/supported-software/n/NEURON.md create mode 100644 docs/version-specific/supported-software/n/NEXUS-CL.md create mode 100644 docs/version-specific/supported-software/n/NEdit.md create mode 100644 docs/version-specific/supported-software/n/NFFT.md create mode 100644 docs/version-specific/supported-software/n/NGLess.md create mode 100644 docs/version-specific/supported-software/n/NGS-Python.md create mode 100644 docs/version-specific/supported-software/n/NGS.md create mode 100644 docs/version-specific/supported-software/n/NGSadmix.md create mode 100644 docs/version-specific/supported-software/n/NGSpeciesID.md create mode 100644 docs/version-specific/supported-software/n/NIMBLE.md create mode 100644 docs/version-specific/supported-software/n/NIfTI.md create mode 100644 docs/version-specific/supported-software/n/NLMpy.md create mode 100644 docs/version-specific/supported-software/n/NLTK.md create mode 100644 docs/version-specific/supported-software/n/NLopt.md create mode 100644 docs/version-specific/supported-software/n/NOVOPlasty.md create mode 100644 docs/version-specific/supported-software/n/NRGLjubljana.md create mode 100644 docs/version-specific/supported-software/n/NSPR.md create mode 100644 docs/version-specific/supported-software/n/NSS.md create mode 100644 docs/version-specific/supported-software/n/NTL.md create mode 100644 docs/version-specific/supported-software/n/NTPoly.md create mode 100644 docs/version-specific/supported-software/n/NVHPC.md create mode 100644 docs/version-specific/supported-software/n/NVSHMEM.md create mode 100644 docs/version-specific/supported-software/n/NWChem.md create mode 100644 docs/version-specific/supported-software/n/NanoCaller.md create mode 100644 docs/version-specific/supported-software/n/NanoComp.md create mode 100644 docs/version-specific/supported-software/n/NanoFilt.md create mode 100644 docs/version-specific/supported-software/n/NanoLyse.md create mode 100644 docs/version-specific/supported-software/n/NanoPlot.md create mode 100644 docs/version-specific/supported-software/n/NanoStat.md create mode 100644 docs/version-specific/supported-software/n/NanopolishComp.md create mode 100644 docs/version-specific/supported-software/n/Nek5000.md create mode 100644 docs/version-specific/supported-software/n/Nektar++.md create mode 100644 docs/version-specific/supported-software/n/Net-core.md create mode 100644 docs/version-specific/supported-software/n/NetLogo.md create mode 100644 docs/version-specific/supported-software/n/NetPIPE.md create mode 100644 docs/version-specific/supported-software/n/NetPyNE.md create mode 100644 docs/version-specific/supported-software/n/NeuroKit.md create mode 100644 docs/version-specific/supported-software/n/NewHybrids.md create mode 100644 docs/version-specific/supported-software/n/NextGenMap.md create mode 100644 docs/version-specific/supported-software/n/Nextflow.md create mode 100644 docs/version-specific/supported-software/n/NiBabel.md create mode 100644 docs/version-specific/supported-software/n/Nilearn.md create mode 100644 docs/version-specific/supported-software/n/Nim.md create mode 100644 docs/version-specific/supported-software/n/Ninja.md create mode 100644 docs/version-specific/supported-software/n/Nipype.md create mode 100644 docs/version-specific/supported-software/n/Node-RED.md create mode 100644 docs/version-specific/supported-software/n/Normaliz.md create mode 100644 docs/version-specific/supported-software/n/Nsight-Compute.md create mode 100644 docs/version-specific/supported-software/n/Nsight-Systems.md create mode 100644 docs/version-specific/supported-software/n/NxTrim.md create mode 100644 docs/version-specific/supported-software/n/index.md create mode 100644 docs/version-specific/supported-software/n/n2v.md create mode 100644 docs/version-specific/supported-software/n/namedlist.md create mode 100644 docs/version-specific/supported-software/n/nano.md create mode 100644 docs/version-specific/supported-software/n/nanocompore.md create mode 100644 docs/version-specific/supported-software/n/nanoflann.md create mode 100644 docs/version-specific/supported-software/n/nanoget.md create mode 100644 docs/version-specific/supported-software/n/nanomath.md create mode 100644 docs/version-specific/supported-software/n/nanomax-analysis-utils.md create mode 100644 docs/version-specific/supported-software/n/nanonet.md create mode 100644 docs/version-specific/supported-software/n/nanopolish.md create mode 100644 docs/version-specific/supported-software/n/napari.md create mode 100644 docs/version-specific/supported-software/n/nauty.md create mode 100644 docs/version-specific/supported-software/n/nbclassic.md create mode 100644 docs/version-specific/supported-software/n/ncbi-vdb.md create mode 100644 docs/version-specific/supported-software/n/ncdf4.md create mode 100644 docs/version-specific/supported-software/n/ncdu.md create mode 100644 docs/version-specific/supported-software/n/ncolor.md create mode 100644 docs/version-specific/supported-software/n/ncompress.md create mode 100644 docs/version-specific/supported-software/n/ncurses.md create mode 100644 docs/version-specific/supported-software/n/ncview.md create mode 100644 docs/version-specific/supported-software/n/nd2reader.md create mode 100644 docs/version-specific/supported-software/n/ne.md create mode 100644 docs/version-specific/supported-software/n/neon.md create mode 100644 docs/version-specific/supported-software/n/neptune-client.md create mode 100644 docs/version-specific/supported-software/n/netCDF-C++.md create mode 100644 docs/version-specific/supported-software/n/netCDF-C++4.md create mode 100644 docs/version-specific/supported-software/n/netCDF-Fortran.md create mode 100644 docs/version-specific/supported-software/n/netCDF.md create mode 100644 docs/version-specific/supported-software/n/netMHC.md create mode 100644 docs/version-specific/supported-software/n/netMHCII.md create mode 100644 docs/version-specific/supported-software/n/netMHCIIpan.md create mode 100644 docs/version-specific/supported-software/n/netMHCpan.md create mode 100644 docs/version-specific/supported-software/n/netcdf4-python.md create mode 100644 docs/version-specific/supported-software/n/netloc.md create mode 100644 docs/version-specific/supported-software/n/nettle.md create mode 100644 docs/version-specific/supported-software/n/networkTools.md create mode 100644 docs/version-specific/supported-software/n/networkx.md create mode 100644 docs/version-specific/supported-software/n/nf-core-mag.md create mode 100644 docs/version-specific/supported-software/n/nf-core.md create mode 100644 docs/version-specific/supported-software/n/nghttp2.md create mode 100644 docs/version-specific/supported-software/n/nghttp3.md create mode 100644 docs/version-specific/supported-software/n/nglview.md create mode 100644 docs/version-specific/supported-software/n/ngspice.md create mode 100644 docs/version-specific/supported-software/n/ngtcp2.md create mode 100644 docs/version-specific/supported-software/n/nichenetr.md create mode 100644 docs/version-specific/supported-software/n/nifti2dicom.md create mode 100644 docs/version-specific/supported-software/n/nlohmann_json.md create mode 100644 docs/version-specific/supported-software/n/nnU-Net.md create mode 100644 docs/version-specific/supported-software/n/nodejs.md create mode 100644 docs/version-specific/supported-software/n/noise.md create mode 100644 docs/version-specific/supported-software/n/nose-parameterized.md create mode 100644 docs/version-specific/supported-software/n/nose3.md create mode 100644 docs/version-specific/supported-software/n/novaSTA.md create mode 100644 docs/version-specific/supported-software/n/novoalign.md create mode 100644 docs/version-specific/supported-software/n/npstat.md create mode 100644 docs/version-specific/supported-software/n/nsync.md create mode 100644 docs/version-specific/supported-software/n/ntCard.md create mode 100644 docs/version-specific/supported-software/n/ntEdit.md create mode 100644 docs/version-specific/supported-software/n/ntHits.md create mode 100644 docs/version-specific/supported-software/n/num2words.md create mode 100644 docs/version-specific/supported-software/n/numactl.md create mode 100644 docs/version-specific/supported-software/n/numba.md create mode 100644 docs/version-specific/supported-software/n/numdiff.md create mode 100644 docs/version-specific/supported-software/n/numexpr.md create mode 100644 docs/version-specific/supported-software/n/numpy.md create mode 100644 docs/version-specific/supported-software/n/nvitop.md create mode 100644 docs/version-specific/supported-software/n/nvofbf.md create mode 100644 docs/version-specific/supported-software/n/nvompi.md create mode 100644 docs/version-specific/supported-software/n/nvtop.md create mode 100644 docs/version-specific/supported-software/o/OBITools.md create mode 100644 docs/version-specific/supported-software/o/OBITools3.md create mode 100644 docs/version-specific/supported-software/o/OCNet.md create mode 100644 docs/version-specific/supported-software/o/OCaml.md create mode 100644 docs/version-specific/supported-software/o/OGDF.md create mode 100644 docs/version-specific/supported-software/o/OMA.md create mode 100644 docs/version-specific/supported-software/o/OMERO.insight.md create mode 100644 docs/version-specific/supported-software/o/OMERO.py.md create mode 100644 docs/version-specific/supported-software/o/ONNX-Runtime.md create mode 100644 docs/version-specific/supported-software/o/ONNX.md create mode 100644 docs/version-specific/supported-software/o/OOMPA.md create mode 100644 docs/version-specific/supported-software/o/OPARI2.md create mode 100644 docs/version-specific/supported-software/o/OPERA-MS.md create mode 100644 docs/version-specific/supported-software/o/OPERA.md create mode 100644 docs/version-specific/supported-software/o/OR-Tools.md create mode 100644 docs/version-specific/supported-software/o/ORCA.md create mode 100644 docs/version-specific/supported-software/o/ORFfinder.md create mode 100644 docs/version-specific/supported-software/o/OSPRay.md create mode 100644 docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md create mode 100644 docs/version-specific/supported-software/o/OTF2.md create mode 100644 docs/version-specific/supported-software/o/OVITO.md create mode 100644 docs/version-specific/supported-software/o/Oases.md create mode 100644 docs/version-specific/supported-software/o/Octave.md create mode 100644 docs/version-specific/supported-software/o/Octopus-vcf.md create mode 100644 docs/version-specific/supported-software/o/OmegaFold.md create mode 100644 docs/version-specific/supported-software/o/Omnipose.md create mode 100644 docs/version-specific/supported-software/o/Open-Data-Cube-Core.md create mode 100644 docs/version-specific/supported-software/o/OpenAI-Gym.md create mode 100644 docs/version-specific/supported-software/o/OpenBLAS.md create mode 100644 docs/version-specific/supported-software/o/OpenBabel.md create mode 100644 docs/version-specific/supported-software/o/OpenCV.md create mode 100644 docs/version-specific/supported-software/o/OpenCensus-python.md create mode 100644 docs/version-specific/supported-software/o/OpenCoarrays.md create mode 100644 docs/version-specific/supported-software/o/OpenColorIO.md create mode 100644 docs/version-specific/supported-software/o/OpenEXR.md create mode 100644 docs/version-specific/supported-software/o/OpenFAST.md create mode 100644 docs/version-specific/supported-software/o/OpenFOAM-Extend.md create mode 100644 docs/version-specific/supported-software/o/OpenFOAM.md create mode 100644 docs/version-specific/supported-software/o/OpenFace.md create mode 100644 docs/version-specific/supported-software/o/OpenFold.md create mode 100644 docs/version-specific/supported-software/o/OpenForceField.md create mode 100644 docs/version-specific/supported-software/o/OpenImageIO.md create mode 100644 docs/version-specific/supported-software/o/OpenJPEG.md create mode 100644 docs/version-specific/supported-software/o/OpenKIM-API.md create mode 100644 docs/version-specific/supported-software/o/OpenMEEG.md create mode 100644 docs/version-specific/supported-software/o/OpenMM-PLUMED.md create mode 100644 docs/version-specific/supported-software/o/OpenMM.md create mode 100644 docs/version-specific/supported-software/o/OpenMMTools.md create mode 100644 docs/version-specific/supported-software/o/OpenMPI.md create mode 100644 docs/version-specific/supported-software/o/OpenMS.md create mode 100644 docs/version-specific/supported-software/o/OpenMolcas.md create mode 100644 docs/version-specific/supported-software/o/OpenNLP.md create mode 100644 docs/version-specific/supported-software/o/OpenPGM.md create mode 100644 docs/version-specific/supported-software/o/OpenPIV.md create mode 100644 docs/version-specific/supported-software/o/OpenRefine.md create mode 100644 docs/version-specific/supported-software/o/OpenSSL.md create mode 100644 docs/version-specific/supported-software/o/OpenSceneGraph.md create mode 100644 docs/version-specific/supported-software/o/OpenSees.md create mode 100644 docs/version-specific/supported-software/o/OpenSlide-Java.md create mode 100644 docs/version-specific/supported-software/o/OpenSlide.md create mode 100644 docs/version-specific/supported-software/o/OpenStackClient.md create mode 100644 docs/version-specific/supported-software/o/OptaDOS.md create mode 100644 docs/version-specific/supported-software/o/Optax.md create mode 100644 docs/version-specific/supported-software/o/OptiType.md create mode 100644 docs/version-specific/supported-software/o/OptiX.md create mode 100644 docs/version-specific/supported-software/o/Optuna.md create mode 100644 docs/version-specific/supported-software/o/OrfM.md create mode 100644 docs/version-specific/supported-software/o/OrthoFinder.md create mode 100644 docs/version-specific/supported-software/o/OrthoMCL.md create mode 100644 docs/version-specific/supported-software/o/Osi.md create mode 100644 docs/version-specific/supported-software/o/index.md create mode 100644 docs/version-specific/supported-software/o/ocamlbuild.md create mode 100644 docs/version-specific/supported-software/o/occt.md create mode 100644 docs/version-specific/supported-software/o/oceanspy.md create mode 100644 docs/version-specific/supported-software/o/olaFlow.md create mode 100644 docs/version-specific/supported-software/o/olego.md create mode 100644 docs/version-specific/supported-software/o/onedrive.md create mode 100644 docs/version-specific/supported-software/o/ont-fast5-api.md create mode 100644 docs/version-specific/supported-software/o/ont-guppy.md create mode 100644 docs/version-specific/supported-software/o/ont-remora.md create mode 100644 docs/version-specific/supported-software/o/openCARP.md create mode 100644 docs/version-specific/supported-software/o/openkim-models.md create mode 100644 docs/version-specific/supported-software/o/openpyxl.md create mode 100644 docs/version-specific/supported-software/o/openslide-python.md create mode 100644 docs/version-specific/supported-software/o/optiSLang.md create mode 100644 docs/version-specific/supported-software/o/orthAgogue.md create mode 100644 docs/version-specific/supported-software/o/ownCloud.md create mode 100644 docs/version-specific/supported-software/o/oxDNA.md create mode 100644 docs/version-specific/supported-software/o/oxford_asl.md create mode 100644 docs/version-specific/supported-software/p/PAGAN2.md create mode 100644 docs/version-specific/supported-software/p/PAL2NAL.md create mode 100644 docs/version-specific/supported-software/p/PALEOMIX.md create mode 100644 docs/version-specific/supported-software/p/PAML.md create mode 100644 docs/version-specific/supported-software/p/PANDAseq.md create mode 100644 docs/version-specific/supported-software/p/PAPI.md create mode 100644 docs/version-specific/supported-software/p/PARI-GP.md create mode 100644 docs/version-specific/supported-software/p/PASA.md create mode 100644 docs/version-specific/supported-software/p/PAUP.md create mode 100644 docs/version-specific/supported-software/p/PBSuite.md create mode 100644 docs/version-specific/supported-software/p/PBZIP2.md create mode 100644 docs/version-specific/supported-software/p/PCAngsd.md create mode 100644 docs/version-specific/supported-software/p/PCC.md create mode 100644 docs/version-specific/supported-software/p/PCL.md create mode 100644 docs/version-specific/supported-software/p/PCMSolver.md create mode 100644 docs/version-specific/supported-software/p/PCRE.md create mode 100644 docs/version-specific/supported-software/p/PCRE2.md create mode 100644 docs/version-specific/supported-software/p/PCRaster.md create mode 100644 docs/version-specific/supported-software/p/PDM.md create mode 100644 docs/version-specific/supported-software/p/PDT.md create mode 100644 docs/version-specific/supported-software/p/PEAR.md create mode 100644 docs/version-specific/supported-software/p/PEPT.md create mode 100644 docs/version-specific/supported-software/p/PEST++.md create mode 100644 docs/version-specific/supported-software/p/PETSc.md create mode 100644 docs/version-specific/supported-software/p/PFFT.md create mode 100644 docs/version-specific/supported-software/p/PGDSpider.md create mode 100644 docs/version-specific/supported-software/p/PGI.md create mode 100644 docs/version-specific/supported-software/p/PGPLOT.md create mode 100644 docs/version-specific/supported-software/p/PHANOTATE.md create mode 100644 docs/version-specific/supported-software/p/PHASE.md create mode 100644 docs/version-specific/supported-software/p/PHAST.md create mode 100644 docs/version-specific/supported-software/p/PHLAT.md create mode 100644 docs/version-specific/supported-software/p/PHYLIP.md create mode 100644 docs/version-specific/supported-software/p/PICI-LIGGGHTS.md create mode 100644 docs/version-specific/supported-software/p/PICRUSt2.md create mode 100644 docs/version-specific/supported-software/p/PIL.md create mode 100644 docs/version-specific/supported-software/p/PIMS.md create mode 100644 docs/version-specific/supported-software/p/PIPITS.md create mode 100644 docs/version-specific/supported-software/p/PIRATE.md create mode 100644 docs/version-specific/supported-software/p/PLAMS.md create mode 100644 docs/version-specific/supported-software/p/PLAST.md create mode 100644 docs/version-specific/supported-software/p/PLINK.md create mode 100644 docs/version-specific/supported-software/p/PLINKSEQ.md create mode 100644 docs/version-specific/supported-software/p/PLUMED.md create mode 100644 docs/version-specific/supported-software/p/PLY.md create mode 100644 docs/version-specific/supported-software/p/PLplot.md create mode 100644 docs/version-specific/supported-software/p/PMIx.md create mode 100644 docs/version-specific/supported-software/p/POT.md create mode 100644 docs/version-specific/supported-software/p/POV-Ray.md create mode 100644 docs/version-specific/supported-software/p/PPanGGOLiN.md create mode 100644 docs/version-specific/supported-software/p/PPfold.md create mode 100644 docs/version-specific/supported-software/p/PRANK.md create mode 100644 docs/version-specific/supported-software/p/PRC.md create mode 100644 docs/version-specific/supported-software/p/PREQUAL.md create mode 100644 docs/version-specific/supported-software/p/PRINSEQ.md create mode 100644 docs/version-specific/supported-software/p/PRISMS-PF.md create mode 100644 docs/version-specific/supported-software/p/PROJ.md create mode 100644 docs/version-specific/supported-software/p/PRRTE.md create mode 100644 docs/version-specific/supported-software/p/PRSice.md create mode 100644 docs/version-specific/supported-software/p/PSASS.md create mode 100644 docs/version-specific/supported-software/p/PSI.md create mode 100644 docs/version-specific/supported-software/p/PSI4.md create mode 100644 docs/version-specific/supported-software/p/PSIPRED.md create mode 100644 docs/version-specific/supported-software/p/PSM2.md create mode 100644 docs/version-specific/supported-software/p/PSORTb.md create mode 100644 docs/version-specific/supported-software/p/PSolver.md create mode 100644 docs/version-specific/supported-software/p/PTESFinder.md create mode 100644 docs/version-specific/supported-software/p/PYPOWER.md create mode 100644 docs/version-specific/supported-software/p/PYTHIA.md create mode 100644 docs/version-specific/supported-software/p/PaStiX.md create mode 100644 docs/version-specific/supported-software/p/Pandoc.md create mode 100644 docs/version-specific/supported-software/p/Panedr.md create mode 100644 docs/version-specific/supported-software/p/Pango.md create mode 100644 docs/version-specific/supported-software/p/ParMETIS.md create mode 100644 docs/version-specific/supported-software/p/ParMGridGen.md create mode 100644 docs/version-specific/supported-software/p/ParaView.md create mode 100644 docs/version-specific/supported-software/p/Parallel-Hashmap.md create mode 100644 docs/version-specific/supported-software/p/ParallelIO.md create mode 100644 docs/version-specific/supported-software/p/Paraver.md create mode 100644 docs/version-specific/supported-software/p/Parcels.md create mode 100644 docs/version-specific/supported-software/p/ParmEd.md create mode 100644 docs/version-specific/supported-software/p/Parsl.md create mode 100644 docs/version-specific/supported-software/p/PartitionFinder.md create mode 100644 docs/version-specific/supported-software/p/PennCNV.md create mode 100644 docs/version-specific/supported-software/p/Percolator.md create mode 100644 docs/version-specific/supported-software/p/Perl-bundle-CPAN.md create mode 100644 docs/version-specific/supported-software/p/Perl.md create mode 100644 docs/version-specific/supported-software/p/Perl4-CoreLibs.md create mode 100644 docs/version-specific/supported-software/p/Perseus.md create mode 100644 docs/version-specific/supported-software/p/PfamScan.md create mode 100644 docs/version-specific/supported-software/p/Phantompeakqualtools.md create mode 100644 docs/version-specific/supported-software/p/PheWAS.md create mode 100644 docs/version-specific/supported-software/p/PheWeb.md create mode 100644 docs/version-specific/supported-software/p/Phenoflow.md create mode 100644 docs/version-specific/supported-software/p/PhiPack.md create mode 100644 docs/version-specific/supported-software/p/Philosopher.md create mode 100644 docs/version-specific/supported-software/p/PhyML.md create mode 100644 docs/version-specific/supported-software/p/PhyloBayes-MPI.md create mode 100644 docs/version-specific/supported-software/p/PhyloPhlAn.md create mode 100644 docs/version-specific/supported-software/p/PileOMeth.md create mode 100644 docs/version-specific/supported-software/p/Pillow-SIMD.md create mode 100644 docs/version-specific/supported-software/p/Pillow.md create mode 100644 docs/version-specific/supported-software/p/Pilon.md create mode 100644 docs/version-specific/supported-software/p/Pindel.md create mode 100644 docs/version-specific/supported-software/p/Pingouin.md create mode 100644 docs/version-specific/supported-software/p/Pint.md create mode 100644 docs/version-specific/supported-software/p/Pisces.md create mode 100644 docs/version-specific/supported-software/p/PlaScope.md create mode 100644 docs/version-specific/supported-software/p/PlasmaPy.md create mode 100644 docs/version-specific/supported-software/p/Platanus.md create mode 100644 docs/version-specific/supported-software/p/Platypus-Opt.md create mode 100644 docs/version-specific/supported-software/p/Platypus.md create mode 100644 docs/version-specific/supported-software/p/Ploticus.md create mode 100644 docs/version-specific/supported-software/p/PnetCDF.md create mode 100644 docs/version-specific/supported-software/p/Porechop.md create mode 100644 docs/version-specific/supported-software/p/PortAudio.md create mode 100644 docs/version-specific/supported-software/p/PortMidi.md create mode 100644 docs/version-specific/supported-software/p/Portcullis.md create mode 100644 docs/version-specific/supported-software/p/PostgreSQL.md create mode 100644 docs/version-specific/supported-software/p/Postgres-XL.md create mode 100644 docs/version-specific/supported-software/p/Primer3.md create mode 100644 docs/version-specific/supported-software/p/ProBiS.md create mode 100644 docs/version-specific/supported-software/p/ProFit.md create mode 100644 docs/version-specific/supported-software/p/ProbABEL.md create mode 100644 docs/version-specific/supported-software/p/ProjectQ.md create mode 100644 docs/version-specific/supported-software/p/ProtHint.md create mode 100644 docs/version-specific/supported-software/p/ProteinMPNN.md create mode 100644 docs/version-specific/supported-software/p/Proteinortho.md create mode 100644 docs/version-specific/supported-software/p/PsiCLASS.md create mode 100644 docs/version-specific/supported-software/p/PuLP.md create mode 100644 docs/version-specific/supported-software/p/PyAEDT.md create mode 100644 docs/version-specific/supported-software/p/PyAMG.md create mode 100644 docs/version-specific/supported-software/p/PyAPS3.md create mode 100644 docs/version-specific/supported-software/p/PyAV.md create mode 100644 docs/version-specific/supported-software/p/PyBerny.md create mode 100644 docs/version-specific/supported-software/p/PyBioLib.md create mode 100644 docs/version-specific/supported-software/p/PyCUDA.md create mode 100644 docs/version-specific/supported-software/p/PyCairo.md create mode 100644 docs/version-specific/supported-software/p/PyCalib.md create mode 100644 docs/version-specific/supported-software/p/PyCharm.md create mode 100644 docs/version-specific/supported-software/p/PyCheMPS2.md create mode 100644 docs/version-specific/supported-software/p/PyCifRW.md create mode 100644 docs/version-specific/supported-software/p/PyClone.md create mode 100644 docs/version-specific/supported-software/p/PyCogent.md create mode 100644 docs/version-specific/supported-software/p/PyDamage.md create mode 100644 docs/version-specific/supported-software/p/PyDatastream.md create mode 100644 docs/version-specific/supported-software/p/PyEVTK.md create mode 100644 docs/version-specific/supported-software/p/PyEXR.md create mode 100644 docs/version-specific/supported-software/p/PyFFmpeg.md create mode 100644 docs/version-specific/supported-software/p/PyFMI.md create mode 100644 docs/version-specific/supported-software/p/PyFR.md create mode 100644 docs/version-specific/supported-software/p/PyFoam.md create mode 100644 docs/version-specific/supported-software/p/PyFrag.md create mode 100644 docs/version-specific/supported-software/p/PyGEOS.md create mode 100644 docs/version-specific/supported-software/p/PyGObject.md create mode 100644 docs/version-specific/supported-software/p/PyGTK.md create mode 100644 docs/version-specific/supported-software/p/PyGTS.md create mode 100644 docs/version-specific/supported-software/p/PyGWAS.md create mode 100644 docs/version-specific/supported-software/p/PyHMMER.md create mode 100644 docs/version-specific/supported-software/p/PyImageJ.md create mode 100644 docs/version-specific/supported-software/p/PyInstaller.md create mode 100644 docs/version-specific/supported-software/p/PyMC.md create mode 100644 docs/version-specific/supported-software/p/PyMC3.md create mode 100644 docs/version-specific/supported-software/p/PyMOL.md create mode 100644 docs/version-specific/supported-software/p/PyNAST.md create mode 100644 docs/version-specific/supported-software/p/PyOD.md create mode 100644 docs/version-specific/supported-software/p/PyOpenCL.md create mode 100644 docs/version-specific/supported-software/p/PyOpenGL.md create mode 100644 docs/version-specific/supported-software/p/PyPSA.md create mode 100644 docs/version-specific/supported-software/p/PyPy.md create mode 100644 docs/version-specific/supported-software/p/PyQt-builder.md create mode 100644 docs/version-specific/supported-software/p/PyQt.md create mode 100644 docs/version-specific/supported-software/p/PyQt5.md create mode 100644 docs/version-specific/supported-software/p/PyQtGraph.md create mode 100644 docs/version-specific/supported-software/p/PyRETIS.md create mode 100644 docs/version-specific/supported-software/p/PyRe.md create mode 100644 docs/version-specific/supported-software/p/PyRosetta.md create mode 100644 docs/version-specific/supported-software/p/PySAT.md create mode 100644 docs/version-specific/supported-software/p/PySCF.md create mode 100644 docs/version-specific/supported-software/p/PySINDy.md create mode 100644 docs/version-specific/supported-software/p/PySide2.md create mode 100644 docs/version-specific/supported-software/p/PyStan.md create mode 100644 docs/version-specific/supported-software/p/PyTables.md create mode 100644 docs/version-specific/supported-software/p/PyTensor.md create mode 100644 docs/version-specific/supported-software/p/PyTorch-Geometric.md create mode 100644 docs/version-specific/supported-software/p/PyTorch-Ignite.md create mode 100644 docs/version-specific/supported-software/p/PyTorch-Image-Models.md create mode 100644 docs/version-specific/supported-software/p/PyTorch-Lightning.md create mode 100644 docs/version-specific/supported-software/p/PyTorch-bundle.md create mode 100644 docs/version-specific/supported-software/p/PyTorch.md create mode 100644 docs/version-specific/supported-software/p/PyTorch3D.md create mode 100644 docs/version-specific/supported-software/p/PyTorchVideo.md create mode 100644 docs/version-specific/supported-software/p/PyVCF.md create mode 100644 docs/version-specific/supported-software/p/PyVCF3.md create mode 100644 docs/version-specific/supported-software/p/PyVista.md create mode 100644 docs/version-specific/supported-software/p/PyWBGT.md create mode 100644 docs/version-specific/supported-software/p/PyWavelets.md create mode 100644 docs/version-specific/supported-software/p/PyYAML.md create mode 100644 docs/version-specific/supported-software/p/PyZMQ.md create mode 100644 docs/version-specific/supported-software/p/PycURL.md create mode 100644 docs/version-specific/supported-software/p/Pychopper.md create mode 100644 docs/version-specific/supported-software/p/Pygments.md create mode 100644 docs/version-specific/supported-software/p/Pyke3.md create mode 100644 docs/version-specific/supported-software/p/Pylint.md create mode 100644 docs/version-specific/supported-software/p/Pyomo.md create mode 100644 docs/version-specific/supported-software/p/Pyro4.md create mode 100644 docs/version-specific/supported-software/p/Pysam.md create mode 100644 docs/version-specific/supported-software/p/Pysolar.md create mode 100644 docs/version-specific/supported-software/p/Python-bundle-PyPI.md create mode 100644 docs/version-specific/supported-software/p/Python-bundle.md create mode 100644 docs/version-specific/supported-software/p/Python.md create mode 100644 docs/version-specific/supported-software/p/index.md create mode 100644 docs/version-specific/supported-software/p/p11-kit.md create mode 100644 docs/version-specific/supported-software/p/p4-phylogenetics.md create mode 100644 docs/version-specific/supported-software/p/p4est.md create mode 100644 docs/version-specific/supported-software/p/p4vasp.md create mode 100644 docs/version-specific/supported-software/p/p7zip.md create mode 100644 docs/version-specific/supported-software/p/pFUnit.md create mode 100644 docs/version-specific/supported-software/p/pIRS.md create mode 100644 docs/version-specific/supported-software/p/packmol.md create mode 100644 docs/version-specific/supported-software/p/pagmo.md create mode 100644 docs/version-specific/supported-software/p/pairsnp.md create mode 100644 docs/version-specific/supported-software/p/paladin.md create mode 100644 docs/version-specific/supported-software/p/panaroo.md create mode 100644 docs/version-specific/supported-software/p/pandapower.md create mode 100644 docs/version-specific/supported-software/p/pandas-datareader.md create mode 100644 docs/version-specific/supported-software/p/pandas.md create mode 100644 docs/version-specific/supported-software/p/pangolin.md create mode 100644 docs/version-specific/supported-software/p/panito.md create mode 100644 docs/version-specific/supported-software/p/parallel-fastq-dump.md create mode 100644 docs/version-specific/supported-software/p/parallel.md create mode 100644 docs/version-specific/supported-software/p/parameterized.md create mode 100644 docs/version-specific/supported-software/p/paramiko.md create mode 100644 docs/version-specific/supported-software/p/parasail.md create mode 100644 docs/version-specific/supported-software/p/pasta.md create mode 100644 docs/version-specific/supported-software/p/pastml.md create mode 100644 docs/version-specific/supported-software/p/patch.md create mode 100644 docs/version-specific/supported-software/p/patchelf.md create mode 100644 docs/version-specific/supported-software/p/path.py.md create mode 100644 docs/version-specific/supported-software/p/pauvre.md create mode 100644 docs/version-specific/supported-software/p/pbbam.md create mode 100644 docs/version-specific/supported-software/p/pbcopper.md create mode 100644 docs/version-specific/supported-software/p/pbdagcon.md create mode 100644 docs/version-specific/supported-software/p/pbipa.md create mode 100644 docs/version-specific/supported-software/p/pblat.md create mode 100644 docs/version-specific/supported-software/p/pbmm2.md create mode 100644 docs/version-specific/supported-software/p/pbs_python.md create mode 100644 docs/version-specific/supported-software/p/pdf2docx.md create mode 100644 docs/version-specific/supported-software/p/pdsh.md create mode 100644 docs/version-specific/supported-software/p/peakdetect.md create mode 100644 docs/version-specific/supported-software/p/perl-app-cpanminus.md create mode 100644 docs/version-specific/supported-software/p/petsc4py.md create mode 100644 docs/version-specific/supported-software/p/pfind.md create mode 100644 docs/version-specific/supported-software/p/pftoolsV3.md create mode 100644 docs/version-specific/supported-software/p/phonemizer.md create mode 100644 docs/version-specific/supported-software/p/phono3py.md create mode 100644 docs/version-specific/supported-software/p/phonopy.md create mode 100644 docs/version-specific/supported-software/p/photontorch.md create mode 100644 docs/version-specific/supported-software/p/phototonic.md create mode 100644 docs/version-specific/supported-software/p/phylokit.md create mode 100644 docs/version-specific/supported-software/p/phylonaut.md create mode 100644 docs/version-specific/supported-software/p/phyluce.md create mode 100644 docs/version-specific/supported-software/p/phyx.md create mode 100644 docs/version-specific/supported-software/p/piSvM-JSC.md create mode 100644 docs/version-specific/supported-software/p/piSvM.md create mode 100644 docs/version-specific/supported-software/p/picard.md create mode 100644 docs/version-specific/supported-software/p/pigz.md create mode 100644 docs/version-specific/supported-software/p/pip.md create mode 100644 docs/version-specific/supported-software/p/pixman.md create mode 100644 docs/version-specific/supported-software/p/pizzly.md create mode 100644 docs/version-specific/supported-software/p/pkg-config.md create mode 100644 docs/version-specific/supported-software/p/pkgconf.md create mode 100644 docs/version-specific/supported-software/p/pkgconfig.md create mode 100644 docs/version-specific/supported-software/p/planarity.md create mode 100644 docs/version-specific/supported-software/p/plantcv.md create mode 100644 docs/version-specific/supported-software/p/plantri.md create mode 100644 docs/version-specific/supported-software/p/plc.md create mode 100644 docs/version-specific/supported-software/p/plinkQC.md create mode 100644 docs/version-specific/supported-software/p/plinkliftover.md create mode 100644 docs/version-specific/supported-software/p/plmc.md create mode 100644 docs/version-specific/supported-software/p/plot1cell.md create mode 100644 docs/version-specific/supported-software/p/plotly-orca.md create mode 100644 docs/version-specific/supported-software/p/plotly.md create mode 100644 docs/version-specific/supported-software/p/plotly.py.md create mode 100644 docs/version-specific/supported-software/p/plotutils.md create mode 100644 docs/version-specific/supported-software/p/pmt.md create mode 100644 docs/version-specific/supported-software/p/pmx.md create mode 100644 docs/version-specific/supported-software/p/pocl.md create mode 100644 docs/version-specific/supported-software/p/pod5-file-format.md create mode 100644 docs/version-specific/supported-software/p/poetry.md create mode 100644 docs/version-specific/supported-software/p/polars.md create mode 100644 docs/version-specific/supported-software/p/polymake.md create mode 100644 docs/version-specific/supported-software/p/pomkl.md create mode 100644 docs/version-specific/supported-software/p/pompi.md create mode 100644 docs/version-specific/supported-software/p/poppler.md create mode 100644 docs/version-specific/supported-software/p/poppunk.md create mode 100644 docs/version-specific/supported-software/p/popscle.md create mode 100644 docs/version-specific/supported-software/p/popt.md create mode 100644 docs/version-specific/supported-software/p/porefoam.md create mode 100644 docs/version-specific/supported-software/p/poretools.md create mode 100644 docs/version-specific/supported-software/p/powerlaw.md create mode 100644 docs/version-specific/supported-software/p/pp-sketchlib.md create mode 100644 docs/version-specific/supported-software/p/ppl.md create mode 100644 docs/version-specific/supported-software/p/pplacer.md create mode 100644 docs/version-specific/supported-software/p/pplpy.md create mode 100644 docs/version-specific/supported-software/p/preCICE.md create mode 100644 docs/version-specific/supported-software/p/premailer.md create mode 100644 docs/version-specific/supported-software/p/preseq.md create mode 100644 docs/version-specific/supported-software/p/presto.md create mode 100644 docs/version-specific/supported-software/p/pretty-yaml.md create mode 100644 docs/version-specific/supported-software/p/primecount.md create mode 100644 docs/version-specific/supported-software/p/primecountpy.md create mode 100644 docs/version-specific/supported-software/p/printproto.md create mode 100644 docs/version-specific/supported-software/p/prodigal.md create mode 100644 docs/version-specific/supported-software/p/prokka.md create mode 100644 docs/version-specific/supported-software/p/prompt-toolkit.md create mode 100644 docs/version-specific/supported-software/p/proovread.md create mode 100644 docs/version-specific/supported-software/p/propy.md create mode 100644 docs/version-specific/supported-software/p/protobuf-python.md create mode 100644 docs/version-specific/supported-software/p/protobuf.md create mode 100644 docs/version-specific/supported-software/p/protozero.md create mode 100644 docs/version-specific/supported-software/p/pscom.md create mode 100644 docs/version-specific/supported-software/p/psmc.md create mode 100644 docs/version-specific/supported-software/p/psmpi.md create mode 100644 docs/version-specific/supported-software/p/psmpi2.md create mode 100644 docs/version-specific/supported-software/p/psrecord.md create mode 100644 docs/version-specific/supported-software/p/pstoedit.md create mode 100644 docs/version-specific/supported-software/p/psutil.md create mode 100644 docs/version-specific/supported-software/p/psycopg.md create mode 100644 docs/version-specific/supported-software/p/psycopg2.md create mode 100644 docs/version-specific/supported-software/p/ptemcee.md create mode 100644 docs/version-specific/supported-software/p/pubtcrs.md create mode 100644 docs/version-specific/supported-software/p/pugixml.md create mode 100644 docs/version-specific/supported-software/p/pullseq.md create mode 100644 docs/version-specific/supported-software/p/purge_dups.md create mode 100644 docs/version-specific/supported-software/p/pv.md create mode 100644 docs/version-specific/supported-software/p/py-aiger-bdd.md create mode 100644 docs/version-specific/supported-software/p/py-aiger.md create mode 100644 docs/version-specific/supported-software/p/py-c3d.md create mode 100644 docs/version-specific/supported-software/p/py-cpuinfo.md create mode 100644 docs/version-specific/supported-software/p/py.md create mode 100644 docs/version-specific/supported-software/p/py3Dmol.md create mode 100644 docs/version-specific/supported-software/p/pyABC.md create mode 100644 docs/version-specific/supported-software/p/pyBigWig.md create mode 100644 docs/version-specific/supported-software/p/pyEGA3.md create mode 100644 docs/version-specific/supported-software/p/pyFAI.md create mode 100644 docs/version-specific/supported-software/p/pyFFTW.md create mode 100644 docs/version-specific/supported-software/p/pyGAM.md create mode 100644 docs/version-specific/supported-software/p/pyGIMLi.md create mode 100644 docs/version-specific/supported-software/p/pyGenomeTracks.md create mode 100644 docs/version-specific/supported-software/p/pyMannKendall.md create mode 100644 docs/version-specific/supported-software/p/pySCENIC.md create mode 100644 docs/version-specific/supported-software/p/pyScaf.md create mode 100644 docs/version-specific/supported-software/p/pyWannier90.md create mode 100644 docs/version-specific/supported-software/p/pyXDF.md create mode 100644 docs/version-specific/supported-software/p/pybedtools.md create mode 100644 docs/version-specific/supported-software/p/pybind11-stubgen.md create mode 100644 docs/version-specific/supported-software/p/pybind11.md create mode 100644 docs/version-specific/supported-software/p/pybinding.md create mode 100644 docs/version-specific/supported-software/p/pyccel.md create mode 100644 docs/version-specific/supported-software/p/pycma.md create mode 100644 docs/version-specific/supported-software/p/pycoQC.md create mode 100644 docs/version-specific/supported-software/p/pycocotools.md create mode 100644 docs/version-specific/supported-software/p/pycodestyle.md create mode 100644 docs/version-specific/supported-software/p/pycubescd.md create mode 100644 docs/version-specific/supported-software/p/pydantic.md create mode 100644 docs/version-specific/supported-software/p/pydicom-seg.md create mode 100644 docs/version-specific/supported-software/p/pydicom.md create mode 100644 docs/version-specific/supported-software/p/pydlpoly.md create mode 100644 docs/version-specific/supported-software/p/pydot.md create mode 100644 docs/version-specific/supported-software/p/pyenchant.md create mode 100644 docs/version-specific/supported-software/p/pyfaidx.md create mode 100644 docs/version-specific/supported-software/p/pyfasta.md create mode 100644 docs/version-specific/supported-software/p/pyfits.md create mode 100644 docs/version-specific/supported-software/p/pygame.md create mode 100644 docs/version-specific/supported-software/p/pygccxml.md create mode 100644 docs/version-specific/supported-software/p/pygmo.md create mode 100644 docs/version-specific/supported-software/p/pygraphviz.md create mode 100644 docs/version-specific/supported-software/p/pygrib.md create mode 100644 docs/version-specific/supported-software/p/pyhdf.md create mode 100644 docs/version-specific/supported-software/p/pyiron.md create mode 100644 docs/version-specific/supported-software/p/pylift.md create mode 100644 docs/version-specific/supported-software/p/pylipid.md create mode 100644 docs/version-specific/supported-software/p/pymatgen-db.md create mode 100644 docs/version-specific/supported-software/p/pymatgen.md create mode 100644 docs/version-specific/supported-software/p/pymbar.md create mode 100644 docs/version-specific/supported-software/p/pymca.md create mode 100644 docs/version-specific/supported-software/p/pymemcache.md create mode 100644 docs/version-specific/supported-software/p/pyobjcryst.md create mode 100644 docs/version-specific/supported-software/p/pyodbc.md create mode 100644 docs/version-specific/supported-software/p/pyparsing.md create mode 100644 docs/version-specific/supported-software/p/pyperf.md create mode 100644 docs/version-specific/supported-software/p/pyplusplus.md create mode 100644 docs/version-specific/supported-software/p/pypmt.md create mode 100644 docs/version-specific/supported-software/p/pyproj.md create mode 100644 docs/version-specific/supported-software/p/pyqstem.md create mode 100644 docs/version-specific/supported-software/p/pyradiomics.md create mode 100644 docs/version-specific/supported-software/p/pyringe.md create mode 100644 docs/version-specific/supported-software/p/pyro-api.md create mode 100644 docs/version-specific/supported-software/p/pyro-ppl.md create mode 100644 docs/version-specific/supported-software/p/pysamstats.md create mode 100644 docs/version-specific/supported-software/p/pyseer.md create mode 100644 docs/version-specific/supported-software/p/pysheds.md create mode 100644 docs/version-specific/supported-software/p/pyshp.md create mode 100644 docs/version-specific/supported-software/p/pyslim.md create mode 100644 docs/version-specific/supported-software/p/pysndfx.md create mode 100644 docs/version-specific/supported-software/p/pyspoa.md create mode 100644 docs/version-specific/supported-software/p/pysqlite.md create mode 100644 docs/version-specific/supported-software/p/pysteps.md create mode 100644 docs/version-specific/supported-software/p/pystran.md create mode 100644 docs/version-specific/supported-software/p/pytesseract.md create mode 100644 docs/version-specific/supported-software/p/pytest-benchmark.md create mode 100644 docs/version-specific/supported-software/p/pytest-cpp.md create mode 100644 docs/version-specific/supported-software/p/pytest-flakefinder.md create mode 100644 docs/version-specific/supported-software/p/pytest-rerunfailures.md create mode 100644 docs/version-specific/supported-software/p/pytest-shard.md create mode 100644 docs/version-specific/supported-software/p/pytest-workflow.md create mode 100644 docs/version-specific/supported-software/p/pytest-xdist.md create mode 100644 docs/version-specific/supported-software/p/pytest.md create mode 100644 docs/version-specific/supported-software/p/pythermalcomfort.md create mode 100644 docs/version-specific/supported-software/p/python-Levenshtein.md create mode 100644 docs/version-specific/supported-software/p/python-casacore.md create mode 100644 docs/version-specific/supported-software/p/python-docx.md create mode 100644 docs/version-specific/supported-software/p/python-hl7.md create mode 100644 docs/version-specific/supported-software/p/python-igraph.md create mode 100644 docs/version-specific/supported-software/p/python-irodsclient.md create mode 100644 docs/version-specific/supported-software/p/python-isal.md create mode 100644 docs/version-specific/supported-software/p/python-libsbml.md create mode 100644 docs/version-specific/supported-software/p/python-louvain.md create mode 100644 docs/version-specific/supported-software/p/python-mujoco.md create mode 100644 docs/version-specific/supported-software/p/python-parasail.md create mode 100644 docs/version-specific/supported-software/p/python-telegram-bot.md create mode 100644 docs/version-specific/supported-software/p/python-weka-wrapper3.md create mode 100644 docs/version-specific/supported-software/p/python-xxhash.md create mode 100644 docs/version-specific/supported-software/p/pythran.md create mode 100644 docs/version-specific/supported-software/p/pytorch-3dunet.md create mode 100644 docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md create mode 100644 docs/version-specific/supported-software/q/Q6.md create mode 100644 docs/version-specific/supported-software/q/QCA.md create mode 100644 docs/version-specific/supported-software/q/QCG-PilotJob.md create mode 100644 docs/version-specific/supported-software/q/QCxMS.md create mode 100644 docs/version-specific/supported-software/q/QD.md create mode 100644 docs/version-specific/supported-software/q/QDD.md create mode 100644 docs/version-specific/supported-software/q/QEMU.md create mode 100644 docs/version-specific/supported-software/q/QGIS.md create mode 100644 docs/version-specific/supported-software/q/QIIME.md create mode 100644 docs/version-specific/supported-software/q/QIIME2.md create mode 100644 docs/version-specific/supported-software/q/QJson.md create mode 100644 docs/version-specific/supported-software/q/QML.md create mode 100644 docs/version-specific/supported-software/q/QScintilla.md create mode 100644 docs/version-specific/supported-software/q/QTLtools.md create mode 100644 docs/version-specific/supported-software/q/QUAST.md create mode 100644 docs/version-specific/supported-software/q/Qhull.md create mode 100644 docs/version-specific/supported-software/q/Qiskit.md create mode 100644 docs/version-specific/supported-software/q/Qt.md create mode 100644 docs/version-specific/supported-software/q/Qt5.md create mode 100644 docs/version-specific/supported-software/q/Qt5Webkit.md create mode 100644 docs/version-specific/supported-software/q/Qt6.md create mode 100644 docs/version-specific/supported-software/q/QtKeychain.md create mode 100644 docs/version-specific/supported-software/q/QtPy.md create mode 100644 docs/version-specific/supported-software/q/Qtconsole.md create mode 100644 docs/version-specific/supported-software/q/QuPath.md create mode 100644 docs/version-specific/supported-software/q/QuTiP.md create mode 100644 docs/version-specific/supported-software/q/QuaZIP.md create mode 100644 docs/version-specific/supported-software/q/Qualimap.md create mode 100644 docs/version-specific/supported-software/q/Quandl.md create mode 100644 docs/version-specific/supported-software/q/QuantumESPRESSO.md create mode 100644 docs/version-specific/supported-software/q/QuickFF.md create mode 100644 docs/version-specific/supported-software/q/QuickPIC.md create mode 100644 docs/version-specific/supported-software/q/QuickTree.md create mode 100644 docs/version-specific/supported-software/q/Quip.md create mode 100644 docs/version-specific/supported-software/q/Quorum.md create mode 100644 docs/version-specific/supported-software/q/Qwt.md create mode 100644 docs/version-specific/supported-software/q/QwtPolar.md create mode 100644 docs/version-specific/supported-software/q/index.md create mode 100644 docs/version-specific/supported-software/q/q2-krona.md create mode 100644 docs/version-specific/supported-software/q/qcat.md create mode 100644 docs/version-specific/supported-software/q/qcint.md create mode 100644 docs/version-specific/supported-software/q/qforce.md create mode 100644 docs/version-specific/supported-software/q/qmflows.md create mode 100644 docs/version-specific/supported-software/q/qnorm.md create mode 100644 docs/version-specific/supported-software/q/qpth.md create mode 100644 docs/version-specific/supported-software/q/qrupdate.md create mode 100644 docs/version-specific/supported-software/q/qtop.md create mode 100644 docs/version-specific/supported-software/r/R-INLA.md create mode 100644 docs/version-specific/supported-software/r/R-MXM.md create mode 100644 docs/version-specific/supported-software/r/R-bundle-Bioconductor.md create mode 100644 docs/version-specific/supported-software/r/R-bundle-CRAN.md create mode 100644 docs/version-specific/supported-software/r/R-keras.md create mode 100644 docs/version-specific/supported-software/r/R-opencv.md create mode 100644 docs/version-specific/supported-software/r/R-tesseract.md create mode 100644 docs/version-specific/supported-software/r/R-transport.md create mode 100644 docs/version-specific/supported-software/r/R.md create mode 100644 docs/version-specific/supported-software/r/R2jags.md create mode 100644 docs/version-specific/supported-software/r/RAPSearch2.md create mode 100644 docs/version-specific/supported-software/r/RASPA2.md create mode 100644 docs/version-specific/supported-software/r/RAxML-NG.md create mode 100644 docs/version-specific/supported-software/r/RAxML.md create mode 100644 docs/version-specific/supported-software/r/RBFOpt.md create mode 100644 docs/version-specific/supported-software/r/RCall.md create mode 100644 docs/version-specific/supported-software/r/RDFlib.md create mode 100644 docs/version-specific/supported-software/r/RDKit.md create mode 100644 docs/version-specific/supported-software/r/RDP-Classifier.md create mode 100644 docs/version-specific/supported-software/r/RE2.md create mode 100644 docs/version-specific/supported-software/r/RECON.md create mode 100644 docs/version-specific/supported-software/r/RELION.md create mode 100644 docs/version-specific/supported-software/r/REMORA.md create mode 100644 docs/version-specific/supported-software/r/RERconverge.md create mode 100644 docs/version-specific/supported-software/r/RFdiffusion.md create mode 100644 docs/version-specific/supported-software/r/RHEIA.md create mode 100644 docs/version-specific/supported-software/r/RInChI.md create mode 100644 docs/version-specific/supported-software/r/RLCard.md create mode 100644 docs/version-specific/supported-software/r/RMBlast.md create mode 100644 docs/version-specific/supported-software/r/RNA-Bloom.md create mode 100644 docs/version-specific/supported-software/r/RNA-SeQC.md create mode 100644 docs/version-specific/supported-software/r/RNAIndel.md create mode 100644 docs/version-specific/supported-software/r/RNAclust.md create mode 100644 docs/version-specific/supported-software/r/RNAcode.md create mode 100644 docs/version-specific/supported-software/r/RNAmmer.md create mode 100644 docs/version-specific/supported-software/r/RNAz.md create mode 100644 docs/version-specific/supported-software/r/ROCR-Runtime.md create mode 100644 docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md create mode 100644 docs/version-specific/supported-software/r/ROCm-CompilerSupport.md create mode 100644 docs/version-specific/supported-software/r/ROCm.md create mode 100644 docs/version-specific/supported-software/r/ROI_PAC.md create mode 100644 docs/version-specific/supported-software/r/ROME.md create mode 100644 docs/version-specific/supported-software/r/ROOT.md create mode 100644 docs/version-specific/supported-software/r/RPostgreSQL.md create mode 100644 docs/version-specific/supported-software/r/RQGIS3.md create mode 100644 docs/version-specific/supported-software/r/RSEM.md create mode 100644 docs/version-specific/supported-software/r/RSeQC.md create mode 100644 docs/version-specific/supported-software/r/RStan.md create mode 100644 docs/version-specific/supported-software/r/RStudio-Server.md create mode 100644 docs/version-specific/supported-software/r/RTG-Tools.md create mode 100644 docs/version-specific/supported-software/r/RaGOO.md create mode 100644 docs/version-specific/supported-software/r/Racon.md create mode 100644 docs/version-specific/supported-software/r/RagTag.md create mode 100644 docs/version-specific/supported-software/r/Ragout.md create mode 100644 docs/version-specific/supported-software/r/RapidJSON.md create mode 100644 docs/version-specific/supported-software/r/Raptor.md create mode 100644 docs/version-specific/supported-software/r/Rascaf.md create mode 100644 docs/version-specific/supported-software/r/Ratatosk.md create mode 100644 docs/version-specific/supported-software/r/Raven.md create mode 100644 docs/version-specific/supported-software/r/Ray-assembler.md create mode 100644 docs/version-specific/supported-software/r/Ray-project.md create mode 100644 docs/version-specific/supported-software/r/Raysect.md create mode 100644 docs/version-specific/supported-software/r/Rcorrector.md create mode 100644 docs/version-specific/supported-software/r/RcppGSL.md create mode 100644 docs/version-specific/supported-software/r/ReFrame.md create mode 100644 docs/version-specific/supported-software/r/ReMatCh.md create mode 100644 docs/version-specific/supported-software/r/Reads2snp.md create mode 100644 docs/version-specific/supported-software/r/Reapr.md create mode 100644 docs/version-specific/supported-software/r/ReaxFF.md create mode 100644 docs/version-specific/supported-software/r/Red.md create mode 100644 docs/version-specific/supported-software/r/Redis.md create mode 100644 docs/version-specific/supported-software/r/Redundans.md create mode 100644 docs/version-specific/supported-software/r/RegTools.md create mode 100644 docs/version-specific/supported-software/r/Relate.md create mode 100644 docs/version-specific/supported-software/r/RepastHPC.md create mode 100644 docs/version-specific/supported-software/r/RepeatMasker.md create mode 100644 docs/version-specific/supported-software/r/RepeatModeler.md create mode 100644 docs/version-specific/supported-software/r/RepeatScout.md create mode 100644 docs/version-specific/supported-software/r/ResistanceGA.md create mode 100644 docs/version-specific/supported-software/r/Restrander.md create mode 100644 docs/version-specific/supported-software/r/RevBayes.md create mode 100644 docs/version-specific/supported-software/r/Rgurobi.md create mode 100644 docs/version-specific/supported-software/r/RheoTool.md create mode 100644 docs/version-specific/supported-software/r/Rhodium.md create mode 100644 docs/version-specific/supported-software/r/Rivet.md create mode 100644 docs/version-specific/supported-software/r/Rmath.md create mode 100644 docs/version-specific/supported-software/r/RnBeads.md create mode 100644 docs/version-specific/supported-software/r/Roary.md create mode 100644 docs/version-specific/supported-software/r/Rosetta.md create mode 100644 docs/version-specific/supported-software/r/Rtree.md create mode 100644 docs/version-specific/supported-software/r/Ruby-Tk.md create mode 100644 docs/version-specific/supported-software/r/Ruby.md create mode 100644 docs/version-specific/supported-software/r/Rust.md create mode 100644 docs/version-specific/supported-software/r/index.md create mode 100644 docs/version-specific/supported-software/r/rCUDA.md create mode 100644 docs/version-specific/supported-software/r/rMATS-turbo.md create mode 100644 docs/version-specific/supported-software/r/radeontop.md create mode 100644 docs/version-specific/supported-software/r/radian.md create mode 100644 docs/version-specific/supported-software/r/rampart.md create mode 100644 docs/version-specific/supported-software/r/randfold.md create mode 100644 docs/version-specific/supported-software/r/randrproto.md create mode 100644 docs/version-specific/supported-software/r/rapidNJ.md create mode 100644 docs/version-specific/supported-software/r/rapidcsv.md create mode 100644 docs/version-specific/supported-software/r/rapidtide.md create mode 100644 docs/version-specific/supported-software/r/rasterio.md create mode 100644 docs/version-specific/supported-software/r/rasterstats.md create mode 100644 docs/version-specific/supported-software/r/rclone.md create mode 100644 docs/version-specific/supported-software/r/re2c.md create mode 100644 docs/version-specific/supported-software/r/redis-py.md create mode 100644 docs/version-specific/supported-software/r/regionmask.md create mode 100644 docs/version-specific/supported-software/r/remake.md create mode 100644 docs/version-specific/supported-software/r/renderproto.md create mode 100644 docs/version-specific/supported-software/r/request.md create mode 100644 docs/version-specific/supported-software/r/requests.md create mode 100644 docs/version-specific/supported-software/r/resolos.md create mode 100644 docs/version-specific/supported-software/r/rethinking.md create mode 100644 docs/version-specific/supported-software/r/retworkx.md create mode 100644 docs/version-specific/supported-software/r/rgdal.md create mode 100644 docs/version-specific/supported-software/r/rgeos.md create mode 100644 docs/version-specific/supported-software/r/rhdf5.md create mode 100644 docs/version-specific/supported-software/r/rickflow.md create mode 100644 docs/version-specific/supported-software/r/rioxarray.md create mode 100644 docs/version-specific/supported-software/r/ripunzip.md create mode 100644 docs/version-specific/supported-software/r/rising.md create mode 100644 docs/version-specific/supported-software/r/rjags.md create mode 100644 docs/version-specific/supported-software/r/rmarkdown.md create mode 100644 docs/version-specific/supported-software/r/rnaQUAST.md create mode 100644 docs/version-specific/supported-software/r/rocm-cmake.md create mode 100644 docs/version-specific/supported-software/r/rocm-smi.md create mode 100644 docs/version-specific/supported-software/r/rocminfo.md create mode 100644 docs/version-specific/supported-software/r/root_numpy.md create mode 100644 docs/version-specific/supported-software/r/rootpy.md create mode 100644 docs/version-specific/supported-software/r/rpmrebuild.md create mode 100644 docs/version-specific/supported-software/r/rpy2.md create mode 100644 docs/version-specific/supported-software/r/rstanarm.md create mode 100644 docs/version-specific/supported-software/r/ruamel.yaml.md create mode 100644 docs/version-specific/supported-software/r/ruffus.md create mode 100644 docs/version-specific/supported-software/r/ruptures.md create mode 100644 docs/version-specific/supported-software/r/rustworkx.md create mode 100644 docs/version-specific/supported-software/s/S-Lang.md create mode 100644 docs/version-specific/supported-software/s/S4.md create mode 100644 docs/version-specific/supported-software/s/SAGE.md create mode 100644 docs/version-specific/supported-software/s/SALMON-TDDFT.md create mode 100644 docs/version-specific/supported-software/s/SALib.md create mode 100644 docs/version-specific/supported-software/s/SAMtools.md create mode 100644 docs/version-specific/supported-software/s/SAP.md create mode 100644 docs/version-specific/supported-software/s/SAS.md create mode 100644 docs/version-specific/supported-software/s/SBCL.md create mode 100644 docs/version-specific/supported-software/s/SCALCE.md create mode 100644 docs/version-specific/supported-software/s/SCENIC.md create mode 100644 docs/version-specific/supported-software/s/SCGid.md create mode 100644 docs/version-specific/supported-software/s/SCIP.md create mode 100644 docs/version-specific/supported-software/s/SCIPhI.md create mode 100644 docs/version-specific/supported-software/s/SCOOP.md create mode 100644 docs/version-specific/supported-software/s/SCOTCH.md create mode 100644 docs/version-specific/supported-software/s/SCReadCounts.md create mode 100644 docs/version-specific/supported-software/s/SCnorm.md create mode 100644 docs/version-specific/supported-software/s/SCons.md create mode 100644 docs/version-specific/supported-software/s/SCopeLoomR.md create mode 100644 docs/version-specific/supported-software/s/SDCC.md create mode 100644 docs/version-specific/supported-software/s/SDL.md create mode 100644 docs/version-specific/supported-software/s/SDL2.md create mode 100644 docs/version-specific/supported-software/s/SDL2_gfx.md create mode 100644 docs/version-specific/supported-software/s/SDL2_image.md create mode 100644 docs/version-specific/supported-software/s/SDL2_mixer.md create mode 100644 docs/version-specific/supported-software/s/SDL2_ttf.md create mode 100644 docs/version-specific/supported-software/s/SDL_image.md create mode 100644 docs/version-specific/supported-software/s/SDSL.md create mode 100644 docs/version-specific/supported-software/s/SEACells.md create mode 100644 docs/version-specific/supported-software/s/SECAPR.md create mode 100644 docs/version-specific/supported-software/s/SELFIES.md create mode 100644 docs/version-specific/supported-software/s/SEPP.md create mode 100644 docs/version-specific/supported-software/s/SHAP.md create mode 100644 docs/version-specific/supported-software/s/SHAPEIT.md create mode 100644 docs/version-specific/supported-software/s/SHAPEIT4.md create mode 100644 docs/version-specific/supported-software/s/SHORE.md create mode 100644 docs/version-specific/supported-software/s/SHTns.md create mode 100644 docs/version-specific/supported-software/s/SICER2.md create mode 100644 docs/version-specific/supported-software/s/SIMPLE.md create mode 100644 docs/version-specific/supported-software/s/SIONlib.md create mode 100644 docs/version-specific/supported-software/s/SIP.md create mode 100644 docs/version-specific/supported-software/s/SISSO++.md create mode 100644 docs/version-specific/supported-software/s/SISSO.md create mode 100644 docs/version-specific/supported-software/s/SKESA.md create mode 100644 docs/version-specific/supported-software/s/SLATEC.md create mode 100644 docs/version-specific/supported-software/s/SLEPc.md create mode 100644 docs/version-specific/supported-software/s/SLiM.md create mode 100644 docs/version-specific/supported-software/s/SMAP.md create mode 100644 docs/version-specific/supported-software/s/SMARTdenovo.md create mode 100644 docs/version-specific/supported-software/s/SMC++.md create mode 100644 docs/version-specific/supported-software/s/SMRT-Link.md create mode 100644 docs/version-specific/supported-software/s/SMV.md create mode 100644 docs/version-specific/supported-software/s/SNAP-ESA-python.md create mode 100644 docs/version-specific/supported-software/s/SNAP-ESA.md create mode 100644 docs/version-specific/supported-software/s/SNAP-HMM.md create mode 100644 docs/version-specific/supported-software/s/SNAP.md create mode 100644 docs/version-specific/supported-software/s/SNAPE-pooled.md create mode 100644 docs/version-specific/supported-software/s/SNPhylo.md create mode 100644 docs/version-specific/supported-software/s/SNPomatic.md create mode 100644 docs/version-specific/supported-software/s/SOAPaligner.md create mode 100644 docs/version-specific/supported-software/s/SOAPdenovo-Trans.md create mode 100644 docs/version-specific/supported-software/s/SOAPdenovo2.md create mode 100644 docs/version-specific/supported-software/s/SOAPfuse.md create mode 100644 docs/version-specific/supported-software/s/SOCI.md create mode 100644 docs/version-specific/supported-software/s/SPAdes.md create mode 100644 docs/version-specific/supported-software/s/SPEI.md create mode 100644 docs/version-specific/supported-software/s/SPLASH.md create mode 100644 docs/version-specific/supported-software/s/SPM.md create mode 100644 docs/version-specific/supported-software/s/SPOOLES.md create mode 100644 docs/version-specific/supported-software/s/SPOTPY.md create mode 100644 docs/version-specific/supported-software/s/SPRNG.md create mode 100644 docs/version-specific/supported-software/s/SQLAlchemy.md create mode 100644 docs/version-specific/supported-software/s/SQLite.md create mode 100644 docs/version-specific/supported-software/s/SRA-Toolkit.md create mode 100644 docs/version-specific/supported-software/s/SRPRISM.md create mode 100644 docs/version-specific/supported-software/s/SRST2.md create mode 100644 docs/version-specific/supported-software/s/SSAHA2.md create mode 100644 docs/version-specific/supported-software/s/SSN.md create mode 100644 docs/version-specific/supported-software/s/SSPACE_Basic.md create mode 100644 docs/version-specific/supported-software/s/SSW.md create mode 100644 docs/version-specific/supported-software/s/STACEY.md create mode 100644 docs/version-specific/supported-software/s/STAMP.md create mode 100644 docs/version-specific/supported-software/s/STAR-CCM+.md create mode 100644 docs/version-specific/supported-software/s/STAR-Fusion.md create mode 100644 docs/version-specific/supported-software/s/STAR.md create mode 100644 docs/version-specific/supported-software/s/STEAK.md create mode 100644 docs/version-specific/supported-software/s/STIR.md create mode 100644 docs/version-specific/supported-software/s/STREAM.md create mode 100644 docs/version-specific/supported-software/s/STRUMPACK.md create mode 100644 docs/version-specific/supported-software/s/STRique.md create mode 100644 docs/version-specific/supported-software/s/SUMACLUST.md create mode 100644 docs/version-specific/supported-software/s/SUMATRA.md create mode 100644 docs/version-specific/supported-software/s/SUMO.md create mode 100644 docs/version-specific/supported-software/s/SUNDIALS.md create mode 100644 docs/version-specific/supported-software/s/SUPPA.md create mode 100644 docs/version-specific/supported-software/s/SURVIVOR.md create mode 100644 docs/version-specific/supported-software/s/SVDetect.md create mode 100644 docs/version-specific/supported-software/s/SVDquest.md create mode 100644 docs/version-specific/supported-software/s/SVG.md create mode 100644 docs/version-specific/supported-software/s/SVIM.md create mode 100644 docs/version-specific/supported-software/s/SVclone.md create mode 100644 docs/version-specific/supported-software/s/SWASH.md create mode 100644 docs/version-specific/supported-software/s/SWAT+.md create mode 100644 docs/version-specific/supported-software/s/SWIG.md create mode 100644 docs/version-specific/supported-software/s/SWIPE.md create mode 100644 docs/version-specific/supported-software/s/SYMMETRICA.md create mode 100644 docs/version-specific/supported-software/s/SYMPHONY.md create mode 100644 docs/version-specific/supported-software/s/Sabre.md create mode 100644 docs/version-specific/supported-software/s/Safetensors.md create mode 100644 docs/version-specific/supported-software/s/Sailfish.md create mode 100644 docs/version-specific/supported-software/s/Salmon.md create mode 100644 docs/version-specific/supported-software/s/Sambamba.md create mode 100644 docs/version-specific/supported-software/s/Samcef.md create mode 100644 docs/version-specific/supported-software/s/Satsuma2.md create mode 100644 docs/version-specific/supported-software/s/Saxon-HE.md create mode 100644 docs/version-specific/supported-software/s/ScaFaCoS.md create mode 100644 docs/version-specific/supported-software/s/ScaLAPACK.md create mode 100644 docs/version-specific/supported-software/s/Scalasca.md create mode 100644 docs/version-specific/supported-software/s/Scalene.md create mode 100644 docs/version-specific/supported-software/s/Schrodinger.md create mode 100644 docs/version-specific/supported-software/s/SciPy-bundle.md create mode 100644 docs/version-specific/supported-software/s/SciTools-Iris.md create mode 100644 docs/version-specific/supported-software/s/ScientificPython.md create mode 100644 docs/version-specific/supported-software/s/Scoary.md create mode 100644 docs/version-specific/supported-software/s/Score-P.md create mode 100644 docs/version-specific/supported-software/s/Scrappie.md create mode 100644 docs/version-specific/supported-software/s/Scythe.md create mode 100644 docs/version-specific/supported-software/s/SeaView.md create mode 100644 docs/version-specific/supported-software/s/Seaborn.md create mode 100644 docs/version-specific/supported-software/s/SearchGUI.md create mode 100644 docs/version-specific/supported-software/s/Seeder.md create mode 100644 docs/version-specific/supported-software/s/SeisSol.md create mode 100644 docs/version-specific/supported-software/s/SelEstim.md create mode 100644 docs/version-specific/supported-software/s/SemiBin.md create mode 100644 docs/version-specific/supported-software/s/Sentence-Transformers.md create mode 100644 docs/version-specific/supported-software/s/SentencePiece.md create mode 100644 docs/version-specific/supported-software/s/Seq-Gen.md create mode 100644 docs/version-specific/supported-software/s/SeqAn.md create mode 100644 docs/version-specific/supported-software/s/SeqAn3.md create mode 100644 docs/version-specific/supported-software/s/SeqKit.md create mode 100644 docs/version-specific/supported-software/s/SeqLib.md create mode 100644 docs/version-specific/supported-software/s/SeqPrep.md create mode 100644 docs/version-specific/supported-software/s/Seqmagick.md create mode 100644 docs/version-specific/supported-software/s/Serf.md create mode 100644 docs/version-specific/supported-software/s/Seurat.md create mode 100644 docs/version-specific/supported-software/s/SeuratData.md create mode 100644 docs/version-specific/supported-software/s/SeuratDisk.md create mode 100644 docs/version-specific/supported-software/s/SeuratWrappers.md create mode 100644 docs/version-specific/supported-software/s/Shannon.md create mode 100644 docs/version-specific/supported-software/s/Shapely.md create mode 100644 docs/version-specific/supported-software/s/Shasta.md create mode 100644 docs/version-specific/supported-software/s/ShengBTE.md create mode 100644 docs/version-specific/supported-software/s/Short-Pair.md create mode 100644 docs/version-specific/supported-software/s/SiNVICT.md create mode 100644 docs/version-specific/supported-software/s/Sibelia.md create mode 100644 docs/version-specific/supported-software/s/Siesta.md create mode 100644 docs/version-specific/supported-software/s/SignalP.md create mode 100644 docs/version-specific/supported-software/s/SimNIBS.md create mode 100644 docs/version-specific/supported-software/s/SimPEG.md create mode 100644 docs/version-specific/supported-software/s/SimVascular.md create mode 100644 docs/version-specific/supported-software/s/Simple-DFTD3.md create mode 100644 docs/version-specific/supported-software/s/SimpleElastix.md create mode 100644 docs/version-specific/supported-software/s/SimpleITK.md create mode 100644 docs/version-specific/supported-software/s/Simstrat.md create mode 100644 docs/version-specific/supported-software/s/SingleM.md create mode 100644 docs/version-specific/supported-software/s/Singular.md create mode 100644 docs/version-specific/supported-software/s/SlamDunk.md create mode 100644 docs/version-specific/supported-software/s/Smoldyn.md create mode 100644 docs/version-specific/supported-software/s/Sniffles.md create mode 100644 docs/version-specific/supported-software/s/SoPlex.md create mode 100644 docs/version-specific/supported-software/s/SoQt.md create mode 100644 docs/version-specific/supported-software/s/SoX.md create mode 100644 docs/version-specific/supported-software/s/SoXt.md create mode 100644 docs/version-specific/supported-software/s/SolexaQA++.md create mode 100644 docs/version-specific/supported-software/s/SortMeRNA.md create mode 100644 docs/version-specific/supported-software/s/SoupX.md create mode 100644 docs/version-specific/supported-software/s/SpaceRanger.md create mode 100644 docs/version-specific/supported-software/s/Spack.md create mode 100644 docs/version-specific/supported-software/s/Spark.md create mode 100644 docs/version-specific/supported-software/s/SpatialDE.md create mode 100644 docs/version-specific/supported-software/s/SpectrA.md create mode 100644 docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md create mode 100644 docs/version-specific/supported-software/s/Sphinx.md create mode 100644 docs/version-specific/supported-software/s/SpiceyPy.md create mode 100644 docs/version-specific/supported-software/s/SpiecEasi.md create mode 100644 docs/version-specific/supported-software/s/SplAdder.md create mode 100644 docs/version-specific/supported-software/s/SpliceMap.md create mode 100644 docs/version-specific/supported-software/s/Spyder.md create mode 100644 docs/version-specific/supported-software/s/SqueezeMeta.md create mode 100644 docs/version-specific/supported-software/s/Squidpy.md create mode 100644 docs/version-specific/supported-software/s/StaMPS.md create mode 100644 docs/version-specific/supported-software/s/Stack.md create mode 100644 docs/version-specific/supported-software/s/Stacks.md create mode 100644 docs/version-specific/supported-software/s/Stampy.md create mode 100644 docs/version-specific/supported-software/s/Stata.md create mode 100644 docs/version-specific/supported-software/s/Statistics-R.md create mode 100644 docs/version-specific/supported-software/s/Strainberry.md create mode 100644 docs/version-specific/supported-software/s/StringTie.md create mode 100644 docs/version-specific/supported-software/s/Structure.md create mode 100644 docs/version-specific/supported-software/s/Structure_threader.md create mode 100644 docs/version-specific/supported-software/s/SuAVE-biomat.md create mode 100644 docs/version-specific/supported-software/s/Subread.md create mode 100644 docs/version-specific/supported-software/s/Subversion.md create mode 100644 docs/version-specific/supported-software/s/SuiteSparse.md create mode 100644 docs/version-specific/supported-software/s/SunPy.md create mode 100644 docs/version-specific/supported-software/s/SuperLU.md create mode 100644 docs/version-specific/supported-software/s/SuperLU_DIST.md create mode 100644 docs/version-specific/supported-software/s/SyRI.md create mode 100644 docs/version-specific/supported-software/s/SymEngine-python.md create mode 100644 docs/version-specific/supported-software/s/SymEngine.md create mode 100644 docs/version-specific/supported-software/s/Szip.md create mode 100644 docs/version-specific/supported-software/s/index.md create mode 100644 docs/version-specific/supported-software/s/s3fs.md create mode 100644 docs/version-specific/supported-software/s/safestringlib.md create mode 100644 docs/version-specific/supported-software/s/samblaster.md create mode 100644 docs/version-specific/supported-software/s/samclip.md create mode 100644 docs/version-specific/supported-software/s/samplot.md create mode 100644 docs/version-specific/supported-software/s/sansa.md create mode 100644 docs/version-specific/supported-software/s/savvy.md create mode 100644 docs/version-specific/supported-software/s/sbt.md create mode 100644 docs/version-specific/supported-software/s/scArches.md create mode 100644 docs/version-specific/supported-software/s/scCODA.md create mode 100644 docs/version-specific/supported-software/s/scGSVA.md create mode 100644 docs/version-specific/supported-software/s/scGeneFit.md create mode 100644 docs/version-specific/supported-software/s/scHiCExplorer.md create mode 100644 docs/version-specific/supported-software/s/scPred.md create mode 100644 docs/version-specific/supported-software/s/scVelo.md create mode 100644 docs/version-specific/supported-software/s/scanpy.md create mode 100644 docs/version-specific/supported-software/s/sceasy.md create mode 100644 docs/version-specific/supported-software/s/sciClone.md create mode 100644 docs/version-specific/supported-software/s/scib-metrics.md create mode 100644 docs/version-specific/supported-software/s/scib.md create mode 100644 docs/version-specific/supported-software/s/scikit-allel.md create mode 100644 docs/version-specific/supported-software/s/scikit-bio.md create mode 100644 docs/version-specific/supported-software/s/scikit-build-core.md create mode 100644 docs/version-specific/supported-software/s/scikit-build.md create mode 100644 docs/version-specific/supported-software/s/scikit-cuda.md create mode 100644 docs/version-specific/supported-software/s/scikit-extremes.md create mode 100644 docs/version-specific/supported-software/s/scikit-image.md create mode 100644 docs/version-specific/supported-software/s/scikit-learn.md create mode 100644 docs/version-specific/supported-software/s/scikit-lego.md create mode 100644 docs/version-specific/supported-software/s/scikit-misc.md create mode 100644 docs/version-specific/supported-software/s/scikit-multilearn.md create mode 100644 docs/version-specific/supported-software/s/scikit-optimize.md create mode 100644 docs/version-specific/supported-software/s/scikit-plot.md create mode 100644 docs/version-specific/supported-software/s/scikit-uplift.md create mode 100644 docs/version-specific/supported-software/s/scipy.md create mode 100644 docs/version-specific/supported-software/s/scp.md create mode 100644 docs/version-specific/supported-software/s/scrublet.md create mode 100644 docs/version-specific/supported-software/s/scvi-tools.md create mode 100644 docs/version-specific/supported-software/s/segemehl.md create mode 100644 docs/version-specific/supported-software/s/segment-anything.md create mode 100644 docs/version-specific/supported-software/s/segmentation-models-pytorch.md create mode 100644 docs/version-specific/supported-software/s/segmentation-models.md create mode 100644 docs/version-specific/supported-software/s/semla.md create mode 100644 docs/version-specific/supported-software/s/sentinelsat.md create mode 100644 docs/version-specific/supported-software/s/sep.md create mode 100644 docs/version-specific/supported-software/s/seq2HLA.md create mode 100644 docs/version-specific/supported-software/s/seqtk.md create mode 100644 docs/version-specific/supported-software/s/setuptools-rust.md create mode 100644 docs/version-specific/supported-software/s/setuptools.md create mode 100644 docs/version-specific/supported-software/s/sf.md create mode 100644 docs/version-specific/supported-software/s/sfftk.md create mode 100644 docs/version-specific/supported-software/s/shapAAR.md create mode 100644 docs/version-specific/supported-software/s/sharutils.md create mode 100644 docs/version-specific/supported-software/s/shift.md create mode 100644 docs/version-specific/supported-software/s/shovill.md create mode 100644 docs/version-specific/supported-software/s/shrinkwrap.md create mode 100644 docs/version-specific/supported-software/s/sickle.md create mode 100644 docs/version-specific/supported-software/s/silhouetteRank.md create mode 100644 docs/version-specific/supported-software/s/silx.md create mode 100644 docs/version-specific/supported-software/s/simanneal.md create mode 100644 docs/version-specific/supported-software/s/simint.md create mode 100644 docs/version-specific/supported-software/s/simpy.md create mode 100644 docs/version-specific/supported-software/s/sinto.md create mode 100644 docs/version-specific/supported-software/s/siscone.md create mode 100644 docs/version-specific/supported-software/s/sketchmap.md create mode 100644 docs/version-specific/supported-software/s/skewer.md create mode 100644 docs/version-specific/supported-software/s/sklearn-pandas.md create mode 100644 docs/version-specific/supported-software/s/sklearn-som.md create mode 100644 docs/version-specific/supported-software/s/skorch.md create mode 100644 docs/version-specific/supported-software/s/sktime.md create mode 100644 docs/version-specific/supported-software/s/slepc4py.md create mode 100644 docs/version-specific/supported-software/s/sleuth.md create mode 100644 docs/version-specific/supported-software/s/slidingwindow.md create mode 100644 docs/version-specific/supported-software/s/slow5tools.md create mode 100644 docs/version-specific/supported-software/s/slurm-drmaa.md create mode 100644 docs/version-specific/supported-software/s/smafa.md create mode 100644 docs/version-specific/supported-software/s/smallgenomeutilities.md create mode 100644 docs/version-specific/supported-software/s/smfishHmrf.md create mode 100644 docs/version-specific/supported-software/s/smithwaterman.md create mode 100644 docs/version-specific/supported-software/s/smooth-topk.md create mode 100644 docs/version-specific/supported-software/s/snakemake.md create mode 100644 docs/version-specific/supported-software/s/snaphu.md create mode 100644 docs/version-specific/supported-software/s/snappy.md create mode 100644 docs/version-specific/supported-software/s/snippy.md create mode 100644 docs/version-specific/supported-software/s/snp-sites.md create mode 100644 docs/version-specific/supported-software/s/snpEff.md create mode 100644 docs/version-specific/supported-software/s/socat.md create mode 100644 docs/version-specific/supported-software/s/solo.md create mode 100644 docs/version-specific/supported-software/s/sonic.md create mode 100644 docs/version-specific/supported-software/s/spaCy.md create mode 100644 docs/version-specific/supported-software/s/spaln.md create mode 100644 docs/version-specific/supported-software/s/sparse-neighbors-search.md create mode 100644 docs/version-specific/supported-software/s/sparsehash.md create mode 100644 docs/version-specific/supported-software/s/spatialreg.md create mode 100644 docs/version-specific/supported-software/s/spdlog.md create mode 100644 docs/version-specific/supported-software/s/spectral.methods.md create mode 100644 docs/version-specific/supported-software/s/speech_tools.md create mode 100644 docs/version-specific/supported-software/s/spektral.md create mode 100644 docs/version-specific/supported-software/s/spglib-python.md create mode 100644 docs/version-specific/supported-software/s/spglib.md create mode 100644 docs/version-specific/supported-software/s/split-seq.md create mode 100644 docs/version-specific/supported-software/s/splitRef.md create mode 100644 docs/version-specific/supported-software/s/spoa.md create mode 100644 docs/version-specific/supported-software/s/sradownloader.md create mode 100644 docs/version-specific/supported-software/s/stardist.md create mode 100644 docs/version-specific/supported-software/s/starparser.md create mode 100644 docs/version-specific/supported-software/s/stars.md create mode 100644 docs/version-specific/supported-software/s/statsmodels.md create mode 100644 docs/version-specific/supported-software/s/stpipeline.md create mode 100644 docs/version-specific/supported-software/s/strace.md create mode 100644 docs/version-specific/supported-software/s/strelka.md create mode 100644 docs/version-specific/supported-software/s/stripy.md create mode 100644 docs/version-specific/supported-software/s/suave.md create mode 100644 docs/version-specific/supported-software/s/subset-bam.md create mode 100644 docs/version-specific/supported-software/s/subunit.md create mode 100644 docs/version-specific/supported-software/s/suds.md create mode 100644 docs/version-specific/supported-software/s/supermagic.md create mode 100644 docs/version-specific/supported-software/s/supernova.md create mode 100644 docs/version-specific/supported-software/s/svist4get.md create mode 100644 docs/version-specific/supported-software/s/swarm.md create mode 100644 docs/version-specific/supported-software/s/swifter.md create mode 100644 docs/version-specific/supported-software/s/swissknife.md create mode 100644 docs/version-specific/supported-software/s/sympy.md create mode 100644 docs/version-specific/supported-software/s/synapseclient.md create mode 100644 docs/version-specific/supported-software/s/synthcity.md create mode 100644 docs/version-specific/supported-software/s/sysbench.md create mode 100644 docs/version-specific/supported-software/t/T-Coffee.md create mode 100644 docs/version-specific/supported-software/t/TALON.md create mode 100644 docs/version-specific/supported-software/t/TALYS.md create mode 100644 docs/version-specific/supported-software/t/TAMkin.md create mode 100644 docs/version-specific/supported-software/t/TBA.md create mode 100644 docs/version-specific/supported-software/t/TCC.md create mode 100644 docs/version-specific/supported-software/t/TCLAP.md create mode 100644 docs/version-specific/supported-software/t/TELEMAC-MASCARET.md create mode 100644 docs/version-specific/supported-software/t/TEToolkit.md create mode 100644 docs/version-specific/supported-software/t/TEtranscripts.md create mode 100644 docs/version-specific/supported-software/t/TF-COMB.md create mode 100644 docs/version-specific/supported-software/t/TFEA.md create mode 100644 docs/version-specific/supported-software/t/THetA.md create mode 100644 docs/version-specific/supported-software/t/TINKER.md create mode 100644 docs/version-specific/supported-software/t/TM-align.md create mode 100644 docs/version-specific/supported-software/t/TN93.md create mode 100644 docs/version-specific/supported-software/t/TOBIAS.md create mode 100644 docs/version-specific/supported-software/t/TOML-Fortran.md create mode 100644 docs/version-specific/supported-software/t/TOPAS.md create mode 100644 docs/version-specific/supported-software/t/TRAVIS-Analyzer.md create mode 100644 docs/version-specific/supported-software/t/TRF.md create mode 100644 docs/version-specific/supported-software/t/TRIQS-cthyb.md create mode 100644 docs/version-specific/supported-software/t/TRIQS-dft_tools.md create mode 100644 docs/version-specific/supported-software/t/TRIQS-tprf.md create mode 100644 docs/version-specific/supported-software/t/TRIQS.md create mode 100644 docs/version-specific/supported-software/t/TRUST.md create mode 100644 docs/version-specific/supported-software/t/TRUST4.md create mode 100644 docs/version-specific/supported-software/t/TVB-deps.md create mode 100644 docs/version-specific/supported-software/t/TVB.md create mode 100644 docs/version-specific/supported-software/t/TWL-NINJA.md create mode 100644 docs/version-specific/supported-software/t/TXR.md create mode 100644 docs/version-specific/supported-software/t/TagDust.md create mode 100644 docs/version-specific/supported-software/t/TagLib.md create mode 100644 docs/version-specific/supported-software/t/Taiyaki.md create mode 100644 docs/version-specific/supported-software/t/Tapenade.md create mode 100644 docs/version-specific/supported-software/t/Tcl.md create mode 100644 docs/version-specific/supported-software/t/Telescope.md create mode 100644 docs/version-specific/supported-software/t/Teneto.md create mode 100644 docs/version-specific/supported-software/t/TensorFlow-Datasets.md create mode 100644 docs/version-specific/supported-software/t/TensorFlow-Graphics.md create mode 100644 docs/version-specific/supported-software/t/TensorFlow.md create mode 100644 docs/version-specific/supported-software/t/TensorRT.md create mode 100644 docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md create mode 100644 docs/version-specific/supported-software/t/TetGen.md create mode 100644 docs/version-specific/supported-software/t/Text-CSV.md create mode 100644 docs/version-specific/supported-software/t/Theano.md create mode 100644 docs/version-specific/supported-software/t/ThemisPy.md create mode 100644 docs/version-specific/supported-software/t/TiCCutils.md create mode 100644 docs/version-specific/supported-software/t/TiMBL.md create mode 100644 docs/version-specific/supported-software/t/Tika.md create mode 100644 docs/version-specific/supported-software/t/TinyDB.md create mode 100644 docs/version-specific/supported-software/t/TinyXML.md create mode 100644 docs/version-specific/supported-software/t/Tk.md create mode 100644 docs/version-specific/supported-software/t/Tkinter.md create mode 100644 docs/version-specific/supported-software/t/ToFu.md create mode 100644 docs/version-specific/supported-software/t/Togl.md create mode 100644 docs/version-specific/supported-software/t/Tombo.md create mode 100644 docs/version-specific/supported-software/t/TopHat.md create mode 100644 docs/version-specific/supported-software/t/TorchIO.md create mode 100644 docs/version-specific/supported-software/t/TotalView.md create mode 100644 docs/version-specific/supported-software/t/Tracer.md create mode 100644 docs/version-specific/supported-software/t/TransDecoder.md create mode 100644 docs/version-specific/supported-software/t/TranscriptClean.md create mode 100644 docs/version-specific/supported-software/t/Transformers.md create mode 100644 docs/version-specific/supported-software/t/Transrate.md create mode 100644 docs/version-specific/supported-software/t/TreeMix.md create mode 100644 docs/version-specific/supported-software/t/TreeShrink.md create mode 100644 docs/version-specific/supported-software/t/Triangle.md create mode 100644 docs/version-specific/supported-software/t/Trilinos.md create mode 100644 docs/version-specific/supported-software/t/Trim_Galore.md create mode 100644 docs/version-specific/supported-software/t/Trimmomatic.md create mode 100644 docs/version-specific/supported-software/t/Trinity.md create mode 100644 docs/version-specific/supported-software/t/Trinotate.md create mode 100644 docs/version-specific/supported-software/t/Triplexator.md create mode 100644 docs/version-specific/supported-software/t/Triton.md create mode 100644 docs/version-specific/supported-software/t/Trycycler.md create mode 100644 docs/version-specific/supported-software/t/TurboVNC.md create mode 100644 docs/version-specific/supported-software/t/index.md create mode 100644 docs/version-specific/supported-software/t/t-SNE-CUDA.md create mode 100644 docs/version-specific/supported-software/t/tMAE.md create mode 100644 docs/version-specific/supported-software/t/tRNAscan-SE.md create mode 100644 docs/version-specific/supported-software/t/tabix.md create mode 100644 docs/version-specific/supported-software/t/tabixpp.md create mode 100644 docs/version-specific/supported-software/t/taco.md create mode 100644 docs/version-specific/supported-software/t/tantan.md create mode 100644 docs/version-specific/supported-software/t/task-spooler.md create mode 100644 docs/version-specific/supported-software/t/taxator-tk.md create mode 100644 docs/version-specific/supported-software/t/tbb.md create mode 100644 docs/version-specific/supported-software/t/tbl2asn.md create mode 100644 docs/version-specific/supported-software/t/tcsh.md create mode 100644 docs/version-specific/supported-software/t/tecplot360ex.md create mode 100644 docs/version-specific/supported-software/t/tensorboard.md create mode 100644 docs/version-specific/supported-software/t/tensorboardX.md create mode 100644 docs/version-specific/supported-software/t/tensorflow-compression.md create mode 100644 docs/version-specific/supported-software/t/tensorflow-probability.md create mode 100644 docs/version-specific/supported-software/t/terastructure.md create mode 100644 docs/version-specific/supported-software/t/termcolor.md create mode 100644 docs/version-specific/supported-software/t/tesseract.md create mode 100644 docs/version-specific/supported-software/t/testpath.md create mode 100644 docs/version-specific/supported-software/t/texinfo.md create mode 100644 docs/version-specific/supported-software/t/texlive.md create mode 100644 docs/version-specific/supported-software/t/thirdorder.md create mode 100644 docs/version-specific/supported-software/t/thurstonianIRT.md create mode 100644 docs/version-specific/supported-software/t/tidybayes.md create mode 100644 docs/version-specific/supported-software/t/tidymodels.md create mode 100644 docs/version-specific/supported-software/t/tiktoken.md create mode 100644 docs/version-specific/supported-software/t/time.md create mode 100644 docs/version-specific/supported-software/t/timm.md create mode 100644 docs/version-specific/supported-software/t/tiny-cuda-nn.md create mode 100644 docs/version-specific/supported-software/t/tmap.md create mode 100644 docs/version-specific/supported-software/t/tmux.md create mode 100644 docs/version-specific/supported-software/t/toil.md create mode 100644 docs/version-specific/supported-software/t/tokenizers.md create mode 100644 docs/version-specific/supported-software/t/topaz.md create mode 100644 docs/version-specific/supported-software/t/torchaudio.md create mode 100644 docs/version-specific/supported-software/t/torchdata.md create mode 100644 docs/version-specific/supported-software/t/torchinfo.md create mode 100644 docs/version-specific/supported-software/t/torchsampler.md create mode 100644 docs/version-specific/supported-software/t/torchtext.md create mode 100644 docs/version-specific/supported-software/t/torchvf.md create mode 100644 docs/version-specific/supported-software/t/torchvision.md create mode 100644 docs/version-specific/supported-software/t/tornado.md create mode 100644 docs/version-specific/supported-software/t/tox.md create mode 100644 docs/version-specific/supported-software/t/tqdm.md create mode 100644 docs/version-specific/supported-software/t/travis.md create mode 100644 docs/version-specific/supported-software/t/treatSens.md create mode 100644 docs/version-specific/supported-software/t/trimAl.md create mode 100644 docs/version-specific/supported-software/t/trimesh.md create mode 100644 docs/version-specific/supported-software/t/tseriesEntropy.md create mode 100644 docs/version-specific/supported-software/t/tsne.md create mode 100644 docs/version-specific/supported-software/t/turbinesFoam.md create mode 100644 docs/version-specific/supported-software/t/tvb-data.md create mode 100644 docs/version-specific/supported-software/t/tvb-framework.md create mode 100644 docs/version-specific/supported-software/t/tvb-library.md create mode 100644 docs/version-specific/supported-software/t/typing-extensions.md create mode 100644 docs/version-specific/supported-software/u/UCC-CUDA.md create mode 100644 docs/version-specific/supported-software/u/UCC.md create mode 100644 docs/version-specific/supported-software/u/UCLUST.md create mode 100644 docs/version-specific/supported-software/u/UCX-CUDA.md create mode 100644 docs/version-specific/supported-software/u/UCX-ROCm.md create mode 100644 docs/version-specific/supported-software/u/UCX.md create mode 100644 docs/version-specific/supported-software/u/UDUNITS.md create mode 100644 docs/version-specific/supported-software/u/UFL.md create mode 100644 docs/version-specific/supported-software/u/UMI-tools.md create mode 100644 docs/version-specific/supported-software/u/UNAFold.md create mode 100644 docs/version-specific/supported-software/u/UQTk.md create mode 100644 docs/version-specific/supported-software/u/USEARCH.md create mode 100644 docs/version-specific/supported-software/u/USPEX.md create mode 100644 docs/version-specific/supported-software/u/UShER.md create mode 100644 docs/version-specific/supported-software/u/Ultralytics.md create mode 100644 docs/version-specific/supported-software/u/UnZip.md create mode 100644 docs/version-specific/supported-software/u/UniFrac.md create mode 100644 docs/version-specific/supported-software/u/Unicycler.md create mode 100644 docs/version-specific/supported-software/u/Unidecode.md create mode 100644 docs/version-specific/supported-software/u/index.md create mode 100644 docs/version-specific/supported-software/u/ucx-py.md create mode 100644 docs/version-specific/supported-software/u/udocker.md create mode 100644 docs/version-specific/supported-software/u/umap-learn.md create mode 100644 docs/version-specific/supported-software/u/umi4cPackage.md create mode 100644 docs/version-specific/supported-software/u/umis.md create mode 100644 docs/version-specific/supported-software/u/uncertainties.md create mode 100644 docs/version-specific/supported-software/u/uncertainty-calibration.md create mode 100644 docs/version-specific/supported-software/u/unicore-uftp.md create mode 100644 docs/version-specific/supported-software/u/unifdef.md create mode 100644 docs/version-specific/supported-software/u/unimap.md create mode 100644 docs/version-specific/supported-software/u/units.md create mode 100644 docs/version-specific/supported-software/u/unixODBC.md create mode 100644 docs/version-specific/supported-software/u/unrar.md create mode 100644 docs/version-specific/supported-software/u/utf8proc.md create mode 100644 docs/version-specific/supported-software/u/util-linux.md create mode 100644 docs/version-specific/supported-software/v/V8.md create mode 100644 docs/version-specific/supported-software/v/VAMPIRE-ASM.md create mode 100644 docs/version-specific/supported-software/v/VASP.md create mode 100644 docs/version-specific/supported-software/v/VAtools.md create mode 100644 docs/version-specific/supported-software/v/VBZ-Compression.md create mode 100644 docs/version-specific/supported-software/v/VCF-kit.md create mode 100644 docs/version-specific/supported-software/v/VCFtools.md create mode 100644 docs/version-specific/supported-software/v/VEGAS.md create mode 100644 docs/version-specific/supported-software/v/VEP.md create mode 100644 docs/version-specific/supported-software/v/VERSE.md create mode 100644 docs/version-specific/supported-software/v/VESTA.md create mode 100644 docs/version-specific/supported-software/v/VMD.md create mode 100644 docs/version-specific/supported-software/v/VMTK.md create mode 100644 docs/version-specific/supported-software/v/VSCode.md create mode 100644 docs/version-specific/supported-software/v/VSEARCH.md create mode 100644 docs/version-specific/supported-software/v/VTK.md create mode 100644 docs/version-specific/supported-software/v/VTune.md create mode 100644 docs/version-specific/supported-software/v/VV.md create mode 100644 docs/version-specific/supported-software/v/VXL.md create mode 100644 docs/version-specific/supported-software/v/Vala.md create mode 100644 docs/version-specific/supported-software/v/Valgrind.md create mode 100644 docs/version-specific/supported-software/v/Vamb.md create mode 100644 docs/version-specific/supported-software/v/Vampir.md create mode 100644 docs/version-specific/supported-software/v/Vampire.md create mode 100644 docs/version-specific/supported-software/v/VarDict.md create mode 100644 docs/version-specific/supported-software/v/VarScan.md create mode 100644 docs/version-specific/supported-software/v/VariantMetaCaller.md create mode 100644 docs/version-specific/supported-software/v/Velvet.md create mode 100644 docs/version-specific/supported-software/v/ViennaRNA.md create mode 100644 docs/version-specific/supported-software/v/Vim.md create mode 100644 docs/version-specific/supported-software/v/VirSorter.md create mode 100644 docs/version-specific/supported-software/v/VirSorter2.md create mode 100644 docs/version-specific/supported-software/v/VirtualGL.md create mode 100644 docs/version-specific/supported-software/v/Virtuoso-opensource.md create mode 100644 docs/version-specific/supported-software/v/VisPy.md create mode 100644 docs/version-specific/supported-software/v/Voro++.md create mode 100644 docs/version-specific/supported-software/v/index.md create mode 100644 docs/version-specific/supported-software/v/vConTACT2.md create mode 100644 docs/version-specific/supported-software/v/vaeda.md create mode 100644 docs/version-specific/supported-software/v/variant_tools.md create mode 100644 docs/version-specific/supported-software/v/vartools.md create mode 100644 docs/version-specific/supported-software/v/vawk.md create mode 100644 docs/version-specific/supported-software/v/vcflib.md create mode 100644 docs/version-specific/supported-software/v/vcfnp.md create mode 100644 docs/version-specific/supported-software/v/velocyto.md create mode 100644 docs/version-specific/supported-software/v/verifyBamID.md create mode 100644 docs/version-specific/supported-software/v/virtualenv.md create mode 100644 docs/version-specific/supported-software/v/visdom.md create mode 100644 docs/version-specific/supported-software/v/vispr.md create mode 100644 docs/version-specific/supported-software/v/vitessce-python.md create mode 100644 docs/version-specific/supported-software/v/vitessceR.md create mode 100644 docs/version-specific/supported-software/v/voltools.md create mode 100644 docs/version-specific/supported-software/v/vorbis-tools.md create mode 100644 docs/version-specific/supported-software/v/vsc-base.md create mode 100644 docs/version-specific/supported-software/v/vsc-install.md create mode 100644 docs/version-specific/supported-software/v/vsc-mympirun-scoop.md create mode 100644 docs/version-specific/supported-software/v/vsc-mympirun.md create mode 100644 docs/version-specific/supported-software/v/vsc-processcontrol.md create mode 100644 docs/version-specific/supported-software/v/vt.md create mode 100644 docs/version-specific/supported-software/w/WCSLIB.md create mode 100644 docs/version-specific/supported-software/w/WCT.md create mode 100644 docs/version-specific/supported-software/w/WEKA.md create mode 100644 docs/version-specific/supported-software/w/WFA2.md create mode 100644 docs/version-specific/supported-software/w/WGDgc.md create mode 100644 docs/version-specific/supported-software/w/WHAM.md create mode 100644 docs/version-specific/supported-software/w/WIEN2k.md create mode 100644 docs/version-specific/supported-software/w/WISExome.md create mode 100644 docs/version-specific/supported-software/w/WPS.md create mode 100644 docs/version-specific/supported-software/w/WRF-Fire.md create mode 100644 docs/version-specific/supported-software/w/WRF.md create mode 100644 docs/version-specific/supported-software/w/WSClean.md create mode 100644 docs/version-specific/supported-software/w/Wannier90.md create mode 100644 docs/version-specific/supported-software/w/WannierTools.md create mode 100644 docs/version-specific/supported-software/w/Wayland.md create mode 100644 docs/version-specific/supported-software/w/Waylandpp.md create mode 100644 docs/version-specific/supported-software/w/WebKitGTK+.md create mode 100644 docs/version-specific/supported-software/w/WebSocket++.md create mode 100644 docs/version-specific/supported-software/w/WhatsHap.md create mode 100644 docs/version-specific/supported-software/w/WildMagic.md create mode 100644 docs/version-specific/supported-software/w/Winnowmap.md create mode 100644 docs/version-specific/supported-software/w/WisecondorX.md create mode 100644 docs/version-specific/supported-software/w/index.md create mode 100644 docs/version-specific/supported-software/w/waLBerla.md create mode 100644 docs/version-specific/supported-software/w/wandb.md create mode 100644 docs/version-specific/supported-software/w/wcwidth.md create mode 100644 docs/version-specific/supported-software/w/webin-cli.md create mode 100644 docs/version-specific/supported-software/w/wfdb.md create mode 100644 docs/version-specific/supported-software/w/wget.md create mode 100644 docs/version-specific/supported-software/w/wgsim.md create mode 100644 docs/version-specific/supported-software/w/wheel.md create mode 100644 docs/version-specific/supported-software/w/wkhtmltopdf.md create mode 100644 docs/version-specific/supported-software/w/worker.md create mode 100644 docs/version-specific/supported-software/w/wpebackend-fdo.md create mode 100644 docs/version-specific/supported-software/w/wrapt.md create mode 100644 docs/version-specific/supported-software/w/wrf-python.md create mode 100644 docs/version-specific/supported-software/w/wtdbg2.md create mode 100644 docs/version-specific/supported-software/w/wxPropertyGrid.md create mode 100644 docs/version-specific/supported-software/w/wxPython.md create mode 100644 docs/version-specific/supported-software/w/wxWidgets.md create mode 100644 docs/version-specific/supported-software/x/X11.md create mode 100644 docs/version-specific/supported-software/x/XALT.md create mode 100644 docs/version-specific/supported-software/x/XBeach.md create mode 100644 docs/version-specific/supported-software/x/XCFun.md create mode 100644 docs/version-specific/supported-software/x/XCrySDen.md create mode 100644 docs/version-specific/supported-software/x/XGBoost.md create mode 100644 docs/version-specific/supported-software/x/XGrafix.md create mode 100644 docs/version-specific/supported-software/x/XKeyboardConfig.md create mode 100644 docs/version-specific/supported-software/x/XMDS2.md create mode 100644 docs/version-specific/supported-software/x/XML-Compile.md create mode 100644 docs/version-specific/supported-software/x/XML-LibXML.md create mode 100644 docs/version-specific/supported-software/x/XML-Parser.md create mode 100644 docs/version-specific/supported-software/x/XMLSec.md create mode 100644 docs/version-specific/supported-software/x/XMLStarlet.md create mode 100644 docs/version-specific/supported-software/x/XOOPIC.md create mode 100644 docs/version-specific/supported-software/x/XPLOR-NIH.md create mode 100644 docs/version-specific/supported-software/x/XSD.md create mode 100644 docs/version-specific/supported-software/x/XTandem.md create mode 100644 docs/version-specific/supported-software/x/XZ.md create mode 100644 docs/version-specific/supported-software/x/Xerces-C++.md create mode 100644 docs/version-specific/supported-software/x/XlsxWriter.md create mode 100644 docs/version-specific/supported-software/x/Xmipp.md create mode 100644 docs/version-specific/supported-software/x/Xvfb.md create mode 100644 docs/version-specific/supported-software/x/index.md create mode 100644 docs/version-specific/supported-software/x/x13as.md create mode 100644 docs/version-specific/supported-software/x/x264.md create mode 100644 docs/version-specific/supported-software/x/x265.md create mode 100644 docs/version-specific/supported-software/x/xCell.md create mode 100644 docs/version-specific/supported-software/x/xESMF.md create mode 100644 docs/version-specific/supported-software/x/xarray.md create mode 100644 docs/version-specific/supported-software/x/xbitmaps.md create mode 100644 docs/version-specific/supported-software/x/xcb-proto.md create mode 100644 docs/version-specific/supported-software/x/xcb-util-image.md create mode 100644 docs/version-specific/supported-software/x/xcb-util-keysyms.md create mode 100644 docs/version-specific/supported-software/x/xcb-util-renderutil.md create mode 100644 docs/version-specific/supported-software/x/xcb-util-wm.md create mode 100644 docs/version-specific/supported-software/x/xcb-util.md create mode 100644 docs/version-specific/supported-software/x/xclip.md create mode 100644 docs/version-specific/supported-software/x/xdotool.md create mode 100644 docs/version-specific/supported-software/x/xextproto.md create mode 100644 docs/version-specific/supported-software/x/xf86vidmodeproto.md create mode 100644 docs/version-specific/supported-software/x/xineramaproto.md create mode 100644 docs/version-specific/supported-software/x/xmitgcm.md create mode 100644 docs/version-specific/supported-software/x/xmlf90.md create mode 100644 docs/version-specific/supported-software/x/xonsh.md create mode 100644 docs/version-specific/supported-software/x/xorg-macros.md create mode 100644 docs/version-specific/supported-software/x/xpdf.md create mode 100644 docs/version-specific/supported-software/x/xprop.md create mode 100644 docs/version-specific/supported-software/x/xproto.md create mode 100644 docs/version-specific/supported-software/x/xtb.md create mode 100644 docs/version-specific/supported-software/x/xtensor.md create mode 100644 docs/version-specific/supported-software/x/xtrans.md create mode 100644 docs/version-specific/supported-software/x/xxHash.md create mode 100644 docs/version-specific/supported-software/x/xxd.md create mode 100644 docs/version-specific/supported-software/y/YACS.md create mode 100644 docs/version-specific/supported-software/y/YANK.md create mode 100644 docs/version-specific/supported-software/y/YAPS.md create mode 100644 docs/version-specific/supported-software/y/YAXT.md create mode 100644 docs/version-specific/supported-software/y/YODA.md create mode 100644 docs/version-specific/supported-software/y/Yade.md create mode 100644 docs/version-specific/supported-software/y/Yambo.md create mode 100644 docs/version-specific/supported-software/y/Yasm.md create mode 100644 docs/version-specific/supported-software/y/Yices.md create mode 100644 docs/version-specific/supported-software/y/index.md create mode 100644 docs/version-specific/supported-software/y/yaff.md create mode 100644 docs/version-specific/supported-software/y/yaml-cpp.md create mode 100644 docs/version-specific/supported-software/y/yt.md create mode 100644 docs/version-specific/supported-software/z/Z3.md create mode 100644 docs/version-specific/supported-software/z/ZIMPL.md create mode 100644 docs/version-specific/supported-software/z/ZPAQ.md create mode 100644 docs/version-specific/supported-software/z/Zeo++.md create mode 100644 docs/version-specific/supported-software/z/ZeroMQ.md create mode 100644 docs/version-specific/supported-software/z/Zgoubi.md create mode 100644 docs/version-specific/supported-software/z/Zip.md create mode 100644 docs/version-specific/supported-software/z/Zopfli.md create mode 100644 docs/version-specific/supported-software/z/index.md create mode 100644 docs/version-specific/supported-software/z/zUMIs.md create mode 100644 docs/version-specific/supported-software/z/zarr.md create mode 100644 docs/version-specific/supported-software/z/zeus-mcmc.md create mode 100644 docs/version-specific/supported-software/z/zfp.md create mode 100644 docs/version-specific/supported-software/z/zingeR.md create mode 100644 docs/version-specific/supported-software/z/zlib-ng.md create mode 100644 docs/version-specific/supported-software/z/zlib.md create mode 100644 docs/version-specific/supported-software/z/zlibbioc.md create mode 100644 docs/version-specific/supported-software/z/zsh.md create mode 100644 docs/version-specific/supported-software/z/zstd.md 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..507467177 --- /dev/null +++ b/docs/version-specific/supported-software/0/3d-dna.md @@ -0,0 +1,9 @@ +# 3d-dna + +3D de novo assembly (3D DNA) pipeline + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``180922`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` 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..7492e4fd7 --- /dev/null +++ b/docs/version-specific/supported-software/0/3to2.md @@ -0,0 +1,11 @@ +# 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`` 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..3e7ecb37c --- /dev/null +++ b/docs/version-specific/supported-software/0/4ti2.md @@ -0,0 +1,12 @@ +# 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`` 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..8047ef088 --- /dev/null +++ b/docs/version-specific/supported-software/0/index.md @@ -0,0 +1,5 @@ +# List of supported software (0) + + * [3d-dna](3d-dna.md) + * [3to2](3to2.md) + * [4ti2](4ti2.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..ba3406048 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABAQUS.md @@ -0,0 +1,18 @@ +# 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`` 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..28bc25319 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABINIT.md @@ -0,0 +1,35 @@ +# 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`` 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..373865604 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABRA2.md @@ -0,0 +1,11 @@ +# 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`` 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..bff51d8c2 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABRicate.md @@ -0,0 +1,11 @@ +# 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`` 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..97bf19cd9 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABySS.md @@ -0,0 +1,18 @@ +# 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`` 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..9f5718921 --- /dev/null +++ b/docs/version-specific/supported-software/a/ACTC.md @@ -0,0 +1,15 @@ +# 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`` 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..1afa9311f --- /dev/null +++ b/docs/version-specific/supported-software/a/ADDA.md @@ -0,0 +1,9 @@ +# 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`` 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..470d0851a --- /dev/null +++ b/docs/version-specific/supported-software/a/ADF.md @@ -0,0 +1,13 @@ +# 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`` 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..493c7b5a1 --- /dev/null +++ b/docs/version-specific/supported-software/a/ADIOS.md @@ -0,0 +1,11 @@ +# 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`` 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..9c34a6ba2 --- /dev/null +++ b/docs/version-specific/supported-software/a/ADMIXTURE.md @@ -0,0 +1,9 @@ +# 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`` 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..4801548ba --- /dev/null +++ b/docs/version-specific/supported-software/a/ADOL-C.md @@ -0,0 +1,10 @@ +# 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`` 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..61954f91c --- /dev/null +++ b/docs/version-specific/supported-software/a/AEDT.md @@ -0,0 +1,9 @@ +# 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`` 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..076856008 --- /dev/null +++ b/docs/version-specific/supported-software/a/AFNI.md @@ -0,0 +1,14 @@ +# 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`` 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..4a6888d20 --- /dev/null +++ b/docs/version-specific/supported-software/a/AGAT.md @@ -0,0 +1,10 @@ +# 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`` 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..359e030d0 --- /dev/null +++ b/docs/version-specific/supported-software/a/AGFusion.md @@ -0,0 +1,9 @@ +# 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`` 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..cfa4a2531 --- /dev/null +++ b/docs/version-specific/supported-software/a/AGeNT.md @@ -0,0 +1,9 @@ +# 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`` 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..3c36769ef --- /dev/null +++ b/docs/version-specific/supported-software/a/AICSImageIO.md @@ -0,0 +1,9 @@ +# AICSImageIO + +Image Reading, Metadata Conversion, and Image Writing for Microscopy Images in Pure Python + +*homepage*: + +version | toolchain +--------|---------- +``4.14.0`` | ``foss/2022a`` 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..2501302cf --- /dev/null +++ b/docs/version-specific/supported-software/a/AIMAll.md @@ -0,0 +1,9 @@ +# 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`` 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..076ea3c9e --- /dev/null +++ b/docs/version-specific/supported-software/a/ALADIN.md @@ -0,0 +1,9 @@ +# 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`` 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..f00728537 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALAMODE.md @@ -0,0 +1,9 @@ +# 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`` 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..f17011b48 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALFA.md @@ -0,0 +1,9 @@ +# 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`` 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..8d4db4bd5 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALL.md @@ -0,0 +1,10 @@ +# 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`` 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..0074570eb --- /dev/null +++ b/docs/version-specific/supported-software/a/ALLPATHS-LG.md @@ -0,0 +1,9 @@ +# ALLPATHS-LG + +ALLPATHS-LG, the new short read genome assembler. + +*homepage*: + +version | toolchain +--------|---------- +``52488`` | ``foss/2016a`` 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..667583f31 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALPS.md @@ -0,0 +1,11 @@ +# 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`` 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..57fda9c37 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMAPVox.md @@ -0,0 +1,9 @@ +# AMAPVox + +LiDAR data voxelisation software + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.4`` | ``-Java-11`` | ``system`` 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..346bd8a38 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-LibM.md @@ -0,0 +1,10 @@ +# 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`` 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..5c35bdadf --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-RNG.md @@ -0,0 +1,10 @@ +# 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`` 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..18ea0abd3 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-SecureRNG.md @@ -0,0 +1,10 @@ +# 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`` 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..51913e22e --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-uProf.md @@ -0,0 +1,11 @@ +# 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`` 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..7c2c93fc1 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMGX.md @@ -0,0 +1,9 @@ +# AMGX + +Distributed multigrid linear solver library on GPU + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` 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..a0c6c1db4 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMICA.md @@ -0,0 +1,9 @@ +# AMICA + +Code for AMICA: Adaptive Mixture ICA with shared components + +*homepage*: + +version | toolchain +--------|---------- +``2024.1.19`` | ``intel/2023a`` 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..f6f1025c7 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMOS.md @@ -0,0 +1,11 @@ +# 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`` 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..9d1cd22fd --- /dev/null +++ b/docs/version-specific/supported-software/a/AMPHORA2.md @@ -0,0 +1,9 @@ +# AMPHORA2 + +An Automated Phylogenomic Inference Pipeline for Bacterial and Archaeal Sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190730`` | ``-Java-13-pthreads-avx2`` | ``gompi/2020b`` 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..dbdaab335 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMPL-MP.md @@ -0,0 +1,9 @@ +# AMPL-MP + +An open-source library for mathematical programming. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.0`` | ``GCCcore/6.4.0`` 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..f95eb6b93 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMPtk.md @@ -0,0 +1,9 @@ +# 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`` 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..cc8a15f2e --- /dev/null +++ b/docs/version-specific/supported-software/a/AMRFinderPlus.md @@ -0,0 +1,10 @@ +# 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`` 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..18721a0ba --- /dev/null +++ b/docs/version-specific/supported-software/a/AMS.md @@ -0,0 +1,12 @@ +# 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`` 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..f44ae7a40 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANGEL.md @@ -0,0 +1,9 @@ +# ANGEL + +ANGEL: Robust Open Reading Frame prediction + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` 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..b1e608546 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANIcalculator.md @@ -0,0 +1,10 @@ +# 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`` 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..adf448c12 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANSYS.md @@ -0,0 +1,11 @@ +# 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`` 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..b7610145f --- /dev/null +++ b/docs/version-specific/supported-software/a/ANSYS_CFD.md @@ -0,0 +1,10 @@ +# 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`` 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..4ad3b11e1 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANTIC.md @@ -0,0 +1,9 @@ +# ANTIC + +Antic is an algebraic number theory library. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.5`` | ``gfbf/2022a`` 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..834ba57c5 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANTLR.md @@ -0,0 +1,25 @@ +# 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`` 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..6a94cee26 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANTs.md @@ -0,0 +1,15 @@ +# 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`` 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..9c6497ef4 --- /dev/null +++ b/docs/version-specific/supported-software/a/AOCC.md @@ -0,0 +1,20 @@ +# 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`` 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..d0e552a37 --- /dev/null +++ b/docs/version-specific/supported-software/a/AOFlagger.md @@ -0,0 +1,10 @@ +# 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`` 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..a0ad3a813 --- /dev/null +++ b/docs/version-specific/supported-software/a/AOMP.md @@ -0,0 +1,10 @@ +# 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`` 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..0ca06b4ef --- /dev/null +++ b/docs/version-specific/supported-software/a/APBS.md @@ -0,0 +1,9 @@ +# 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`` 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..7b730a2ba --- /dev/null +++ b/docs/version-specific/supported-software/a/APR-util.md @@ -0,0 +1,18 @@ +# 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`` 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..094fec40f --- /dev/null +++ b/docs/version-specific/supported-software/a/APR.md @@ -0,0 +1,18 @@ +# 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`` 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..80863ad7c --- /dev/null +++ b/docs/version-specific/supported-software/a/ARAGORN.md @@ -0,0 +1,11 @@ +# 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`` 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..f51939294 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARCH.md @@ -0,0 +1,9 @@ +# 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`` 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..8491d1296 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARGoS.md @@ -0,0 +1,10 @@ +# 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`` 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..b44886a15 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARPACK++.md @@ -0,0 +1,9 @@ +# 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`` 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..913d24527 --- /dev/null +++ b/docs/version-specific/supported-software/a/ART.md @@ -0,0 +1,10 @@ +# 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`` 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..eda1b1f8d --- /dev/null +++ b/docs/version-specific/supported-software/a/ARTS.md @@ -0,0 +1,9 @@ +# 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`` 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..5f61c0a66 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARWEN.md @@ -0,0 +1,9 @@ +# ARWEN + +ARWEN, tRNA detection in metazoan mitochondrial sequences + +*homepage*: + +version | toolchain +--------|---------- +``1.2.3`` | ``GCCcore/7.3.0`` 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..1ca078433 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASAP.md @@ -0,0 +1,10 @@ +# 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`` 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..e0c6cb954 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASAP3.md @@ -0,0 +1,25 @@ +# 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`` 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..abd872d1f --- /dev/null +++ b/docs/version-specific/supported-software/a/ASCAT.md @@ -0,0 +1,10 @@ +# 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`` 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..45e46dc07 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASE.md @@ -0,0 +1,62 @@ +# 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`` 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..cea46c02c --- /dev/null +++ b/docs/version-specific/supported-software/a/ASF-SearchAPI.md @@ -0,0 +1,9 @@ +# 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`` 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..7995c5cc0 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASHS.md @@ -0,0 +1,9 @@ +# ASHS + +Automatic Segmentation of Hippocampal Subfields (ASHS) + +*homepage*: + +version | toolchain +--------|---------- +``rev103_20140612`` | ``system`` 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..ec71fc11b --- /dev/null +++ b/docs/version-specific/supported-software/a/ASTRID.md @@ -0,0 +1,9 @@ +# ASTRID + +ASTRID-2 is a method for estimating species trees from gene trees. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.1`` | ``gompi/2019a`` 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..1250fd19a --- /dev/null +++ b/docs/version-specific/supported-software/a/ATAT.md @@ -0,0 +1,9 @@ +# 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`` 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..fbf5df79a --- /dev/null +++ b/docs/version-specific/supported-software/a/ATK.md @@ -0,0 +1,32 @@ +# 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`` 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..9765aba37 --- /dev/null +++ b/docs/version-specific/supported-software/a/ATLAS.md @@ -0,0 +1,9 @@ +# 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`` 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..eda6b9a04 --- /dev/null +++ b/docs/version-specific/supported-software/a/ATSAS.md @@ -0,0 +1,11 @@ +# 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`` 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..5979a6372 --- /dev/null +++ b/docs/version-specific/supported-software/a/AUGUSTUS.md @@ -0,0 +1,23 @@ +# 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`` 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..675cea1fd --- /dev/null +++ b/docs/version-specific/supported-software/a/AUTO-07p.md @@ -0,0 +1,9 @@ +# 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`` 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..807f9deeb --- /dev/null +++ b/docs/version-specific/supported-software/a/Abseil.md @@ -0,0 +1,13 @@ +# 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`` 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..33d7ec9cd --- /dev/null +++ b/docs/version-specific/supported-software/a/AdapterRemoval.md @@ -0,0 +1,15 @@ +# 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`` 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..14eb34e1c --- /dev/null +++ b/docs/version-specific/supported-software/a/Advisor.md @@ -0,0 +1,20 @@ +# 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`` 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..a384061ea --- /dev/null +++ b/docs/version-specific/supported-software/a/Albacore.md @@ -0,0 +1,9 @@ +# 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`` 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..08e867377 --- /dev/null +++ b/docs/version-specific/supported-software/a/Albumentations.md @@ -0,0 +1,12 @@ +# 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`` 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..198662da5 --- /dev/null +++ b/docs/version-specific/supported-software/a/Alfred.md @@ -0,0 +1,9 @@ +# 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`` 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..17c380c7d --- /dev/null +++ b/docs/version-specific/supported-software/a/Allinea.md @@ -0,0 +1,11 @@ +# 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`` 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..04ebace13 --- /dev/null +++ b/docs/version-specific/supported-software/a/Alpha.md @@ -0,0 +1,9 @@ +# Alpha + +Alpha is a tool designed for detailed comparative study of bacteriophage genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200430`` | ``-Python-2.7.16`` | ``foss/2019b`` 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..2e75972be --- /dev/null +++ b/docs/version-specific/supported-software/a/AlphaFold.md @@ -0,0 +1,24 @@ +# 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`` 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..74cee77d5 --- /dev/null +++ b/docs/version-specific/supported-software/a/AlphaPulldown.md @@ -0,0 +1,10 @@ +# 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`` 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..6e487b07e --- /dev/null +++ b/docs/version-specific/supported-software/a/Amara.md @@ -0,0 +1,10 @@ +# 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`` 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..24b324644 --- /dev/null +++ b/docs/version-specific/supported-software/a/Amber.md @@ -0,0 +1,32 @@ +# 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`` 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..41b1928b5 --- /dev/null +++ b/docs/version-specific/supported-software/a/AmberMini.md @@ -0,0 +1,10 @@ +# AmberMini + +A stripped-down set of just antechamber, sqm, and tleap. + +*homepage*: + +version | toolchain +--------|---------- +``16.16.0`` | ``intel/2017b`` +``16.16.0`` | ``intel/2020a`` 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..5f8260b9d --- /dev/null +++ b/docs/version-specific/supported-software/a/AmberTools.md @@ -0,0 +1,16 @@ +# 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`` 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..3f3e927a7 --- /dev/null +++ b/docs/version-specific/supported-software/a/AmrPlusPlus.md @@ -0,0 +1,9 @@ +# 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`` 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..5aa69fa13 --- /dev/null +++ b/docs/version-specific/supported-software/a/Anaconda2.md @@ -0,0 +1,18 @@ +# 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`` 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..505fcee13 --- /dev/null +++ b/docs/version-specific/supported-software/a/Anaconda3.md @@ -0,0 +1,29 @@ +# 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`` 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..efef948c3 --- /dev/null +++ b/docs/version-specific/supported-software/a/Annif.md @@ -0,0 +1,10 @@ +# 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`` 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..74ad2f1af --- /dev/null +++ b/docs/version-specific/supported-software/a/Annocript.md @@ -0,0 +1,9 @@ +# 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`` 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..b97e51f88 --- /dev/null +++ b/docs/version-specific/supported-software/a/AptaSUITE.md @@ -0,0 +1,9 @@ +# 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`` 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..ad53d119f --- /dev/null +++ b/docs/version-specific/supported-software/a/Arb.md @@ -0,0 +1,15 @@ +# 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`` 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..7a45c8cfb --- /dev/null +++ b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md @@ -0,0 +1,10 @@ +# 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`` 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..5b2c9d011 --- /dev/null +++ b/docs/version-specific/supported-software/a/ArchR.md @@ -0,0 +1,11 @@ +# 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`` 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..52b7fd90d --- /dev/null +++ b/docs/version-specific/supported-software/a/Archive-Zip.md @@ -0,0 +1,13 @@ +# 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`` 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..5a47256f8 --- /dev/null +++ b/docs/version-specific/supported-software/a/AreTomo2.md @@ -0,0 +1,9 @@ +# 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`` 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..904207b0b --- /dev/null +++ b/docs/version-specific/supported-software/a/Arlequin.md @@ -0,0 +1,9 @@ +# Arlequin + +Arlequin: An Integrated Software for Population Genetics Data Analysis + +*homepage*: + +version | toolchain +--------|---------- +``3.5.2.2`` | ``foss/2019b`` 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..094916798 --- /dev/null +++ b/docs/version-specific/supported-software/a/Armadillo.md @@ -0,0 +1,25 @@ +# 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`` 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..99213b3cf --- /dev/null +++ b/docs/version-specific/supported-software/a/ArrayFire.md @@ -0,0 +1,10 @@ +# 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`` 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..5b7e280fb --- /dev/null +++ b/docs/version-specific/supported-software/a/Arriba.md @@ -0,0 +1,14 @@ +# 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`` 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..732d6ae5e --- /dev/null +++ b/docs/version-specific/supported-software/a/Arrow.md @@ -0,0 +1,28 @@ +# 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`` 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..6e2771114 --- /dev/null +++ b/docs/version-specific/supported-software/a/Artemis.md @@ -0,0 +1,11 @@ +# 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`` 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..32eef816f --- /dev/null +++ b/docs/version-specific/supported-software/a/ArviZ.md @@ -0,0 +1,17 @@ +# 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`` 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..847746714 --- /dev/null +++ b/docs/version-specific/supported-software/a/Aspera-CLI.md @@ -0,0 +1,11 @@ +# 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`` 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..4c9b4c50c --- /dev/null +++ b/docs/version-specific/supported-software/a/Aspera-Connect.md @@ -0,0 +1,10 @@ +# 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`` 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..1914b975b --- /dev/null +++ b/docs/version-specific/supported-software/a/Assimulo.md @@ -0,0 +1,9 @@ +# Assimulo + +Assimulo is a simulation package for solving ordinary differential equations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9`` | ``-Python-2.7.15`` | ``intel/2018b`` 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..85238b8a7 --- /dev/null +++ b/docs/version-specific/supported-software/a/AtomPAW.md @@ -0,0 +1,10 @@ +# 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`` 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..c58e1bbb1 --- /dev/null +++ b/docs/version-specific/supported-software/a/Austin.md @@ -0,0 +1,10 @@ +# 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`` 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..88611866f --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDock-GPU.md @@ -0,0 +1,10 @@ +# 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`` 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..469cb1f96 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDock-Vina.md @@ -0,0 +1,11 @@ +# 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`` 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..ddf6fbbbf --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDock.md @@ -0,0 +1,10 @@ +# 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`` 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..3b2ae993c --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDockSuite.md @@ -0,0 +1,9 @@ +# 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`` 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..97ca904b6 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoGeneS.md @@ -0,0 +1,9 @@ +# AutoGeneS + +AutoGeneS automatically extracts informative genes and reveals the cellular heterogeneity of bulk RNA samples. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``foss/2020b`` 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..4fc878f55 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoGrid.md @@ -0,0 +1,9 @@ +# 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`` 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..c0dc6bc72 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoMap.md @@ -0,0 +1,9 @@ +# AutoMap + +Tool to find regions of homozygosity (ROHs) from sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-20200324`` | ``foss/2019b`` 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..ad774f3ea --- /dev/null +++ b/docs/version-specific/supported-software/a/Autoconf-archive.md @@ -0,0 +1,11 @@ +# 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`` 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..2c35aefe9 --- /dev/null +++ b/docs/version-specific/supported-software/a/Autoconf.md @@ -0,0 +1,54 @@ +# 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`` 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..cd27043da --- /dev/null +++ b/docs/version-specific/supported-software/a/Automake.md @@ -0,0 +1,59 @@ +# 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`` 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..309c26c91 --- /dev/null +++ b/docs/version-specific/supported-software/a/Autotools.md @@ -0,0 +1,54 @@ +# 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`` 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..ec6d517f4 --- /dev/null +++ b/docs/version-specific/supported-software/a/Avogadro2.md @@ -0,0 +1,9 @@ +# 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`` 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..6c88585e8 --- /dev/null +++ b/docs/version-specific/supported-software/a/Ax.md @@ -0,0 +1,9 @@ +# 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`` 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..30ae167b1 --- /dev/null +++ b/docs/version-specific/supported-software/a/aNCI.md @@ -0,0 +1,9 @@ +# aNCI + +Non-covalent interaction (NCI) for MD trajectories + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``iccifort/2019.5.281`` 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..7e072ce6f --- /dev/null +++ b/docs/version-specific/supported-software/a/abTEM.md @@ -0,0 +1,11 @@ +# 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`` 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..fc837dd43 --- /dev/null +++ b/docs/version-specific/supported-software/a/ack.md @@ -0,0 +1,11 @@ +# 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`` 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..025864bcd --- /dev/null +++ b/docs/version-specific/supported-software/a/ada.md @@ -0,0 +1,9 @@ +# 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`` 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..4e9a3d6cf --- /dev/null +++ b/docs/version-specific/supported-software/a/adjustText.md @@ -0,0 +1,13 @@ +# 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`` 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..7ca70a50c --- /dev/null +++ b/docs/version-specific/supported-software/a/affinity.md @@ -0,0 +1,10 @@ +# 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`` 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..e9e192e60 --- /dev/null +++ b/docs/version-specific/supported-software/a/aiohttp.md @@ -0,0 +1,15 @@ +# 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`` 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..c1a462f96 --- /dev/null +++ b/docs/version-specific/supported-software/a/alevin-fry.md @@ -0,0 +1,11 @@ +# 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`` 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..d9fd83dbd --- /dev/null +++ b/docs/version-specific/supported-software/a/alleleCount.md @@ -0,0 +1,11 @@ +# 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`` 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..1b34398e5 --- /dev/null +++ b/docs/version-specific/supported-software/a/alleleIntegrator.md @@ -0,0 +1,10 @@ +# 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`` 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..0bcb49452 --- /dev/null +++ b/docs/version-specific/supported-software/a/almosthere.md @@ -0,0 +1,11 @@ +# 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`` 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..a4213ec2b --- /dev/null +++ b/docs/version-specific/supported-software/a/alsa-lib.md @@ -0,0 +1,13 @@ +# 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`` 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..2ecb61ab8 --- /dev/null +++ b/docs/version-specific/supported-software/a/amask.md @@ -0,0 +1,10 @@ +# 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`` 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..009d675a2 --- /dev/null +++ b/docs/version-specific/supported-software/a/amdahl.md @@ -0,0 +1,9 @@ +# 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`` 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..fcc320d8a --- /dev/null +++ b/docs/version-specific/supported-software/a/amplimap.md @@ -0,0 +1,9 @@ +# 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`` 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..2b67ca63e --- /dev/null +++ b/docs/version-specific/supported-software/a/anadama2.md @@ -0,0 +1,9 @@ +# 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`` 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..36e0fc057 --- /dev/null +++ b/docs/version-specific/supported-software/a/andi.md @@ -0,0 +1,9 @@ +# 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`` 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..7466b1de9 --- /dev/null +++ b/docs/version-specific/supported-software/a/angsd.md @@ -0,0 +1,16 @@ +# 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`` 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..c59aac755 --- /dev/null +++ b/docs/version-specific/supported-software/a/anndata.md @@ -0,0 +1,12 @@ +# 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`` 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..907383cd1 --- /dev/null +++ b/docs/version-specific/supported-software/a/annovar.md @@ -0,0 +1,11 @@ +# 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`` 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..ef4428aa2 --- /dev/null +++ b/docs/version-specific/supported-software/a/ant.md @@ -0,0 +1,38 @@ +# 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`` 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..4562694fa --- /dev/null +++ b/docs/version-specific/supported-software/a/antiSMASH.md @@ -0,0 +1,11 @@ +# 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`` 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..f384a8ba9 --- /dev/null +++ b/docs/version-specific/supported-software/a/anvio.md @@ -0,0 +1,10 @@ +# anvio + +An analysis and visualization platform for 'omics data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``8`` | | ``foss/2022b`` 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..2bf28252f --- /dev/null +++ b/docs/version-specific/supported-software/a/any2fasta.md @@ -0,0 +1,14 @@ +# 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`` 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..6d009f50b --- /dev/null +++ b/docs/version-specific/supported-software/a/apex.md @@ -0,0 +1,10 @@ +# 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`` 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..67a5a15e9 --- /dev/null +++ b/docs/version-specific/supported-software/a/arcasHLA.md @@ -0,0 +1,9 @@ +# 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`` 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..36e0fc82e --- /dev/null +++ b/docs/version-specific/supported-software/a/archspec.md @@ -0,0 +1,17 @@ +# 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`` 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..af90300fe --- /dev/null +++ b/docs/version-specific/supported-software/a/argtable.md @@ -0,0 +1,17 @@ +# 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`` 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..c4f3b339c --- /dev/null +++ b/docs/version-specific/supported-software/a/aria2.md @@ -0,0 +1,10 @@ +# 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`` 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..72bf96616 --- /dev/null +++ b/docs/version-specific/supported-software/a/arosics.md @@ -0,0 +1,9 @@ +# 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`` 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..791627a11 --- /dev/null +++ b/docs/version-specific/supported-software/a/arpack-ng.md @@ -0,0 +1,33 @@ +# 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`` 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..07f6581c2 --- /dev/null +++ b/docs/version-specific/supported-software/a/arrow-R.md @@ -0,0 +1,15 @@ +# 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`` 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..693c040c6 --- /dev/null +++ b/docs/version-specific/supported-software/a/artic-ncov2019.md @@ -0,0 +1,10 @@ +# 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`` 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..b83aa9ab1 --- /dev/null +++ b/docs/version-specific/supported-software/a/assembly-stats.md @@ -0,0 +1,9 @@ +# assembly-stats + +Get assembly statistics from FASTA and FASTQ files. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``GCCcore/11.3.0`` 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..2871ed18d --- /dev/null +++ b/docs/version-specific/supported-software/a/assimp.md @@ -0,0 +1,11 @@ +# 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`` 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..bc9cf3d4c --- /dev/null +++ b/docs/version-specific/supported-software/a/astro-tulips.md @@ -0,0 +1,9 @@ +# 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`` 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..644a06bb9 --- /dev/null +++ b/docs/version-specific/supported-software/a/astropy.md @@ -0,0 +1,24 @@ +# 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`` 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..6d41243cc --- /dev/null +++ b/docs/version-specific/supported-software/a/at-spi2-atk.md @@ -0,0 +1,19 @@ +# 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`` 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..53553e437 --- /dev/null +++ b/docs/version-specific/supported-software/a/at-spi2-core.md @@ -0,0 +1,19 @@ +# 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`` 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..2ac11d364 --- /dev/null +++ b/docs/version-specific/supported-software/a/atomate.md @@ -0,0 +1,9 @@ +# atomate + +atomate has implementations of FireWorks workflows for Materials Science. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.4`` | ``-Python-2.7.13`` | ``intel/2017a`` 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..fbf012222 --- /dev/null +++ b/docs/version-specific/supported-software/a/atools.md @@ -0,0 +1,15 @@ +# 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`` 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..7e46a4d90 --- /dev/null +++ b/docs/version-specific/supported-software/a/atropos.md @@ -0,0 +1,10 @@ +# 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`` 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..0ff217414 --- /dev/null +++ b/docs/version-specific/supported-software/a/attr.md @@ -0,0 +1,14 @@ +# 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`` 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..859f7fa9b --- /dev/null +++ b/docs/version-specific/supported-software/a/attrdict.md @@ -0,0 +1,9 @@ +# 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`` 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..e81dbb0be --- /dev/null +++ b/docs/version-specific/supported-software/a/attrdict3.md @@ -0,0 +1,11 @@ +# 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`` 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..e3bcd90a3 --- /dev/null +++ b/docs/version-specific/supported-software/a/augur.md @@ -0,0 +1,9 @@ +# augur + +Pipeline components for real-time phylodynamic analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` 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..337494a56 --- /dev/null +++ b/docs/version-specific/supported-software/a/autopep8.md @@ -0,0 +1,11 @@ +# 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`` 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..90d8711cc --- /dev/null +++ b/docs/version-specific/supported-software/a/avro-cpp.md @@ -0,0 +1,9 @@ +# avro-cpp + +C++ implementation of Avro data serialization system. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.1`` | ``GCC/11.2.0`` 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..5690b20b7 --- /dev/null +++ b/docs/version-specific/supported-software/a/awscli.md @@ -0,0 +1,16 @@ +# 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`` 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..3a52b8473 --- /dev/null +++ b/docs/version-specific/supported-software/a/axel.md @@ -0,0 +1,10 @@ +# axel + +Lightweight CLI download accelerator + +*homepage*: + +version | toolchain +--------|---------- +``2.17.9`` | ``GCCcore/8.3.0`` +``2.17.9`` | ``GCCcore/9.3.0`` 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..05c3e6cd1 --- /dev/null +++ b/docs/version-specific/supported-software/a/index.md @@ -0,0 +1,172 @@ +# List of supported software (a) + + * [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) 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..08171fa96 --- /dev/null +++ b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md @@ -0,0 +1,9 @@ +# 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`` 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..4a4ffe942 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAGEL.md @@ -0,0 +1,11 @@ +# 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`` 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..996205771 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAMM.md @@ -0,0 +1,9 @@ +# 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`` 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..cf3443e69 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAMSurgeon.md @@ -0,0 +1,9 @@ +# 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`` 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..2e417a6b2 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAli-Phy.md @@ -0,0 +1,9 @@ +# 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`` 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..a5286d4be --- /dev/null +++ b/docs/version-specific/supported-software/b/BBMap.md @@ -0,0 +1,23 @@ +# 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`` 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..c52aa9e71 --- /dev/null +++ b/docs/version-specific/supported-software/b/BCALM.md @@ -0,0 +1,9 @@ +# BCALM + +de Bruijn graph compaction in low memory + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2018a`` 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..93e5cada2 --- /dev/null +++ b/docs/version-specific/supported-software/b/BCEL.md @@ -0,0 +1,10 @@ +# 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`` 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..b7bd118a0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BCFtools.md @@ -0,0 +1,31 @@ +# 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`` 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..6a032b95b --- /dev/null +++ b/docs/version-specific/supported-software/b/BDBag.md @@ -0,0 +1,11 @@ +# 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`` 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..f5603e0fd --- /dev/null +++ b/docs/version-specific/supported-software/b/BEDOPS.md @@ -0,0 +1,17 @@ +# 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`` 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..1756d79b6 --- /dev/null +++ b/docs/version-specific/supported-software/b/BEDTools.md @@ -0,0 +1,31 @@ +# 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`` 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..a62b264d0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BEEF.md @@ -0,0 +1,10 @@ +# 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`` 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..eb8072703 --- /dev/null +++ b/docs/version-specific/supported-software/b/BFAST.md @@ -0,0 +1,9 @@ +# 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`` 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..5e5b5736f --- /dev/null +++ b/docs/version-specific/supported-software/b/BFC.md @@ -0,0 +1,9 @@ +# 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`` 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..3218c275a --- /dev/null +++ b/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md @@ -0,0 +1,9 @@ +# BGC-Bayesian-genomic-clines + +Collection of code for Bayesian genomic cline analyses. + +*homepage*: + +version | toolchain +--------|---------- +``1.03`` | ``gompi/2021a`` 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..5b5482420 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLACS.md @@ -0,0 +1,9 @@ +# 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`` 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..9faab3347 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLASR.md @@ -0,0 +1,11 @@ +# 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`` 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..5f722ce29 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLAST+.md @@ -0,0 +1,35 @@ +# 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`` 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..4003e79f1 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLAST.md @@ -0,0 +1,13 @@ +# 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`` 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..1b5a12b92 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLAT.md @@ -0,0 +1,18 @@ +# 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`` 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..c8d6f0f28 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLIS.md @@ -0,0 +1,29 @@ +# 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`` 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..a0fb224db --- /dev/null +++ b/docs/version-specific/supported-software/b/BLT.md @@ -0,0 +1,9 @@ +# 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`` 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..297aa3c59 --- /dev/null +++ b/docs/version-specific/supported-software/b/BMTK.md @@ -0,0 +1,9 @@ +# 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`` 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..e81043609 --- /dev/null +++ b/docs/version-specific/supported-software/b/BOINC.md @@ -0,0 +1,9 @@ +# 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`` 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..a3fb17d03 --- /dev/null +++ b/docs/version-specific/supported-software/b/BOPTEST.md @@ -0,0 +1,9 @@ +# 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`` 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..8c942c88c --- /dev/null +++ b/docs/version-specific/supported-software/b/BRAKER.md @@ -0,0 +1,12 @@ +# 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`` 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..45033863f --- /dev/null +++ b/docs/version-specific/supported-software/b/BRiAl.md @@ -0,0 +1,9 @@ +# BRiAl + +BRiAl is the legacy version of PolyBoRi maintained by sagemath developers. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.12`` | ``GCC/11.3.0`` 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..47d388f4a --- /dev/null +++ b/docs/version-specific/supported-software/b/BSMAPz.md @@ -0,0 +1,9 @@ +# 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`` 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..a221b9c51 --- /dev/null +++ b/docs/version-specific/supported-software/b/BSseeker2.md @@ -0,0 +1,10 @@ +# 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`` 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..867522750 --- /dev/null +++ b/docs/version-specific/supported-software/b/BUFRLIB.md @@ -0,0 +1,9 @@ +# 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`` 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..dee3ba93c --- /dev/null +++ b/docs/version-specific/supported-software/b/BUSCO.md @@ -0,0 +1,19 @@ +# 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`` 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..c0c9ff64f --- /dev/null +++ b/docs/version-specific/supported-software/b/BUStools.md @@ -0,0 +1,11 @@ +# 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`` 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..a8dfd0a25 --- /dev/null +++ b/docs/version-specific/supported-software/b/BWA.md @@ -0,0 +1,39 @@ +# 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`` 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..65156b78d --- /dev/null +++ b/docs/version-specific/supported-software/b/BWISE.md @@ -0,0 +1,9 @@ +# BWISE + +de Bruijn Workflow using Integral information of Short pair End reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180820`` | ``-Python-3.6.4`` | ``foss/2018a`` 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..79cea3a2e --- /dev/null +++ b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md @@ -0,0 +1,9 @@ +# 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`` 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..4550e7f3d --- /dev/null +++ b/docs/version-specific/supported-software/b/BabelStream.md @@ -0,0 +1,9 @@ +# BabelStream + +STREAM, for lots of devices written in many programming models + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4`` | ``-omp`` | ``GCC/11.2.0`` 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..72c66fdb5 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bader.md @@ -0,0 +1,12 @@ +# 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`` 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..81e566a64 --- /dev/null +++ b/docs/version-specific/supported-software/b/BamTools.md @@ -0,0 +1,29 @@ +# 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`` 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..e8be4cb7c --- /dev/null +++ b/docs/version-specific/supported-software/b/BamUtil.md @@ -0,0 +1,10 @@ +# 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`` 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..e7f35f558 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bambi.md @@ -0,0 +1,10 @@ +# 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`` 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..8c9afd7ba --- /dev/null +++ b/docs/version-specific/supported-software/b/Bandage.md @@ -0,0 +1,12 @@ +# 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`` 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..988927bee --- /dev/null +++ b/docs/version-specific/supported-software/b/Bash.md @@ -0,0 +1,9 @@ +# 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`` 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..588e5eafe --- /dev/null +++ b/docs/version-specific/supported-software/b/BatMeth2.md @@ -0,0 +1,9 @@ +# BatMeth2 + +An Integrated Package for Bisulfite DNA Methylation Data Analysis with Indel-sensitive Mapping. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2019b`` 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..f8ff34114 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayeScEnv.md @@ -0,0 +1,11 @@ +# 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`` 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..1bf1f5be5 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayeScan.md @@ -0,0 +1,11 @@ +# 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`` 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..96096e94c --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesAss.md @@ -0,0 +1,9 @@ +# BayesAss + +BayesAss: Bayesian Inference of Recent Migration Using Multilocus Genotypes + +*homepage*: + +version | toolchain +--------|---------- +``3.0.4`` | ``foss/2016a`` 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..f2959b748 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md @@ -0,0 +1,9 @@ +# 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`` 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..4dace8937 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesPrism.md @@ -0,0 +1,9 @@ +# 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`` 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..aecfaa258 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesTraits.md @@ -0,0 +1,11 @@ +# 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`` 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..1b30c63c1 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bazel.md @@ -0,0 +1,40 @@ +# 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`` 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..6e797ba2b --- /dev/null +++ b/docs/version-specific/supported-software/b/Beagle.md @@ -0,0 +1,9 @@ +# 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`` 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..0aa368de1 --- /dev/null +++ b/docs/version-specific/supported-software/b/Beast.md @@ -0,0 +1,21 @@ +# 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`` 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..4d315f8fb --- /dev/null +++ b/docs/version-specific/supported-software/b/BeautifulSoup.md @@ -0,0 +1,21 @@ +# 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`` 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..40845cf54 --- /dev/null +++ b/docs/version-specific/supported-software/b/BerkeleyGW.md @@ -0,0 +1,23 @@ +# 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`` 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..af21fcf49 --- /dev/null +++ b/docs/version-specific/supported-software/b/BgeeCall.md @@ -0,0 +1,9 @@ +# BgeeCall + +Automatic RNA-Seq present/absent gene expression calls generation + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.16.0`` | ``-R-%(rver)s`` | ``foss/2021a`` 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..b8d89c214 --- /dev/null +++ b/docs/version-specific/supported-software/b/BgeeDB.md @@ -0,0 +1,9 @@ +# 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`` 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..0ee3f8fad --- /dev/null +++ b/docs/version-specific/supported-software/b/BiG-SCAPE.md @@ -0,0 +1,10 @@ +# 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`` 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..fb6517315 --- /dev/null +++ b/docs/version-specific/supported-software/b/BiasAdjustCXX.md @@ -0,0 +1,9 @@ +# 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`` 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..535898fe7 --- /dev/null +++ b/docs/version-specific/supported-software/b/BigDFT.md @@ -0,0 +1,9 @@ +# 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`` 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..96ccd3d6b --- /dev/null +++ b/docs/version-specific/supported-software/b/BinSanity.md @@ -0,0 +1,9 @@ +# 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`` 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..055e08529 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-DB-HTS.md @@ -0,0 +1,17 @@ +# 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`` 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..f643f2e35 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-EUtilities.md @@ -0,0 +1,9 @@ +# Bio-EUtilities + +BioPerl low-level API for retrieving and storing data from NCBI eUtils + +*homepage*: + +version | toolchain +--------|---------- +``1.76`` | ``GCCcore/8.3.0`` 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..33b0f6cd5 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-FeatureIO.md @@ -0,0 +1,9 @@ +# Bio-FeatureIO + +An I/O iterator subsystem for genomic sequence features + +*homepage*: + +version | toolchain +--------|---------- +``1.6.905`` | ``GCCcore/12.3.0`` 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..115832bfd --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-SamTools.md @@ -0,0 +1,9 @@ +# 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`` 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..524db76e0 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md @@ -0,0 +1,13 @@ +# 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`` 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..967182f45 --- /dev/null +++ b/docs/version-specific/supported-software/b/BioPP.md @@ -0,0 +1,10 @@ +# 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`` 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..f3b77cee0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BioPerl.md @@ -0,0 +1,27 @@ +# 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`` 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..aef3cb95d --- /dev/null +++ b/docs/version-specific/supported-software/b/BioServices.md @@ -0,0 +1,9 @@ +# 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`` 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..79c628426 --- /dev/null +++ b/docs/version-specific/supported-software/b/Biopython.md @@ -0,0 +1,47 @@ +# 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`` 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..e34e65828 --- /dev/null +++ b/docs/version-specific/supported-software/b/BirdNET.md @@ -0,0 +1,9 @@ +# 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`` 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..42125bc39 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bismark.md @@ -0,0 +1,14 @@ +# 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`` 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..be7721119 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bison.md @@ -0,0 +1,87 @@ +# 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`` 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..fba4a31aa --- /dev/null +++ b/docs/version-specific/supported-software/b/Blender.md @@ -0,0 +1,22 @@ +# 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`` 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..c509a2c8b --- /dev/null +++ b/docs/version-specific/supported-software/b/Blitz++.md @@ -0,0 +1,16 @@ +# 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`` 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..6fa6eb789 --- /dev/null +++ b/docs/version-specific/supported-software/b/BlobTools.md @@ -0,0 +1,9 @@ +# 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`` 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..ddcd02a65 --- /dev/null +++ b/docs/version-specific/supported-software/b/Block.md @@ -0,0 +1,10 @@ +# 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`` 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..51a68064b --- /dev/null +++ b/docs/version-specific/supported-software/b/Blosc.md @@ -0,0 +1,26 @@ +# 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`` 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..66cad2912 --- /dev/null +++ b/docs/version-specific/supported-software/b/Blosc2.md @@ -0,0 +1,16 @@ +# 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`` 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..f69a9628e --- /dev/null +++ b/docs/version-specific/supported-software/b/BoltzTraP.md @@ -0,0 +1,9 @@ +# BoltzTraP + +Boltzmann Transport Properties (BoltzTraP) is a program for calculating the semi-classic transport coefficients. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``intel/2016a`` 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..549cd7a4e --- /dev/null +++ b/docs/version-specific/supported-software/b/BoltzTraP2.md @@ -0,0 +1,9 @@ +# 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`` 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..8eec76215 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bonito.md @@ -0,0 +1,17 @@ +# 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`` 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..db0e430e1 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bonmin.md @@ -0,0 +1,9 @@ +# 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`` 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..6e747f5d6 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bonnie++.md @@ -0,0 +1,10 @@ +# Bonnie++ + +Bonnie++-1.97: Enhanced performance Test of Filesystem I/O + +*homepage*: + +version | toolchain +--------|---------- +``1.97`` | ``foss/2016a`` +``2.00a`` | ``GCC/10.3.0`` 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..0f2c11681 --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.MPI.md @@ -0,0 +1,14 @@ +# 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`` 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..531ddc97e --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md @@ -0,0 +1,9 @@ +# 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`` 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..342928a9d --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.Python.md @@ -0,0 +1,36 @@ +# 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`` 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..be7bd9754 --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.md @@ -0,0 +1,102 @@ +# 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`` 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..d7a31268b --- /dev/null +++ b/docs/version-specific/supported-software/b/Bottleneck.md @@ -0,0 +1,12 @@ +# 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`` 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..97accf2bd --- /dev/null +++ b/docs/version-specific/supported-software/b/Bowtie.md @@ -0,0 +1,30 @@ +# 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`` 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..704035285 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bowtie2.md @@ -0,0 +1,35 @@ +# 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`` 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..9a48b429b --- /dev/null +++ b/docs/version-specific/supported-software/b/Bpipe.md @@ -0,0 +1,9 @@ +# Bpipe + +Bpipe - a tool for running and managing bioinformatics pipelines + +*homepage*: + +version | toolchain +--------|---------- +``0.9.9.2`` | ``intel/2017a`` 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..3899cfe39 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bracken.md @@ -0,0 +1,12 @@ +# 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`` 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..9b94b08b1 --- /dev/null +++ b/docs/version-specific/supported-software/b/Braindecode.md @@ -0,0 +1,12 @@ +# 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`` 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..a4817d497 --- /dev/null +++ b/docs/version-specific/supported-software/b/BreakDancer.md @@ -0,0 +1,9 @@ +# 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`` 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..d1bad5cf4 --- /dev/null +++ b/docs/version-specific/supported-software/b/Brotli-python.md @@ -0,0 +1,14 @@ +# 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`` 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..3e5025b90 --- /dev/null +++ b/docs/version-specific/supported-software/b/Brotli.md @@ -0,0 +1,17 @@ +# 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`` 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..5ba53cca6 --- /dev/null +++ b/docs/version-specific/supported-software/b/Brunsli.md @@ -0,0 +1,13 @@ +# 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`` 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..26bdf603e --- /dev/null +++ b/docs/version-specific/supported-software/b/Bsoft.md @@ -0,0 +1,10 @@ +# 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`` 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..9ede06fc9 --- /dev/null +++ b/docs/version-specific/supported-software/b/BuDDy.md @@ -0,0 +1,9 @@ +# 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`` 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..ddc4dfb42 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bullet.md @@ -0,0 +1,10 @@ +# 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`` 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..dde1c1f7f --- /dev/null +++ b/docs/version-specific/supported-software/b/babl.md @@ -0,0 +1,9 @@ +# babl + +babl is pixel encoding and color space conversion engine in C + +*homepage*: + +version | toolchain +--------|---------- +``0.1.86`` | ``GCCcore/10.3.0`` 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..771e699ed --- /dev/null +++ b/docs/version-specific/supported-software/b/bam-readcount.md @@ -0,0 +1,12 @@ +# 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`` 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..c1d5a1052 --- /dev/null +++ b/docs/version-specific/supported-software/b/bamFilters.md @@ -0,0 +1,9 @@ +# 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`` 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..27caa321b --- /dev/null +++ b/docs/version-specific/supported-software/b/bamtofastq.md @@ -0,0 +1,9 @@ +# bamtofastq + +Convert 10x BAM files to the original FASTQs compatible with 10x pipelines. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``GCCcore/10.3.0`` 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..f3dbca171 --- /dev/null +++ b/docs/version-specific/supported-software/b/barrnap.md @@ -0,0 +1,13 @@ +# 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`` 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..a28eb4716 --- /dev/null +++ b/docs/version-specific/supported-software/b/basemap.md @@ -0,0 +1,15 @@ +# 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`` 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..ba2948927 --- /dev/null +++ b/docs/version-specific/supported-software/b/bases2fastq.md @@ -0,0 +1,9 @@ +# 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`` 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..2d84a3373 --- /dev/null +++ b/docs/version-specific/supported-software/b/bashplotlib.md @@ -0,0 +1,9 @@ +# 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`` 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..cdd72e198 --- /dev/null +++ b/docs/version-specific/supported-software/b/bat.md @@ -0,0 +1,9 @@ +# 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`` 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..00c50f2c2 --- /dev/null +++ b/docs/version-specific/supported-software/b/batchgenerators.md @@ -0,0 +1,9 @@ +# 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`` 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..42339388e --- /dev/null +++ b/docs/version-specific/supported-software/b/bbFTP.md @@ -0,0 +1,11 @@ +# 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`` 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..a26a4010e --- /dev/null +++ b/docs/version-specific/supported-software/b/bbcp.md @@ -0,0 +1,9 @@ +# 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`` 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..327173114 --- /dev/null +++ b/docs/version-specific/supported-software/b/bc.md @@ -0,0 +1,9 @@ +# bc + +bc is an arbitrary precision numeric processing language. + +*homepage*: + +version | toolchain +--------|---------- +``1.06.95`` | ``GCC/4.8.2`` 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..7680ba247 --- /dev/null +++ b/docs/version-specific/supported-software/b/bcbio-gff.md @@ -0,0 +1,13 @@ +# 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`` 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..8c7b3049f --- /dev/null +++ b/docs/version-specific/supported-software/b/bcgTree.md @@ -0,0 +1,10 @@ +# 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`` 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..002c4f8ce --- /dev/null +++ b/docs/version-specific/supported-software/b/bcl-convert.md @@ -0,0 +1,9 @@ +# 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`` 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..28bf377ab --- /dev/null +++ b/docs/version-specific/supported-software/b/bcl2fastq2.md @@ -0,0 +1,20 @@ +# 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`` 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..e19935b5f --- /dev/null +++ b/docs/version-specific/supported-software/b/bcolz.md @@ -0,0 +1,11 @@ +# 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`` 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..05465dc16 --- /dev/null +++ b/docs/version-specific/supported-software/b/bcrypt.md @@ -0,0 +1,10 @@ +# 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`` 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..5762a1c26 --- /dev/null +++ b/docs/version-specific/supported-software/b/beagle-lib.md @@ -0,0 +1,21 @@ +# 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`` 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..2fdcd7f4b --- /dev/null +++ b/docs/version-specific/supported-software/b/behave.md @@ -0,0 +1,10 @@ +# 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`` 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..455835f55 --- /dev/null +++ b/docs/version-specific/supported-software/b/bench.md @@ -0,0 +1,9 @@ +# 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`` 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..3691043d9 --- /dev/null +++ b/docs/version-specific/supported-software/b/bgen-reader.md @@ -0,0 +1,9 @@ +# 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`` 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..61a147a2a --- /dev/null +++ b/docs/version-specific/supported-software/b/bgen.md @@ -0,0 +1,11 @@ +# 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`` 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..b3287611c --- /dev/null +++ b/docs/version-specific/supported-software/b/bibtexparser.md @@ -0,0 +1,9 @@ +# bibtexparser + +Bibtex parser in Python 2.7 and 3.x + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCCcore/8.2.0`` 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..83245f53e --- /dev/null +++ b/docs/version-specific/supported-software/b/binutils.md @@ -0,0 +1,71 @@ +# 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`` 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..032c1c6c4 --- /dev/null +++ b/docs/version-specific/supported-software/b/bioawk.md @@ -0,0 +1,11 @@ +# 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`` 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..039d884c8 --- /dev/null +++ b/docs/version-specific/supported-software/b/biobakery-workflows.md @@ -0,0 +1,9 @@ +# 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`` 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..7e9a371f8 --- /dev/null +++ b/docs/version-specific/supported-software/b/biobambam2.md @@ -0,0 +1,11 @@ +# 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`` 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..7c3e3c14e --- /dev/null +++ b/docs/version-specific/supported-software/b/biogeme.md @@ -0,0 +1,12 @@ +# 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`` 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..c93b5d5f4 --- /dev/null +++ b/docs/version-specific/supported-software/b/biom-format.md @@ -0,0 +1,13 @@ +# 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`` 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..932f1075a --- /dev/null +++ b/docs/version-specific/supported-software/b/biomart-perl.md @@ -0,0 +1,9 @@ +# 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`` 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..01d1ed511 --- /dev/null +++ b/docs/version-specific/supported-software/b/biscuit.md @@ -0,0 +1,9 @@ +# biscuit + +Utilities to help analyze bisulfite-treated sequence data + +*homepage*: + +version | toolchain +--------|---------- +``0.1.4`` | ``foss/2016a`` 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..3de48d8ca --- /dev/null +++ b/docs/version-specific/supported-software/b/bitarray.md @@ -0,0 +1,12 @@ +# 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`` 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..ecf2bdf3e --- /dev/null +++ b/docs/version-specific/supported-software/b/bitshuffle.md @@ -0,0 +1,9 @@ +# 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`` 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..1f2a1f2df --- /dev/null +++ b/docs/version-specific/supported-software/b/blasr_libcpp.md @@ -0,0 +1,9 @@ +# 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`` 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..9f18e8edc --- /dev/null +++ b/docs/version-specific/supported-software/b/bmtagger.md @@ -0,0 +1,11 @@ +# 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`` 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..3c220970d --- /dev/null +++ b/docs/version-specific/supported-software/b/bnpy.md @@ -0,0 +1,9 @@ +# 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`` 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..e4129b123 --- /dev/null +++ b/docs/version-specific/supported-software/b/bokeh.md @@ -0,0 +1,29 @@ +# 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`` 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..03aa23c83 --- /dev/null +++ b/docs/version-specific/supported-software/b/boost_histogram.md @@ -0,0 +1,9 @@ +# boost_histogram + +Boost-histogram is a Python package providing Python bindings for Boost.Histogram. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2021a`` 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..655a30349 --- /dev/null +++ b/docs/version-specific/supported-software/b/boto3.md @@ -0,0 +1,13 @@ +# 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`` 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..11929d808 --- /dev/null +++ b/docs/version-specific/supported-software/b/bpp.md @@ -0,0 +1,10 @@ +# 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`` 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..12bdc2ed9 --- /dev/null +++ b/docs/version-specific/supported-software/b/bpytop.md @@ -0,0 +1,10 @@ +# 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`` 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..895ce1fc8 --- /dev/null +++ b/docs/version-specific/supported-software/b/breseq.md @@ -0,0 +1,12 @@ +# 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`` 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..a0de45660 --- /dev/null +++ b/docs/version-specific/supported-software/b/bsddb3.md @@ -0,0 +1,12 @@ +# 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`` 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..2e83ac20c --- /dev/null +++ b/docs/version-specific/supported-software/b/btllib.md @@ -0,0 +1,9 @@ +# btllib + +Bioinformatics Technology Lab common code library + +*homepage*: + +version | toolchain +--------|---------- +``1.7.0`` | ``GCC/12.3.0`` 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..b57b23a13 --- /dev/null +++ b/docs/version-specific/supported-software/b/build.md @@ -0,0 +1,12 @@ +# 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`` 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..ac6bd8cd6 --- /dev/null +++ b/docs/version-specific/supported-software/b/buildenv.md @@ -0,0 +1,44 @@ +# 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`` 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..06822ada3 --- /dev/null +++ b/docs/version-specific/supported-software/b/buildingspy.md @@ -0,0 +1,9 @@ +# buildingspy + +Python modules for automating Modelica simulations and for running unit test for the Buildings library + +*homepage*: + +version | toolchain +--------|---------- +``4.0.0`` | ``foss/2022a`` 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..54e48e387 --- /dev/null +++ b/docs/version-specific/supported-software/b/bwa-mem2.md @@ -0,0 +1,9 @@ +# 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`` 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..15b774819 --- /dev/null +++ b/docs/version-specific/supported-software/b/bwa-meth.md @@ -0,0 +1,11 @@ +# 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`` 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..071df4cd0 --- /dev/null +++ b/docs/version-specific/supported-software/b/bwakit.md @@ -0,0 +1,9 @@ +# 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`` 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..ef8994d97 --- /dev/null +++ b/docs/version-specific/supported-software/b/bwidget.md @@ -0,0 +1,14 @@ +# 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`` 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..a0a31930b --- /dev/null +++ b/docs/version-specific/supported-software/b/bx-python.md @@ -0,0 +1,19 @@ +# 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`` 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..97daf4dfa --- /dev/null +++ b/docs/version-specific/supported-software/b/byacc.md @@ -0,0 +1,12 @@ +# 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`` 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..5a3583288 --- /dev/null +++ b/docs/version-specific/supported-software/b/byobu.md @@ -0,0 +1,9 @@ +# 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`` 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..7b9ce0938 --- /dev/null +++ b/docs/version-specific/supported-software/b/bzip2.md @@ -0,0 +1,45 @@ +# 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`` 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..3b519f677 --- /dev/null +++ b/docs/version-specific/supported-software/b/index.md @@ -0,0 +1,160 @@ +# List of supported software (b) + + * [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) 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..4a98222ad --- /dev/null +++ b/docs/version-specific/supported-software/c/C3D.md @@ -0,0 +1,9 @@ +# C3D + +Convert3D Medical Image Processing Tool + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``system`` 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..ed157d4ad --- /dev/null +++ b/docs/version-specific/supported-software/c/CAFE5.md @@ -0,0 +1,9 @@ +# 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`` 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..e3aba242c --- /dev/null +++ b/docs/version-specific/supported-software/c/CAMPARI.md @@ -0,0 +1,10 @@ +# 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`` 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..bbbc1a978 --- /dev/null +++ b/docs/version-specific/supported-software/c/CAP3.md @@ -0,0 +1,11 @@ +# CAP3 + +CAP3 assembly program + +*homepage*: + +version | toolchain +--------|---------- +``20071221-intel-x86`` | ``system`` +``20071221-intel-x86_64`` | ``system`` +``20071221-opteron`` | ``system`` 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..7282ef451 --- /dev/null +++ b/docs/version-specific/supported-software/c/CASA.md @@ -0,0 +1,9 @@ +# 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`` 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..12fb84643 --- /dev/null +++ b/docs/version-specific/supported-software/c/CASPR.md @@ -0,0 +1,9 @@ +# CASPR + +Running CASPR is extremely easy and convenient to analyze CRIPR-Cas9 screens using pgRNAs. + +*homepage*: + +version | toolchain +--------|---------- +``20200730`` | ``foss/2022a`` 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..e5ca0aed8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CASTEP.md @@ -0,0 +1,15 @@ +# 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`` 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..5299a8f66 --- /dev/null +++ b/docs/version-specific/supported-software/c/CAT-BAT.md @@ -0,0 +1,9 @@ +# CAT-BAT + +Tool for taxonomic classification of contigs and metagenome-assembled genomes (MAGs). + +*homepage*: + +version | toolchain +--------|---------- +``5.2.3`` | ``GCC/10.3.0`` 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..78d201b56 --- /dev/null +++ b/docs/version-specific/supported-software/c/CAVIAR.md @@ -0,0 +1,9 @@ +# 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`` 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..32d575818 --- /dev/null +++ b/docs/version-specific/supported-software/c/CBLAS.md @@ -0,0 +1,11 @@ +# CBLAS + +C interface to the BLAS + +*homepage*: + +version | toolchain +--------|---------- +``20110120`` | ``foss/2016b`` +``20110120`` | ``intel/2019b`` +``20110120`` | ``intel/2020a`` 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..fc6b85649 --- /dev/null +++ b/docs/version-specific/supported-software/c/CCCL.md @@ -0,0 +1,9 @@ +# CCCL + +CUDA C++ Core Libraries (header only) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` 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..51300c615 --- /dev/null +++ b/docs/version-specific/supported-software/c/CCL.md @@ -0,0 +1,14 @@ +# 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`` 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..22565f7f0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CCfits.md @@ -0,0 +1,9 @@ +# 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`` 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..85f9a586a --- /dev/null +++ b/docs/version-specific/supported-software/c/CD-HIT.md @@ -0,0 +1,22 @@ +# 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`` 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..a6883fa9e --- /dev/null +++ b/docs/version-specific/supported-software/c/CDAT.md @@ -0,0 +1,9 @@ +# 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`` 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..ce9cdd993 --- /dev/null +++ b/docs/version-specific/supported-software/c/CDBtools.md @@ -0,0 +1,10 @@ +# 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`` 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..5db25a3ce --- /dev/null +++ b/docs/version-specific/supported-software/c/CDFlib.md @@ -0,0 +1,9 @@ +# 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`` 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..643a048cd --- /dev/null +++ b/docs/version-specific/supported-software/c/CDO.md @@ -0,0 +1,25 @@ +# 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`` 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..d67e88487 --- /dev/null +++ b/docs/version-specific/supported-software/c/CENSO.md @@ -0,0 +1,10 @@ +# 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`` 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..ba6fc04e8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CESM-deps.md @@ -0,0 +1,13 @@ +# 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`` 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..03af38c6a --- /dev/null +++ b/docs/version-specific/supported-software/c/CFDEMcoupling.md @@ -0,0 +1,10 @@ +# 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`` 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..27f629a09 --- /dev/null +++ b/docs/version-specific/supported-software/c/CFITSIO.md @@ -0,0 +1,27 @@ +# 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`` 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..95eac27b7 --- /dev/null +++ b/docs/version-specific/supported-software/c/CGAL.md @@ -0,0 +1,42 @@ +# 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`` 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..4aac94849 --- /dev/null +++ b/docs/version-specific/supported-software/c/CGNS.md @@ -0,0 +1,10 @@ +# 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`` 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..57603ad10 --- /dev/null +++ b/docs/version-specific/supported-software/c/CGmapTools.md @@ -0,0 +1,9 @@ +# CGmapTools + +Command-line Toolset for Bisulfite Sequencing Data Analysis + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``intel/2019b`` 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..a16cf79f5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CHASE.md @@ -0,0 +1,9 @@ +# CHASE + +Case-control HAplotype Sharing analyses. Haplotype sharing analyses for genome-wide association studies. + +*homepage*: + +version | toolchain +--------|---------- +``20130626`` | ``system`` 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..182cfd3ed --- /dev/null +++ b/docs/version-specific/supported-software/c/CHERAB.md @@ -0,0 +1,13 @@ +# 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`` 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..b886f0e55 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIF2Cell.md @@ -0,0 +1,9 @@ +# 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`` 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..d60a3cd81 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRCexplorer.md @@ -0,0 +1,9 @@ +# CIRCexplorer + +CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.10`` | ``-Python-2.7.14`` | ``intel/2017b`` 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..0b224887e --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRCexplorer2.md @@ -0,0 +1,12 @@ +# 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`` 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..63d2edef9 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRI-long.md @@ -0,0 +1,9 @@ +# CIRI-long + +Circular RNA Identification for Long-Reads Nanopore Sequencing Data + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2020b`` 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..24bb6272a --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRI.md @@ -0,0 +1,9 @@ +# CIRI + +CircRNA Identifier. A de novo circular RNA identification tool + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.6`` | ``-Perl-5.26.0`` | ``intel/2017b`` 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..147aa1036 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRIquant.md @@ -0,0 +1,9 @@ +# 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`` 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..54645d3ee --- /dev/null +++ b/docs/version-specific/supported-software/c/CITE-seq-Count.md @@ -0,0 +1,10 @@ +# 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`` 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..818ad7cb6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLAPACK.md @@ -0,0 +1,11 @@ +# 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`` 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..7818d0206 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLEAR.md @@ -0,0 +1,9 @@ +# CLEAR + +Direct comparison of circular and linear RNA expression + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210117`` | ``-Python-2.7.18`` | ``foss/2021b`` 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..ab56af247 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLEASE.md @@ -0,0 +1,9 @@ +# 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`` 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..a744cecca --- /dev/null +++ b/docs/version-specific/supported-software/c/CLHEP.md @@ -0,0 +1,27 @@ +# 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`` 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..d2f00b934 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLIP.md @@ -0,0 +1,9 @@ +# 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`` 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..7e258ef5a --- /dev/null +++ b/docs/version-specific/supported-software/c/CLISP.md @@ -0,0 +1,10 @@ +# 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`` 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..d4ff6f4d6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLooG.md @@ -0,0 +1,9 @@ +# 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`` 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..782eeaf57 --- /dev/null +++ b/docs/version-specific/supported-software/c/CMAverse.md @@ -0,0 +1,9 @@ +# 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`` 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..d6f38a504 --- /dev/null +++ b/docs/version-specific/supported-software/c/CMSeq.md @@ -0,0 +1,10 @@ +# 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`` 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..0f2be3b7b --- /dev/null +++ b/docs/version-specific/supported-software/c/CMake.md @@ -0,0 +1,93 @@ +# 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`` 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..aca2fe6cc --- /dev/null +++ b/docs/version-specific/supported-software/c/CNT-ILP.md @@ -0,0 +1,9 @@ +# CNT-ILP + +Integer Linear Program for the Copy-Number Tree Problem + +*homepage*: + +version | toolchain +--------|---------- +``20171031`` | ``GCC/8.2.0-2.31.1`` 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..5ed031652 --- /dev/null +++ b/docs/version-specific/supported-software/c/CNVkit.md @@ -0,0 +1,13 @@ +# 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`` 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..c6ce2133c --- /dev/null +++ b/docs/version-specific/supported-software/c/CNVnator.md @@ -0,0 +1,9 @@ +# CNVnator + +a tool for CNV discovery and genotyping from depth-of-coverage by mapped reads + +*homepage*: + +version | toolchain +--------|---------- +``0.3.3`` | ``foss/2016b`` 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..588f9968f --- /dev/null +++ b/docs/version-specific/supported-software/c/COBRApy.md @@ -0,0 +1,10 @@ +# 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`` 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..e459275d0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CODEX2.md @@ -0,0 +1,9 @@ +# CODEX2 + +Full-spectrum copy number variation detection by high-throughput DNA sequencing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180227`` | ``-R-3.4.3`` | ``intel/2017b`` 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..c401909b8 --- /dev/null +++ b/docs/version-specific/supported-software/c/COMEBin.md @@ -0,0 +1,9 @@ +# COMEBin + +Effective binning of metagenomic contigs using COntrastive Multi-viEw representation learning + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3-20240310`` | ``foss/2022a`` 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..df225ba79 --- /dev/null +++ b/docs/version-specific/supported-software/c/COMSOL.md @@ -0,0 +1,10 @@ +# 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`` 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..6e4e5e2a9 --- /dev/null +++ b/docs/version-specific/supported-software/c/CONCOCT.md @@ -0,0 +1,13 @@ +# 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`` 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..e6324e16f --- /dev/null +++ b/docs/version-specific/supported-software/c/CONN.md @@ -0,0 +1,9 @@ +# 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`` 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..eb168bdae --- /dev/null +++ b/docs/version-specific/supported-software/c/CP2K.md @@ -0,0 +1,36 @@ +# 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`` 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..c37e13566 --- /dev/null +++ b/docs/version-specific/supported-software/c/CPB.md @@ -0,0 +1,9 @@ +# 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`` 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..7cdc7844b --- /dev/null +++ b/docs/version-specific/supported-software/c/CPC2.md @@ -0,0 +1,9 @@ +# CPC2 + +a fast and accurate coding potential calculator based on sequence intrinsic features + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2022a`` 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..3ead5bf7f --- /dev/null +++ b/docs/version-specific/supported-software/c/CPLEX.md @@ -0,0 +1,12 @@ +# 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`` 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..b4ab389c0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CPMD.md @@ -0,0 +1,9 @@ +# 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`` 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..68aaebf79 --- /dev/null +++ b/docs/version-specific/supported-software/c/CPPE.md @@ -0,0 +1,10 @@ +# 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`` 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..cb46c5dac --- /dev/null +++ b/docs/version-specific/supported-software/c/CREST.md @@ -0,0 +1,14 @@ +# 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`` 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..5a245f81f --- /dev/null +++ b/docs/version-specific/supported-software/c/CRF++.md @@ -0,0 +1,10 @@ +# 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`` 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..6d93c444e --- /dev/null +++ b/docs/version-specific/supported-software/c/CRISPR-DAV.md @@ -0,0 +1,9 @@ +# 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`` 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..505a67f78 --- /dev/null +++ b/docs/version-specific/supported-software/c/CRISPResso2.md @@ -0,0 +1,11 @@ +# 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`` 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..44f3ced76 --- /dev/null +++ b/docs/version-specific/supported-software/c/CRPropa.md @@ -0,0 +1,10 @@ +# 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`` 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..791926a57 --- /dev/null +++ b/docs/version-specific/supported-software/c/CSB.md @@ -0,0 +1,9 @@ +# 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`` 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..4ef72a5ba --- /dev/null +++ b/docs/version-specific/supported-software/c/CSBDeep.md @@ -0,0 +1,12 @@ +# 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`` 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..b287a2b54 --- /dev/null +++ b/docs/version-specific/supported-software/c/CSBLAST.md @@ -0,0 +1,10 @@ +# 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`` 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..7e4a2a657 --- /dev/null +++ b/docs/version-specific/supported-software/c/CTPL.md @@ -0,0 +1,9 @@ +# CTPL + +Modern and efficient C++ Thread Pool Library + +*homepage*: + +version | toolchain +--------|---------- +``0.0.2`` | ``GCC/11.3.0`` 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..9dd637103 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDA-Samples.md @@ -0,0 +1,11 @@ +# 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`` 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..68abe262f --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDA.md @@ -0,0 +1,60 @@ +# 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`` 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..1dbe2d812 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDAcompat.md @@ -0,0 +1,13 @@ +# 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`` 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..d89b6c5f8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDAcore.md @@ -0,0 +1,15 @@ +# 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`` 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..84e2ac307 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDD.md @@ -0,0 +1,9 @@ +# 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`` 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..46f5b50b8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUTLASS.md @@ -0,0 +1,9 @@ +# 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`` 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..1527306a4 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUnit.md @@ -0,0 +1,12 @@ +# 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`` 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..16bcafbcd --- /dev/null +++ b/docs/version-specific/supported-software/c/CVX.md @@ -0,0 +1,9 @@ +# 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`` 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..3b2f536f6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CVXOPT.md @@ -0,0 +1,16 @@ +# 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`` 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..23f05f5fa --- /dev/null +++ b/docs/version-specific/supported-software/c/CVXPY.md @@ -0,0 +1,12 @@ +# 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`` 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..33b980485 --- /dev/null +++ b/docs/version-specific/supported-software/c/CVglasso.md @@ -0,0 +1,9 @@ +# 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`` 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..6f2e84e97 --- /dev/null +++ b/docs/version-specific/supported-software/c/CWIPI.md @@ -0,0 +1,10 @@ +# 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`` 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..96a324dca --- /dev/null +++ b/docs/version-specific/supported-software/c/CaDiCaL.md @@ -0,0 +1,9 @@ +# 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`` 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..1edad9142 --- /dev/null +++ b/docs/version-specific/supported-software/c/CaSpER.md @@ -0,0 +1,9 @@ +# 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`` 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..c6d84a85b --- /dev/null +++ b/docs/version-specific/supported-software/c/CaVEMan.md @@ -0,0 +1,9 @@ +# 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`` 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..52104c588 --- /dev/null +++ b/docs/version-specific/supported-software/c/Caffe.md @@ -0,0 +1,12 @@ +# 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`` 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..7bdf030f3 --- /dev/null +++ b/docs/version-specific/supported-software/c/Calcam.md @@ -0,0 +1,10 @@ +# 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`` 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..90b2a0a0d --- /dev/null +++ b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md @@ -0,0 +1,11 @@ +# 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`` 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..e19932b76 --- /dev/null +++ b/docs/version-specific/supported-software/c/Calendrical.md @@ -0,0 +1,11 @@ +# 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`` 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..bda70e022 --- /dev/null +++ b/docs/version-specific/supported-software/c/Calib.md @@ -0,0 +1,9 @@ +# 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`` 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..ba5088c3b --- /dev/null +++ b/docs/version-specific/supported-software/c/Cantera.md @@ -0,0 +1,18 @@ +# 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`` 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..d091a5b29 --- /dev/null +++ b/docs/version-specific/supported-software/c/Canvas.md @@ -0,0 +1,9 @@ +# Canvas + +Copy number variant (CNV) calling from DNA sequencing data + +*homepage*: + +version | toolchain +--------|---------- +``1.39.0.1598`` | ``system`` 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..b72e31f7e --- /dev/null +++ b/docs/version-specific/supported-software/c/CapnProto.md @@ -0,0 +1,18 @@ +# 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`` 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..1e53ff86d --- /dev/null +++ b/docs/version-specific/supported-software/c/Cargo.md @@ -0,0 +1,9 @@ +# Cargo + +The Rust package manager + +*homepage*: + +version | toolchain +--------|---------- +``0.13.0`` | ``foss/2016b`` 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..96165a00c --- /dev/null +++ b/docs/version-specific/supported-software/c/Carma.md @@ -0,0 +1,9 @@ +# Carma + +Carma - A molecular dynamics analysis program + +*homepage*: + +version | toolchain +--------|---------- +``2.01`` | ``foss/2019b`` 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..ce4f5ecf6 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cartopy.md @@ -0,0 +1,16 @@ +# 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`` 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..61dfb1bf3 --- /dev/null +++ b/docs/version-specific/supported-software/c/Casanovo.md @@ -0,0 +1,10 @@ +# 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`` 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..1478dc914 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cassiopeia.md @@ -0,0 +1,9 @@ +# Cassiopeia + +A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``foss/2023a`` 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..76c1c9c94 --- /dev/null +++ b/docs/version-specific/supported-software/c/CastXML.md @@ -0,0 +1,11 @@ +# 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`` 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..007c63285 --- /dev/null +++ b/docs/version-specific/supported-software/c/CatBoost.md @@ -0,0 +1,9 @@ +# CatBoost + +CatBoost is a high-performance open source library for gradient boosting on decision trees + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``gfbf/2023a`` 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..610628052 --- /dev/null +++ b/docs/version-specific/supported-software/c/CatLearn.md @@ -0,0 +1,9 @@ +# CatLearn + +An environment for atomistic machine learning in Python for applications in catalysis + +*homepage*: + +version | toolchain +--------|---------- +``0.6.2`` | ``intel/2022a`` 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..88d7541fd --- /dev/null +++ b/docs/version-specific/supported-software/c/CatMAP.md @@ -0,0 +1,10 @@ +# 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`` 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..3c2b4649e --- /dev/null +++ b/docs/version-specific/supported-software/c/Catch2.md @@ -0,0 +1,15 @@ +# 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`` 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..aa83137cf --- /dev/null +++ b/docs/version-specific/supported-software/c/Cbc.md @@ -0,0 +1,13 @@ +# 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`` 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..88cd347a5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellBender.md @@ -0,0 +1,12 @@ +# 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`` 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..e959ec8cc --- /dev/null +++ b/docs/version-specific/supported-software/c/CellChat.md @@ -0,0 +1,9 @@ +# CellChat + +" R toolkit for inference, visualization and analysis of cell-cell communication from single-cell data + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2022a`` 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..4eb4a1fd0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellMix.md @@ -0,0 +1,9 @@ +# CellMix + +A Comprehensive Toolbox for Gene Expression Deconvolution + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` 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..15a95837d --- /dev/null +++ b/docs/version-specific/supported-software/c/CellOracle.md @@ -0,0 +1,9 @@ +# 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`` 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..640441deb --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRanger-ARC.md @@ -0,0 +1,12 @@ +# 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`` 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..5b8baa577 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRanger-ATAC.md @@ -0,0 +1,11 @@ +# 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`` 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..600c5639d --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRanger.md @@ -0,0 +1,23 @@ +# 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`` 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..f02a42bda --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRank.md @@ -0,0 +1,10 @@ +# 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`` 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..fc093a6ef --- /dev/null +++ b/docs/version-specific/supported-software/c/CellTypist.md @@ -0,0 +1,10 @@ +# CellTypist + +A tool for semi-automatic cell type annotation + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2021b`` +``1.6.2`` | ``foss/2023a`` 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..41175f6ed --- /dev/null +++ b/docs/version-specific/supported-software/c/Cellpose.md @@ -0,0 +1,12 @@ +# 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`` 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..a27d72b51 --- /dev/null +++ b/docs/version-specific/supported-software/c/Centrifuge.md @@ -0,0 +1,13 @@ +# 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`` 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..46c921102 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cereal.md @@ -0,0 +1,11 @@ +# 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`` 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..2b9323ebe --- /dev/null +++ b/docs/version-specific/supported-software/c/Cgl.md @@ -0,0 +1,13 @@ +# 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`` 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..370634715 --- /dev/null +++ b/docs/version-specific/supported-software/c/ChIPseeker.md @@ -0,0 +1,9 @@ +# 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`` 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..09118fc0a --- /dev/null +++ b/docs/version-specific/supported-software/c/CharLS.md @@ -0,0 +1,17 @@ +# 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`` 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..7c55cb2c0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CheMPS2.md @@ -0,0 +1,22 @@ +# 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`` 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..3fab45c20 --- /dev/null +++ b/docs/version-specific/supported-software/c/Check.md @@ -0,0 +1,17 @@ +# 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`` 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..db61507b7 --- /dev/null +++ b/docs/version-specific/supported-software/c/CheckM-Database.md @@ -0,0 +1,9 @@ +# 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`` 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..6654a77b3 --- /dev/null +++ b/docs/version-specific/supported-software/c/CheckM.md @@ -0,0 +1,21 @@ +# 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`` 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..8b588fc9f --- /dev/null +++ b/docs/version-specific/supported-software/c/CheckM2.md @@ -0,0 +1,9 @@ +# CheckM2 + +Assessing the quality of metagenome-derived genome bins using machine learning + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2022b`` 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..cc39dc3ad --- /dev/null +++ b/docs/version-specific/supported-software/c/Cheetah.md @@ -0,0 +1,9 @@ +# 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`` 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..f05d3515a --- /dev/null +++ b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md @@ -0,0 +1,10 @@ +# 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`` 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..f99bf1eb8 --- /dev/null +++ b/docs/version-specific/supported-software/c/ChimPipe.md @@ -0,0 +1,10 @@ +# 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`` 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..f92a8aa5d --- /dev/null +++ b/docs/version-specific/supported-software/c/Chimera.md @@ -0,0 +1,10 @@ +# 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`` 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..fdc9a1b96 --- /dev/null +++ b/docs/version-specific/supported-software/c/Chromaprint.md @@ -0,0 +1,9 @@ +# 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`` 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..0d4159137 --- /dev/null +++ b/docs/version-specific/supported-software/c/Circlator.md @@ -0,0 +1,9 @@ +# Circlator + +A tool to circularize genome assemblies.s + +*homepage*: + +version | toolchain +--------|---------- +``1.5.5`` | ``foss/2023a`` 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..ca22e8024 --- /dev/null +++ b/docs/version-specific/supported-software/c/Circos.md @@ -0,0 +1,13 @@ +# 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`` 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..b40a2303a --- /dev/null +++ b/docs/version-specific/supported-software/c/Circuitscape.md @@ -0,0 +1,10 @@ +# 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`` 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..0107810a3 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clair3.md @@ -0,0 +1,9 @@ +# 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`` 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..493898d36 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clang-AOMP.md @@ -0,0 +1,9 @@ +# 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`` 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..93358948b --- /dev/null +++ b/docs/version-specific/supported-software/c/Clang-Python-bindings.md @@ -0,0 +1,13 @@ +# 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`` 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..bc5909d5f --- /dev/null +++ b/docs/version-specific/supported-software/c/Clang.md @@ -0,0 +1,51 @@ +# 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`` 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..4ed0035aa --- /dev/null +++ b/docs/version-specific/supported-software/c/Clarabel.rs.md @@ -0,0 +1,9 @@ +# Clarabel.rs + +Interior-point solver for convex conic optimisation problems in Rust. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.1`` | ``gfbf/2023a`` 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..b6597de75 --- /dev/null +++ b/docs/version-specific/supported-software/c/CliMetLab.md @@ -0,0 +1,9 @@ +# 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`` 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..8ccde425f --- /dev/null +++ b/docs/version-specific/supported-software/c/ClonalFrameML.md @@ -0,0 +1,9 @@ +# ClonalFrameML + +Efficient Inference of Recombination in Whole Bacterial Genomes + +*homepage*: + +version | toolchain +--------|---------- +``1.11`` | ``foss/2016b`` 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..507f370b9 --- /dev/null +++ b/docs/version-specific/supported-software/c/CloudCompare.md @@ -0,0 +1,9 @@ +# CloudCompare + +3D point cloud and mesh processing software + +*homepage*: + +version | toolchain +--------|---------- +``2.12.4`` | ``foss/2021b`` 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..4de40e950 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clp.md @@ -0,0 +1,14 @@ +# 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`` 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..c31e76a1a --- /dev/null +++ b/docs/version-specific/supported-software/c/Clustal-Omega.md @@ -0,0 +1,17 @@ +# 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`` 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..126d6a427 --- /dev/null +++ b/docs/version-specific/supported-software/c/ClustalW2.md @@ -0,0 +1,18 @@ +# 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`` 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..088e69531 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cluster-Buster.md @@ -0,0 +1,10 @@ +# Cluster-Buster + +Cluster-Buster: Finding dense clusters of motifs in DNA sequences + +*homepage*: + +version | toolchain +--------|---------- +``20160106`` | ``intel/2016a`` +``20200507`` | ``GCC/12.2.0`` 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..3f8e7e5ea --- /dev/null +++ b/docs/version-specific/supported-software/c/ClusterShell.md @@ -0,0 +1,9 @@ +# 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`` 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..337d169b9 --- /dev/null +++ b/docs/version-specific/supported-software/c/CmdStanR.md @@ -0,0 +1,11 @@ +# 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`` 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..4e2f95bb8 --- /dev/null +++ b/docs/version-specific/supported-software/c/Co-phylog.md @@ -0,0 +1,9 @@ +# 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`` 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..9e40fae7e --- /dev/null +++ b/docs/version-specific/supported-software/c/CoCoALib.md @@ -0,0 +1,12 @@ +# 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`` 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..fe1b1a572 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoSymLib.md @@ -0,0 +1,9 @@ +# 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`` 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..e529e0b4a --- /dev/null +++ b/docs/version-specific/supported-software/c/CodAn.md @@ -0,0 +1,9 @@ +# 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`` 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..5c8a4eba8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CodingQuarry.md @@ -0,0 +1,9 @@ +# CodingQuarry + +Highly accurate hidden Markov model gene prediction in fungal genomes using RNA-seq transcripts + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2021b`` 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..c205f5613 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cogent.md @@ -0,0 +1,9 @@ +# 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`` 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..e2a43c602 --- /dev/null +++ b/docs/version-specific/supported-software/c/Coin.md @@ -0,0 +1,10 @@ +# 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`` 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..135a68747 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoinUtils.md @@ -0,0 +1,15 @@ +# 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`` 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..ea5ed43f6 --- /dev/null +++ b/docs/version-specific/supported-software/c/ColabFold.md @@ -0,0 +1,10 @@ +# 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`` 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..da43227fe --- /dev/null +++ b/docs/version-specific/supported-software/c/Commet.md @@ -0,0 +1,9 @@ +# 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`` 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..f68b1afa5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CompareM.md @@ -0,0 +1,10 @@ +# CompareM + +A toolbox for comparative genomics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.23`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.1.2`` | | ``foss/2021b`` 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..18f02d5b6 --- /dev/null +++ b/docs/version-specific/supported-software/c/Compass.md @@ -0,0 +1,9 @@ +# Compass + +In-Silico Modeling of Metabolic Heterogeneity using Single-Cell Transcriptomes. + +*homepage*: + +version | toolchain +--------|---------- +``2024.04`` | ``foss/2021b`` 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..748433a80 --- /dev/null +++ b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md @@ -0,0 +1,10 @@ +# 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`` 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..703f11327 --- /dev/null +++ b/docs/version-specific/supported-software/c/Con3F.md @@ -0,0 +1,9 @@ +# 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`` 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..5e522a4e3 --- /dev/null +++ b/docs/version-specific/supported-software/c/Concorde.md @@ -0,0 +1,9 @@ +# 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`` 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..8866b5a92 --- /dev/null +++ b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md @@ -0,0 +1,12 @@ +# 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`` 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..2d7a6907a --- /dev/null +++ b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md @@ -0,0 +1,14 @@ +# 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`` 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..3096c82fb --- /dev/null +++ b/docs/version-specific/supported-software/c/Control-FREEC.md @@ -0,0 +1,11 @@ +# 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`` 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..7f26819d1 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoordgenLibs.md @@ -0,0 +1,15 @@ +# 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`` 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..e7a12ab68 --- /dev/null +++ b/docs/version-specific/supported-software/c/Coot.md @@ -0,0 +1,10 @@ +# 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`` 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..432fdd263 --- /dev/null +++ b/docs/version-specific/supported-software/c/CopyKAT.md @@ -0,0 +1,10 @@ +# 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`` 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..ef773bf5c --- /dev/null +++ b/docs/version-specific/supported-software/c/Coreutils.md @@ -0,0 +1,16 @@ +# 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`` 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..68b5022af --- /dev/null +++ b/docs/version-specific/supported-software/c/CppHeaderParser.md @@ -0,0 +1,9 @@ +# 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`` 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..4a15214ac --- /dev/null +++ b/docs/version-specific/supported-software/c/CppUnit.md @@ -0,0 +1,18 @@ +# 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`` 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..a206d2777 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayCCE.md @@ -0,0 +1,9 @@ +# CrayCCE + +Toolchain using Cray compiler wrapper, using PrgEnv-cray (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` 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..23307dc2b --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayGNU.md @@ -0,0 +1,9 @@ +# CrayGNU + +Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` 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..6c51d88a4 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayIntel.md @@ -0,0 +1,9 @@ +# CrayIntel + +Toolchain using Cray compiler wrapper, using PrgEnv-intel (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` 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..6f544bee9 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayPGI.md @@ -0,0 +1,9 @@ +# CrayPGI + +Toolchain using Cray compiler wrapper, PrgEnv-pgi compiler (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` 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..1f1a155fd --- /dev/null +++ b/docs/version-specific/supported-software/c/CrossMap.md @@ -0,0 +1,9 @@ +# 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`` 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..b18f62652 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrossTalkZ.md @@ -0,0 +1,9 @@ +# 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`` 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..f55936106 --- /dev/null +++ b/docs/version-specific/supported-software/c/Crumble.md @@ -0,0 +1,9 @@ +# Crumble + +Exploration of controlled loss of quality values for compressing CRAM files + +*homepage*: + +version | toolchain +--------|---------- +``0.8.3`` | ``GCC/11.2.0`` 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..05dcc052c --- /dev/null +++ b/docs/version-specific/supported-software/c/CryptoMiniSat.md @@ -0,0 +1,9 @@ +# CryptoMiniSat + +CryptoMiniSat is an advanced SAT solver + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` 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..38bc81b50 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrystFEL.md @@ -0,0 +1,10 @@ +# 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`` 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..2a6338fef --- /dev/null +++ b/docs/version-specific/supported-software/c/CuCLARK.md @@ -0,0 +1,9 @@ +# CuCLARK + +Metagenomic classifier for CUDA-enabled GPUs + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``fosscuda/2019b`` 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..af4f96d00 --- /dev/null +++ b/docs/version-specific/supported-software/c/CuPy.md @@ -0,0 +1,13 @@ +# 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`` 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..eab9da5d0 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cube.md @@ -0,0 +1,9 @@ +# 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`` 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..cb3083a02 --- /dev/null +++ b/docs/version-specific/supported-software/c/CubeGUI.md @@ -0,0 +1,13 @@ +# 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`` 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..f2ff80f1b --- /dev/null +++ b/docs/version-specific/supported-software/c/CubeLib.md @@ -0,0 +1,19 @@ +# 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`` 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..73daa36c6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CubeWriter.md @@ -0,0 +1,20 @@ +# 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`` 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..f3221b29b --- /dev/null +++ b/docs/version-specific/supported-software/c/Cufflinks.md @@ -0,0 +1,17 @@ +# 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`` 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..c103fcb1f --- /dev/null +++ b/docs/version-specific/supported-software/c/Cython.md @@ -0,0 +1,25 @@ +# 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`` 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..ad487e716 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cytoscape.md @@ -0,0 +1,9 @@ +# 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`` 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..02f873952 --- /dev/null +++ b/docs/version-specific/supported-software/c/c-ares.md @@ -0,0 +1,14 @@ +# 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`` 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..46590d78e --- /dev/null +++ b/docs/version-specific/supported-software/c/cDNA_Cupcake.md @@ -0,0 +1,11 @@ +# 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`` 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..878f0ac18 --- /dev/null +++ b/docs/version-specific/supported-software/c/cURL.md @@ -0,0 +1,45 @@ +# 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`` 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..3b5de1b5d --- /dev/null +++ b/docs/version-specific/supported-software/c/cadaver.md @@ -0,0 +1,9 @@ +# cadaver + +cadaver is a command-line WebDAV client for Unix. + +*homepage*: + +version | toolchain +--------|---------- +``0.23.3`` | ``intel/2017a`` 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..8ccbd0601 --- /dev/null +++ b/docs/version-specific/supported-software/c/cairo.md @@ -0,0 +1,30 @@ +# 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`` 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..e15534ee3 --- /dev/null +++ b/docs/version-specific/supported-software/c/cairomm.md @@ -0,0 +1,11 @@ +# 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`` 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..6b33b6c33 --- /dev/null +++ b/docs/version-specific/supported-software/c/canu.md @@ -0,0 +1,22 @@ +# 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`` 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..be039038b --- /dev/null +++ b/docs/version-specific/supported-software/c/captum.md @@ -0,0 +1,10 @@ +# 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`` 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..ca3c9578b --- /dev/null +++ b/docs/version-specific/supported-software/c/carputils.md @@ -0,0 +1,10 @@ +# 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`` 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..715f943fb --- /dev/null +++ b/docs/version-specific/supported-software/c/casacore.md @@ -0,0 +1,11 @@ +# 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`` 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..2b14b8475 --- /dev/null +++ b/docs/version-specific/supported-software/c/castor.md @@ -0,0 +1,9 @@ +# 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`` 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..dc4a63e7c --- /dev/null +++ b/docs/version-specific/supported-software/c/category_encoders.md @@ -0,0 +1,9 @@ +# 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`` 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..9805d3e62 --- /dev/null +++ b/docs/version-specific/supported-software/c/causallift.md @@ -0,0 +1,9 @@ +# 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`` 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..6f1bf14c3 --- /dev/null +++ b/docs/version-specific/supported-software/c/causalml.md @@ -0,0 +1,10 @@ +# 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`` 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..99721355d --- /dev/null +++ b/docs/version-specific/supported-software/c/ccache.md @@ -0,0 +1,22 @@ +# 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`` 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..234cfdc6e --- /dev/null +++ b/docs/version-specific/supported-software/c/cclib.md @@ -0,0 +1,13 @@ +# 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`` 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..3f691e2b2 --- /dev/null +++ b/docs/version-specific/supported-software/c/cctbx-base.md @@ -0,0 +1,10 @@ +# 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`` 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..38754d83c --- /dev/null +++ b/docs/version-specific/supported-software/c/cctools.md @@ -0,0 +1,9 @@ +# 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`` 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..139698bcd --- /dev/null +++ b/docs/version-specific/supported-software/c/cdbfasta.md @@ -0,0 +1,11 @@ +# 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`` 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..c6ba6d553 --- /dev/null +++ b/docs/version-specific/supported-software/c/cddlib.md @@ -0,0 +1,12 @@ +# 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`` 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..7510cbc1e --- /dev/null +++ b/docs/version-specific/supported-software/c/cdo-bindings.md @@ -0,0 +1,10 @@ +# cdo-bindings + +Python interface to CDO. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.7`` | ``foss/2021b`` +``1.6.0`` | ``foss/2022a`` 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..061875c2b --- /dev/null +++ b/docs/version-specific/supported-software/c/cdsapi.md @@ -0,0 +1,12 @@ +# 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`` 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..4b9329eb3 --- /dev/null +++ b/docs/version-specific/supported-software/c/cell2location.md @@ -0,0 +1,9 @@ +# cell2location + +Comprehensive mapping of tissue cell architecture via integrated single cell and spatial transcriptomics (cell2location model) + +*homepage*: + +version | toolchain +--------|---------- +``0.05-alpha`` | ``fosscuda/2020b`` 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..ea743f3ad --- /dev/null +++ b/docs/version-specific/supported-software/c/centerline.md @@ -0,0 +1,9 @@ +# 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`` 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..b524f1810 --- /dev/null +++ b/docs/version-specific/supported-software/c/cffi.md @@ -0,0 +1,12 @@ +# 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`` 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..cc952332c --- /dev/null +++ b/docs/version-specific/supported-software/c/cftime.md @@ -0,0 +1,13 @@ +# 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`` 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..9d46baa78 --- /dev/null +++ b/docs/version-specific/supported-software/c/cget.md @@ -0,0 +1,9 @@ +# 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`` 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..d54a09b9c --- /dev/null +++ b/docs/version-specific/supported-software/c/charm-gems.md @@ -0,0 +1,9 @@ +# 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`` 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..8c9d43b56 --- /dev/null +++ b/docs/version-specific/supported-software/c/chemprop.md @@ -0,0 +1,10 @@ +# 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`` 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..6936f6a99 --- /dev/null +++ b/docs/version-specific/supported-software/c/chewBBACA.md @@ -0,0 +1,9 @@ +# 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`` 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..eeea221a1 --- /dev/null +++ b/docs/version-specific/supported-software/c/chi2comb.md @@ -0,0 +1,9 @@ +# 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`` 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..b29d0359f --- /dev/null +++ b/docs/version-specific/supported-software/c/chromVARmotifs.md @@ -0,0 +1,9 @@ +# 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`` 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..5455dbaad --- /dev/null +++ b/docs/version-specific/supported-software/c/cicero.md @@ -0,0 +1,10 @@ +# 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`` 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..95c790d37 --- /dev/null +++ b/docs/version-specific/supported-software/c/cimfomfa.md @@ -0,0 +1,11 @@ +# 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`` 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..25f5b6dba --- /dev/null +++ b/docs/version-specific/supported-software/c/cisTEM.md @@ -0,0 +1,9 @@ +# 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`` 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..4a152b1b5 --- /dev/null +++ b/docs/version-specific/supported-software/c/cliquer.md @@ -0,0 +1,10 @@ +# 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`` 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..1ce4e3098 --- /dev/null +++ b/docs/version-specific/supported-software/c/cmocean.md @@ -0,0 +1,9 @@ +# 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`` 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..fba471b5b --- /dev/null +++ b/docs/version-specific/supported-software/c/cmph.md @@ -0,0 +1,9 @@ +# 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`` 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..250ba00a7 --- /dev/null +++ b/docs/version-specific/supported-software/c/code-cli.md @@ -0,0 +1,9 @@ +# 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`` 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..757325f7e --- /dev/null +++ b/docs/version-specific/supported-software/c/code-server.md @@ -0,0 +1,14 @@ +# 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`` 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..c54cb6657 --- /dev/null +++ b/docs/version-specific/supported-software/c/colossalai.md @@ -0,0 +1,9 @@ +# 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`` 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..9e94845c8 --- /dev/null +++ b/docs/version-specific/supported-software/c/conan.md @@ -0,0 +1,10 @@ +# 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`` 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..13ace09c6 --- /dev/null +++ b/docs/version-specific/supported-software/c/configparser.md @@ -0,0 +1,13 @@ +# 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`` 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..e1da10040 --- /dev/null +++ b/docs/version-specific/supported-software/c/configurable-http-proxy.md @@ -0,0 +1,16 @@ +# 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`` 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..afe040a06 --- /dev/null +++ b/docs/version-specific/supported-software/c/connected-components-3d.md @@ -0,0 +1,9 @@ +# 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`` 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..72cf53f24 --- /dev/null +++ b/docs/version-specific/supported-software/c/contextily.md @@ -0,0 +1,9 @@ +# 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`` 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..5988d4ebb --- /dev/null +++ b/docs/version-specific/supported-software/c/cooler.md @@ -0,0 +1,9 @@ +# 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`` 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..b42baa5c8 --- /dev/null +++ b/docs/version-specific/supported-software/c/core-counter.md @@ -0,0 +1,9 @@ +# core-counter + +Tool to check available cores and OMP threads + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``system`` 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..1015b48ab --- /dev/null +++ b/docs/version-specific/supported-software/c/corner.md @@ -0,0 +1,11 @@ +# 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`` 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..f46c04d30 --- /dev/null +++ b/docs/version-specific/supported-software/c/coverage.md @@ -0,0 +1,15 @@ +# 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`` 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..4508e3ebf --- /dev/null +++ b/docs/version-specific/supported-software/c/cowsay.md @@ -0,0 +1,9 @@ +# cowsay + +Configurable talking characters in ASCII art + +*homepage*: + +version | toolchain +--------|---------- +``3.04`` | ``system`` 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..4de58cb0d --- /dev/null +++ b/docs/version-specific/supported-software/c/cpio.md @@ -0,0 +1,13 @@ +# 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`` 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..465aa5aa2 --- /dev/null +++ b/docs/version-specific/supported-software/c/cppy.md @@ -0,0 +1,14 @@ +# 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`` 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..a48928d21 --- /dev/null +++ b/docs/version-specific/supported-software/c/cppyy.md @@ -0,0 +1,10 @@ +# 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`` 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..b0ff35cf4 --- /dev/null +++ b/docs/version-specific/supported-software/c/cppzmq.md @@ -0,0 +1,9 @@ +# cppzmq + +cppzmq is a C++ binding for libzmq. + +*homepage*: + +version | toolchain +--------|---------- +``4.9.0`` | ``system`` 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..8734d978c --- /dev/null +++ b/docs/version-specific/supported-software/c/cpu_features.md @@ -0,0 +1,9 @@ +# 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`` 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..374b825c6 --- /dev/null +++ b/docs/version-specific/supported-software/c/cram.md @@ -0,0 +1,9 @@ +# cram + +Cram is a functional testing framework for command line applications. + +*homepage*: + +version | toolchain +--------|---------- +``0.7`` | ``GCCcore/8.2.0`` 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..82d6ba6a9 --- /dev/null +++ b/docs/version-specific/supported-software/c/cramtools.md @@ -0,0 +1,10 @@ +# 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`` 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..0e33275c1 --- /dev/null +++ b/docs/version-specific/supported-software/c/crb-blast.md @@ -0,0 +1,12 @@ +# 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`` 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..8f3d967b7 --- /dev/null +++ b/docs/version-specific/supported-software/c/cromwell.md @@ -0,0 +1,9 @@ +# cromwell + +Cromwell is a Workflow Management System geared towards scientific workflows. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``56`` | ``-Java-11`` | ``system`` 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..80980ca7d --- /dev/null +++ b/docs/version-specific/supported-software/c/crossguid.md @@ -0,0 +1,10 @@ +# 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`` 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..10bc0cafb --- /dev/null +++ b/docs/version-specific/supported-software/c/cryoCARE.md @@ -0,0 +1,10 @@ +# 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`` 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..c35b67c08 --- /dev/null +++ b/docs/version-specific/supported-software/c/cryoDRGN.md @@ -0,0 +1,11 @@ +# 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`` 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..abe3ac060 --- /dev/null +++ b/docs/version-specific/supported-software/c/cryptography.md @@ -0,0 +1,10 @@ +# 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`` 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..5eb53145d --- /dev/null +++ b/docs/version-specific/supported-software/c/cscope.md @@ -0,0 +1,9 @@ +# cscope + +Cscope is a developer's tool for browsing source code. + +*homepage*: + +version | toolchain +--------|---------- +``15.9`` | ``system`` 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..3e43e7fd6 --- /dev/null +++ b/docs/version-specific/supported-software/c/csvkit.md @@ -0,0 +1,11 @@ +# 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`` 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..994621009 --- /dev/null +++ b/docs/version-specific/supported-software/c/ctags.md @@ -0,0 +1,9 @@ +# 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`` 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..412e75f49 --- /dev/null +++ b/docs/version-specific/supported-software/c/ctffind.md @@ -0,0 +1,19 @@ +# 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`` 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..814cdd6bf --- /dev/null +++ b/docs/version-specific/supported-software/c/ctffind5.md @@ -0,0 +1,9 @@ +# ctffind5 + +Program for finding CTFs of electron micrographs. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.2`` | ``foss/2023a`` 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..523d37134 --- /dev/null +++ b/docs/version-specific/supported-software/c/cuDNN.md @@ -0,0 +1,49 @@ +# 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`` 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..abfada078 --- /dev/null +++ b/docs/version-specific/supported-software/c/cuSPARSELt.md @@ -0,0 +1,10 @@ +# 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`` 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..432b24ae8 --- /dev/null +++ b/docs/version-specific/supported-software/c/cuTENSOR.md @@ -0,0 +1,16 @@ +# 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`` 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..2c3fbf946 --- /dev/null +++ b/docs/version-specific/supported-software/c/currentNe.md @@ -0,0 +1,9 @@ +# currentNe + +Estimation of current effective population using artificial neural networks. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/12.3.0`` 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..4ead77e04 --- /dev/null +++ b/docs/version-specific/supported-software/c/custodian.md @@ -0,0 +1,9 @@ +# custodian + +A simple JIT job management framework in Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` 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..4c9d05d7b --- /dev/null +++ b/docs/version-specific/supported-software/c/cutadapt.md @@ -0,0 +1,37 @@ +# 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`` 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..6c912a724 --- /dev/null +++ b/docs/version-specific/supported-software/c/cuteSV.md @@ -0,0 +1,9 @@ +# 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`` 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..e42f2d671 --- /dev/null +++ b/docs/version-specific/supported-software/c/cwltool.md @@ -0,0 +1,10 @@ +# cwltool + +Common workflow language (CWL) reference implementation. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.20221008225030`` | ``foss/2021a`` +``3.1.20221018083734`` | ``foss/2021a`` 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..8b0d0092c --- /dev/null +++ b/docs/version-specific/supported-software/c/cxxopts.md @@ -0,0 +1,9 @@ +# cxxopts + +cxxopts is a lightweight C++ command line option parser + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``system`` 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..8e7c181ba --- /dev/null +++ b/docs/version-specific/supported-software/c/cysignals.md @@ -0,0 +1,14 @@ +# 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`` 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..f45f4970d --- /dev/null +++ b/docs/version-specific/supported-software/c/cython-blis.md @@ -0,0 +1,9 @@ +# 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`` 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..c90ed7fa9 --- /dev/null +++ b/docs/version-specific/supported-software/c/cytoolz.md @@ -0,0 +1,10 @@ +# 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`` 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..c9362e00a --- /dev/null +++ b/docs/version-specific/supported-software/c/cytosim.md @@ -0,0 +1,9 @@ +# 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`` 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..63502e664 --- /dev/null +++ b/docs/version-specific/supported-software/c/cyvcf2.md @@ -0,0 +1,11 @@ +# 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`` 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..4ad1bc86b --- /dev/null +++ b/docs/version-specific/supported-software/c/index.md @@ -0,0 +1,271 @@ +# List of supported software (c) + + * [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) 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..8bac18135 --- /dev/null +++ b/docs/version-specific/supported-software/d/DALI.md @@ -0,0 +1,9 @@ +# 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`` 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..faf363da3 --- /dev/null +++ b/docs/version-specific/supported-software/d/DANPOS2.md @@ -0,0 +1,9 @@ +# 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`` 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..7dee75867 --- /dev/null +++ b/docs/version-specific/supported-software/d/DAS_Tool.md @@ -0,0 +1,11 @@ +# 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`` 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..f0cc85867 --- /dev/null +++ b/docs/version-specific/supported-software/d/DB.md @@ -0,0 +1,26 @@ +# 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`` 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..f24cd6a45 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBCSR.md @@ -0,0 +1,9 @@ +# 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`` 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..720d06899 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBD-mysql.md @@ -0,0 +1,20 @@ +# 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`` 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..6d8fc87fc --- /dev/null +++ b/docs/version-specific/supported-software/d/DBG2OLC.md @@ -0,0 +1,13 @@ +# 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`` 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..7eda9af97 --- /dev/null +++ b/docs/version-specific/supported-software/d/DB_File.md @@ -0,0 +1,16 @@ +# 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`` 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..a7a8132d2 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBus.md @@ -0,0 +1,26 @@ +# 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`` 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..34ae677bc --- /dev/null +++ b/docs/version-specific/supported-software/d/DCMTK.md @@ -0,0 +1,14 @@ +# 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`` 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..0d8fcd974 --- /dev/null +++ b/docs/version-specific/supported-software/d/DEICODE.md @@ -0,0 +1,9 @@ +# 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`` 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..f7f924cc4 --- /dev/null +++ b/docs/version-specific/supported-software/d/DETONATE.md @@ -0,0 +1,10 @@ +# 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`` 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..03cbf4f9d --- /dev/null +++ b/docs/version-specific/supported-software/d/DFA.md @@ -0,0 +1,10 @@ +# 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`` 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..59098ef7f --- /dev/null +++ b/docs/version-specific/supported-software/d/DFT-D3.md @@ -0,0 +1,14 @@ +# 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`` 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..73178fdea --- /dev/null +++ b/docs/version-specific/supported-software/d/DFT-D4.md @@ -0,0 +1,10 @@ +# 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`` 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..97c581246 --- /dev/null +++ b/docs/version-specific/supported-software/d/DFTB+.md @@ -0,0 +1,13 @@ +# 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`` 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..05162c95f --- /dev/null +++ b/docs/version-specific/supported-software/d/DGL.md @@ -0,0 +1,10 @@ +# 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`` 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..3cd2e3abd --- /dev/null +++ b/docs/version-specific/supported-software/d/DIA-NN.md @@ -0,0 +1,9 @@ +# DIA-NN + +DIA-NN is a universal software for data-independent acquisition (DIA) proteomics data processing. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.1`` | ``system`` 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..c0ca7db89 --- /dev/null +++ b/docs/version-specific/supported-software/d/DIAL.md @@ -0,0 +1,9 @@ +# 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`` 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..628c464b8 --- /dev/null +++ b/docs/version-specific/supported-software/d/DIALOGUE.md @@ -0,0 +1,9 @@ +# 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`` 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..59392c96f --- /dev/null +++ b/docs/version-specific/supported-software/d/DIAMOND.md @@ -0,0 +1,27 @@ +# 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`` 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..ecf6db7db --- /dev/null +++ b/docs/version-specific/supported-software/d/DIRAC.md @@ -0,0 +1,21 @@ +# 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`` 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..ec9d76d64 --- /dev/null +++ b/docs/version-specific/supported-software/d/DLPack.md @@ -0,0 +1,10 @@ +# 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`` 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..fc276a7f2 --- /dev/null +++ b/docs/version-specific/supported-software/d/DL_POLY_4.md @@ -0,0 +1,12 @@ +# 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`` 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..d6cea0397 --- /dev/null +++ b/docs/version-specific/supported-software/d/DL_POLY_Classic.md @@ -0,0 +1,12 @@ +# 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`` 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..24288fb09 --- /dev/null +++ b/docs/version-specific/supported-software/d/DMCfun.md @@ -0,0 +1,9 @@ +# DMCfun + +Diffusion Model of Conflict (DMC) in Reaction Time Tasks + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.0`` | ``-R-3.6.2`` | ``foss/2019b`` 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..6bb3b740a --- /dev/null +++ b/docs/version-specific/supported-software/d/DMLC-Core.md @@ -0,0 +1,10 @@ +# 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`` 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..95b61a077 --- /dev/null +++ b/docs/version-specific/supported-software/d/DMTCP.md @@ -0,0 +1,17 @@ +# 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`` 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..7102bab43 --- /dev/null +++ b/docs/version-specific/supported-software/d/DOLFIN.md @@ -0,0 +1,10 @@ +# 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`` 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..336e7227e --- /dev/null +++ b/docs/version-specific/supported-software/d/DP3.md @@ -0,0 +1,10 @@ +# DP3 + +DP3: streaming processing pipeline for radio interferometric data. + +*homepage*: + +version | toolchain +--------|---------- +``6.0`` | ``foss/2022a`` +``6.0`` | ``foss/2023b`` 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..134bd4dce --- /dev/null +++ b/docs/version-specific/supported-software/d/DRAGMAP.md @@ -0,0 +1,9 @@ +# DRAGMAP + +Dragmap is the Dragen mapper/aligner Open Source Software. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``foss/2021b`` 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..77539b13b --- /dev/null +++ b/docs/version-specific/supported-software/d/DROP.md @@ -0,0 +1,11 @@ +# 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`` 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..38bee8065 --- /dev/null +++ b/docs/version-specific/supported-software/d/DSA.md @@ -0,0 +1,9 @@ +# DSA + +Digital Sorting Algorithm + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-R-3.5.1`` | ``foss/2018b`` 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..4a08cb984 --- /dev/null +++ b/docs/version-specific/supported-software/d/DSRC.md @@ -0,0 +1,9 @@ +# 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`` 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..6b0047079 --- /dev/null +++ b/docs/version-specific/supported-software/d/DUBStepR.md @@ -0,0 +1,9 @@ +# 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`` 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..c5fbce71a --- /dev/null +++ b/docs/version-specific/supported-software/d/Dakota.md @@ -0,0 +1,9 @@ +# 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`` 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..ff1c191a3 --- /dev/null +++ b/docs/version-specific/supported-software/d/DaliLite.md @@ -0,0 +1,9 @@ +# 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`` 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..c18085afe --- /dev/null +++ b/docs/version-specific/supported-software/d/Dalton.md @@ -0,0 +1,11 @@ +# 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`` 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..09ae15cdb --- /dev/null +++ b/docs/version-specific/supported-software/d/DeMixT.md @@ -0,0 +1,9 @@ +# 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`` 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..8824f6d10 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeconICA.md @@ -0,0 +1,9 @@ +# 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`` 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..e972c6b46 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepLabCut.md @@ -0,0 +1,11 @@ +# 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`` 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..fab2a1f26 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepLoc.md @@ -0,0 +1,9 @@ +# DeepLoc + +DeepLoc 2.0 predicts the subcellular localization(s) of eukaryotic proteins + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2022b`` 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..3d727947d --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepMod2.md @@ -0,0 +1,9 @@ +# DeepMod2 + +DeepMod2 is a computational tool for detecting DNA methylation and modifications from Oxford Nanopore reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.1`` | ``foss/2021a`` 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..04681a0f8 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepSurv.md @@ -0,0 +1,9 @@ +# DeepSurv + +DeepSurv is a deep learning approach to survival analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0-20180922`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` 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..74670d3a2 --- /dev/null +++ b/docs/version-specific/supported-software/d/Delft3D.md @@ -0,0 +1,9 @@ +# 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`` 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..209eeeee5 --- /dev/null +++ b/docs/version-specific/supported-software/d/Delly.md @@ -0,0 +1,12 @@ +# 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`` 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..2ec362ddc --- /dev/null +++ b/docs/version-specific/supported-software/d/DeltaLake.md @@ -0,0 +1,9 @@ +# 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`` 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..ac01edfbd --- /dev/null +++ b/docs/version-specific/supported-software/d/Demystify.md @@ -0,0 +1,9 @@ +# 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`` 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..3a30dd83b --- /dev/null +++ b/docs/version-specific/supported-software/d/DendroPy.md @@ -0,0 +1,20 @@ +# 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`` 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..cbe6d3509 --- /dev/null +++ b/docs/version-specific/supported-software/d/DensPart.md @@ -0,0 +1,9 @@ +# DensPart + +Atoms-in-molecules density partitioning schemes based on stockholder recipe + +*homepage*: + +version | toolchain +--------|---------- +``20220603`` | ``intel/2022a`` 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..33c28444e --- /dev/null +++ b/docs/version-specific/supported-software/d/Deprecated.md @@ -0,0 +1,11 @@ +# 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`` 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..df8268b64 --- /dev/null +++ b/docs/version-specific/supported-software/d/Detectron2.md @@ -0,0 +1,10 @@ +# 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`` 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..62da8a7d2 --- /dev/null +++ b/docs/version-specific/supported-software/d/Devito.md @@ -0,0 +1,9 @@ +# 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`` 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..698620678 --- /dev/null +++ b/docs/version-specific/supported-software/d/DiCE-ML.md @@ -0,0 +1,9 @@ +# DiCE-ML + +Diverse Counterfactual Explanations (DiCE) for ML + +*homepage*: + +version | toolchain +--------|---------- +``0.9`` | ``foss/2022a`` 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..37ea075bf --- /dev/null +++ b/docs/version-specific/supported-software/d/Dice.md @@ -0,0 +1,10 @@ +# 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`` 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..e5fb8a07d --- /dev/null +++ b/docs/version-specific/supported-software/d/DicomBrowser.md @@ -0,0 +1,9 @@ +# 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`` 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..857fbc569 --- /dev/null +++ b/docs/version-specific/supported-software/d/DiffBind.md @@ -0,0 +1,9 @@ +# 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`` 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..580a93af1 --- /dev/null +++ b/docs/version-specific/supported-software/d/Diffutils.md @@ -0,0 +1,9 @@ +# Diffutils + +Diffutils: GNU diff utilities - find the differences between files + +*homepage*: + +version | toolchain +--------|---------- +``3.3`` | ``GCC/4.8.2`` 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..5588c1a32 --- /dev/null +++ b/docs/version-specific/supported-software/d/DistributedStream.md @@ -0,0 +1,9 @@ +# 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`` 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..517040b07 --- /dev/null +++ b/docs/version-specific/supported-software/d/DjVuLibre.md @@ -0,0 +1,9 @@ +# 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`` 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..da906bde6 --- /dev/null +++ b/docs/version-specific/supported-software/d/Doris.md @@ -0,0 +1,12 @@ +# 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`` 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..5a06090fa --- /dev/null +++ b/docs/version-specific/supported-software/d/DosageConvertor.md @@ -0,0 +1,9 @@ +# 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`` 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..65c298b09 --- /dev/null +++ b/docs/version-specific/supported-software/d/DoubletFinder.md @@ -0,0 +1,11 @@ +# 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`` 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..f9ee5d3f7 --- /dev/null +++ b/docs/version-specific/supported-software/d/Doxygen.md @@ -0,0 +1,36 @@ +# 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`` 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..53dae00f1 --- /dev/null +++ b/docs/version-specific/supported-software/d/Drake.md @@ -0,0 +1,9 @@ +# 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`` 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..f25ba5974 --- /dev/null +++ b/docs/version-specific/supported-software/d/Dsuite.md @@ -0,0 +1,11 @@ +# 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`` 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..4d6d6e238 --- /dev/null +++ b/docs/version-specific/supported-software/d/DualSPHysics.md @@ -0,0 +1,10 @@ +# 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`` 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..36acabb2e --- /dev/null +++ b/docs/version-specific/supported-software/d/DyMat.md @@ -0,0 +1,9 @@ +# DyMat + +Read and process result files from Dymola and OpenModelica with Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7`` | ``-2020-12-12`` | ``foss/2021b`` 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..5d677903e --- /dev/null +++ b/docs/version-specific/supported-software/d/dRep.md @@ -0,0 +1,10 @@ +# 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`` 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..d12383be9 --- /dev/null +++ b/docs/version-specific/supported-software/d/dSFMT.md @@ -0,0 +1,9 @@ +# dSFMT + +Double precision SIMD-oriented Fast Mersenne Twister. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.5`` | ``GCCcore/10.2.0`` 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..855fcf677 --- /dev/null +++ b/docs/version-specific/supported-software/d/dadi.md @@ -0,0 +1,9 @@ +# 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`` 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..ff447cee4 --- /dev/null +++ b/docs/version-specific/supported-software/d/dagitty.md @@ -0,0 +1,9 @@ +# 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`` 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..36cf6d9f8 --- /dev/null +++ b/docs/version-specific/supported-software/d/damageproto.md @@ -0,0 +1,10 @@ +# damageproto + +X protocol and ancillary headers for xinerama + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2016a`` +``1.2.1`` | ``intel/2016a`` 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..05073bd86 --- /dev/null +++ b/docs/version-specific/supported-software/d/dammit.md @@ -0,0 +1,9 @@ +# 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`` 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..9dd501baf --- /dev/null +++ b/docs/version-specific/supported-software/d/dask-labextension.md @@ -0,0 +1,11 @@ +# 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`` 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..1d61b3d3c --- /dev/null +++ b/docs/version-specific/supported-software/d/dask.md @@ -0,0 +1,48 @@ +# 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`` 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..7a87f50b5 --- /dev/null +++ b/docs/version-specific/supported-software/d/datalad.md @@ -0,0 +1,10 @@ +# 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`` 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..721ffe593 --- /dev/null +++ b/docs/version-specific/supported-software/d/datamash.md @@ -0,0 +1,13 @@ +# 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`` 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..a3a934762 --- /dev/null +++ b/docs/version-specific/supported-software/d/davix.md @@ -0,0 +1,10 @@ +# 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`` 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..cd77f012f --- /dev/null +++ b/docs/version-specific/supported-software/d/dbus-glib.md @@ -0,0 +1,19 @@ +# 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`` 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..4cc90b355 --- /dev/null +++ b/docs/version-specific/supported-software/d/dclone.md @@ -0,0 +1,9 @@ +# 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`` 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..4a389f6a5 --- /dev/null +++ b/docs/version-specific/supported-software/d/dcm2niix.md @@ -0,0 +1,17 @@ +# 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`` 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..cb05a213a --- /dev/null +++ b/docs/version-specific/supported-software/d/dd.md @@ -0,0 +1,9 @@ +# 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`` 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..e21aebf4c --- /dev/null +++ b/docs/version-specific/supported-software/d/deal.II.md @@ -0,0 +1,12 @@ +# 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`` 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..fe10370e4 --- /dev/null +++ b/docs/version-specific/supported-software/d/deap.md @@ -0,0 +1,9 @@ +# 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`` 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..073ff77af --- /dev/null +++ b/docs/version-specific/supported-software/d/decona.md @@ -0,0 +1,9 @@ +# 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`` 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..bd792b90f --- /dev/null +++ b/docs/version-specific/supported-software/d/deconf.md @@ -0,0 +1,9 @@ +# deconf + +decomposition (deconfounding) of OMICS datasets in heterogeneous tissues + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` 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..44dc8d5e4 --- /dev/null +++ b/docs/version-specific/supported-software/d/deepTools.md @@ -0,0 +1,15 @@ +# 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`` 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..3aa83b1fe --- /dev/null +++ b/docs/version-specific/supported-software/d/deepdiff.md @@ -0,0 +1,17 @@ +# 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`` 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..1c356929e --- /dev/null +++ b/docs/version-specific/supported-software/d/deepfold.md @@ -0,0 +1,9 @@ +# 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`` 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..c86a07a84 --- /dev/null +++ b/docs/version-specific/supported-software/d/deepmedic.md @@ -0,0 +1,10 @@ +# 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`` 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..e6d9b2467 --- /dev/null +++ b/docs/version-specific/supported-software/d/denseweight.md @@ -0,0 +1,10 @@ +# 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`` 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..90d9b2011 --- /dev/null +++ b/docs/version-specific/supported-software/d/desktop-file-utils.md @@ -0,0 +1,9 @@ +# 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`` 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..5828ddb4a --- /dev/null +++ b/docs/version-specific/supported-software/d/destiny.md @@ -0,0 +1,9 @@ +# destiny + +R packages to create and plot diffusion maps. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.6`` | ``-R-3.4.0`` | ``intel/2017a`` 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..c2c5efa45 --- /dev/null +++ b/docs/version-specific/supported-software/d/devbio-napari.md @@ -0,0 +1,10 @@ +# 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`` 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..b302ec51c --- /dev/null +++ b/docs/version-specific/supported-software/d/dftd3-lib.md @@ -0,0 +1,10 @@ +# 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`` 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..bb75c03c4 --- /dev/null +++ b/docs/version-specific/supported-software/d/dftd4.md @@ -0,0 +1,10 @@ +# dftd4 + +Generally Applicable Atomic-Charge Dependent London Dispersion Correction. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.0`` | ``gfbf/2022b`` +``3.4.0`` | ``iimkl/2022b`` 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..bfbc28a26 --- /dev/null +++ b/docs/version-specific/supported-software/d/dialog.md @@ -0,0 +1,9 @@ +# dialog + +A utility for creating TTY dialog boxes + +*homepage*: + +version | toolchain +--------|---------- +``1.3-20231002`` | ``GCCcore/10.3.0`` 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..5e8d8d31c --- /dev/null +++ b/docs/version-specific/supported-software/d/dicom2nifti.md @@ -0,0 +1,11 @@ +# 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`` 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..c0d3623ae --- /dev/null +++ b/docs/version-specific/supported-software/d/dijitso.md @@ -0,0 +1,9 @@ +# 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`` 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..5b0803f8e --- /dev/null +++ b/docs/version-specific/supported-software/d/dill.md @@ -0,0 +1,16 @@ +# 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`` 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..39fb1ff01 --- /dev/null +++ b/docs/version-specific/supported-software/d/distributed.md @@ -0,0 +1,11 @@ +# 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`` 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..7aa1d7fdb --- /dev/null +++ b/docs/version-specific/supported-software/d/dlb.md @@ -0,0 +1,14 @@ +# 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`` 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..047d9563b --- /dev/null +++ b/docs/version-specific/supported-software/d/dlib.md @@ -0,0 +1,10 @@ +# 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`` 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..a06378619 --- /dev/null +++ b/docs/version-specific/supported-software/d/dm-haiku.md @@ -0,0 +1,11 @@ +# 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`` 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..889df94b4 --- /dev/null +++ b/docs/version-specific/supported-software/d/dm-reverb.md @@ -0,0 +1,10 @@ +# 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`` 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..3624677be --- /dev/null +++ b/docs/version-specific/supported-software/d/dm-tree.md @@ -0,0 +1,14 @@ +# 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`` 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..d0768e613 --- /dev/null +++ b/docs/version-specific/supported-software/d/dominate.md @@ -0,0 +1,9 @@ +# 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`` 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..b6021b77e --- /dev/null +++ b/docs/version-specific/supported-software/d/dorado.md @@ -0,0 +1,13 @@ +# 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`` 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..33c692b6e --- /dev/null +++ b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md @@ -0,0 +1,11 @@ +# 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`` 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..c9be1ff3a --- /dev/null +++ b/docs/version-specific/supported-software/d/dotNET-Core.md @@ -0,0 +1,12 @@ +# 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`` 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..fe62e9298 --- /dev/null +++ b/docs/version-specific/supported-software/d/dotNET-SDK.md @@ -0,0 +1,10 @@ +# 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`` 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..4af796ad5 --- /dev/null +++ b/docs/version-specific/supported-software/d/double-conversion.md @@ -0,0 +1,19 @@ +# 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`` 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..09d3dbb2c --- /dev/null +++ b/docs/version-specific/supported-software/d/drmaa-python.md @@ -0,0 +1,9 @@ +# drmaa-python + +Distributed Resource Management Application API (DRMAA) bindings for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.9`` | ``-slurm`` | ``GCCcore/12.2.0`` 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..d4e166512 --- /dev/null +++ b/docs/version-specific/supported-software/d/dropEst.md @@ -0,0 +1,9 @@ +# 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`` 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..73e4f6025 --- /dev/null +++ b/docs/version-specific/supported-software/d/dtcmp.md @@ -0,0 +1,15 @@ +# 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`` 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..9320f0051 --- /dev/null +++ b/docs/version-specific/supported-software/d/dtcwt.md @@ -0,0 +1,10 @@ +# 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`` 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..db05dbb4d --- /dev/null +++ b/docs/version-specific/supported-software/d/dune-core.md @@ -0,0 +1,9 @@ +# 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`` 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..9482bfeb5 --- /dev/null +++ b/docs/version-specific/supported-software/d/dune-fem.md @@ -0,0 +1,9 @@ +# 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`` 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..44b368a05 --- /dev/null +++ b/docs/version-specific/supported-software/d/duplex-tools.md @@ -0,0 +1,10 @@ +# 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`` 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..db02b9cc2 --- /dev/null +++ b/docs/version-specific/supported-software/d/dx-toolkit.md @@ -0,0 +1,9 @@ +# 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`` 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..d2f6cec44 --- /dev/null +++ b/docs/version-specific/supported-software/d/dxpy.md @@ -0,0 +1,10 @@ +# 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`` 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..78d1bfaac --- /dev/null +++ b/docs/version-specific/supported-software/d/dynesty.md @@ -0,0 +1,9 @@ +# 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`` 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..f28d681ad --- /dev/null +++ b/docs/version-specific/supported-software/d/index.md @@ -0,0 +1,125 @@ +# List of supported software (d) + + * [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) 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..b6d7038ba --- /dev/null +++ b/docs/version-specific/supported-software/e/E-ANTIC.md @@ -0,0 +1,12 @@ +# 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`` 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..a27cebf56 --- /dev/null +++ b/docs/version-specific/supported-software/e/ECL.md @@ -0,0 +1,10 @@ +# 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`` 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..4f039f774 --- /dev/null +++ b/docs/version-specific/supported-software/e/ED2.md @@ -0,0 +1,10 @@ +# 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`` 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..50cbcaa39 --- /dev/null +++ b/docs/version-specific/supported-software/e/EDirect.md @@ -0,0 +1,11 @@ +# 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`` 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..a71aa08da --- /dev/null +++ b/docs/version-specific/supported-software/e/EGTtools.md @@ -0,0 +1,10 @@ +# 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`` 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..76999839a --- /dev/null +++ b/docs/version-specific/supported-software/e/EIGENSOFT.md @@ -0,0 +1,17 @@ +# 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`` 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..f6ae53414 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELFIO.md @@ -0,0 +1,9 @@ +# 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`` 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..3504940ff --- /dev/null +++ b/docs/version-specific/supported-software/e/ELPA.md @@ -0,0 +1,49 @@ +# 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`` 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..fd9dd8127 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELPH.md @@ -0,0 +1,9 @@ +# 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`` 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..497d0df5f --- /dev/null +++ b/docs/version-specific/supported-software/e/ELSI-RCI.md @@ -0,0 +1,14 @@ +# 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`` 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..7a5bc8fb4 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELSI.md @@ -0,0 +1,16 @@ +# 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`` 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..fcdf5d48f --- /dev/null +++ b/docs/version-specific/supported-software/e/EMAN2.md @@ -0,0 +1,12 @@ +# 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`` 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..676b88ead --- /dev/null +++ b/docs/version-specific/supported-software/e/EMBOSS.md @@ -0,0 +1,19 @@ +# 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`` 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..830b33471 --- /dev/null +++ b/docs/version-specific/supported-software/e/EMU.md @@ -0,0 +1,9 @@ +# 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`` 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..9237fc54a --- /dev/null +++ b/docs/version-specific/supported-software/e/EPD.md @@ -0,0 +1,9 @@ +# 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`` 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..7212bc60a --- /dev/null +++ b/docs/version-specific/supported-software/e/EPIC.md @@ -0,0 +1,9 @@ +# 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`` 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..30447826e --- /dev/null +++ b/docs/version-specific/supported-software/e/ESL-Bundle.md @@ -0,0 +1,10 @@ +# 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`` 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..c3a96f74d --- /dev/null +++ b/docs/version-specific/supported-software/e/ESM-2.md @@ -0,0 +1,12 @@ +# 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`` 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..d6eb20ef0 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESMF.md @@ -0,0 +1,30 @@ +# 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`` 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..a1fef9276 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESMPy.md @@ -0,0 +1,11 @@ +# 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`` 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..80b4523ef --- /dev/null +++ b/docs/version-specific/supported-software/e/ESMValTool.md @@ -0,0 +1,9 @@ +# 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`` 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..bb0a2a330 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESPResSo.md @@ -0,0 +1,14 @@ +# 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`` 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..a0ec47dc4 --- /dev/null +++ b/docs/version-specific/supported-software/e/ETE.md @@ -0,0 +1,17 @@ +# 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`` 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..b8753c1a4 --- /dev/null +++ b/docs/version-specific/supported-software/e/ETSF_IO.md @@ -0,0 +1,14 @@ +# 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`` 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..897a7db01 --- /dev/null +++ b/docs/version-specific/supported-software/e/EUKulele.md @@ -0,0 +1,9 @@ +# EUKulele + +Formalizing environmental eukaryotic taxonomic assignment + +*homepage*: + +version | toolchain +--------|---------- +``2.0.6`` | ``foss/2022a`` 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..ffa7f533f --- /dev/null +++ b/docs/version-specific/supported-software/e/EVcouplings.md @@ -0,0 +1,9 @@ +# EVcouplings + +Predict protein structure, function and mutations using evolutionary sequence covariation. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``foss/2023a`` 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..3d020e029 --- /dev/null +++ b/docs/version-specific/supported-software/e/EZC3D.md @@ -0,0 +1,9 @@ +# 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`` 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..47cd9bb77 --- /dev/null +++ b/docs/version-specific/supported-software/e/EasyBuild.md @@ -0,0 +1,109 @@ +# 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`` 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..b0ee8479c --- /dev/null +++ b/docs/version-specific/supported-software/e/EasyMocap.md @@ -0,0 +1,10 @@ +# 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`` 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..db2fb8e6a --- /dev/null +++ b/docs/version-specific/supported-software/e/EasyQC.md @@ -0,0 +1,9 @@ +# 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`` 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..a14089b08 --- /dev/null +++ b/docs/version-specific/supported-software/e/EggLib.md @@ -0,0 +1,10 @@ +# 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`` 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..866c94648 --- /dev/null +++ b/docs/version-specific/supported-software/e/Eigen.md @@ -0,0 +1,39 @@ +# 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`` 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..58372193d --- /dev/null +++ b/docs/version-specific/supported-software/e/EigenExa.md @@ -0,0 +1,9 @@ +# EigenExa + +EigenExa, a part of KMATHLIB, is a high performance eigen-solver. + +*homepage*: + +version | toolchain +--------|---------- +``2.11`` | ``intel/2020b`` 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..179490050 --- /dev/null +++ b/docs/version-specific/supported-software/e/Elk.md @@ -0,0 +1,14 @@ +# 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`` 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..583635af1 --- /dev/null +++ b/docs/version-specific/supported-software/e/Elmer.md @@ -0,0 +1,9 @@ +# 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`` 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..5c3cf443b --- /dev/null +++ b/docs/version-specific/supported-software/e/Emacs.md @@ -0,0 +1,22 @@ +# 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`` 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..de59f05bd --- /dev/null +++ b/docs/version-specific/supported-software/e/Embree.md @@ -0,0 +1,10 @@ +# 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`` 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..d97fc74c3 --- /dev/null +++ b/docs/version-specific/supported-software/e/EnergyPlus.md @@ -0,0 +1,9 @@ +# 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`` 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..1c7170889 --- /dev/null +++ b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md @@ -0,0 +1,9 @@ +# EnsEMBLCoreAPI + +The Ensembl Core Perl API and SQL schema + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``96.0-r20190601`` | ``-Perl-5.28.1`` | ``foss/2019a`` 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..afaaf8030 --- /dev/null +++ b/docs/version-specific/supported-software/e/EpiSCORE.md @@ -0,0 +1,9 @@ +# 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`` 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..c9030ebac --- /dev/null +++ b/docs/version-specific/supported-software/e/EricScript.md @@ -0,0 +1,9 @@ +# 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`` 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..68ac9a586 --- /dev/null +++ b/docs/version-specific/supported-software/e/Essentia.md @@ -0,0 +1,9 @@ +# 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`` 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..84225b2c7 --- /dev/null +++ b/docs/version-specific/supported-software/e/Evcxr-REPL.md @@ -0,0 +1,9 @@ +# 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`` 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..856eb1aae --- /dev/null +++ b/docs/version-specific/supported-software/e/EveryBeam.md @@ -0,0 +1,10 @@ +# 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`` 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..eb3f8ded5 --- /dev/null +++ b/docs/version-specific/supported-software/e/EvidentialGene.md @@ -0,0 +1,10 @@ +# 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`` 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..624f622a3 --- /dev/null +++ b/docs/version-specific/supported-software/e/ExaBayes.md @@ -0,0 +1,9 @@ +# 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`` 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..7da6767fd --- /dev/null +++ b/docs/version-specific/supported-software/e/ExaML.md @@ -0,0 +1,9 @@ +# ExaML + +Exascale Maximum Likelihood (ExaML) code for phylogenetic inference using MPI + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.22`` | ``-hybrid-avx`` | ``gompi/2021a`` 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..21ddb2e28 --- /dev/null +++ b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md @@ -0,0 +1,9 @@ +# 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`` 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..956f5fb5d --- /dev/null +++ b/docs/version-specific/supported-software/e/ExifTool.md @@ -0,0 +1,9 @@ +# ExifTool + +Perl module (Image::ExifTool) and program (exiftool) to read EXIF information from images + +*homepage*: + +version | toolchain +--------|---------- +``12.00`` | ``GCCcore/9.3.0`` 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..2d13682d7 --- /dev/null +++ b/docs/version-specific/supported-software/e/Exonerate.md @@ -0,0 +1,21 @@ +# 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`` 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..ae9572830 --- /dev/null +++ b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md @@ -0,0 +1,9 @@ +# ExpressBetaDiversity + +Taxon- and phylogenetic-based beta diversity measures. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.10`` | ``GCC/12.3.0`` 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..597b13c41 --- /dev/null +++ b/docs/version-specific/supported-software/e/Extrae.md @@ -0,0 +1,13 @@ +# 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`` 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..5fdf7c1e7 --- /dev/null +++ b/docs/version-specific/supported-software/e/ExtremeLy.md @@ -0,0 +1,9 @@ +# ExtremeLy + +A python package for Extreme Value Analysis. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``foss/2022a`` 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..a4a869c25 --- /dev/null +++ b/docs/version-specific/supported-software/e/e3nn.md @@ -0,0 +1,12 @@ +# 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`` 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..241a600fa --- /dev/null +++ b/docs/version-specific/supported-software/e/eQuilibrator.md @@ -0,0 +1,9 @@ +# eQuilibrator + +Calculation of standard thermodynamic potentials of biochemical reactions. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.7`` | ``foss/2021a`` 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..dc8a40c3b --- /dev/null +++ b/docs/version-specific/supported-software/e/eSpeak-NG.md @@ -0,0 +1,10 @@ +# 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`` 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..0bc9542e6 --- /dev/null +++ b/docs/version-specific/supported-software/e/eXpress.md @@ -0,0 +1,9 @@ +# eXpress + +Streaming quantification for high-throughput sequencing + +*homepage*: + +version | toolchain +--------|---------- +``1.5.1`` | ``intel/2017b`` 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..d862f07fa --- /dev/null +++ b/docs/version-specific/supported-software/e/ea-utils.md @@ -0,0 +1,11 @@ +# 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`` 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..d386a7f4a --- /dev/null +++ b/docs/version-specific/supported-software/e/earthengine-api.md @@ -0,0 +1,9 @@ +# 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`` 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..9890700e0 --- /dev/null +++ b/docs/version-specific/supported-software/e/easel.md @@ -0,0 +1,9 @@ +# easel + +Easel supports computational analysis of biological sequences using probabilistic models. + +*homepage*: + +version | toolchain +--------|---------- +``0.48`` | ``GCC/12.2.0`` 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..c92a9fb9c --- /dev/null +++ b/docs/version-specific/supported-software/e/ebGSEA.md @@ -0,0 +1,9 @@ +# 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`` 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..4f65546d1 --- /dev/null +++ b/docs/version-specific/supported-software/e/ecBuild.md @@ -0,0 +1,10 @@ +# 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`` 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..aee20d331 --- /dev/null +++ b/docs/version-specific/supported-software/e/ecCodes.md @@ -0,0 +1,27 @@ +# 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`` 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..7930695b6 --- /dev/null +++ b/docs/version-specific/supported-software/e/ecFlow.md @@ -0,0 +1,9 @@ +# 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`` 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..cd8dba9bf --- /dev/null +++ b/docs/version-specific/supported-software/e/eccodes-python.md @@ -0,0 +1,11 @@ +# 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`` 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..ad7b7edf7 --- /dev/null +++ b/docs/version-specific/supported-software/e/eclib.md @@ -0,0 +1,10 @@ +# 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`` 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..51ff02d91 --- /dev/null +++ b/docs/version-specific/supported-software/e/edlib.md @@ -0,0 +1,18 @@ +# 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`` 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..c57495ab2 --- /dev/null +++ b/docs/version-specific/supported-software/e/eggnog-mapper.md @@ -0,0 +1,13 @@ +# 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`` 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..c3123dbe8 --- /dev/null +++ b/docs/version-specific/supported-software/e/eht-imaging.md @@ -0,0 +1,9 @@ +# 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`` 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..461283f4e --- /dev/null +++ b/docs/version-specific/supported-software/e/einops.md @@ -0,0 +1,12 @@ +# 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`` 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..6c4019853 --- /dev/null +++ b/docs/version-specific/supported-software/e/elastix.md @@ -0,0 +1,10 @@ +# 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`` 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..16c1f77b7 --- /dev/null +++ b/docs/version-specific/supported-software/e/elbencho.md @@ -0,0 +1,9 @@ +# elbencho + +A distributed storage benchmark for files, objects & blocks with support for GPUs + +*homepage*: + +version | toolchain +--------|---------- +``2.0-3`` | ``GCC/10.3.0`` 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..70cc3eb19 --- /dev/null +++ b/docs/version-specific/supported-software/e/elfutils.md @@ -0,0 +1,18 @@ +# 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`` 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..1f2bf8dd5 --- /dev/null +++ b/docs/version-specific/supported-software/e/elprep.md @@ -0,0 +1,9 @@ +# 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`` 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..dfad4d607 --- /dev/null +++ b/docs/version-specific/supported-software/e/emcee.md @@ -0,0 +1,15 @@ +# 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`` 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..1ad19fa5a --- /dev/null +++ b/docs/version-specific/supported-software/e/enaBrowserTool.md @@ -0,0 +1,10 @@ +# 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`` 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..862ee224e --- /dev/null +++ b/docs/version-specific/supported-software/e/enchant-2.md @@ -0,0 +1,11 @@ +# 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`` 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..0bdcb5301 --- /dev/null +++ b/docs/version-specific/supported-software/e/enchant.md @@ -0,0 +1,9 @@ +# 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`` 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..06cc9ce1a --- /dev/null +++ b/docs/version-specific/supported-software/e/ensmallen.md @@ -0,0 +1,9 @@ +# ensmallen + +ensmallen is a high-quality C++ library for non-linear numerical optimization + +*homepage*: + +version | toolchain +--------|---------- +``2.21.1`` | ``foss/2023a`` 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..cf1fa10b6 --- /dev/null +++ b/docs/version-specific/supported-software/e/entrypoints.md @@ -0,0 +1,13 @@ +# 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`` 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..5fa9d0287 --- /dev/null +++ b/docs/version-specific/supported-software/e/epct.md @@ -0,0 +1,9 @@ +# 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`` 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..b444063ae --- /dev/null +++ b/docs/version-specific/supported-software/e/epiScanpy.md @@ -0,0 +1,11 @@ +# 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`` 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..b5931bc65 --- /dev/null +++ b/docs/version-specific/supported-software/e/eudev.md @@ -0,0 +1,13 @@ +# 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`` 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..70ad5c9af --- /dev/null +++ b/docs/version-specific/supported-software/e/evince.md @@ -0,0 +1,9 @@ +# 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`` 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..2573c9025 --- /dev/null +++ b/docs/version-specific/supported-software/e/evmix.md @@ -0,0 +1,9 @@ +# 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`` 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..d601974b9 --- /dev/null +++ b/docs/version-specific/supported-software/e/exiv2.md @@ -0,0 +1,11 @@ +# 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`` 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..1c2155aca --- /dev/null +++ b/docs/version-specific/supported-software/e/expat.md @@ -0,0 +1,36 @@ +# 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`` 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..244a2f83b --- /dev/null +++ b/docs/version-specific/supported-software/e/expect.md @@ -0,0 +1,10 @@ +# 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`` 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..aaec0952e --- /dev/null +++ b/docs/version-specific/supported-software/e/expecttest.md @@ -0,0 +1,15 @@ +# 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`` 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..a09ee42ed --- /dev/null +++ b/docs/version-specific/supported-software/e/index.md @@ -0,0 +1,91 @@ +# List of supported software (e) + + * [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) 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..cea357a34 --- /dev/null +++ b/docs/version-specific/supported-software/f/FACE.md @@ -0,0 +1,9 @@ +# 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`` 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..756230f73 --- /dev/null +++ b/docs/version-specific/supported-software/f/FALCON.md @@ -0,0 +1,10 @@ +# 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`` 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..746c962dd --- /dev/null +++ b/docs/version-specific/supported-software/f/FANN.md @@ -0,0 +1,10 @@ +# 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`` 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..5da222f46 --- /dev/null +++ b/docs/version-specific/supported-software/f/FASTA.md @@ -0,0 +1,11 @@ +# 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`` 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..4f255c96e --- /dev/null +++ b/docs/version-specific/supported-software/f/FASTX-Toolkit.md @@ -0,0 +1,16 @@ +# 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`` 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..ce08860da --- /dev/null +++ b/docs/version-specific/supported-software/f/FBPIC.md @@ -0,0 +1,9 @@ +# 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`` 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..0ea3103d3 --- /dev/null +++ b/docs/version-specific/supported-software/f/FCC.md @@ -0,0 +1,9 @@ +# FCC + +Fujitsu Compiler based compiler toolchain. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``4.5.0`` | ``system`` 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..618301fe8 --- /dev/null +++ b/docs/version-specific/supported-software/f/FCM.md @@ -0,0 +1,9 @@ +# FCM + +FCM is a set of tools for managing and building source code. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``system`` 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..cfad01f35 --- /dev/null +++ b/docs/version-specific/supported-software/f/FDMNES.md @@ -0,0 +1,9 @@ +# 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`` 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..e122317ff --- /dev/null +++ b/docs/version-specific/supported-software/f/FDS.md @@ -0,0 +1,20 @@ +# 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`` 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..0dedd58ef --- /dev/null +++ b/docs/version-specific/supported-software/f/FDTD_Solutions.md @@ -0,0 +1,12 @@ +# 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`` 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..b1822987d --- /dev/null +++ b/docs/version-specific/supported-software/f/FEniCS.md @@ -0,0 +1,9 @@ +# 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`` 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..1274b34c1 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFAVES.md @@ -0,0 +1,9 @@ +# 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`` 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..442e7e321 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFC.md @@ -0,0 +1,10 @@ +# 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`` 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..8d3ef3eca --- /dev/null +++ b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md @@ -0,0 +1,11 @@ +# 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`` 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..1a9f70938 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFTW.MPI.md @@ -0,0 +1,17 @@ +# 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`` 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..7f4708a92 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFTW.md @@ -0,0 +1,80 @@ +# 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`` 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..ae4851e96 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFmpeg.md @@ -0,0 +1,43 @@ +# 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`` 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..e25db98d7 --- /dev/null +++ b/docs/version-specific/supported-software/f/FGSL.md @@ -0,0 +1,9 @@ +# FGSL + +FGSL: A Fortran interface to the GNU Scientific Library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``intel/2016b`` 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..dd480bbba --- /dev/null +++ b/docs/version-specific/supported-software/f/FHI-aims.md @@ -0,0 +1,10 @@ +# 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`` 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..48663d874 --- /dev/null +++ b/docs/version-specific/supported-software/f/FIAT.md @@ -0,0 +1,12 @@ +# 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`` 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..323670b51 --- /dev/null +++ b/docs/version-specific/supported-software/f/FIGARO.md @@ -0,0 +1,9 @@ +# FIGARO + +FIGARO: An efficient and objective tool for optimizing microbiome rRNA gene trimming parameters. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``intel/2020b`` 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..8446a3fbf --- /dev/null +++ b/docs/version-specific/supported-software/f/FIRESTARTER.md @@ -0,0 +1,10 @@ +# 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`` 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..a006e6e9e --- /dev/null +++ b/docs/version-specific/supported-software/f/FIX.md @@ -0,0 +1,9 @@ +# 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`` 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..7c72fe89e --- /dev/null +++ b/docs/version-specific/supported-software/f/FIt-SNE.md @@ -0,0 +1,9 @@ +# 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`` 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..4d9f64bf2 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLAC.md @@ -0,0 +1,14 @@ +# 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`` 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..529c4e955 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLAIR.md @@ -0,0 +1,10 @@ +# 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`` 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..99cf886aa --- /dev/null +++ b/docs/version-specific/supported-software/f/FLANN.md @@ -0,0 +1,12 @@ +# 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`` 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..d8e04b1a1 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLASH.md @@ -0,0 +1,16 @@ +# 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`` 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..85e145df5 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLEUR.md @@ -0,0 +1,9 @@ +# 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`` 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..faa2b3d15 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLINT.md @@ -0,0 +1,17 @@ +# 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`` 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..2fe81a752 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLTK.md @@ -0,0 +1,33 @@ +# 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`` 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..9e3b73b30 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLUENT.md @@ -0,0 +1,18 @@ +# 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`` 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..404de597d --- /dev/null +++ b/docs/version-specific/supported-software/f/FMILibrary.md @@ -0,0 +1,9 @@ +# 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`` 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..9edfc4a9b --- /dev/null +++ b/docs/version-specific/supported-software/f/FMM3D.md @@ -0,0 +1,10 @@ +# 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`` 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..9e4423f74 --- /dev/null +++ b/docs/version-specific/supported-software/f/FMPy.md @@ -0,0 +1,9 @@ +# FMPy + +FMPy is a free Python library to simulate Functional Mock-up Units (FMUs). + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``foss/2021a`` 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..350375dea --- /dev/null +++ b/docs/version-specific/supported-software/f/FMRIprep.md @@ -0,0 +1,10 @@ +# 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`` 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..09993347e --- /dev/null +++ b/docs/version-specific/supported-software/f/FMS.md @@ -0,0 +1,10 @@ +# 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`` 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..35eb106ee --- /dev/null +++ b/docs/version-specific/supported-software/f/FORD.md @@ -0,0 +1,11 @@ +# 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`` 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..fe5e7f142 --- /dev/null +++ b/docs/version-specific/supported-software/f/FOX-Toolkit.md @@ -0,0 +1,10 @@ +# 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`` 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..607c6cad0 --- /dev/null +++ b/docs/version-specific/supported-software/f/FPM.md @@ -0,0 +1,10 @@ +# 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`` 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..e47bea3c3 --- /dev/null +++ b/docs/version-specific/supported-software/f/FRANz.md @@ -0,0 +1,9 @@ +# FRANz + +A fast and flexible parentage inference program for natural populations. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``foss/2018a`` 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..6da087966 --- /dev/null +++ b/docs/version-specific/supported-software/f/FRUIT.md @@ -0,0 +1,10 @@ +# 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`` 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..63ffa80e6 --- /dev/null +++ b/docs/version-specific/supported-software/f/FRUIT_processor.md @@ -0,0 +1,10 @@ +# 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`` 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..c29edf046 --- /dev/null +++ b/docs/version-specific/supported-software/f/FSL.md @@ -0,0 +1,25 @@ +# 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`` 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..e47f62b8b --- /dev/null +++ b/docs/version-specific/supported-software/f/FSLeyes.md @@ -0,0 +1,9 @@ +# FSLeyes + +FSLeyes is the FSL image viewer. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.15.0`` | ``-Python-2.7.13`` | ``intel/2017a`` 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..a70e851d6 --- /dev/null +++ b/docs/version-specific/supported-software/f/FSON.md @@ -0,0 +1,9 @@ +# FSON + +Fortran 95 JSON Parser + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``GCC/10.2.0`` 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..a7927e7ed --- /dev/null +++ b/docs/version-specific/supported-software/f/FTGL.md @@ -0,0 +1,15 @@ +# 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`` 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..f41c7ae9c --- /dev/null +++ b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md @@ -0,0 +1,10 @@ +# 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`` 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..c629fadc9 --- /dev/null +++ b/docs/version-specific/supported-software/f/FUSE.md @@ -0,0 +1,12 @@ +# 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`` 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..9617af149 --- /dev/null +++ b/docs/version-specific/supported-software/f/FabIO.md @@ -0,0 +1,13 @@ +# 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`` 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..4f11521ac --- /dev/null +++ b/docs/version-specific/supported-software/f/Faber.md @@ -0,0 +1,9 @@ +# 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`` 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..51772b04d --- /dev/null +++ b/docs/version-specific/supported-software/f/Faiss.md @@ -0,0 +1,9 @@ +# 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`` 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..a094772c5 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastANI.md @@ -0,0 +1,21 @@ +# 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`` 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..cd6d7a693 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastFold.md @@ -0,0 +1,9 @@ +# FastFold + +Optimizing Protein Structure Prediction Model Training and Inference on GPU Clusters + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20220729`` | ``-CUDA-11.3.1`` | ``foss/2021a`` 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..9bf9c3625 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastME.md @@ -0,0 +1,15 @@ +# 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`` 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..841493960 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastQC.md @@ -0,0 +1,22 @@ +# 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`` 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..f359d0efe --- /dev/null +++ b/docs/version-specific/supported-software/f/FastQTL.md @@ -0,0 +1,10 @@ +# FastQTL + +FastQTL is a QTL mapper + +*homepage*: + +version | toolchain +--------|---------- +``2.184`` | ``GCC/11.2.0`` +``2.184`` | ``foss/2018b`` 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..1401a1374 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastQ_Screen.md @@ -0,0 +1,13 @@ +# 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`` 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..02570300f --- /dev/null +++ b/docs/version-specific/supported-software/f/FastRFS.md @@ -0,0 +1,9 @@ +# FastRFS + +Fast Robinson Foulds Supertrees + +*homepage*: + +version | toolchain +--------|---------- +``1.0-20190613`` | ``gompi/2019a`` 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..dcda5bb6e --- /dev/null +++ b/docs/version-specific/supported-software/f/FastTree.md @@ -0,0 +1,20 @@ +# 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`` 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..34853bd8b --- /dev/null +++ b/docs/version-specific/supported-software/f/FastViromeExplorer.md @@ -0,0 +1,9 @@ +# FastViromeExplorer + +Identify the viruses/phages and their abundance in the viral metagenomics data. + +*homepage*: + +version | toolchain +--------|---------- +``20180422`` | ``foss/2019b`` 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..9525b15f3 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastaIndex.md @@ -0,0 +1,9 @@ +# FastaIndex + +FastA index (.fai) handler compatible with samtools faidx + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11rc7`` | ``-Python-2.7.14`` | ``intel/2017b`` 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..6e5154f1a --- /dev/null +++ b/docs/version-specific/supported-software/f/Fastaq.md @@ -0,0 +1,10 @@ +# 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`` 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..764b99c26 --- /dev/null +++ b/docs/version-specific/supported-software/f/Ferret.md @@ -0,0 +1,11 @@ +# 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`` 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..f2fc43d74 --- /dev/null +++ b/docs/version-specific/supported-software/f/FigureGen.md @@ -0,0 +1,9 @@ +# 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`` 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..98de049a7 --- /dev/null +++ b/docs/version-specific/supported-software/f/Fiji.md @@ -0,0 +1,13 @@ +# 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`` 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..98c32908f --- /dev/null +++ b/docs/version-specific/supported-software/f/Filtlong.md @@ -0,0 +1,11 @@ +# 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`` 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..04182ca35 --- /dev/null +++ b/docs/version-specific/supported-software/f/Fiona.md @@ -0,0 +1,20 @@ +# 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`` 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..cadf1f996 --- /dev/null +++ b/docs/version-specific/supported-software/f/FireWorks.md @@ -0,0 +1,9 @@ +# 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`` 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..f577156d4 --- /dev/null +++ b/docs/version-specific/supported-software/f/Firefox.md @@ -0,0 +1,9 @@ +# 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`` 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..8e66e9863 --- /dev/null +++ b/docs/version-specific/supported-software/f/Flask.md @@ -0,0 +1,18 @@ +# 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`` 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..ee0d2dfe0 --- /dev/null +++ b/docs/version-specific/supported-software/f/Flexbar.md @@ -0,0 +1,9 @@ +# Flexbar + +The program Flexbar preprocesses high-throughput sequencing data efficiently + +*homepage*: + +version | toolchain +--------|---------- +``3.5.0`` | ``foss/2018b`` 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..51ad38036 --- /dev/null +++ b/docs/version-specific/supported-software/f/FlexiBLAS.md @@ -0,0 +1,17 @@ +# 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`` 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..98f8b9d87 --- /dev/null +++ b/docs/version-specific/supported-software/f/FlexiDot.md @@ -0,0 +1,9 @@ +# FlexiDot + +Highly customizable, ambiguity-aware dotplots for visual sequence analyses + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.06`` | ``-Python-2.7.15`` | ``foss/2018b`` 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..43df49a3a --- /dev/null +++ b/docs/version-specific/supported-software/f/Flink.md @@ -0,0 +1,9 @@ +# 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`` 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..a0f9f36fc --- /dev/null +++ b/docs/version-specific/supported-software/f/Flye.md @@ -0,0 +1,21 @@ +# 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`` 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..465ccfe1d --- /dev/null +++ b/docs/version-specific/supported-software/f/FoBiS.md @@ -0,0 +1,9 @@ +# FoBiS + +A Fortran Building System for automatic building modern Fortran projects + +*homepage*: + +version | toolchain +--------|---------- +``3.0.5`` | ``GCCcore/10.3.0`` 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..a27e178a1 --- /dev/null +++ b/docs/version-specific/supported-software/f/FoX.md @@ -0,0 +1,12 @@ +# 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`` 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..16d0b24c8 --- /dev/null +++ b/docs/version-specific/supported-software/f/FoldX.md @@ -0,0 +1,12 @@ +# 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`` 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..03d129d1e --- /dev/null +++ b/docs/version-specific/supported-software/f/FragGeneScan.md @@ -0,0 +1,14 @@ +# 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`` 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..f6c47ac11 --- /dev/null +++ b/docs/version-specific/supported-software/f/FragPipe.md @@ -0,0 +1,9 @@ +# 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`` 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..029672841 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeBarcodes.md @@ -0,0 +1,9 @@ +# FreeBarcodes + +A package for the generation and decoding of FREE divergence error-correcting DNA barcodes + +*homepage*: + +version | toolchain +--------|---------- +``3.0.a5`` | ``foss/2021b`` 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..a7704c383 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeFEM.md @@ -0,0 +1,9 @@ +# 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`` 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..db1c920d7 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeFem++.md @@ -0,0 +1,11 @@ +# 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`` 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..d917f61a4 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeImage.md @@ -0,0 +1,17 @@ +# 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`` 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..66348dede --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeSASA.md @@ -0,0 +1,9 @@ +# 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`` 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..dcfbc762c --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeSurfer.md @@ -0,0 +1,27 @@ +# 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`` 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..0c0c20506 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeTDS.md @@ -0,0 +1,9 @@ +# 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`` 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..723633b68 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeXL.md @@ -0,0 +1,15 @@ +# 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`` 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..4a3c49d02 --- /dev/null +++ b/docs/version-specific/supported-software/f/FriBidi.md @@ -0,0 +1,22 @@ +# 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`` 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..6facf4e82 --- /dev/null +++ b/docs/version-specific/supported-software/f/FuSeq.md @@ -0,0 +1,9 @@ +# FuSeq + +FuSeq is a novel method to discover fusion genes from paired-end RNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``gompi/2019b`` 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..a7cce8844 --- /dev/null +++ b/docs/version-specific/supported-software/f/Fujitsu.md @@ -0,0 +1,9 @@ +# Fujitsu + +Toolchain using Fujitsu compilers and libraries. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``21.05`` | ``system`` 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..f2fb6aa7b --- /dev/null +++ b/docs/version-specific/supported-software/f/FunGAP.md @@ -0,0 +1,9 @@ +# FunGAP + +Fungal Genome Annotation Pipeline using evidence-based gene model evaluation. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2022a`` 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..90d58140a --- /dev/null +++ b/docs/version-specific/supported-software/f/FusionCatcher.md @@ -0,0 +1,10 @@ +# 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`` 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..08b13ee96 --- /dev/null +++ b/docs/version-specific/supported-software/f/f90cache.md @@ -0,0 +1,9 @@ +# 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`` 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..8da84cf70 --- /dev/null +++ b/docs/version-specific/supported-software/f/f90nml.md @@ -0,0 +1,10 @@ +# 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`` 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..264288269 --- /dev/null +++ b/docs/version-specific/supported-software/f/f90wrap.md @@ -0,0 +1,11 @@ +# 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`` 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..ff53ba39c --- /dev/null +++ b/docs/version-specific/supported-software/f/faceswap.md @@ -0,0 +1,9 @@ +# 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`` 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..1fbb9c31d --- /dev/null +++ b/docs/version-specific/supported-software/f/fast5.md @@ -0,0 +1,9 @@ +# fast5 + +A lightweight C++ library for accessing Oxford Nanopore Technologies sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.5`` | ``system`` 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..7dd21a08b --- /dev/null +++ b/docs/version-specific/supported-software/f/fastPHASE.md @@ -0,0 +1,9 @@ +# 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`` 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..8944d53f2 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastStructure.md @@ -0,0 +1,12 @@ +# 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`` 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..88308364f --- /dev/null +++ b/docs/version-specific/supported-software/f/fasta-reader.md @@ -0,0 +1,9 @@ +# fasta-reader + +FASTA file reader + +*homepage*: + +version | toolchain +--------|---------- +``3.0.2`` | ``GCC/12.3.0`` 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..f6b05cbc8 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastahack.md @@ -0,0 +1,14 @@ +# 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`` 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..df3600ef8 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastai.md @@ -0,0 +1,10 @@ +# fastai + +The fastai deep learning library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.10`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.7.10`` | | ``foss/2022a`` 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..214da1462 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastjet-contrib.md @@ -0,0 +1,10 @@ +# fastjet-contrib + +3rd party extensions of FastJet + +*homepage*: + +version | toolchain +--------|---------- +``1.049`` | ``gompi/2022a`` +``1.053`` | ``gompi/2023a`` 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..7a8ff5fd4 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastjet.md @@ -0,0 +1,10 @@ +# 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`` 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..798a28cac --- /dev/null +++ b/docs/version-specific/supported-software/f/fastml.md @@ -0,0 +1,9 @@ +# 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`` 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..cad968d05 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastp.md @@ -0,0 +1,18 @@ +# 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`` 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..4483a41f2 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastparquet.md @@ -0,0 +1,11 @@ +# 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`` 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..4bd79117c --- /dev/null +++ b/docs/version-specific/supported-software/f/fastq-pair.md @@ -0,0 +1,9 @@ +# fastq-pair + +Match up paired end fastq files quickly and efficiently. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/8.2.0`` 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..38167a9c8 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastq-tools.md @@ -0,0 +1,12 @@ +# 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`` 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..bf00a9bc1 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastqsplitter.md @@ -0,0 +1,9 @@ +# fastqsplitter + +Splits fastq files evenly. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` 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..975581e22 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastqz.md @@ -0,0 +1,9 @@ +# 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`` 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..6d5b16094 --- /dev/null +++ b/docs/version-specific/supported-software/f/fatslim.md @@ -0,0 +1,9 @@ +# 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`` 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..19fbf97a3 --- /dev/null +++ b/docs/version-specific/supported-software/f/fbm.md @@ -0,0 +1,9 @@ +# 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`` 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..7a58c7a51 --- /dev/null +++ b/docs/version-specific/supported-software/f/fdict.md @@ -0,0 +1,14 @@ +# 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`` 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..4428e2d33 --- /dev/null +++ b/docs/version-specific/supported-software/f/fdstools.md @@ -0,0 +1,9 @@ +# 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`` 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..b027e15f4 --- /dev/null +++ b/docs/version-specific/supported-software/f/feh.md @@ -0,0 +1,9 @@ +# 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`` 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..6a6141239 --- /dev/null +++ b/docs/version-specific/supported-software/f/fermi-lite.md @@ -0,0 +1,13 @@ +# 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`` 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..a2f823b5e --- /dev/null +++ b/docs/version-specific/supported-software/f/festival.md @@ -0,0 +1,10 @@ +# 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`` 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..fcfa1c267 --- /dev/null +++ b/docs/version-specific/supported-software/f/fetchMG.md @@ -0,0 +1,10 @@ +# 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`` 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..50676b93a --- /dev/null +++ b/docs/version-specific/supported-software/f/ffmpi.md @@ -0,0 +1,9 @@ +# ffmpi + +Fujitsu Compiler based compiler toolchain, including Fujitsu MPI for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``4.5.0`` | ``system`` 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..0f65435bd --- /dev/null +++ b/docs/version-specific/supported-software/f/ffnet.md @@ -0,0 +1,9 @@ +# ffnet + +Feed-forward neural network solution for python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.3`` | ``-Python-2.7.11`` | ``intel/2016a`` 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..c77a892bc --- /dev/null +++ b/docs/version-specific/supported-software/f/ffnvcodec.md @@ -0,0 +1,11 @@ +# 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`` 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..a22443a33 --- /dev/null +++ b/docs/version-specific/supported-software/f/fftlib.md @@ -0,0 +1,10 @@ +# 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`` 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..23017e189 --- /dev/null +++ b/docs/version-specific/supported-software/f/fgbio.md @@ -0,0 +1,10 @@ +# 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`` 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..bac703458 --- /dev/null +++ b/docs/version-specific/supported-software/f/file.md @@ -0,0 +1,22 @@ +# 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`` 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..66db11da2 --- /dev/null +++ b/docs/version-specific/supported-software/f/filevercmp.md @@ -0,0 +1,14 @@ +# 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`` 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..fb7ef7942 --- /dev/null +++ b/docs/version-specific/supported-software/f/find_circ.md @@ -0,0 +1,9 @@ +# find_circ + +circRNA detection from RNA-seq reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2-20170228`` | ``-Python-2.7.14`` | ``intel/2017b`` 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..5752134c4 --- /dev/null +++ b/docs/version-specific/supported-software/f/finder.md @@ -0,0 +1,9 @@ +# 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`` 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..ee724037b --- /dev/null +++ b/docs/version-specific/supported-software/f/findhap.md @@ -0,0 +1,9 @@ +# findhap + +Find haplotypes and impute genotypes using multiple chip sets and sequence data + +*homepage*: + +version | toolchain +--------|---------- +``4`` | ``system`` 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..c7f6377a3 --- /dev/null +++ b/docs/version-specific/supported-software/f/findutils.md @@ -0,0 +1,9 @@ +# findutils + +findutils: The GNU find, locate, updatedb, and xargs utilities + +*homepage*: + +version | toolchain +--------|---------- +``4.4.2`` | ``GCC/4.8.2`` 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..688fac4fd --- /dev/null +++ b/docs/version-specific/supported-software/f/fineRADstructure.md @@ -0,0 +1,10 @@ +# fineRADstructure + +A package for population structure inference from RAD-seq data + +*homepage*: + +version | toolchain +--------|---------- +``20180709`` | ``intel/2018a`` +``20210514`` | ``GCC/12.3.0`` 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..a90a2cf6b --- /dev/null +++ b/docs/version-specific/supported-software/f/fineSTRUCTURE.md @@ -0,0 +1,9 @@ +# fineSTRUCTURE + +fineSTRUCTURE is a fast and powerful algorithm for identifying population structure using dense sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.3`` | ``intel/2017b`` 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..25742449b --- /dev/null +++ b/docs/version-specific/supported-software/f/fio.md @@ -0,0 +1,12 @@ +# 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`` 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..f402c1a69 --- /dev/null +++ b/docs/version-specific/supported-software/f/fixesproto.md @@ -0,0 +1,11 @@ +# fixesproto + +X.org FixesProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``5.0`` | ``foss/2016a`` +``5.0`` | ``gimkl/2.11.5`` +``5.0`` | ``intel/2016a`` 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..2461fadf3 --- /dev/null +++ b/docs/version-specific/supported-software/f/flair-NLP.md @@ -0,0 +1,10 @@ +# 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`` 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..b382aa919 --- /dev/null +++ b/docs/version-specific/supported-software/f/flatbuffers-python.md @@ -0,0 +1,15 @@ +# 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`` 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..9401cbf06 --- /dev/null +++ b/docs/version-specific/supported-software/f/flatbuffers.md @@ -0,0 +1,18 @@ +# 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`` 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..3cd905989 --- /dev/null +++ b/docs/version-specific/supported-software/f/flex.md @@ -0,0 +1,82 @@ +# 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`` 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..fc03e6871 --- /dev/null +++ b/docs/version-specific/supported-software/f/flit.md @@ -0,0 +1,10 @@ +# 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`` 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..87d6d8f2b --- /dev/null +++ b/docs/version-specific/supported-software/f/flook.md @@ -0,0 +1,15 @@ +# 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`` 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..765675f1e --- /dev/null +++ b/docs/version-specific/supported-software/f/flowFDA.md @@ -0,0 +1,9 @@ +# 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`` 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..b02959997 --- /dev/null +++ b/docs/version-specific/supported-software/f/fmt.md @@ -0,0 +1,23 @@ +# 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`` 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..34b611795 --- /dev/null +++ b/docs/version-specific/supported-software/f/fontconfig.md @@ -0,0 +1,33 @@ +# 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`` 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..bf4e10f9c --- /dev/null +++ b/docs/version-specific/supported-software/f/fontsproto.md @@ -0,0 +1,11 @@ +# 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`` 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..beafbde27 --- /dev/null +++ b/docs/version-specific/supported-software/f/forbear.md @@ -0,0 +1,9 @@ +# forbear + +A Fortran Library for building and running fancy progress bar + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``GCC/10.3.0`` 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..5081ab9bb --- /dev/null +++ b/docs/version-specific/supported-software/f/foss.md @@ -0,0 +1,33 @@ +# 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`` 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..289539a2c --- /dev/null +++ b/docs/version-specific/supported-software/f/fosscuda.md @@ -0,0 +1,15 @@ +# 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`` 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..b36b0b6a4 --- /dev/null +++ b/docs/version-specific/supported-software/f/fplll.md @@ -0,0 +1,9 @@ +# 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`` 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..eba998e24 --- /dev/null +++ b/docs/version-specific/supported-software/f/fpocket.md @@ -0,0 +1,9 @@ +# 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`` 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..0c775296b --- /dev/null +++ b/docs/version-specific/supported-software/f/fpylll.md @@ -0,0 +1,9 @@ +# fpylll + +A Python wrapper for fplll. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.9`` | ``foss/2022a`` 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..39b6da77b --- /dev/null +++ b/docs/version-specific/supported-software/f/fqtrim.md @@ -0,0 +1,10 @@ +# 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`` 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..9885d8560 --- /dev/null +++ b/docs/version-specific/supported-software/f/fqzcomp.md @@ -0,0 +1,9 @@ +# 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`` 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..4b2978e3a --- /dev/null +++ b/docs/version-specific/supported-software/f/freebayes.md @@ -0,0 +1,13 @@ +# 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`` 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..a5db24d87 --- /dev/null +++ b/docs/version-specific/supported-software/f/freeglut.md @@ -0,0 +1,29 @@ +# 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`` 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..f68fe0bbd --- /dev/null +++ b/docs/version-specific/supported-software/f/freetype-py.md @@ -0,0 +1,10 @@ +# 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`` 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..b867a7790 --- /dev/null +++ b/docs/version-specific/supported-software/f/freetype.md @@ -0,0 +1,39 @@ +# 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`` 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..97d735fd5 --- /dev/null +++ b/docs/version-specific/supported-software/f/freud-analysis.md @@ -0,0 +1,9 @@ +# 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`` 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..07e1e3f81 --- /dev/null +++ b/docs/version-specific/supported-software/f/fsom.md @@ -0,0 +1,14 @@ +# 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`` 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..91bc92a2f --- /dev/null +++ b/docs/version-specific/supported-software/f/ftfy.md @@ -0,0 +1,9 @@ +# 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`` 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..798a891cc --- /dev/null +++ b/docs/version-specific/supported-software/f/fugue.md @@ -0,0 +1,9 @@ +# 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`` 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..3d8dc7142 --- /dev/null +++ b/docs/version-specific/supported-software/f/fullrmc.md @@ -0,0 +1,9 @@ +# 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`` 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..8145133c7 --- /dev/null +++ b/docs/version-specific/supported-software/f/fumi_tools.md @@ -0,0 +1,11 @@ +# 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`` 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..33c96aece --- /dev/null +++ b/docs/version-specific/supported-software/f/funannotate.md @@ -0,0 +1,9 @@ +# 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`` 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..97632f33f --- /dev/null +++ b/docs/version-specific/supported-software/f/futhark.md @@ -0,0 +1,9 @@ +# 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`` 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..9823386da --- /dev/null +++ b/docs/version-specific/supported-software/f/futile.md @@ -0,0 +1,15 @@ +# 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`` 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..0807ad29c --- /dev/null +++ b/docs/version-specific/supported-software/f/future.md @@ -0,0 +1,15 @@ +# 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`` 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..7050e6410 --- /dev/null +++ b/docs/version-specific/supported-software/f/fxtract.md @@ -0,0 +1,9 @@ +# fxtract + +Extract sequences from a fastx (fasta or fastq) file given a subsequence. + +*homepage*: + +version | toolchain +--------|---------- +``2.3`` | ``GCCcore/8.2.0`` 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..840d152bb --- /dev/null +++ b/docs/version-specific/supported-software/f/index.md @@ -0,0 +1,172 @@ +# List of supported software (f) + + * [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) 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..f62e4aaa7 --- /dev/null +++ b/docs/version-specific/supported-software/g/G-PhoCS.md @@ -0,0 +1,9 @@ +# 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`` 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..e5e48ea43 --- /dev/null +++ b/docs/version-specific/supported-software/g/GAMESS-US.md @@ -0,0 +1,16 @@ +# 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`` 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..94525c304 --- /dev/null +++ b/docs/version-specific/supported-software/g/GAPPadder.md @@ -0,0 +1,9 @@ +# 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`` 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..5e2a96344 --- /dev/null +++ b/docs/version-specific/supported-software/g/GARLI.md @@ -0,0 +1,9 @@ +# 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`` 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..610f2d820 --- /dev/null +++ b/docs/version-specific/supported-software/g/GAT.md @@ -0,0 +1,9 @@ +# 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`` 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..0494dd900 --- /dev/null +++ b/docs/version-specific/supported-software/g/GATB-Core.md @@ -0,0 +1,9 @@ +# 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`` 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..05a18b883 --- /dev/null +++ b/docs/version-specific/supported-software/g/GATE.md @@ -0,0 +1,22 @@ +# 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`` 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..649a800c9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GATK.md @@ -0,0 +1,51 @@ +# 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`` 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..c5fcb8f33 --- /dev/null +++ b/docs/version-specific/supported-software/g/GBprocesS.md @@ -0,0 +1,10 @@ +# 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`` 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..8016cc505 --- /dev/null +++ b/docs/version-specific/supported-software/g/GC3Pie.md @@ -0,0 +1,11 @@ +# 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`` 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..252750eb3 --- /dev/null +++ b/docs/version-specific/supported-software/g/GCC.md @@ -0,0 +1,77 @@ +# 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`` 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..49b216300 --- /dev/null +++ b/docs/version-specific/supported-software/g/GCCcore.md @@ -0,0 +1,47 @@ +# 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`` 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..59dfe2fc7 --- /dev/null +++ b/docs/version-specific/supported-software/g/GCTA.md @@ -0,0 +1,12 @@ +# 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`` 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..068c222b2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GConf.md @@ -0,0 +1,19 @@ +# 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`` 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..b4073e0b0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GD.md @@ -0,0 +1,14 @@ +# 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`` 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..04b3d6e76 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDAL.md @@ -0,0 +1,55 @@ +# 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`` 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..19fc2a578 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDB.md @@ -0,0 +1,31 @@ +# 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`` 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..1f47495a4 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDCHART.md @@ -0,0 +1,9 @@ +# 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`` 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..4ac2cd11a --- /dev/null +++ b/docs/version-specific/supported-software/g/GDCM.md @@ -0,0 +1,16 @@ +# 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`` 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..eee1e4a8b --- /dev/null +++ b/docs/version-specific/supported-software/g/GDGraph.md @@ -0,0 +1,11 @@ +# 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`` 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..0fe2a3ea9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDRCopy.md @@ -0,0 +1,19 @@ +# 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`` 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..37d80fbcd --- /dev/null +++ b/docs/version-specific/supported-software/g/GEGL.md @@ -0,0 +1,9 @@ +# 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`` 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..c04a6bc09 --- /dev/null +++ b/docs/version-specific/supported-software/g/GEM-library.md @@ -0,0 +1,9 @@ +# 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`` 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..0a2c0f94e --- /dev/null +++ b/docs/version-specific/supported-software/g/GEM.md @@ -0,0 +1,10 @@ +# 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`` 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..c3530753d --- /dev/null +++ b/docs/version-specific/supported-software/g/GEMMA.md @@ -0,0 +1,14 @@ +# 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`` 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..fa2059b28 --- /dev/null +++ b/docs/version-specific/supported-software/g/GEOS.md @@ -0,0 +1,45 @@ +# 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`` 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..cf2aff41c --- /dev/null +++ b/docs/version-specific/supported-software/g/GETORB.md @@ -0,0 +1,9 @@ +# GETORB + +GETORB software package contains programs to handle the orbital data records (ODRs) + +*homepage*: + +version | toolchain +--------|---------- +``2.3.2`` | ``intel/2017a`` 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..71dcf5f68 --- /dev/null +++ b/docs/version-specific/supported-software/g/GFF3-toolkit.md @@ -0,0 +1,9 @@ +# GFF3-toolkit + +Python programs for processing GFF3 files + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``foss/2022a`` 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..39a4210f5 --- /dev/null +++ b/docs/version-specific/supported-software/g/GFOLD.md @@ -0,0 +1,9 @@ +# GFOLD + +Generalized fold change for ranking differentially expressed genes from RNA-seq data + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``intel/2016a`` 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..728a5278f --- /dev/null +++ b/docs/version-specific/supported-software/g/GHC.md @@ -0,0 +1,12 @@ +# 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`` 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..4b943986e --- /dev/null +++ b/docs/version-specific/supported-software/g/GI-DocGen.md @@ -0,0 +1,9 @@ +# 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`` 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..853aa960f --- /dev/null +++ b/docs/version-specific/supported-software/g/GIMIC.md @@ -0,0 +1,10 @@ +# 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`` 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..07c7f833c --- /dev/null +++ b/docs/version-specific/supported-software/g/GIMP.md @@ -0,0 +1,9 @@ +# 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`` 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..fc0a6efad --- /dev/null +++ b/docs/version-specific/supported-software/g/GIMPS.md @@ -0,0 +1,10 @@ +# 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`` 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..e2a08f436 --- /dev/null +++ b/docs/version-specific/supported-software/g/GKeyll.md @@ -0,0 +1,9 @@ +# 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`` 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..fcd3d72d7 --- /dev/null +++ b/docs/version-specific/supported-software/g/GKlib-METIS.md @@ -0,0 +1,9 @@ +# 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`` 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..3176f5c9a --- /dev/null +++ b/docs/version-specific/supported-software/g/GL2PS.md @@ -0,0 +1,29 @@ +# 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`` 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..ae4c7abbe --- /dev/null +++ b/docs/version-specific/supported-software/g/GLFW.md @@ -0,0 +1,16 @@ +# 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`` 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..9ab5d360f --- /dev/null +++ b/docs/version-specific/supported-software/g/GLI.md @@ -0,0 +1,10 @@ +# GLI + +Graphics Language Interpreter + +*homepage*: + +version | toolchain +--------|---------- +``4.5.31`` | ``GCCcore/10.2.0`` +``4.5.31`` | ``GCCcore/12.2.0`` 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..80bd9189e --- /dev/null +++ b/docs/version-specific/supported-software/g/GLIMMER.md @@ -0,0 +1,10 @@ +# 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`` 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..d297c53a2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLIMPSE.md @@ -0,0 +1,11 @@ +# 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`` 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..4a6e8bfe1 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLM-AED.md @@ -0,0 +1,9 @@ +# 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`` 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..000b82f2f --- /dev/null +++ b/docs/version-specific/supported-software/g/GLM.md @@ -0,0 +1,19 @@ +# 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`` 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..866ef1d39 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLPK.md @@ -0,0 +1,25 @@ +# 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`` 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..dc0699fce --- /dev/null +++ b/docs/version-specific/supported-software/g/GLib.md @@ -0,0 +1,34 @@ +# 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`` 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..6d7327629 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLibmm.md @@ -0,0 +1,12 @@ +# 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`` 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..f4a7287cd --- /dev/null +++ b/docs/version-specific/supported-software/g/GMAP-GSNAP.md @@ -0,0 +1,19 @@ +# 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`` 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..197cce569 --- /dev/null +++ b/docs/version-specific/supported-software/g/GMP-ECM.md @@ -0,0 +1,10 @@ +# 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`` 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..5110d4b76 --- /dev/null +++ b/docs/version-specific/supported-software/g/GMP.md @@ -0,0 +1,43 @@ +# 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`` 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..1257f3749 --- /dev/null +++ b/docs/version-specific/supported-software/g/GMT.md @@ -0,0 +1,15 @@ +# 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`` 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..ec3bdc544 --- /dev/null +++ b/docs/version-specific/supported-software/g/GNU.md @@ -0,0 +1,11 @@ +# 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`` 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..d47842618 --- /dev/null +++ b/docs/version-specific/supported-software/g/GOATOOLS.md @@ -0,0 +1,12 @@ +# 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`` 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..690e11c5f --- /dev/null +++ b/docs/version-specific/supported-software/g/GOBNILP.md @@ -0,0 +1,9 @@ +# 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`` 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..66a7d539b --- /dev/null +++ b/docs/version-specific/supported-software/g/GObject-Introspection.md @@ -0,0 +1,35 @@ +# 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`` 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..c39206d4b --- /dev/null +++ b/docs/version-specific/supported-software/g/GP2C.md @@ -0,0 +1,9 @@ +# 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`` 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..d0bfe9301 --- /dev/null +++ b/docs/version-specific/supported-software/g/GPAW-setups.md @@ -0,0 +1,13 @@ +# 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`` 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..fce061ec0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GPAW.md @@ -0,0 +1,36 @@ +# 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`` 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..415810a8a --- /dev/null +++ b/docs/version-specific/supported-software/g/GPy.md @@ -0,0 +1,9 @@ +# GPy + +GPy is a Gaussian Process (GP) framework written in Python + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``foss/2021b`` 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..f6bac0271 --- /dev/null +++ b/docs/version-specific/supported-software/g/GPyOpt.md @@ -0,0 +1,9 @@ +# GPyOpt + +GPyOpt is a Python open-source library for Bayesian Optimization + +*homepage*: + +version | toolchain +--------|---------- +``1.2.6`` | ``intel/2020b`` 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..a17572fde --- /dev/null +++ b/docs/version-specific/supported-software/g/GPyTorch.md @@ -0,0 +1,11 @@ +# 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`` 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..397b86615 --- /dev/null +++ b/docs/version-specific/supported-software/g/GRASP-suite.md @@ -0,0 +1,9 @@ +# 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`` 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..d858de2ce --- /dev/null +++ b/docs/version-specific/supported-software/g/GRASP.md @@ -0,0 +1,9 @@ +# 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`` 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..36673cacc --- /dev/null +++ b/docs/version-specific/supported-software/g/GRASS.md @@ -0,0 +1,11 @@ +# 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`` 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..ed0929008 --- /dev/null +++ b/docs/version-specific/supported-software/g/GRIDSS.md @@ -0,0 +1,9 @@ +# 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`` 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..98f55c049 --- /dev/null +++ b/docs/version-specific/supported-software/g/GRIT.md @@ -0,0 +1,9 @@ +# 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`` 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..42783e599 --- /dev/null +++ b/docs/version-specific/supported-software/g/GRNBoost.md @@ -0,0 +1,9 @@ +# 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`` 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..8c2641f2a --- /dev/null +++ b/docs/version-specific/supported-software/g/GROMACS.md @@ -0,0 +1,76 @@ +# 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`` 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..4f0925dab --- /dev/null +++ b/docs/version-specific/supported-software/g/GSD.md @@ -0,0 +1,9 @@ +# 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`` 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..15c0dde8d --- /dev/null +++ b/docs/version-specific/supported-software/g/GSEA.md @@ -0,0 +1,9 @@ +# 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`` 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..80f561234 --- /dev/null +++ b/docs/version-specific/supported-software/g/GSL.md @@ -0,0 +1,42 @@ +# 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`` 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..b828c2807 --- /dev/null +++ b/docs/version-specific/supported-software/g/GST-plugins-bad.md @@ -0,0 +1,11 @@ +# 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`` 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..03ca23886 --- /dev/null +++ b/docs/version-specific/supported-software/g/GST-plugins-base.md @@ -0,0 +1,25 @@ +# 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`` 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..8f000f3ed --- /dev/null +++ b/docs/version-specific/supported-software/g/GStreamer.md @@ -0,0 +1,26 @@ +# 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`` 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..2776561ff --- /dev/null +++ b/docs/version-specific/supported-software/g/GTDB-Tk.md @@ -0,0 +1,23 @@ +# 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`` 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..b055249f0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK+.md @@ -0,0 +1,25 @@ +# 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`` 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..01206240d --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK2.md @@ -0,0 +1,10 @@ +# 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`` 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..453f900d6 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK3.md @@ -0,0 +1,14 @@ +# 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`` 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..cc064d578 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK4.md @@ -0,0 +1,11 @@ +# 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`` 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..089252f3e --- /dev/null +++ b/docs/version-specific/supported-software/g/GTOOL.md @@ -0,0 +1,9 @@ +# 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`` 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..019c8f0a3 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTS.md @@ -0,0 +1,25 @@ +# 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`` 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..0dafe027b --- /dev/null +++ b/docs/version-specific/supported-software/g/GUIDANCE.md @@ -0,0 +1,9 @@ +# 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`` 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..fe2b71ba7 --- /dev/null +++ b/docs/version-specific/supported-software/g/GULP.md @@ -0,0 +1,10 @@ +# 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`` 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..3b02f79b1 --- /dev/null +++ b/docs/version-specific/supported-software/g/GUSHR.md @@ -0,0 +1,9 @@ +# 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`` 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..30671b4fc --- /dev/null +++ b/docs/version-specific/supported-software/g/Gaia.md @@ -0,0 +1,9 @@ +# 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`` 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..22a94cc64 --- /dev/null +++ b/docs/version-specific/supported-software/g/GapCloser.md @@ -0,0 +1,10 @@ +# 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`` 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..b055d221f --- /dev/null +++ b/docs/version-specific/supported-software/g/GapFiller.md @@ -0,0 +1,10 @@ +# 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`` 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..605f940d2 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gaussian.md @@ -0,0 +1,10 @@ +# 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`` 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..d4a26f8bc --- /dev/null +++ b/docs/version-specific/supported-software/g/Gblocks.md @@ -0,0 +1,9 @@ +# Gblocks + +Selection of conserved blocks from multiple alignments for their use in phylogenetic analysis + +*homepage*: + +version | toolchain +--------|---------- +``0.91b`` | ``system`` 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..83e02ed86 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gctf.md @@ -0,0 +1,9 @@ +# Gctf + +Gctf: real-time CTF determination and correction, Kai Zhang, 2016 + +*homepage*: + +version | toolchain +--------|---------- +``1.06`` | ``system`` 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..a05037054 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md @@ -0,0 +1,32 @@ +# 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`` 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..764646e15 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gdspy.md @@ -0,0 +1,9 @@ +# Gdspy + +Gdspy is a Python module for creation and manipulation of GDSII stream files. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.13`` | ``foss/2022a`` 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..1056efe88 --- /dev/null +++ b/docs/version-specific/supported-software/g/Geant4-data.md @@ -0,0 +1,11 @@ +# Geant4-data + +Datasets for Geant4. + +*homepage*: + +version | toolchain +--------|---------- +``11.1`` | ``system`` +``20201103`` | ``system`` +``20210510`` | ``system`` 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..e8d0da7fe --- /dev/null +++ b/docs/version-specific/supported-software/g/Geant4.md @@ -0,0 +1,28 @@ +# 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`` 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..309443807 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenMap.md @@ -0,0 +1,9 @@ +# GenMap + +GenMap - Fast and Exact Computation of Genome Mappability + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCCcore/11.2.0`` 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..ca324cd70 --- /dev/null +++ b/docs/version-specific/supported-software/g/GeneMark-ET.md @@ -0,0 +1,13 @@ +# 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`` 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..a5d6de904 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenerativeModels.md @@ -0,0 +1,9 @@ +# GenerativeModels + + + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` 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..da99b8d1e --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeComb.md @@ -0,0 +1,9 @@ +# 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`` 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..4f24b9634 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeMapper.md @@ -0,0 +1,9 @@ +# 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`` 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..01ff55d8f --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeTester4.md @@ -0,0 +1,9 @@ +# GenomeTester4 + +A toolkit for performing set operations - union, intersection and complement - on k-mer lists. + +*homepage*: + +version | toolchain +--------|---------- +``4.0`` | ``intel/2018a`` 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..a78c5b6dc --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeThreader.md @@ -0,0 +1,10 @@ +# 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`` 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..376eec2a5 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeTools.md @@ -0,0 +1,17 @@ +# 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`` 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..dfe9ab374 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeWorks.md @@ -0,0 +1,9 @@ +# GenomeWorks + +SDK for GPU accelerated genome assembly and analysis + +*homepage*: + +version | toolchain +--------|---------- +``2021.02.2`` | ``fosscuda/2020b`` 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..16bbb68aa --- /dev/null +++ b/docs/version-specific/supported-software/g/Genome_Profiler.md @@ -0,0 +1,9 @@ +# 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`` 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..ea22923ff --- /dev/null +++ b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md @@ -0,0 +1,9 @@ +# 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`` 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..a9cd92b23 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gerris.md @@ -0,0 +1,10 @@ +# 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`` 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..f84fdcbb0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GetOrganelle.md @@ -0,0 +1,13 @@ +# 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`` 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..888fa793b --- /dev/null +++ b/docs/version-specific/supported-software/g/GffCompare.md @@ -0,0 +1,14 @@ +# 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`` 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..131444fea --- /dev/null +++ b/docs/version-specific/supported-software/g/Ghostscript.md @@ -0,0 +1,30 @@ +# 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`` 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..be397e5f7 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gibbs2.md @@ -0,0 +1,9 @@ +# 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`` 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..7f394a792 --- /dev/null +++ b/docs/version-specific/supported-software/g/GimmeMotifs.md @@ -0,0 +1,9 @@ +# GimmeMotifs + +Suite of motif tools, including a motif prediction pipeline for ChIP-seq experiments + +*homepage*: + +version | toolchain +--------|---------- +``0.17.2`` | ``foss/2022a`` 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..781d03e11 --- /dev/null +++ b/docs/version-specific/supported-software/g/Giotto-Suite.md @@ -0,0 +1,9 @@ +# 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`` 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..6fe42234c --- /dev/null +++ b/docs/version-specific/supported-software/g/GitPython.md @@ -0,0 +1,21 @@ +# 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`` 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..a7c61aa93 --- /dev/null +++ b/docs/version-specific/supported-software/g/Givaro.md @@ -0,0 +1,11 @@ +# 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`` 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..4dde9fbd5 --- /dev/null +++ b/docs/version-specific/supported-software/g/Giza.md @@ -0,0 +1,10 @@ +# 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`` 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..40557b2f2 --- /dev/null +++ b/docs/version-specific/supported-software/g/Glade.md @@ -0,0 +1,12 @@ +# 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`` 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..6bc910eef --- /dev/null +++ b/docs/version-specific/supported-software/g/GlimmerHMM.md @@ -0,0 +1,13 @@ +# 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`` 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..4fd7b074b --- /dev/null +++ b/docs/version-specific/supported-software/g/GlobalArrays.md @@ -0,0 +1,18 @@ +# 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`` 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..900705cae --- /dev/null +++ b/docs/version-specific/supported-software/g/Globus-CLI.md @@ -0,0 +1,12 @@ +# 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`` 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..90255cd79 --- /dev/null +++ b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md @@ -0,0 +1,9 @@ +# 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`` 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..33935a1ff --- /dev/null +++ b/docs/version-specific/supported-software/g/Glucose.md @@ -0,0 +1,9 @@ +# 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`` 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..edd241bca --- /dev/null +++ b/docs/version-specific/supported-software/g/GnuTLS.md @@ -0,0 +1,15 @@ +# 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`` 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..39e938c48 --- /dev/null +++ b/docs/version-specific/supported-software/g/Go.md @@ -0,0 +1,30 @@ +# 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`` 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..f054bf60a --- /dev/null +++ b/docs/version-specific/supported-software/g/Godon.md @@ -0,0 +1,9 @@ +# Godon + +Godon is codon models software written in Go. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210913`` | ``-x86_64`` | ``system`` 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..407b10f7a --- /dev/null +++ b/docs/version-specific/supported-software/g/GraPhlAn.md @@ -0,0 +1,9 @@ +# 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`` 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..a83b5297a --- /dev/null +++ b/docs/version-specific/supported-software/g/Grace.md @@ -0,0 +1,19 @@ +# 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`` 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..d54d29aa0 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gradle.md @@ -0,0 +1,12 @@ +# 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`` 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..ea7a08dd9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphDB.md @@ -0,0 +1,9 @@ +# 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`` 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..d1d3389d7 --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphMap.md @@ -0,0 +1,9 @@ +# GraphMap + +A highly sensitive and accurate mapper for long, error-prone reads + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2019b`` 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..48d1e91af --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphMap2.md @@ -0,0 +1,9 @@ +# GraphMap2 + +A highly sensitive and accurate mapper for long, error-prone reads + +*homepage*: + +version | toolchain +--------|---------- +``0.6.4`` | ``foss/2019b`` 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..bdf27a6bf --- /dev/null +++ b/docs/version-specific/supported-software/g/Graphene.md @@ -0,0 +1,13 @@ +# 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`` 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..19494f47d --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphicsMagick.md @@ -0,0 +1,18 @@ +# 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`` 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..b5a825103 --- /dev/null +++ b/docs/version-specific/supported-software/g/Graphviz.md @@ -0,0 +1,24 @@ +# 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`` 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..818d38e20 --- /dev/null +++ b/docs/version-specific/supported-software/g/Greenlet.md @@ -0,0 +1,17 @@ +# 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`` 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..30e565b66 --- /dev/null +++ b/docs/version-specific/supported-software/g/Grep.md @@ -0,0 +1,9 @@ +# 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`` 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..3ff2c16b9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GroIMP.md @@ -0,0 +1,9 @@ +# GroIMP + +GroIMP (Growth Grammar-related Interactive Modelling Platform) is a 3D-modelling platform. + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``system`` 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..186b8abd3 --- /dev/null +++ b/docs/version-specific/supported-software/g/GromacsWrapper.md @@ -0,0 +1,9 @@ +# 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`` 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..2cc6e1f30 --- /dev/null +++ b/docs/version-specific/supported-software/g/Groovy.md @@ -0,0 +1,10 @@ +# 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`` 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..1c11e52ce --- /dev/null +++ b/docs/version-specific/supported-software/g/GtkSourceView.md @@ -0,0 +1,11 @@ +# 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`` 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..1ef75e88d --- /dev/null +++ b/docs/version-specific/supported-software/g/Guile.md @@ -0,0 +1,30 @@ +# 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`` 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..be28366a3 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gurobi.md @@ -0,0 +1,33 @@ +# 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`` 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..488ca5cde --- /dev/null +++ b/docs/version-specific/supported-software/g/g2clib.md @@ -0,0 +1,19 @@ +# 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`` 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..8a5a7f3c1 --- /dev/null +++ b/docs/version-specific/supported-software/g/g2lib.md @@ -0,0 +1,17 @@ +# 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`` 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..017581715 --- /dev/null +++ b/docs/version-specific/supported-software/g/g2log.md @@ -0,0 +1,10 @@ +# g2log + +g2log, efficient asynchronous logger using C++11 + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/8.3.0`` +``1.0`` | ``foss/2016b`` 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..4dc4609ad --- /dev/null +++ b/docs/version-specific/supported-software/g/gRPC.md @@ -0,0 +1,11 @@ +# 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`` 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..043dea108 --- /dev/null +++ b/docs/version-specific/supported-software/g/gSOAP.md @@ -0,0 +1,10 @@ +# 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`` 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..02e9d4082 --- /dev/null +++ b/docs/version-specific/supported-software/g/gap.md @@ -0,0 +1,11 @@ +# 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`` 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..5677d8ca2 --- /dev/null +++ b/docs/version-specific/supported-software/g/gappa.md @@ -0,0 +1,9 @@ +# 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`` 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..300b4ce84 --- /dev/null +++ b/docs/version-specific/supported-software/g/garnett.md @@ -0,0 +1,9 @@ +# 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`` 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..6eecf98cc --- /dev/null +++ b/docs/version-specific/supported-software/g/gawk.md @@ -0,0 +1,14 @@ +# 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`` 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..b8303c754 --- /dev/null +++ b/docs/version-specific/supported-software/g/gbasis.md @@ -0,0 +1,9 @@ +# gbasis + +Python library for analytical evaluation and integration of Gaussian-type basis functions and related quantities. + +*homepage*: + +version | toolchain +--------|---------- +``20210904`` | ``intel/2022a`` 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..8770a37f0 --- /dev/null +++ b/docs/version-specific/supported-software/g/gbs2ploidy.md @@ -0,0 +1,9 @@ +# gbs2ploidy + +Inference of Ploidy from (Genotyping-by-Sequencing) GBS Data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-R-3.4.3`` | ``intel/2017b`` 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..df03308b7 --- /dev/null +++ b/docs/version-specific/supported-software/g/gc.md @@ -0,0 +1,21 @@ +# 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`` 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..632620aa4 --- /dev/null +++ b/docs/version-specific/supported-software/g/gcccuda.md @@ -0,0 +1,16 @@ +# 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`` 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..629d5091b --- /dev/null +++ b/docs/version-specific/supported-software/g/gcloud.md @@ -0,0 +1,10 @@ +# gcloud + +Libraries and tools for interacting with Google Cloud products and services. + +*homepage*: + +version | toolchain +--------|---------- +``382.0.0`` | ``system`` +``472.0.0`` | ``system`` 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..466561b13 --- /dev/null +++ b/docs/version-specific/supported-software/g/gcsfs.md @@ -0,0 +1,9 @@ +# gcsfs + +Pythonic file-system interface for Google Cloud Storage. + +*homepage*: + +version | toolchain +--------|---------- +``2023.12.2.post1`` | ``foss/2023a`` 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..98fb1c677 --- /dev/null +++ b/docs/version-specific/supported-software/g/gdbgui.md @@ -0,0 +1,9 @@ +# 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`` 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..d0c54be14 --- /dev/null +++ b/docs/version-specific/supported-software/g/gdbm.md @@ -0,0 +1,10 @@ +# 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`` 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..5a249edc7 --- /dev/null +++ b/docs/version-specific/supported-software/g/gdc-client.md @@ -0,0 +1,13 @@ +# 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`` 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..75e8f1fe6 --- /dev/null +++ b/docs/version-specific/supported-software/g/gdist.md @@ -0,0 +1,9 @@ +# 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`` 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..8445b42b3 --- /dev/null +++ b/docs/version-specific/supported-software/g/gearshifft.md @@ -0,0 +1,9 @@ +# gearshifft + +Benchmark Suite for Heterogenuous FFT Implementations + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``foss/2019a`` 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..67b1c8752 --- /dev/null +++ b/docs/version-specific/supported-software/g/gemelli.md @@ -0,0 +1,9 @@ +# 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`` 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..d79104eb9 --- /dev/null +++ b/docs/version-specific/supported-software/g/gemmi.md @@ -0,0 +1,10 @@ +# 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`` 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..47552d4b0 --- /dev/null +++ b/docs/version-specific/supported-software/g/gencore_variant_detection.md @@ -0,0 +1,9 @@ +# gencore_variant_detection + +This is a bundled install of many software packages for doing variant detection analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``system`` 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..abee3c725 --- /dev/null +++ b/docs/version-specific/supported-software/g/gengetopt.md @@ -0,0 +1,13 @@ +# 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`` 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..1ad3d3cbb --- /dev/null +++ b/docs/version-specific/supported-software/g/genomepy.md @@ -0,0 +1,9 @@ +# 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`` 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..08fc89734 --- /dev/null +++ b/docs/version-specific/supported-software/g/genozip.md @@ -0,0 +1,9 @@ +# 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`` 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..f9e57df03 --- /dev/null +++ b/docs/version-specific/supported-software/g/gensim.md @@ -0,0 +1,12 @@ +# 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`` 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..a37ca5e1d --- /dev/null +++ b/docs/version-specific/supported-software/g/geocube.md @@ -0,0 +1,10 @@ +# 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`` 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..e49c2817e --- /dev/null +++ b/docs/version-specific/supported-software/g/geopandas.md @@ -0,0 +1,18 @@ +# 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`` 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..643e3c477 --- /dev/null +++ b/docs/version-specific/supported-software/g/geopy.md @@ -0,0 +1,11 @@ +# 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`` 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..97b077c4d --- /dev/null +++ b/docs/version-specific/supported-software/g/georges.md @@ -0,0 +1,10 @@ +# 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`` 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..3debbd68e --- /dev/null +++ b/docs/version-specific/supported-software/g/geosphere.md @@ -0,0 +1,9 @@ +# 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`` 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..aa4606f82 --- /dev/null +++ b/docs/version-specific/supported-software/g/gettext.md @@ -0,0 +1,46 @@ +# 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`` 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..29f9bc925 --- /dev/null +++ b/docs/version-specific/supported-software/g/gexiv2.md @@ -0,0 +1,9 @@ +# gexiv2 + +gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.2`` | ``GCCcore/10.3.0`` 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..f308095b3 --- /dev/null +++ b/docs/version-specific/supported-software/g/gfbf.md @@ -0,0 +1,14 @@ +# 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`` 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..d10cb7920 --- /dev/null +++ b/docs/version-specific/supported-software/g/gffread.md @@ -0,0 +1,15 @@ +# 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`` 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..1780c590c --- /dev/null +++ b/docs/version-specific/supported-software/g/gffutils.md @@ -0,0 +1,9 @@ +# 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`` 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..cb6f5ca28 --- /dev/null +++ b/docs/version-specific/supported-software/g/gflags.md @@ -0,0 +1,20 @@ +# 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`` 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..6cd3f662d --- /dev/null +++ b/docs/version-specific/supported-software/g/gh.md @@ -0,0 +1,10 @@ +# gh + +gh is GitHub on the command line. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``system`` +``2.20.2`` | ``system`` 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..a11369fa9 --- /dev/null +++ b/docs/version-specific/supported-software/g/giac.md @@ -0,0 +1,10 @@ +# 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`` 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..a999f1c0e --- /dev/null +++ b/docs/version-specific/supported-software/g/giflib.md @@ -0,0 +1,19 @@ +# 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`` 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..0fd5664b4 --- /dev/null +++ b/docs/version-specific/supported-software/g/gifsicle.md @@ -0,0 +1,10 @@ +# 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`` 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..c74e7ad3f --- /dev/null +++ b/docs/version-specific/supported-software/g/gimkl.md @@ -0,0 +1,11 @@ +# 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`` 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..a5b458f16 --- /dev/null +++ b/docs/version-specific/supported-software/g/gimpi.md @@ -0,0 +1,13 @@ +# 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`` 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..e0862a5ad --- /dev/null +++ b/docs/version-specific/supported-software/g/gimpic.md @@ -0,0 +1,9 @@ +# 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`` 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..863149a65 --- /dev/null +++ b/docs/version-specific/supported-software/g/giolf.md @@ -0,0 +1,10 @@ +# 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`` 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..9291b49af --- /dev/null +++ b/docs/version-specific/supported-software/g/giolfc.md @@ -0,0 +1,9 @@ +# 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`` 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..784f7a5b8 --- /dev/null +++ b/docs/version-specific/supported-software/g/git-annex.md @@ -0,0 +1,10 @@ +# 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`` 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..7997706fc --- /dev/null +++ b/docs/version-specific/supported-software/g/git-extras.md @@ -0,0 +1,9 @@ +# git-extras + +Extra useful scripts for git + +*homepage*: + +version | toolchain +--------|---------- +``5.1.0`` | ``foss/2016a`` 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..f5b3d2cbb --- /dev/null +++ b/docs/version-specific/supported-software/g/git-lfs.md @@ -0,0 +1,15 @@ +# 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`` 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..57be3a23d --- /dev/null +++ b/docs/version-specific/supported-software/g/git.md @@ -0,0 +1,31 @@ +# 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`` 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..71aea2192 --- /dev/null +++ b/docs/version-specific/supported-software/g/gkmSVM.md @@ -0,0 +1,9 @@ +# gkmSVM + +Gapped-Kmer Support Vector Machine. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.82.0`` | ``-R-4.2.1`` | ``foss/2022a`` 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..eace648a9 --- /dev/null +++ b/docs/version-specific/supported-software/g/glew.md @@ -0,0 +1,24 @@ +# 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`` 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..d93b9aed9 --- /dev/null +++ b/docs/version-specific/supported-software/g/glib-networking.md @@ -0,0 +1,11 @@ +# 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`` 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..f0f4c351f --- /dev/null +++ b/docs/version-specific/supported-software/g/glibc.md @@ -0,0 +1,11 @@ +# 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`` 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..9f21ae853 --- /dev/null +++ b/docs/version-specific/supported-software/g/glog.md @@ -0,0 +1,17 @@ +# 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`` 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..7f8654262 --- /dev/null +++ b/docs/version-specific/supported-software/g/glproto.md @@ -0,0 +1,11 @@ +# 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`` 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..b28801363 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmpich.md @@ -0,0 +1,10 @@ +# gmpich + +gcc and GFortran based compiler toolchain, including MPICH for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2016a`` | ``system`` +``2017.08`` | ``system`` 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..e72a3c97b --- /dev/null +++ b/docs/version-specific/supported-software/g/gmpolf.md @@ -0,0 +1,10 @@ +# 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`` 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..88ff9e8ac --- /dev/null +++ b/docs/version-specific/supported-software/g/gmpy2.md @@ -0,0 +1,29 @@ +# 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`` 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..de1b76c95 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmsh.md @@ -0,0 +1,19 @@ +# 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`` 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..40f7c54d6 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmvapich2.md @@ -0,0 +1,10 @@ +# gmvapich2 + +GNU Compiler Collection (GCC) based compiler toolchain, including MVAPICH2 for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``1.7.20`` | ``system`` +``2016a`` | ``system`` 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..4a20f89e1 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmvolf.md @@ -0,0 +1,10 @@ +# 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`` 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..531759384 --- /dev/null +++ b/docs/version-specific/supported-software/g/gnupg-bundle.md @@ -0,0 +1,9 @@ +# gnupg-bundle + +GnuPG — The Universal Crypto Engine + +*homepage*: + +version | toolchain +--------|---------- +``20240306`` | ``GCCcore/13.2.0`` 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..dfb9f83d8 --- /dev/null +++ b/docs/version-specific/supported-software/g/gnuplot.md @@ -0,0 +1,29 @@ +# 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`` 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..6bc9578fb --- /dev/null +++ b/docs/version-specific/supported-software/g/goalign.md @@ -0,0 +1,9 @@ +# goalign + +Goalign is a set of command line tools to manipulate multiple alignments. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``system`` 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..cfd229264 --- /dev/null +++ b/docs/version-specific/supported-software/g/gobff.md @@ -0,0 +1,12 @@ +# 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`` 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..5bb89a216 --- /dev/null +++ b/docs/version-specific/supported-software/g/goblf.md @@ -0,0 +1,10 @@ +# 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`` 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..3d2cd700e --- /dev/null +++ b/docs/version-specific/supported-software/g/gofasta.md @@ -0,0 +1,9 @@ +# 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`` 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..c97fbf051 --- /dev/null +++ b/docs/version-specific/supported-software/g/golf.md @@ -0,0 +1,10 @@ +# golf + +GNU Compiler Collection (GCC) based compiler toolchain, including OpenBLAS (BLAS and LAPACK support) and FFTW. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2018a`` | ``system`` +``2020a`` | ``system`` 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..8fe50c607 --- /dev/null +++ b/docs/version-specific/supported-software/g/gomkl.md @@ -0,0 +1,16 @@ +# 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`` 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..4c49fb6aa --- /dev/null +++ b/docs/version-specific/supported-software/g/gompi.md @@ -0,0 +1,34 @@ +# 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`` 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..970cf785b --- /dev/null +++ b/docs/version-specific/supported-software/g/gompic.md @@ -0,0 +1,15 @@ +# 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`` 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..04a54cb75 --- /dev/null +++ b/docs/version-specific/supported-software/g/google-java-format.md @@ -0,0 +1,9 @@ +# google-java-format + +Reformats Java source code to comply with Google Java Style. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7`` | ``-Java-1.8`` | ``system`` 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..bc428be5b --- /dev/null +++ b/docs/version-specific/supported-software/g/googletest.md @@ -0,0 +1,22 @@ +# 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`` 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..4273262bf --- /dev/null +++ b/docs/version-specific/supported-software/g/gotree.md @@ -0,0 +1,9 @@ +# gotree + +GoTree is a set of command line tools to manipulate phylogenetic trees. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``system`` 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..c752869d4 --- /dev/null +++ b/docs/version-specific/supported-software/g/gperf.md @@ -0,0 +1,28 @@ +# 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`` 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..b5b5301bf --- /dev/null +++ b/docs/version-specific/supported-software/g/gperftools.md @@ -0,0 +1,21 @@ +# 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`` 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..cb45fae93 --- /dev/null +++ b/docs/version-specific/supported-software/g/gpustat.md @@ -0,0 +1,14 @@ +# 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`` 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..c74a3404a --- /dev/null +++ b/docs/version-specific/supported-software/g/gradunwarp.md @@ -0,0 +1,11 @@ +# 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`` 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..a94d745a4 --- /dev/null +++ b/docs/version-specific/supported-software/g/graph-tool.md @@ -0,0 +1,11 @@ +# 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`` 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..612f32aad --- /dev/null +++ b/docs/version-specific/supported-software/g/graphite2.md @@ -0,0 +1,16 @@ +# 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`` 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..181960ccc --- /dev/null +++ b/docs/version-specific/supported-software/g/graphviz-python.md @@ -0,0 +1,14 @@ +# 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`` 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..92232cf74 --- /dev/null +++ b/docs/version-specific/supported-software/g/gretl.md @@ -0,0 +1,9 @@ +# gretl + +A cross-platform software package for econometric analysis + +*homepage*: + +version | toolchain +--------|---------- +``2020a`` | ``foss/2019a`` 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..8bf3d5db5 --- /dev/null +++ b/docs/version-specific/supported-software/g/grib_api.md @@ -0,0 +1,13 @@ +# 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`` 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..440aa2152 --- /dev/null +++ b/docs/version-specific/supported-software/g/grid.md @@ -0,0 +1,9 @@ +# 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`` 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..b0b6c3b87 --- /dev/null +++ b/docs/version-specific/supported-software/g/groff.md @@ -0,0 +1,19 @@ +# 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`` 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..fa1950341 --- /dev/null +++ b/docs/version-specific/supported-software/g/grpcio.md @@ -0,0 +1,9 @@ +# 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`` 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..64769353e --- /dev/null +++ b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md @@ -0,0 +1,9 @@ +# 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`` 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..f457fc72f --- /dev/null +++ b/docs/version-specific/supported-software/g/gspell.md @@ -0,0 +1,9 @@ +# gspell + +gspell provides a flexible API to add spell-checking to a GTK application. + +*homepage*: + +version | toolchain +--------|---------- +``1.12.2`` | ``GCCcore/12.3.0`` 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..66757db01 --- /dev/null +++ b/docs/version-specific/supported-software/g/gsport.md @@ -0,0 +1,9 @@ +# 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`` 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..93ed03c57 --- /dev/null +++ b/docs/version-specific/supported-software/g/gsutil.md @@ -0,0 +1,10 @@ +# 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`` 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..44b4c91ab --- /dev/null +++ b/docs/version-specific/supported-software/g/gsw.md @@ -0,0 +1,9 @@ +# 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`` 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..c7fe1c7b8 --- /dev/null +++ b/docs/version-specific/supported-software/g/gubbins.md @@ -0,0 +1,9 @@ +# 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`` 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..e5c085f4a --- /dev/null +++ b/docs/version-specific/supported-software/g/guenomu.md @@ -0,0 +1,9 @@ +# 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`` 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..549a4e76f --- /dev/null +++ b/docs/version-specific/supported-software/g/gzip.md @@ -0,0 +1,23 @@ +# 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`` 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..ff2feaec5 --- /dev/null +++ b/docs/version-specific/supported-software/g/index.md @@ -0,0 +1,238 @@ +# List of supported software (g) + + * [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) 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..74b9e5036 --- /dev/null +++ b/docs/version-specific/supported-software/h/H5hut.md @@ -0,0 +1,9 @@ +# H5hut + +HDF5 Utility Toolkit: High-Performance I/O Library for Particle-based Simulations + +*homepage*: + +version | toolchain +--------|---------- +``1.99.13`` | ``intel/2016b`` 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..4714815a6 --- /dev/null +++ b/docs/version-specific/supported-software/h/HAL.md @@ -0,0 +1,9 @@ +# 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`` 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..32d3f8c93 --- /dev/null +++ b/docs/version-specific/supported-software/h/HAPGEN2.md @@ -0,0 +1,9 @@ +# HAPGEN2 + +'HAPGEN2' simulates case control datasets at SNP markers. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``system`` 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..b38faf43b --- /dev/null +++ b/docs/version-specific/supported-software/h/HBase.md @@ -0,0 +1,9 @@ +# HBase + +Apache HBase. is the Hadoop database, a distributed, scalable, big data store. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``system`` 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..43ac486e0 --- /dev/null +++ b/docs/version-specific/supported-software/h/HD-BET.md @@ -0,0 +1,10 @@ +# HD-BET + +Tool for brain extraction. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20220318`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``20220318`` | | ``foss/2021a`` 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..34195132b --- /dev/null +++ b/docs/version-specific/supported-software/h/HDBSCAN.md @@ -0,0 +1,11 @@ +# 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`` 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..a358f09dd --- /dev/null +++ b/docs/version-specific/supported-software/h/HDDM.md @@ -0,0 +1,13 @@ +# 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`` 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..6f2837f4b --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF-EOS.md @@ -0,0 +1,11 @@ +# 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`` 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..905b01dcd --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF-EOS2.md @@ -0,0 +1,9 @@ +# 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`` 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..cd7c49b71 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF-EOS5.md @@ -0,0 +1,11 @@ +# 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`` 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..ba380d5e1 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF.md @@ -0,0 +1,25 @@ +# 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`` 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..871116622 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF5.md @@ -0,0 +1,107 @@ +# 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`` 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..c137a9b1d --- /dev/null +++ b/docs/version-specific/supported-software/h/HDFView.md @@ -0,0 +1,10 @@ +# 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`` 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..4662659d8 --- /dev/null +++ b/docs/version-specific/supported-software/h/HEALPix.md @@ -0,0 +1,10 @@ +# HEALPix + +Hierarchical Equal Area isoLatitude Pixelation of a sphere. + +*homepage*: + +version | toolchain +--------|---------- +``3.50`` | ``GCCcore/7.3.0`` +``3.50`` | ``GCCcore/8.2.0`` 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..18f47e82b --- /dev/null +++ b/docs/version-specific/supported-software/h/HF-Datasets.md @@ -0,0 +1,9 @@ +# 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`` 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..4a97d56f7 --- /dev/null +++ b/docs/version-specific/supported-software/h/HH-suite.md @@ -0,0 +1,19 @@ +# 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`` 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..1f65228d2 --- /dev/null +++ b/docs/version-specific/supported-software/h/HIP.md @@ -0,0 +1,9 @@ +# 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`` 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..0f79b3589 --- /dev/null +++ b/docs/version-specific/supported-software/h/HIPS.md @@ -0,0 +1,9 @@ +# 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`` 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..3171f95ee --- /dev/null +++ b/docs/version-specific/supported-software/h/HISAT2.md @@ -0,0 +1,24 @@ +# 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`` 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..10f154f90 --- /dev/null +++ b/docs/version-specific/supported-software/h/HLAminer.md @@ -0,0 +1,9 @@ +# 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`` 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..683eefefd --- /dev/null +++ b/docs/version-specific/supported-software/h/HMMER.md @@ -0,0 +1,34 @@ +# 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`` 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..200578d1d --- /dev/null +++ b/docs/version-specific/supported-software/h/HMMER2.md @@ -0,0 +1,11 @@ +# 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`` 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..6211acc53 --- /dev/null +++ b/docs/version-specific/supported-software/h/HOME.md @@ -0,0 +1,9 @@ +# 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`` 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..000945a55 --- /dev/null +++ b/docs/version-specific/supported-software/h/HOMER.md @@ -0,0 +1,9 @@ +# 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`` 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..7fcc89881 --- /dev/null +++ b/docs/version-specific/supported-software/h/HOOMD-blue.md @@ -0,0 +1,10 @@ +# 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`` 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..480ec4492 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPCC.md @@ -0,0 +1,9 @@ +# 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`` 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..fadf7fc86 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPCG.md @@ -0,0 +1,23 @@ +# 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`` 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..a2517d587 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPCX.md @@ -0,0 +1,9 @@ +# 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`` 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..727790e6f --- /dev/null +++ b/docs/version-specific/supported-software/h/HPDBSCAN.md @@ -0,0 +1,10 @@ +# HPDBSCAN + +Highly parallel density based spatial clustering for application with noise + +*homepage*: + +version | toolchain +--------|---------- +``20171110`` | ``foss/2017b`` +``20210826`` | ``foss/2020b`` 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..6d4570682 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPL.md @@ -0,0 +1,128 @@ +# 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`` 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..2ee687b56 --- /dev/null +++ b/docs/version-specific/supported-software/h/HTSeq.md @@ -0,0 +1,27 @@ +# 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`` 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..8e5b569fa --- /dev/null +++ b/docs/version-specific/supported-software/h/HTSlib.md @@ -0,0 +1,46 @@ +# 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`` 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..90de5340c --- /dev/null +++ b/docs/version-specific/supported-software/h/HTSplotter.md @@ -0,0 +1,10 @@ +# 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`` 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..b6fa1cada --- /dev/null +++ b/docs/version-specific/supported-software/h/Hadoop.md @@ -0,0 +1,17 @@ +# 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`` 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..0c47bce7b --- /dev/null +++ b/docs/version-specific/supported-software/h/HarfBuzz.md @@ -0,0 +1,33 @@ +# 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`` 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..c623b26ad --- /dev/null +++ b/docs/version-specific/supported-software/h/Harminv.md @@ -0,0 +1,14 @@ +# 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`` 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..ec841826d --- /dev/null +++ b/docs/version-specific/supported-software/h/HeFFTe.md @@ -0,0 +1,10 @@ +# HeFFTe + +Highly Efficient FFT for Exascale (HeFFTe) library + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2020a`` +``2.4.0`` | ``foss/2023b`` 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..b9a3a3a83 --- /dev/null +++ b/docs/version-specific/supported-software/h/Health-GPS.md @@ -0,0 +1,10 @@ +# 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`` 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..f57c7ffa8 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hello.md @@ -0,0 +1,9 @@ +# 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`` 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..3c7bfba87 --- /dev/null +++ b/docs/version-specific/supported-software/h/HepMC.md @@ -0,0 +1,9 @@ +# HepMC + +HepMC is a standard for storing Monte Carlo event data. + +*homepage*: + +version | toolchain +--------|---------- +``2.06.11`` | ``gompi/2022a`` 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..b1e550b11 --- /dev/null +++ b/docs/version-specific/supported-software/h/HepMC3.md @@ -0,0 +1,10 @@ +# 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`` 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..ec2c68a65 --- /dev/null +++ b/docs/version-specific/supported-software/h/HiC-Pro.md @@ -0,0 +1,10 @@ +# 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`` 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..d47930b5a --- /dev/null +++ b/docs/version-specific/supported-software/h/HiCExplorer.md @@ -0,0 +1,10 @@ +# 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`` 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..c9b8234cc --- /dev/null +++ b/docs/version-specific/supported-software/h/HiCMatrix.md @@ -0,0 +1,9 @@ +# HiCMatrix + +This library implements the central class of HiCExplorer to manage Hi-C interaction matrices. + +*homepage*: + +version | toolchain +--------|---------- +``17`` | ``foss/2022a`` 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..02beaffd6 --- /dev/null +++ b/docs/version-specific/supported-software/h/HiGHS.md @@ -0,0 +1,9 @@ +# 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`` 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..29c2d9aed --- /dev/null +++ b/docs/version-specific/supported-software/h/HighFive.md @@ -0,0 +1,11 @@ +# 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`` 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..5e1df5448 --- /dev/null +++ b/docs/version-specific/supported-software/h/Highway.md @@ -0,0 +1,15 @@ +# 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`` 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..628ba4efe --- /dev/null +++ b/docs/version-specific/supported-software/h/Horovod.md @@ -0,0 +1,42 @@ +# 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`` 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..dbb43f76b --- /dev/null +++ b/docs/version-specific/supported-software/h/HyPhy.md @@ -0,0 +1,12 @@ +# 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`` 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..7a7100ac4 --- /dev/null +++ b/docs/version-specific/supported-software/h/HyPo.md @@ -0,0 +1,9 @@ +# 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`` 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..df42751d2 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hybpiper.md @@ -0,0 +1,9 @@ +# 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`` 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..6e8007497 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hydra.md @@ -0,0 +1,11 @@ +# 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`` 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..282db7b15 --- /dev/null +++ b/docs/version-specific/supported-software/h/HyperQueue.md @@ -0,0 +1,9 @@ +# 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`` 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..be9a8be09 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hyperopt.md @@ -0,0 +1,14 @@ +# 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`` 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..b939cc02a --- /dev/null +++ b/docs/version-specific/supported-software/h/Hypre.md @@ -0,0 +1,27 @@ +# 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`` 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..9d338ad9c --- /dev/null +++ b/docs/version-specific/supported-software/h/h4toh5.md @@ -0,0 +1,13 @@ +# 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`` 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..aca7fd3fe --- /dev/null +++ b/docs/version-specific/supported-software/h/h5netcdf.md @@ -0,0 +1,11 @@ +# 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`` 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..ce0c438fb --- /dev/null +++ b/docs/version-specific/supported-software/h/h5py.md @@ -0,0 +1,80 @@ +# 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`` 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..759c2460f --- /dev/null +++ b/docs/version-specific/supported-software/h/hampel.md @@ -0,0 +1,9 @@ +# 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`` 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..a75a9f459 --- /dev/null +++ b/docs/version-specific/supported-software/h/hanythingondemand.md @@ -0,0 +1,27 @@ +# 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`` 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..592cd8dda --- /dev/null +++ b/docs/version-specific/supported-software/h/harmony.md @@ -0,0 +1,10 @@ +# 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`` 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..a15155cf2 --- /dev/null +++ b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md @@ -0,0 +1,9 @@ +# 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`` 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..f237b2163 --- /dev/null +++ b/docs/version-specific/supported-software/h/hatchling.md @@ -0,0 +1,10 @@ +# 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`` 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..e8eaf7ed8 --- /dev/null +++ b/docs/version-specific/supported-software/h/hdWGCNA.md @@ -0,0 +1,9 @@ +# 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`` 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..b2eb7f51f --- /dev/null +++ b/docs/version-specific/supported-software/h/hdf5storage.md @@ -0,0 +1,10 @@ +# 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`` 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..3d35cd191 --- /dev/null +++ b/docs/version-specific/supported-software/h/heaptrack.md @@ -0,0 +1,9 @@ +# heaptrack + +A heap memory profiler for Linux. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2016b`` 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..1a3841d2b --- /dev/null +++ b/docs/version-specific/supported-software/h/hector.md @@ -0,0 +1,9 @@ +# 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`` 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..5d55d05b7 --- /dev/null +++ b/docs/version-specific/supported-software/h/help2man.md @@ -0,0 +1,44 @@ +# 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`` 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..db995b84b --- /dev/null +++ b/docs/version-specific/supported-software/h/hevea.md @@ -0,0 +1,9 @@ +# hevea + +A quite complete and fast LATEX to HTML translator + +*homepage*: + +version | toolchain +--------|---------- +``2.36`` | ``GCC/13.2.0`` 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..1b84d31d8 --- /dev/null +++ b/docs/version-specific/supported-software/h/hic-straw.md @@ -0,0 +1,9 @@ +# hic-straw + +Straw is a library which allows rapid streaming of contact data from .hic files. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``foss/2022a`` 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..8bdfa34f2 --- /dev/null +++ b/docs/version-specific/supported-software/h/hierfstat.md @@ -0,0 +1,9 @@ +# 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`` 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..5385781c3 --- /dev/null +++ b/docs/version-specific/supported-software/h/hifiasm.md @@ -0,0 +1,13 @@ +# 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`` 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..b3d81565b --- /dev/null +++ b/docs/version-specific/supported-software/h/hipSYCL.md @@ -0,0 +1,10 @@ +# 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`` 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..8af6b4690 --- /dev/null +++ b/docs/version-specific/supported-software/h/hipify-clang.md @@ -0,0 +1,9 @@ +# 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`` 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..d1aae5965 --- /dev/null +++ b/docs/version-specific/supported-software/h/hiredis.md @@ -0,0 +1,13 @@ +# 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`` 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..266fb6d75 --- /dev/null +++ b/docs/version-specific/supported-software/h/histolab.md @@ -0,0 +1,10 @@ +# histolab + +Library for Digital Pathology Image Processing + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``foss/2021a`` +``0.4.1`` | ``foss/2021b`` 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..5f283a1bf --- /dev/null +++ b/docs/version-specific/supported-software/h/hivtrace.md @@ -0,0 +1,9 @@ +# 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`` 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..a8fd7e502 --- /dev/null +++ b/docs/version-specific/supported-software/h/hl7apy.md @@ -0,0 +1,9 @@ +# 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`` 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..86452dc25 --- /dev/null +++ b/docs/version-specific/supported-software/h/hmmcopy_utils.md @@ -0,0 +1,9 @@ +# 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`` 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..805b39e9b --- /dev/null +++ b/docs/version-specific/supported-software/h/hmmlearn.md @@ -0,0 +1,12 @@ +# 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`` 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..72bfd7ef3 --- /dev/null +++ b/docs/version-specific/supported-software/h/horton.md @@ -0,0 +1,11 @@ +# 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`` 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..a67ab94de --- /dev/null +++ b/docs/version-specific/supported-software/h/how_are_we_stranded_here.md @@ -0,0 +1,9 @@ +# how_are_we_stranded_here + +Python package for testing strandedness of RNA-Seq fastq files + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2021b`` 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..badad8513 --- /dev/null +++ b/docs/version-specific/supported-software/h/htop.md @@ -0,0 +1,12 @@ +# 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`` 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..457d50b9c --- /dev/null +++ b/docs/version-specific/supported-software/h/hub.md @@ -0,0 +1,9 @@ +# 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`` 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..dfd1b0887 --- /dev/null +++ b/docs/version-specific/supported-software/h/humann.md @@ -0,0 +1,9 @@ +# 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`` 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..3e2231efa --- /dev/null +++ b/docs/version-specific/supported-software/h/hunspell.md @@ -0,0 +1,13 @@ +# 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`` 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..e35afca0a --- /dev/null +++ b/docs/version-specific/supported-software/h/hwloc.md @@ -0,0 +1,56 @@ +# 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`` 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..ebd5425ff --- /dev/null +++ b/docs/version-specific/supported-software/h/hyperspy.md @@ -0,0 +1,9 @@ +# 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`` 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..8eeb2ee69 --- /dev/null +++ b/docs/version-specific/supported-software/h/hypothesis.md @@ -0,0 +1,25 @@ +# 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`` 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..3b9f00d1e --- /dev/null +++ b/docs/version-specific/supported-software/h/index.md @@ -0,0 +1,91 @@ +# List of supported software (h) + + * [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) 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..ae3fdf9d1 --- /dev/null +++ b/docs/version-specific/supported-software/i/I-TASSER.md @@ -0,0 +1,11 @@ +# 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`` 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..284282314 --- /dev/null +++ b/docs/version-specific/supported-software/i/ICA-AROMA.md @@ -0,0 +1,9 @@ +# 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`` 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..2a5b18c31 --- /dev/null +++ b/docs/version-specific/supported-software/i/ICON.md @@ -0,0 +1,9 @@ +# 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`` 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..a9c43a26e --- /dev/null +++ b/docs/version-specific/supported-software/i/ICU.md @@ -0,0 +1,22 @@ +# 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`` 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..f76be8661 --- /dev/null +++ b/docs/version-specific/supported-software/i/IDBA-UD.md @@ -0,0 +1,16 @@ +# 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`` 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..d60274bff --- /dev/null +++ b/docs/version-specific/supported-software/i/IDG.md @@ -0,0 +1,9 @@ +# 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`` 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..d26ecbb29 --- /dev/null +++ b/docs/version-specific/supported-software/i/IGMPlot.md @@ -0,0 +1,11 @@ +# 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`` 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..036bae70f --- /dev/null +++ b/docs/version-specific/supported-software/i/IGV.md @@ -0,0 +1,15 @@ +# 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`` 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..82f270884 --- /dev/null +++ b/docs/version-specific/supported-software/i/IGVTools.md @@ -0,0 +1,12 @@ +# 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`` 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..dd946c9fb --- /dev/null +++ b/docs/version-specific/supported-software/i/IJulia.md @@ -0,0 +1,10 @@ +# 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`` 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..6c5266946 --- /dev/null +++ b/docs/version-specific/supported-software/i/ILAMB.md @@ -0,0 +1,9 @@ +# 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`` 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..bc87481e4 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMB.md @@ -0,0 +1,21 @@ +# 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`` 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..f36da2722 --- /dev/null +++ b/docs/version-specific/supported-software/i/IML.md @@ -0,0 +1,10 @@ +# 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`` 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..fc1947e49 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMOD.md @@ -0,0 +1,11 @@ +# 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`` 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..526bcf44c --- /dev/null +++ b/docs/version-specific/supported-software/i/IMPUTE2.md @@ -0,0 +1,12 @@ +# 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`` 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..950663b70 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMa2.md @@ -0,0 +1,9 @@ +# IMa2 + +IMa2 is a progam for population genetic analysis that can handle two or more populations. + +*homepage*: + +version | toolchain +--------|---------- +``8.27.12`` | ``foss/2016a`` 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..33e079123 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMa2p.md @@ -0,0 +1,10 @@ +# 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`` 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..f32a0c20d --- /dev/null +++ b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md @@ -0,0 +1,9 @@ +# 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`` 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..d5615fc7a --- /dev/null +++ b/docs/version-specific/supported-software/i/INTEGRATE.md @@ -0,0 +1,9 @@ +# 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`` 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..e11644b01 --- /dev/null +++ b/docs/version-specific/supported-software/i/IOR.md @@ -0,0 +1,14 @@ +# 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`` 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..4da60006a --- /dev/null +++ b/docs/version-specific/supported-software/i/IOzone.md @@ -0,0 +1,9 @@ +# 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`` 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..6d8af1a7d --- /dev/null +++ b/docs/version-specific/supported-software/i/IPM.md @@ -0,0 +1,13 @@ +# 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`` 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..290333d7e --- /dev/null +++ b/docs/version-specific/supported-software/i/IPy.md @@ -0,0 +1,9 @@ +# IPy + +Class and tools for handling of IPv4 and IPv6 addresses and networks + +*homepage*: + +version | toolchain +--------|---------- +``0.83`` | ``system`` 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..758d9cf4b --- /dev/null +++ b/docs/version-specific/supported-software/i/IPython.md @@ -0,0 +1,57 @@ +# 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`` 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..c4cc5482a --- /dev/null +++ b/docs/version-specific/supported-software/i/IQ-TREE.md @@ -0,0 +1,21 @@ +# 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`` 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..dbc377b4a --- /dev/null +++ b/docs/version-specific/supported-software/i/IRkernel.md @@ -0,0 +1,18 @@ +# 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`` 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..146779d48 --- /dev/null +++ b/docs/version-specific/supported-software/i/ISA-L.md @@ -0,0 +1,15 @@ +# 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`` 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..9aeb0f9a8 --- /dev/null +++ b/docs/version-specific/supported-software/i/ISL.md @@ -0,0 +1,23 @@ +# 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`` 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..93f750962 --- /dev/null +++ b/docs/version-specific/supported-software/i/ITK.md @@ -0,0 +1,29 @@ +# 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`` 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..79fedba01 --- /dev/null +++ b/docs/version-specific/supported-software/i/ITSTool.md @@ -0,0 +1,13 @@ +# 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`` 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..3a61f2312 --- /dev/null +++ b/docs/version-specific/supported-software/i/ITSx.md @@ -0,0 +1,11 @@ +# 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`` 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..637df5f52 --- /dev/null +++ b/docs/version-specific/supported-software/i/IgBLAST.md @@ -0,0 +1,11 @@ +# 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`` 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..c1b72d75e --- /dev/null +++ b/docs/version-specific/supported-software/i/ImageJ.md @@ -0,0 +1,12 @@ +# 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`` 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..a66f1b6a6 --- /dev/null +++ b/docs/version-specific/supported-software/i/ImageMagick.md @@ -0,0 +1,33 @@ +# 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`` 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..e5e708c26 --- /dev/null +++ b/docs/version-specific/supported-software/i/Imath.md @@ -0,0 +1,12 @@ +# 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`` 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..ab80b22d1 --- /dev/null +++ b/docs/version-specific/supported-software/i/Imlib2.md @@ -0,0 +1,9 @@ +# 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`` 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..2e5429bc0 --- /dev/null +++ b/docs/version-specific/supported-software/i/InChI.md @@ -0,0 +1,9 @@ +# 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`` 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..5b95d4e32 --- /dev/null +++ b/docs/version-specific/supported-software/i/InParanoid.md @@ -0,0 +1,9 @@ +# InParanoid + +InParanoid: ortholog groups with inparalogs. + +*homepage*: + +version | toolchain +--------|---------- +``5.0-20220607`` | ``GCC/10.3.0`` 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..4c9d94af6 --- /dev/null +++ b/docs/version-specific/supported-software/i/Inelastica.md @@ -0,0 +1,9 @@ +# 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`` 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..c068ee673 --- /dev/null +++ b/docs/version-specific/supported-software/i/Inferelator.md @@ -0,0 +1,9 @@ +# 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`` 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..fcdb5b872 --- /dev/null +++ b/docs/version-specific/supported-software/i/Infernal.md @@ -0,0 +1,17 @@ +# 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`` 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..fcfa11be5 --- /dev/null +++ b/docs/version-specific/supported-software/i/Infomap.md @@ -0,0 +1,9 @@ +# Infomap + +Multi-level network clustering based on the Map equation. + +*homepage*: + +version | toolchain +--------|---------- +``20190308`` | ``GCC/8.2.0-2.31.1`` 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..3122414f3 --- /dev/null +++ b/docs/version-specific/supported-software/i/Inspector.md @@ -0,0 +1,22 @@ +# 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`` 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..02a15370d --- /dev/null +++ b/docs/version-specific/supported-software/i/IntaRNA.md @@ -0,0 +1,9 @@ +# 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`` 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..361eaefb3 --- /dev/null +++ b/docs/version-specific/supported-software/i/IntelClusterChecker.md @@ -0,0 +1,10 @@ +# 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`` 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..3ff43a785 --- /dev/null +++ b/docs/version-specific/supported-software/i/IntelDAAL.md @@ -0,0 +1,9 @@ +# 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`` 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..1879bbf66 --- /dev/null +++ b/docs/version-specific/supported-software/i/IntelPython.md @@ -0,0 +1,10 @@ +# 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`` 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..02e623e24 --- /dev/null +++ b/docs/version-specific/supported-software/i/InterOp.md @@ -0,0 +1,9 @@ +# 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`` 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..6d337b4fa --- /dev/null +++ b/docs/version-specific/supported-software/i/InterProScan.md @@ -0,0 +1,14 @@ +# 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`` 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..26409e7d1 --- /dev/null +++ b/docs/version-specific/supported-software/i/InterProScan_data.md @@ -0,0 +1,9 @@ +# 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`` 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..6fa6d856f --- /dev/null +++ b/docs/version-specific/supported-software/i/IonQuant.md @@ -0,0 +1,9 @@ +# 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`` 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..4ce0f482a --- /dev/null +++ b/docs/version-specific/supported-software/i/Ipopt.md @@ -0,0 +1,10 @@ +# 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`` 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..f8f3d3fd3 --- /dev/null +++ b/docs/version-specific/supported-software/i/Iris.md @@ -0,0 +1,9 @@ +# 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`` 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..27e5452cf --- /dev/null +++ b/docs/version-specific/supported-software/i/IronPython.md @@ -0,0 +1,9 @@ +# 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`` 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..e46c4ce80 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoNet.md @@ -0,0 +1,9 @@ +# 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`` 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..d2398d551 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoQuant.md @@ -0,0 +1,9 @@ +# 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`` 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..65acb06f8 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoSeq.md @@ -0,0 +1,10 @@ +# 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`` 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..002fc5c7e --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md @@ -0,0 +1,9 @@ +# 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`` 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..b9d86185e --- /dev/null +++ b/docs/version-specific/supported-software/i/i-PI.md @@ -0,0 +1,9 @@ +# 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`` 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..312dc01c3 --- /dev/null +++ b/docs/version-specific/supported-software/i/i-cisTarget.md @@ -0,0 +1,9 @@ +# 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`` 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..8ee684c24 --- /dev/null +++ b/docs/version-specific/supported-software/i/i7z.md @@ -0,0 +1,9 @@ +# i7z + +A better i7 (and now i3, i5) reporting tool for Linux + +*homepage*: + +version | toolchain +--------|---------- +``20131012`` | ``GCCcore/11.2.0`` 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..1f9d91bf2 --- /dev/null +++ b/docs/version-specific/supported-software/i/iCount.md @@ -0,0 +1,9 @@ +# 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`` 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..d716b8194 --- /dev/null +++ b/docs/version-specific/supported-software/i/iVar.md @@ -0,0 +1,11 @@ +# 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`` 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..5c419cbff --- /dev/null +++ b/docs/version-specific/supported-software/i/icc.md @@ -0,0 +1,34 @@ +# 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`` 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..3d6cf2324 --- /dev/null +++ b/docs/version-specific/supported-software/i/iccifort.md @@ -0,0 +1,38 @@ +# 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`` 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..1b04e1e73 --- /dev/null +++ b/docs/version-specific/supported-software/i/iccifortcuda.md @@ -0,0 +1,14 @@ +# 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`` 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..0ef616839 --- /dev/null +++ b/docs/version-specific/supported-software/i/iced.md @@ -0,0 +1,9 @@ +# iced + +Implements the ICE normalization of hic data. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.10`` | ``foss/2022a`` 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..26f5b3f12 --- /dev/null +++ b/docs/version-specific/supported-software/i/ichorCNA.md @@ -0,0 +1,10 @@ +# 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`` 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..0e957b4ac --- /dev/null +++ b/docs/version-specific/supported-software/i/icmake.md @@ -0,0 +1,9 @@ +# 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`` 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..1e72aab37 --- /dev/null +++ b/docs/version-specific/supported-software/i/idemux.md @@ -0,0 +1,9 @@ +# 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`` 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..68664acb8 --- /dev/null +++ b/docs/version-specific/supported-software/i/ieeg-cli.md @@ -0,0 +1,9 @@ +# 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`` 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..55001f6e6 --- /dev/null +++ b/docs/version-specific/supported-software/i/ifort.md @@ -0,0 +1,34 @@ +# 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`` 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..d9d7e10f1 --- /dev/null +++ b/docs/version-specific/supported-software/i/igraph.md @@ -0,0 +1,21 @@ +# 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`` 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..f6815a5fa --- /dev/null +++ b/docs/version-specific/supported-software/i/igv-reports.md @@ -0,0 +1,9 @@ +# 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`` 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..246fbc7d0 --- /dev/null +++ b/docs/version-specific/supported-software/i/igvShiny.md @@ -0,0 +1,9 @@ +# igvShiny + +An htmlwidget version of igv, for RStudio and Shiny apps + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20240112`` | ``-R-4.2.1`` | ``foss/2022a`` 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..8694e3e7f --- /dev/null +++ b/docs/version-specific/supported-software/i/iibff.md @@ -0,0 +1,9 @@ +# iibff + +GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2020b`` | ``system`` 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..28bb30fff --- /dev/null +++ b/docs/version-specific/supported-software/i/iimkl.md @@ -0,0 +1,13 @@ +# 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`` 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..db5902b5a --- /dev/null +++ b/docs/version-specific/supported-software/i/iimpi.md @@ -0,0 +1,55 @@ +# 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`` 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..cd9d86985 --- /dev/null +++ b/docs/version-specific/supported-software/i/iimpic.md @@ -0,0 +1,14 @@ +# 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`` 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..ac4e6b9ba --- /dev/null +++ b/docs/version-specific/supported-software/i/imagecodecs.md @@ -0,0 +1,12 @@ +# 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`` 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..ba6ea17df --- /dev/null +++ b/docs/version-specific/supported-software/i/imageio.md @@ -0,0 +1,19 @@ +# 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`` 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..171ad9ecd --- /dev/null +++ b/docs/version-specific/supported-software/i/imake.md @@ -0,0 +1,12 @@ +# 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`` 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..6f012ff28 --- /dev/null +++ b/docs/version-specific/supported-software/i/imbalanced-learn.md @@ -0,0 +1,15 @@ +# 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`` 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..aa13d87b8 --- /dev/null +++ b/docs/version-specific/supported-software/i/imgaug.md @@ -0,0 +1,17 @@ +# 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`` 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..8a717be16 --- /dev/null +++ b/docs/version-specific/supported-software/i/imkl-FFTW.md @@ -0,0 +1,22 @@ +# 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`` 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..dd7a005df --- /dev/null +++ b/docs/version-specific/supported-software/i/imkl.md @@ -0,0 +1,91 @@ +# 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`` 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..d5dcf1620 --- /dev/null +++ b/docs/version-specific/supported-software/i/immunedeconv.md @@ -0,0 +1,9 @@ +# 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`` 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..ad8f5438b --- /dev/null +++ b/docs/version-specific/supported-software/i/impi.md @@ -0,0 +1,73 @@ +# 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`` 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..6cbe55c5b --- /dev/null +++ b/docs/version-specific/supported-software/i/imutils.md @@ -0,0 +1,10 @@ +# 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`` 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..4609a0fe3 --- /dev/null +++ b/docs/version-specific/supported-software/i/index.md @@ -0,0 +1,119 @@ +# List of supported software (i) + + * [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) 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..6b5394b97 --- /dev/null +++ b/docs/version-specific/supported-software/i/indicators.md @@ -0,0 +1,10 @@ +# 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`` 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..89d90088e --- /dev/null +++ b/docs/version-specific/supported-software/i/inferCNV.md @@ -0,0 +1,16 @@ +# 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`` 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..608b84f8a --- /dev/null +++ b/docs/version-specific/supported-software/i/infercnvpy.md @@ -0,0 +1,11 @@ +# 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`` 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..b725f6437 --- /dev/null +++ b/docs/version-specific/supported-software/i/inflection.md @@ -0,0 +1,9 @@ +# 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`` 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..8b0ce793f --- /dev/null +++ b/docs/version-specific/supported-software/i/inih.md @@ -0,0 +1,9 @@ +# inih + +Direct Rendering Manager runtime library. + +*homepage*: + +version | toolchain +--------|---------- +``57`` | ``GCCcore/12.3.0`` 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..dfdb2da6b --- /dev/null +++ b/docs/version-specific/supported-software/i/inline.md @@ -0,0 +1,9 @@ +# 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`` 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..cd97845ce --- /dev/null +++ b/docs/version-specific/supported-software/i/inputproto.md @@ -0,0 +1,12 @@ +# 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`` 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..efe459cf4 --- /dev/null +++ b/docs/version-specific/supported-software/i/intel-compilers.md @@ -0,0 +1,21 @@ +# 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`` 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..600044810 --- /dev/null +++ b/docs/version-specific/supported-software/i/intel.md @@ -0,0 +1,54 @@ +# 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`` 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..c516ed9dc --- /dev/null +++ b/docs/version-specific/supported-software/i/intelcuda.md @@ -0,0 +1,14 @@ +# 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`` 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..dc5bc3dbf --- /dev/null +++ b/docs/version-specific/supported-software/i/intervaltree-python.md @@ -0,0 +1,14 @@ +# 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`` 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..9280e18a6 --- /dev/null +++ b/docs/version-specific/supported-software/i/intervaltree.md @@ -0,0 +1,14 @@ +# 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`` 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..021a58877 --- /dev/null +++ b/docs/version-specific/supported-software/i/intltool.md @@ -0,0 +1,31 @@ +# 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`` 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..1c2ba1999 --- /dev/null +++ b/docs/version-specific/supported-software/i/io_lib.md @@ -0,0 +1,9 @@ +# 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`` 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..6a2129b95 --- /dev/null +++ b/docs/version-specific/supported-software/i/ioapi.md @@ -0,0 +1,9 @@ +# 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`` 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..29be2238f --- /dev/null +++ b/docs/version-specific/supported-software/i/iodata.md @@ -0,0 +1,9 @@ +# iodata + +Python library for reading, writing, and converting computational chemistry file formats and generating input files. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0a2`` | ``intel/2022a`` 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..7390b2055 --- /dev/null +++ b/docs/version-specific/supported-software/i/iomkl.md @@ -0,0 +1,23 @@ +# 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`` 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..a789bbd51 --- /dev/null +++ b/docs/version-specific/supported-software/i/iompi.md @@ -0,0 +1,23 @@ +# 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`` 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..b636cd384 --- /dev/null +++ b/docs/version-specific/supported-software/i/iperf.md @@ -0,0 +1,11 @@ +# 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`` 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..a5defe00e --- /dev/null +++ b/docs/version-specific/supported-software/i/ipp.md @@ -0,0 +1,12 @@ +# 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`` 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..f12424e3e --- /dev/null +++ b/docs/version-specific/supported-software/i/ipympl.md @@ -0,0 +1,11 @@ +# 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`` 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..934822584 --- /dev/null +++ b/docs/version-specific/supported-software/i/ipyparallel.md @@ -0,0 +1,9 @@ +# 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`` 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..dcf7aab16 --- /dev/null +++ b/docs/version-specific/supported-software/i/ipyrad.md @@ -0,0 +1,9 @@ +# 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`` 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..3d536ebff --- /dev/null +++ b/docs/version-specific/supported-software/i/irodsfs.md @@ -0,0 +1,11 @@ +# 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`` 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..74864aa41 --- /dev/null +++ b/docs/version-specific/supported-software/i/isoCirc.md @@ -0,0 +1,9 @@ +# 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`` 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..59ea2d803 --- /dev/null +++ b/docs/version-specific/supported-software/i/ispc.md @@ -0,0 +1,12 @@ +# 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`` 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..cf210f855 --- /dev/null +++ b/docs/version-specific/supported-software/i/itac.md @@ -0,0 +1,20 @@ +# 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`` 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..5b13cb67f --- /dev/null +++ b/docs/version-specific/supported-software/i/itpp.md @@ -0,0 +1,9 @@ +# 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`` diff --git a/docs/version-specific/supported-software/index.md b/docs/version-specific/supported-software/index.md new file mode 100644 index 000000000..643bcb651 --- /dev/null +++ b/docs/version-specific/supported-software/index.md @@ -0,0 +1,3583 @@ +# List of supported software + +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) 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..e0dfb43d8 --- /dev/null +++ b/docs/version-specific/supported-software/j/JAGS.md @@ -0,0 +1,24 @@ +# 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`` 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..18b1a19ba --- /dev/null +++ b/docs/version-specific/supported-software/j/JAXFrontCE.md @@ -0,0 +1,9 @@ +# 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`` 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..781eb3758 --- /dev/null +++ b/docs/version-specific/supported-software/j/JSON-GLib.md @@ -0,0 +1,9 @@ +# 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`` 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..3b66d3ad1 --- /dev/null +++ b/docs/version-specific/supported-software/j/JUBE.md @@ -0,0 +1,14 @@ +# 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`` 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..0d20d06fa --- /dev/null +++ b/docs/version-specific/supported-software/j/JUnit.md @@ -0,0 +1,26 @@ +# 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`` 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..712ecd9ae --- /dev/null +++ b/docs/version-specific/supported-software/j/JWM.md @@ -0,0 +1,9 @@ +# JWM + +JWM is a light-weight window manager for the X11 Window System. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.5`` | ``intel/2016a`` 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..b391a3b70 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jansson.md @@ -0,0 +1,13 @@ +# 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`` 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..b8b278c21 --- /dev/null +++ b/docs/version-specific/supported-software/j/JasPer.md @@ -0,0 +1,34 @@ +# 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`` 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..54f254b4a --- /dev/null +++ b/docs/version-specific/supported-software/j/Jasmine.md @@ -0,0 +1,9 @@ +# Jasmine + +SV Merging Across Samples + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-Java-15`` | ``GCC/11.2.0`` 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..3fa416e99 --- /dev/null +++ b/docs/version-specific/supported-software/j/Java.md @@ -0,0 +1,80 @@ +# 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`` 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..9e6975bc0 --- /dev/null +++ b/docs/version-specific/supported-software/j/JavaFX.md @@ -0,0 +1,9 @@ +# 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`` 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..b7cae7c8e --- /dev/null +++ b/docs/version-specific/supported-software/j/Jblob.md @@ -0,0 +1,9 @@ +# Jblob + +Jblob - WDC Climate dataset download + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``system`` 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..4a46282e1 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jellyfish.md @@ -0,0 +1,23 @@ +# 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`` 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..fefff49b1 --- /dev/null +++ b/docs/version-specific/supported-software/j/JiTCODE.md @@ -0,0 +1,10 @@ +# 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`` 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..f26c738ac --- /dev/null +++ b/docs/version-specific/supported-software/j/Jmol.md @@ -0,0 +1,9 @@ +# Jmol + +Jmol: an open-source Java viewer for chemical structures in 3D + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``16.1.41`` | ``-Java-11`` | ``system`` 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..43473dba3 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jorg.md @@ -0,0 +1,9 @@ +# Jorg + +A MAG Circularization Method By Lauren Lui, Torben Nielsen, and Adam Arkin + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2020b`` 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..52f780b91 --- /dev/null +++ b/docs/version-specific/supported-software/j/JsonCpp.md @@ -0,0 +1,17 @@ +# 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`` 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..49e9a8501 --- /dev/null +++ b/docs/version-specific/supported-software/j/Judy.md @@ -0,0 +1,15 @@ +# 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`` 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..aefe5260f --- /dev/null +++ b/docs/version-specific/supported-software/j/Julia.md @@ -0,0 +1,34 @@ +# 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`` 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..9c6fbe80f --- /dev/null +++ b/docs/version-specific/supported-software/j/Jupyter-bundle.md @@ -0,0 +1,10 @@ +# 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`` 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..232b820fb --- /dev/null +++ b/docs/version-specific/supported-software/j/JupyterHub.md @@ -0,0 +1,16 @@ +# 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`` 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..3bcb39d8c --- /dev/null +++ b/docs/version-specific/supported-software/j/JupyterLab.md @@ -0,0 +1,18 @@ +# 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`` 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..952adc070 --- /dev/null +++ b/docs/version-specific/supported-software/j/JupyterNotebook.md @@ -0,0 +1,11 @@ +# 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`` 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..fcfbcbff1 --- /dev/null +++ b/docs/version-specific/supported-software/j/index.md @@ -0,0 +1,46 @@ +# List of supported software (j) + + * [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) 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..a352dd762 --- /dev/null +++ b/docs/version-specific/supported-software/j/jModelTest.md @@ -0,0 +1,9 @@ +# 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`` 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..72221a060 --- /dev/null +++ b/docs/version-specific/supported-software/j/jax.md @@ -0,0 +1,22 @@ +# 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`` 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..078892158 --- /dev/null +++ b/docs/version-specific/supported-software/j/jbigkit.md @@ -0,0 +1,20 @@ +# 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`` 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..7b951625d --- /dev/null +++ b/docs/version-specific/supported-software/j/jedi-language-server.md @@ -0,0 +1,9 @@ +# jedi-language-server + +A Python Language Server powered by Jedi. + +*homepage*: + +version | toolchain +--------|---------- +``0.39.0`` | ``GCCcore/11.3.0`` 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..0838afdd6 --- /dev/null +++ b/docs/version-specific/supported-software/j/jedi.md @@ -0,0 +1,10 @@ +# 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`` 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..ccbd40ee7 --- /dev/null +++ b/docs/version-specific/supported-software/j/jemalloc.md @@ -0,0 +1,25 @@ +# 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`` 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..61562aae1 --- /dev/null +++ b/docs/version-specific/supported-software/j/jhbuild.md @@ -0,0 +1,9 @@ +# 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`` 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..514a1c97d --- /dev/null +++ b/docs/version-specific/supported-software/j/jiter.md @@ -0,0 +1,9 @@ +# jiter + +Fast iterable JSON parser + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``GCCcore/12.3.0`` 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..6de4af39f --- /dev/null +++ b/docs/version-specific/supported-software/j/joypy.md @@ -0,0 +1,10 @@ +# 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`` 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..4b743aa0b --- /dev/null +++ b/docs/version-specific/supported-software/j/jq.md @@ -0,0 +1,14 @@ +# 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`` 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..5ebe8c760 --- /dev/null +++ b/docs/version-specific/supported-software/j/json-c.md @@ -0,0 +1,15 @@ +# 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`` 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..85fe14612 --- /dev/null +++ b/docs/version-specific/supported-software/j/json-fortran.md @@ -0,0 +1,17 @@ +# 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`` 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..738529a46 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md @@ -0,0 +1,10 @@ +# 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`` 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..c414f38fd --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md @@ -0,0 +1,11 @@ +# 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`` 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..bc01b97f6 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-resource-usage.md @@ -0,0 +1,13 @@ +# 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`` 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..72f84d7f9 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md @@ -0,0 +1,10 @@ +# 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`` 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..94cfb8977 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-server-proxy.md @@ -0,0 +1,13 @@ +# 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`` 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..7767db6a7 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-server.md @@ -0,0 +1,12 @@ +# 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`` 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..c63ce7303 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyterlab-lmod.md @@ -0,0 +1,9 @@ +# 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`` 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..fc9d2aaba --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyterlmod.md @@ -0,0 +1,11 @@ +# 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`` 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..e008fdc1c --- /dev/null +++ b/docs/version-specific/supported-software/j/jxrlib.md @@ -0,0 +1,12 @@ +# 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`` 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..cb7fa8ba3 --- /dev/null +++ b/docs/version-specific/supported-software/k/KAT.md @@ -0,0 +1,10 @@ +# 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`` 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..630a9b534 --- /dev/null +++ b/docs/version-specific/supported-software/k/KITE.md @@ -0,0 +1,9 @@ +# 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`` 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..4aaacd42b --- /dev/null +++ b/docs/version-specific/supported-software/k/KMC.md @@ -0,0 +1,15 @@ +# 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`` 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..fee9070f5 --- /dev/null +++ b/docs/version-specific/supported-software/k/KMCP.md @@ -0,0 +1,9 @@ +# KMCP + +KMCP: accurate metagenomic profiling of both prokaryotic and viral populations by pseudo-mapping + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``system`` 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..703fc4658 --- /dev/null +++ b/docs/version-specific/supported-software/k/KNIME.md @@ -0,0 +1,9 @@ +# 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`` 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..e49b4f06a --- /dev/null +++ b/docs/version-specific/supported-software/k/KWIML.md @@ -0,0 +1,9 @@ +# KWIML + +The Kitware Information Macro Library + +*homepage*: + +version | toolchain +--------|---------- +``20180201`` | ``GCCcore/6.4.0`` 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..929cf247a --- /dev/null +++ b/docs/version-specific/supported-software/k/KaHIP.md @@ -0,0 +1,11 @@ +# 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`` 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..1369233aa --- /dev/null +++ b/docs/version-specific/supported-software/k/Kaiju.md @@ -0,0 +1,11 @@ +# 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`` 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..97b659d93 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kaleido.md @@ -0,0 +1,13 @@ +# 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`` 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..9041da7cc --- /dev/null +++ b/docs/version-specific/supported-software/k/Kalign.md @@ -0,0 +1,14 @@ +# 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`` 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..514b2d055 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kent_tools.md @@ -0,0 +1,18 @@ +# 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`` 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..94caf43c9 --- /dev/null +++ b/docs/version-specific/supported-software/k/Keras.md @@ -0,0 +1,35 @@ +# 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`` 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..88de923fa --- /dev/null +++ b/docs/version-specific/supported-software/k/KerasTuner.md @@ -0,0 +1,9 @@ +# 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`` 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..1b789eb7b --- /dev/null +++ b/docs/version-specific/supported-software/k/KmerGenie.md @@ -0,0 +1,10 @@ +# KmerGenie + +KmerGenie estimates the best k-mer length for genome de novo assembly. + +*homepage*: + +version | toolchain +--------|---------- +``1.7044`` | ``intel/2017a`` +``1.7048`` | ``intel/2018a`` 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..1e622022a --- /dev/null +++ b/docs/version-specific/supported-software/k/Kraken.md @@ -0,0 +1,17 @@ +# 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`` 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..d5becb9b8 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kraken2.md @@ -0,0 +1,17 @@ +# 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`` 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..f0a0e9951 --- /dev/null +++ b/docs/version-specific/supported-software/k/KrakenUniq.md @@ -0,0 +1,10 @@ +# 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`` 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..02c4e34fb --- /dev/null +++ b/docs/version-specific/supported-software/k/Kratos.md @@ -0,0 +1,10 @@ +# 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`` 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..7a399554d --- /dev/null +++ b/docs/version-specific/supported-software/k/KronaTools.md @@ -0,0 +1,16 @@ +# 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`` 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..bbc6333b3 --- /dev/null +++ b/docs/version-specific/supported-software/k/KyotoCabinet.md @@ -0,0 +1,11 @@ +# 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`` 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..bf475f119 --- /dev/null +++ b/docs/version-specific/supported-software/k/index.md @@ -0,0 +1,36 @@ +# List of supported software (k) + + * [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) 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..3201fe717 --- /dev/null +++ b/docs/version-specific/supported-software/k/kWIP.md @@ -0,0 +1,9 @@ +# 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`` 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..ddadef144 --- /dev/null +++ b/docs/version-specific/supported-software/k/kallisto.md @@ -0,0 +1,26 @@ +# 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`` 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..516cafccf --- /dev/null +++ b/docs/version-specific/supported-software/k/kb-python.md @@ -0,0 +1,10 @@ +# 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`` 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..9a8f23d1d --- /dev/null +++ b/docs/version-specific/supported-software/k/kbproto.md @@ -0,0 +1,12 @@ +# 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`` 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..030ec1814 --- /dev/null +++ b/docs/version-specific/supported-software/k/kedro.md @@ -0,0 +1,9 @@ +# 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`` 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..cbb706036 --- /dev/null +++ b/docs/version-specific/supported-software/k/khmer.md @@ -0,0 +1,10 @@ +# 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`` 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..d652c2eeb --- /dev/null +++ b/docs/version-specific/supported-software/k/kim-api.md @@ -0,0 +1,22 @@ +# 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`` 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..72ec930b6 --- /dev/null +++ b/docs/version-specific/supported-software/k/kineto.md @@ -0,0 +1,9 @@ +# 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`` 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..24c43fbd2 --- /dev/null +++ b/docs/version-specific/supported-software/k/king.md @@ -0,0 +1,10 @@ +# 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`` 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..60f13a5ad --- /dev/null +++ b/docs/version-specific/supported-software/k/kma.md @@ -0,0 +1,10 @@ +# 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`` 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..337b9f4ff --- /dev/null +++ b/docs/version-specific/supported-software/k/kneaddata.md @@ -0,0 +1,9 @@ +# 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`` 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..3c0504bcc --- /dev/null +++ b/docs/version-specific/supported-software/k/kpcalg.md @@ -0,0 +1,9 @@ +# 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`` 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..1252da8e5 --- /dev/null +++ b/docs/version-specific/supported-software/k/krbalancing.md @@ -0,0 +1,9 @@ +# krbalancing + +A C++ extension for Python which computes K.R. balanced matrices. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.0b0`` | ``GCCcore/11.3.0`` 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..a4e7be9d2 --- /dev/null +++ b/docs/version-specific/supported-software/k/kwant.md @@ -0,0 +1,10 @@ +# 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`` 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..7cba9075a --- /dev/null +++ b/docs/version-specific/supported-software/l/LADR.md @@ -0,0 +1,9 @@ +# 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`` 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..0c0c8ef1b --- /dev/null +++ b/docs/version-specific/supported-software/l/LAME.md @@ -0,0 +1,23 @@ +# 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`` 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..8852188b0 --- /dev/null +++ b/docs/version-specific/supported-software/l/LAMMPS.md @@ -0,0 +1,22 @@ +# 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`` 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..2e81c4b6c --- /dev/null +++ b/docs/version-specific/supported-software/l/LAPACK.md @@ -0,0 +1,14 @@ +# 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`` 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..cb6b7db14 --- /dev/null +++ b/docs/version-specific/supported-software/l/LASSO-Python.md @@ -0,0 +1,9 @@ +# 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`` 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..589a4eae8 --- /dev/null +++ b/docs/version-specific/supported-software/l/LAST.md @@ -0,0 +1,12 @@ +# LAST + +LAST finds similar regions between sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1045`` | ``intel/2019b`` +``1179`` | ``GCC/10.2.0`` +``869`` | ``intel/2017a`` +``914`` | ``intel/2017b`` 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..668bade88 --- /dev/null +++ b/docs/version-specific/supported-software/l/LASTZ.md @@ -0,0 +1,12 @@ +# 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`` 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..9cd714418 --- /dev/null +++ b/docs/version-specific/supported-software/l/LBFGS++.md @@ -0,0 +1,9 @@ +# LBFGS++ + +A header-only C++ library for L-BFGS and L-BFGS-B algorithms + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0`` | ``system`` 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..b13d15917 --- /dev/null +++ b/docs/version-specific/supported-software/l/LCov.md @@ -0,0 +1,9 @@ +# LCov + +LCOV - the LTP GCOV extension + +*homepage*: + +version | toolchain +--------|---------- +``1.13`` | ``GCCcore/7.2.0`` 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..966e60e8f --- /dev/null +++ b/docs/version-specific/supported-software/l/LDC.md @@ -0,0 +1,14 @@ +# 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`` 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..552fd645a --- /dev/null +++ b/docs/version-specific/supported-software/l/LEMON.md @@ -0,0 +1,9 @@ +# 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`` 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..76eab3e28 --- /dev/null +++ b/docs/version-specific/supported-software/l/LERC.md @@ -0,0 +1,14 @@ +# 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`` 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..e5b180d80 --- /dev/null +++ b/docs/version-specific/supported-software/l/LHAPDF.md @@ -0,0 +1,10 @@ +# 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`` 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..64b20542b --- /dev/null +++ b/docs/version-specific/supported-software/l/LIANA.md @@ -0,0 +1,9 @@ +# 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`` 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..b392e72d0 --- /dev/null +++ b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md @@ -0,0 +1,9 @@ +# 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`` 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..1412a0bfe --- /dev/null +++ b/docs/version-specific/supported-software/l/LIBSVM-Python.md @@ -0,0 +1,9 @@ +# 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`` 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..4af91308b --- /dev/null +++ b/docs/version-specific/supported-software/l/LIBSVM.md @@ -0,0 +1,17 @@ +# 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`` 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..5d591b3b7 --- /dev/null +++ b/docs/version-specific/supported-software/l/LISFLOOD-FP.md @@ -0,0 +1,10 @@ +# 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`` 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..ebfa4367b --- /dev/null +++ b/docs/version-specific/supported-software/l/LLDB.md @@ -0,0 +1,9 @@ +# LLDB + +The debugger component of the LLVM project + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.0.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` 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..d2dc8e398 --- /dev/null +++ b/docs/version-specific/supported-software/l/LLVM.md @@ -0,0 +1,49 @@ +# 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`` 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..c7bba427e --- /dev/null +++ b/docs/version-specific/supported-software/l/LMDB.md @@ -0,0 +1,21 @@ +# 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`` 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..e06508098 --- /dev/null +++ b/docs/version-specific/supported-software/l/LMfit.md @@ -0,0 +1,19 @@ +# 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`` 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..c2d15a294 --- /dev/null +++ b/docs/version-specific/supported-software/l/LOHHLA.md @@ -0,0 +1,9 @@ +# 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`` 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..cc84d8225 --- /dev/null +++ b/docs/version-specific/supported-software/l/LPJmL.md @@ -0,0 +1,9 @@ +# LPJmL + +Dynamic global vegetation model with managed land and river routing + +*homepage*: + +version | toolchain +--------|---------- +``4.0.003`` | ``iimpi/2020b`` 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..dd77d11a9 --- /dev/null +++ b/docs/version-specific/supported-software/l/LPeg.md @@ -0,0 +1,9 @@ +# 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`` 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..0ccd38a94 --- /dev/null +++ b/docs/version-specific/supported-software/l/LS-PrePost.md @@ -0,0 +1,13 @@ +# 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`` 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..54ffd1510 --- /dev/null +++ b/docs/version-specific/supported-software/l/LSD2.md @@ -0,0 +1,15 @@ +# 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`` 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..a54af4b75 --- /dev/null +++ b/docs/version-specific/supported-software/l/LSMS.md @@ -0,0 +1,9 @@ +# LSMS + +LSMS benchmark, part of CORAL suite + +*homepage*: + +version | toolchain +--------|---------- +``3_rev237`` | ``foss/2016a`` 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..3edb51f68 --- /dev/null +++ b/docs/version-specific/supported-software/l/LTR_retriever.md @@ -0,0 +1,10 @@ +# 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`` 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..5d1c52599 --- /dev/null +++ b/docs/version-specific/supported-software/l/LUMPY.md @@ -0,0 +1,10 @@ +# LUMPY + +A probabilistic framework for structural variant discovery. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.13`` | ``foss/2016b`` +``0.3.1`` | ``foss/2020b`` 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..4b2fc38b0 --- /dev/null +++ b/docs/version-specific/supported-software/l/LUSCUS.md @@ -0,0 +1,10 @@ +# 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`` 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..65ac5f443 --- /dev/null +++ b/docs/version-specific/supported-software/l/LZO.md @@ -0,0 +1,29 @@ +# 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`` 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..049aed3e7 --- /dev/null +++ b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md @@ -0,0 +1,10 @@ +# 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`` 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..0718dbc11 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md @@ -0,0 +1,9 @@ +# 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`` 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..c35cbe555 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lace.md @@ -0,0 +1,9 @@ +# Lace + +Building SuperTranscripts: A linear representation of transcriptome data + +*homepage*: + +version | toolchain +--------|---------- +``1.14.1`` | ``foss/2022a`` 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..8f449b1e5 --- /dev/null +++ b/docs/version-specific/supported-software/l/LangChain.md @@ -0,0 +1,9 @@ +# LangChain + +LangChain is a framework for developing applications powered by large language models (LLMs). + +*homepage*: + +version | toolchain +--------|---------- +``0.2.1`` | ``foss/2023a`` 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..ffddadc3f --- /dev/null +++ b/docs/version-specific/supported-software/l/LayoutParser.md @@ -0,0 +1,10 @@ +# 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`` 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..22fc8b91c --- /dev/null +++ b/docs/version-specific/supported-software/l/LeadIT.md @@ -0,0 +1,9 @@ +# LeadIT + +Visually Informed LeadOpt + +*homepage*: + +version | toolchain +--------|---------- +``2.1.9`` | ``system`` 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..d908292a4 --- /dev/null +++ b/docs/version-specific/supported-software/l/Leptonica.md @@ -0,0 +1,12 @@ +# 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`` 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..ea8dc2481 --- /dev/null +++ b/docs/version-specific/supported-software/l/LevelDB.md @@ -0,0 +1,15 @@ +# 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`` 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..187af8f87 --- /dev/null +++ b/docs/version-specific/supported-software/l/Levenshtein.md @@ -0,0 +1,9 @@ +# Levenshtein + +Python extension for computing string edit distances and similarities. + +*homepage*: + +version | toolchain +--------|---------- +``0.24.0`` | ``GCCcore/12.2.0`` 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..9df3235ca --- /dev/null +++ b/docs/version-specific/supported-software/l/LiBis.md @@ -0,0 +1,9 @@ +# LiBis + +An ultrasensitive alignment method for low input bisulfite sequencing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200428`` | ``-Python-3.7.4`` | ``foss/2019b`` 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..c6b7c3b1a --- /dev/null +++ b/docs/version-specific/supported-software/l/LibLZF.md @@ -0,0 +1,12 @@ +# 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`` 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..54c53e74c --- /dev/null +++ b/docs/version-specific/supported-software/l/LibSoup.md @@ -0,0 +1,14 @@ +# 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`` 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..5c1e1201b --- /dev/null +++ b/docs/version-specific/supported-software/l/LibTIFF.md @@ -0,0 +1,35 @@ +# 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`` 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..f2b5b8df2 --- /dev/null +++ b/docs/version-specific/supported-software/l/LibUUID.md @@ -0,0 +1,15 @@ +# 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`` 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..f21358f15 --- /dev/null +++ b/docs/version-specific/supported-software/l/Libint.md @@ -0,0 +1,36 @@ +# 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`` 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..98ae45ab9 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lighter.md @@ -0,0 +1,11 @@ +# 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`` 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..6750a983c --- /dev/null +++ b/docs/version-specific/supported-software/l/Lightning.md @@ -0,0 +1,9 @@ +# 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`` 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..f9f1416d8 --- /dev/null +++ b/docs/version-specific/supported-software/l/LinBox.md @@ -0,0 +1,11 @@ +# 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`` 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..267fe99c7 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lingeling.md @@ -0,0 +1,9 @@ +# 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`` 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..50a381c0b --- /dev/null +++ b/docs/version-specific/supported-software/l/LittleCMS.md @@ -0,0 +1,28 @@ +# 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`` 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..15e30e8c6 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lmod.md @@ -0,0 +1,23 @@ +# 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`` 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..182e4f207 --- /dev/null +++ b/docs/version-specific/supported-software/l/LncLOOM.md @@ -0,0 +1,9 @@ +# 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`` 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..341db5dc0 --- /dev/null +++ b/docs/version-specific/supported-software/l/LoFreq.md @@ -0,0 +1,12 @@ +# 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`` 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..a2bc8eca2 --- /dev/null +++ b/docs/version-specific/supported-software/l/LoRDEC.md @@ -0,0 +1,9 @@ +# 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`` 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..bbb6ed50c --- /dev/null +++ b/docs/version-specific/supported-software/l/LocARNA.md @@ -0,0 +1,11 @@ +# 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`` 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..ee9e7c367 --- /dev/null +++ b/docs/version-specific/supported-software/l/Log-Log4perl.md @@ -0,0 +1,9 @@ +# Log-Log4perl + +Log4perl + +*homepage*: + +version | toolchain +--------|---------- +``1.47`` | ``foss/2016a`` 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..19bd57df7 --- /dev/null +++ b/docs/version-specific/supported-software/l/Loki.md @@ -0,0 +1,13 @@ +# 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`` 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..96a0a604b --- /dev/null +++ b/docs/version-specific/supported-software/l/Longshot.md @@ -0,0 +1,13 @@ +# 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`` 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..7847f3cdf --- /dev/null +++ b/docs/version-specific/supported-software/l/LoopTools.md @@ -0,0 +1,9 @@ +# 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`` 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..ab78f750c --- /dev/null +++ b/docs/version-specific/supported-software/l/LtrDetector.md @@ -0,0 +1,9 @@ +# 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`` 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..4d0247b03 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lua.md @@ -0,0 +1,30 @@ +# 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`` 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..4c82869b8 --- /dev/null +++ b/docs/version-specific/supported-software/l/LuaJIT.md @@ -0,0 +1,10 @@ +# 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`` 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..6b5001bf6 --- /dev/null +++ b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md @@ -0,0 +1,9 @@ +# 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`` 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..e470d8df6 --- /dev/null +++ b/docs/version-specific/supported-software/l/LuaRocks.md @@ -0,0 +1,9 @@ +# 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`` 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..aff4df055 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md @@ -0,0 +1,9 @@ +# 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`` 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..d7ecb4f26 --- /dev/null +++ b/docs/version-specific/supported-software/l/index.md @@ -0,0 +1,255 @@ +# List of supported software (l) + + * [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) 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..2c33bfee4 --- /dev/null +++ b/docs/version-specific/supported-software/l/lDDT.md @@ -0,0 +1,9 @@ +# 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`` 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..5e78ed8a3 --- /dev/null +++ b/docs/version-specific/supported-software/l/lagrangian-filtering.md @@ -0,0 +1,9 @@ +# lagrangian-filtering + +Temporal filtering of data in a Lagrangian frame of reference. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.3`` | ``foss/2022a`` 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..27982f0d3 --- /dev/null +++ b/docs/version-specific/supported-software/l/lancet.md @@ -0,0 +1,9 @@ +# lancet + +Lancet is a somatic variant caller (SNVs and indels) for short read data. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``iccifort/2019.5.281`` 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..1e32a1d3c --- /dev/null +++ b/docs/version-specific/supported-software/l/langchain-anthropic.md @@ -0,0 +1,9 @@ +# langchain-anthropic + +This package contains the LangChain integration for Anthropic's generative models. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.15`` | ``foss/2023a`` 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..27db99eba --- /dev/null +++ b/docs/version-specific/supported-software/l/lavaan.md @@ -0,0 +1,11 @@ +# 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`` 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..ea8daff4a --- /dev/null +++ b/docs/version-specific/supported-software/l/lcalc.md @@ -0,0 +1,10 @@ +# 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`` 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..d5914b6f7 --- /dev/null +++ b/docs/version-specific/supported-software/l/leafcutter.md @@ -0,0 +1,9 @@ +# 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`` 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..ab9e86160 --- /dev/null +++ b/docs/version-specific/supported-software/l/leidenalg.md @@ -0,0 +1,16 @@ +# 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`` 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..d94ecf3fd --- /dev/null +++ b/docs/version-specific/supported-software/l/less.md @@ -0,0 +1,9 @@ +# 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`` 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..fb4f65f7e --- /dev/null +++ b/docs/version-specific/supported-software/l/lftp.md @@ -0,0 +1,11 @@ +# 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`` 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..ba0e22bd7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libBigWig.md @@ -0,0 +1,10 @@ +# 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`` 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..60d36d336 --- /dev/null +++ b/docs/version-specific/supported-software/l/libFLAME.md @@ -0,0 +1,14 @@ +# 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`` 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..6ec2960f6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libGDSII.md @@ -0,0 +1,10 @@ +# 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`` 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..1a9623ffc --- /dev/null +++ b/docs/version-specific/supported-software/l/libGLU.md @@ -0,0 +1,38 @@ +# 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`` 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..aa62ae94f --- /dev/null +++ b/docs/version-specific/supported-software/l/libGridXC.md @@ -0,0 +1,16 @@ +# 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`` 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..f12832275 --- /dev/null +++ b/docs/version-specific/supported-software/l/libICE.md @@ -0,0 +1,11 @@ +# 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`` 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..dbdd684e5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libMemcached.md @@ -0,0 +1,11 @@ +# 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`` 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..718ae9c44 --- /dev/null +++ b/docs/version-specific/supported-software/l/libPSML.md @@ -0,0 +1,18 @@ +# 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`` 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..586773b4c --- /dev/null +++ b/docs/version-specific/supported-software/l/libQGLViewer.md @@ -0,0 +1,16 @@ +# 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`` 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..45e2d1954 --- /dev/null +++ b/docs/version-specific/supported-software/l/libRmath.md @@ -0,0 +1,14 @@ +# 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`` 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..e0f0b688e --- /dev/null +++ b/docs/version-specific/supported-software/l/libSBML.md @@ -0,0 +1,11 @@ +# 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`` 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..2338738cd --- /dev/null +++ b/docs/version-specific/supported-software/l/libSM.md @@ -0,0 +1,11 @@ +# 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`` 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..827c0e081 --- /dev/null +++ b/docs/version-specific/supported-software/l/libStatGen.md @@ -0,0 +1,10 @@ +# 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`` 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..21ffb6400 --- /dev/null +++ b/docs/version-specific/supported-software/l/libWallModelledLES.md @@ -0,0 +1,9 @@ +# 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`` 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..89caf96ca --- /dev/null +++ b/docs/version-specific/supported-software/l/libX11.md @@ -0,0 +1,11 @@ +# 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`` 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..32bd30274 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXau.md @@ -0,0 +1,12 @@ +# 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`` 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..caf1c2c08 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXcursor.md @@ -0,0 +1,10 @@ +# libXcursor + +X Cursor management library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.14`` | ``foss/2016a`` +``1.1.14`` | ``intel/2016a`` 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..086f3d485 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXdamage.md @@ -0,0 +1,11 @@ +# 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`` 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..3bd70c854 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXdmcp.md @@ -0,0 +1,12 @@ +# 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`` 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..f4aae9887 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXext.md @@ -0,0 +1,11 @@ +# 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`` 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..d050eb2ce --- /dev/null +++ b/docs/version-specific/supported-software/l/libXfixes.md @@ -0,0 +1,12 @@ +# 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`` 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..afcd4711f --- /dev/null +++ b/docs/version-specific/supported-software/l/libXfont.md @@ -0,0 +1,13 @@ +# 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`` 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..6ce963b81 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXft.md @@ -0,0 +1,12 @@ +# 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`` 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..ba9cffdcb --- /dev/null +++ b/docs/version-specific/supported-software/l/libXi.md @@ -0,0 +1,10 @@ +# 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`` 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..5ea0dc2f5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXinerama.md @@ -0,0 +1,10 @@ +# libXinerama + +Xinerama multiple monitor library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``foss/2016a`` +``1.1.3`` | ``intel/2016a`` 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..cecce67ce --- /dev/null +++ b/docs/version-specific/supported-software/l/libXmu.md @@ -0,0 +1,10 @@ +# 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`` 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..deb9c873d --- /dev/null +++ b/docs/version-specific/supported-software/l/libXp.md @@ -0,0 +1,9 @@ +# libXp + +libXp provides the X print library. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``intel/2016a`` 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..522d8cf56 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXpm.md @@ -0,0 +1,10 @@ +# libXpm + +libXp provides the X print library. + +*homepage*: + +version | toolchain +--------|---------- +``3.5.11`` | ``foss/2016a`` +``3.5.11`` | ``intel/2016a`` 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..c90415a21 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXrandr.md @@ -0,0 +1,10 @@ +# libXrandr + +X Resize, Rotate and Reflection extension library + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2016a`` +``1.5.0`` | ``intel/2016a`` 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..4d345a6e1 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXrender.md @@ -0,0 +1,11 @@ +# 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`` 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..7e0441772 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXt.md @@ -0,0 +1,11 @@ +# 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`` 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..ee1311dc1 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXxf86vm.md @@ -0,0 +1,10 @@ +# libXxf86vm + +X11 XFree86 video mode extension library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``foss/2016a`` +``1.1.4`` | ``intel/2016a`` 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..bfa48ab08 --- /dev/null +++ b/docs/version-specific/supported-software/l/libabigail.md @@ -0,0 +1,9 @@ +# 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`` 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..6b9d78579 --- /dev/null +++ b/docs/version-specific/supported-software/l/libaec.md @@ -0,0 +1,15 @@ +# 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`` 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..1ec11d4af --- /dev/null +++ b/docs/version-specific/supported-software/l/libaed2.md @@ -0,0 +1,9 @@ +# 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`` 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..eb0db3d0c --- /dev/null +++ b/docs/version-specific/supported-software/l/libaio.md @@ -0,0 +1,17 @@ +# 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`` 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..f8e5aa013 --- /dev/null +++ b/docs/version-specific/supported-software/l/libarchive.md @@ -0,0 +1,20 @@ +# 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`` 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..848168042 --- /dev/null +++ b/docs/version-specific/supported-software/l/libav.md @@ -0,0 +1,9 @@ +# 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`` 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..29bf88d8c --- /dev/null +++ b/docs/version-specific/supported-software/l/libavif.md @@ -0,0 +1,12 @@ +# 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`` 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..a3f480ed7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libbaseencode.md @@ -0,0 +1,9 @@ +# 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`` 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..06cb835f5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libbitmask.md @@ -0,0 +1,9 @@ +# libbitmask + +libbitmask provides a convenient, powerful bitmask data type + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``system`` 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..9acacdc73 --- /dev/null +++ b/docs/version-specific/supported-software/l/libbraiding.md @@ -0,0 +1,9 @@ +# 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`` 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..1eeedd615 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcdms.md @@ -0,0 +1,9 @@ +# libcdms + +Climate Data Management System Library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` 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..58e1ba060 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcerf.md @@ -0,0 +1,29 @@ +# 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`` 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..150e447a7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcint.md @@ -0,0 +1,14 @@ +# 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`` 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..1e7cd29c0 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcircle.md @@ -0,0 +1,15 @@ +# 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`` 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..15f429996 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcmaes.md @@ -0,0 +1,9 @@ +# 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`` 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..2783fa584 --- /dev/null +++ b/docs/version-specific/supported-software/l/libconfig.md @@ -0,0 +1,13 @@ +# 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`` 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..01191abd8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcotp.md @@ -0,0 +1,9 @@ +# libcotp + +C library that generates TOTP and HOTP according to RFC-6238 + +*homepage*: + +version | toolchain +--------|---------- +``1.2.3`` | ``GCCcore/10.2.0`` 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..d07dc7882 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcpuset.md @@ -0,0 +1,9 @@ +# libcpuset + +libcpuset provides full access to cpuset capabilities + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``system`` 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..4b4358edb --- /dev/null +++ b/docs/version-specific/supported-software/l/libcroco.md @@ -0,0 +1,11 @@ +# 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`` 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..29412990f --- /dev/null +++ b/docs/version-specific/supported-software/l/libctl.md @@ -0,0 +1,12 @@ +# 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`` 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..d9dc9821a --- /dev/null +++ b/docs/version-specific/supported-software/l/libdap.md @@ -0,0 +1,21 @@ +# 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`` 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..f49058415 --- /dev/null +++ b/docs/version-specific/supported-software/l/libde265.md @@ -0,0 +1,12 @@ +# 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`` 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..c9d82b3d0 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdeflate.md @@ -0,0 +1,19 @@ +# 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`` 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..d12d38986 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdivsufsort.md @@ -0,0 +1,9 @@ +# libdivsufsort + +libdivsufsort is a software library that implements a lightweight suffix array construction algorithm. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``foss/2018b`` 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..7f429de4f --- /dev/null +++ b/docs/version-specific/supported-software/l/libdrm.md @@ -0,0 +1,31 @@ +# 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`` 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..9468f99e8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdrs.md @@ -0,0 +1,9 @@ +# libdrs + +PCMDI's old DRS format implementation + +*homepage*: + +version | toolchain +--------|---------- +``3.1.2`` | ``foss/2020a`` 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..d27385a49 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdwarf.md @@ -0,0 +1,19 @@ +# 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`` 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..b3c0216b4 --- /dev/null +++ b/docs/version-specific/supported-software/l/libedit.md @@ -0,0 +1,14 @@ +# 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`` 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..a725d3599 --- /dev/null +++ b/docs/version-specific/supported-software/l/libelf.md @@ -0,0 +1,18 @@ +# 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`` 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..cc4b783bd --- /dev/null +++ b/docs/version-specific/supported-software/l/libemf.md @@ -0,0 +1,9 @@ +# libemf + +Library implementation of ECMA-234 API for the generation of enhanced metafiles. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.13`` | ``GCCcore/11.3.0`` 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..f2897b97b --- /dev/null +++ b/docs/version-specific/supported-software/l/libepoxy.md @@ -0,0 +1,20 @@ +# 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`` 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..271a8508f --- /dev/null +++ b/docs/version-specific/supported-software/l/libev.md @@ -0,0 +1,11 @@ +# 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`` 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..0cce79052 --- /dev/null +++ b/docs/version-specific/supported-software/l/libevent.md @@ -0,0 +1,31 @@ +# 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`` 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..7ec43dc5b --- /dev/null +++ b/docs/version-specific/supported-software/l/libexif.md @@ -0,0 +1,9 @@ +# libexif + +A library for parsing, editing, and saving EXIF data. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.24`` | ``GCCcore/11.2.0`` 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..baaf9d8dd --- /dev/null +++ b/docs/version-specific/supported-software/l/libfabric.md @@ -0,0 +1,21 @@ +# 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`` 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..a6e21cca1 --- /dev/null +++ b/docs/version-specific/supported-software/l/libfdf.md @@ -0,0 +1,15 @@ +# 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`` 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..9d48b7a4f --- /dev/null +++ b/docs/version-specific/supported-software/l/libffcall.md @@ -0,0 +1,12 @@ +# 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`` 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..a8cc075bc --- /dev/null +++ b/docs/version-specific/supported-software/l/libffi.md @@ -0,0 +1,35 @@ +# 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`` 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..e4448c728 --- /dev/null +++ b/docs/version-specific/supported-software/l/libfontenc.md @@ -0,0 +1,11 @@ +# 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`` 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..f87680ac8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libfyaml.md @@ -0,0 +1,10 @@ +# 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`` 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..4f8672161 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgcrypt.md @@ -0,0 +1,17 @@ +# 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`` 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..ea000c6b6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgd.md @@ -0,0 +1,29 @@ +# 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`` 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..d21a0b51b --- /dev/null +++ b/docs/version-specific/supported-software/l/libgdiplus.md @@ -0,0 +1,9 @@ +# 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`` 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..88107d2f9 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgeotiff.md @@ -0,0 +1,20 @@ +# 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`` 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..419b54943 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgit2.md @@ -0,0 +1,17 @@ +# 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`` 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..21a1d42db --- /dev/null +++ b/docs/version-specific/supported-software/l/libglade.md @@ -0,0 +1,12 @@ +# 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`` 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..6460a427b --- /dev/null +++ b/docs/version-specific/supported-software/l/libglvnd.md @@ -0,0 +1,18 @@ +# 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`` 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..fef204d54 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgpg-error.md @@ -0,0 +1,17 @@ +# 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`` 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..5a1fe8829 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgpuarray.md @@ -0,0 +1,18 @@ +# 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`` 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..b7e5a4bca --- /dev/null +++ b/docs/version-specific/supported-software/l/libgtextutils.md @@ -0,0 +1,12 @@ +# 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`` 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..f5a55e93e --- /dev/null +++ b/docs/version-specific/supported-software/l/libgxps.md @@ -0,0 +1,9 @@ +# libgxps + +libgxps is a GObject based library for handling and rendering XPS documents. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``GCCcore/12.3.0`` 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..bda31c252 --- /dev/null +++ b/docs/version-specific/supported-software/l/libhandy.md @@ -0,0 +1,9 @@ +# libhandy + +Building blocks for modern adaptive GNOME apps + +*homepage*: + +version | toolchain +--------|---------- +``1.8.2`` | ``GCCcore/12.3.0`` 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..e41073f46 --- /dev/null +++ b/docs/version-specific/supported-software/l/libharu.md @@ -0,0 +1,21 @@ +# 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`` 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..8f97594f6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libheif.md @@ -0,0 +1,12 @@ +# 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`` 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..8e819c2a8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libhomfly.md @@ -0,0 +1,9 @@ +# 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`` 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..56df3d07e --- /dev/null +++ b/docs/version-specific/supported-software/l/libibmad.md @@ -0,0 +1,9 @@ +# 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`` 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..3b301309a --- /dev/null +++ b/docs/version-specific/supported-software/l/libibumad.md @@ -0,0 +1,9 @@ +# libibumad + +libibumad is the umad kernel interface library. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.10.2`` | ``GCC/4.9.3-2.25`` 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..ebc1da7b3 --- /dev/null +++ b/docs/version-specific/supported-software/l/libiconv.md @@ -0,0 +1,23 @@ +# 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`` 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..e61858692 --- /dev/null +++ b/docs/version-specific/supported-software/l/libidn.md @@ -0,0 +1,21 @@ +# 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`` 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..db88ce77e --- /dev/null +++ b/docs/version-specific/supported-software/l/libidn2.md @@ -0,0 +1,19 @@ +# 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`` 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..10962e901 --- /dev/null +++ b/docs/version-specific/supported-software/l/libjpeg-turbo.md @@ -0,0 +1,36 @@ +# 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`` 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..fd86b0f8f --- /dev/null +++ b/docs/version-specific/supported-software/l/libjxl.md @@ -0,0 +1,13 @@ +# 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`` 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..7422f0568 --- /dev/null +++ b/docs/version-specific/supported-software/l/libleidenalg.md @@ -0,0 +1,10 @@ +# libleidenalg + +Implements the Leiden algorithm in C++ + +*homepage*: + +version | toolchain +--------|---------- +``0.11.1`` | ``foss/2022b`` +``0.11.1`` | ``foss/2023a`` 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..5bb7e631c --- /dev/null +++ b/docs/version-specific/supported-software/l/libmad.md @@ -0,0 +1,10 @@ +# 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`` 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..0615ec72c --- /dev/null +++ b/docs/version-specific/supported-software/l/libmatheval.md @@ -0,0 +1,17 @@ +# 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`` 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..f482698ba --- /dev/null +++ b/docs/version-specific/supported-software/l/libmaus2.md @@ -0,0 +1,11 @@ +# 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`` 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..2266af3da --- /dev/null +++ b/docs/version-specific/supported-software/l/libmbd.md @@ -0,0 +1,12 @@ +# 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`` 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..3c390ad66 --- /dev/null +++ b/docs/version-specific/supported-software/l/libmicrohttpd.md @@ -0,0 +1,12 @@ +# 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`` 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..7ccf5587f --- /dev/null +++ b/docs/version-specific/supported-software/l/libmo_unpack.md @@ -0,0 +1,9 @@ +# 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`` 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..298673dcf --- /dev/null +++ b/docs/version-specific/supported-software/l/libmypaint.md @@ -0,0 +1,9 @@ +# 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`` 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..ca2d6a7d8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libnsl.md @@ -0,0 +1,12 @@ +# 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`` 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..4dfb02602 --- /dev/null +++ b/docs/version-specific/supported-software/l/libobjcryst.md @@ -0,0 +1,10 @@ +# libobjcryst + +ObjCryst++ is Object-Oriented Crystallographic Library for C++ + +*homepage*: + +version | toolchain +--------|---------- +``2017.2.3`` | ``intel/2020a`` +``2021.1.2`` | ``foss/2021b`` 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..58e29108b --- /dev/null +++ b/docs/version-specific/supported-software/l/libogg.md @@ -0,0 +1,14 @@ +# 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`` 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..5fb60ebca --- /dev/null +++ b/docs/version-specific/supported-software/l/libopus.md @@ -0,0 +1,11 @@ +# 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`` 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..d0eabbc75 --- /dev/null +++ b/docs/version-specific/supported-software/l/libosmium.md @@ -0,0 +1,10 @@ +# 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`` 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..88cbf27d3 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpci.md @@ -0,0 +1,12 @@ +# 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`` 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..de3eed78d --- /dev/null +++ b/docs/version-specific/supported-software/l/libpciaccess.md @@ -0,0 +1,28 @@ +# 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`` 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..9fc21aa61 --- /dev/null +++ b/docs/version-specific/supported-software/l/libplinkio.md @@ -0,0 +1,9 @@ +# libplinkio + +A small C and Python library for reading PLINK genotype files. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.8`` | ``GCCcore/9.3.0`` 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..00cf0fbf7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpng.md @@ -0,0 +1,42 @@ +# 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`` 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..a878670bc --- /dev/null +++ b/docs/version-specific/supported-software/l/libpsl.md @@ -0,0 +1,15 @@ +# 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`` 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..9a094bfc2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpsortb.md @@ -0,0 +1,9 @@ +# 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`` 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..73d9c296a --- /dev/null +++ b/docs/version-specific/supported-software/l/libpspio.md @@ -0,0 +1,14 @@ +# 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`` 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..59ae6a9f8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpthread-stubs.md @@ -0,0 +1,15 @@ +# 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`` 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..e6ad0d2bd --- /dev/null +++ b/docs/version-specific/supported-software/l/libreadline.md @@ -0,0 +1,48 @@ +# 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`` 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..ec093eab1 --- /dev/null +++ b/docs/version-specific/supported-software/l/librosa.md @@ -0,0 +1,11 @@ +# 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`` 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..f557264ee --- /dev/null +++ b/docs/version-specific/supported-software/l/librsb.md @@ -0,0 +1,13 @@ +# 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`` 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..5b42a35e8 --- /dev/null +++ b/docs/version-specific/supported-software/l/librsvg.md @@ -0,0 +1,14 @@ +# 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`` 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..01bdc404c --- /dev/null +++ b/docs/version-specific/supported-software/l/librttopo.md @@ -0,0 +1,9 @@ +# 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`` 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..b9eb65e1d --- /dev/null +++ b/docs/version-specific/supported-software/l/libsamplerate.md @@ -0,0 +1,9 @@ +# libsamplerate + +Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.9`` | ``GCCcore/8.2.0`` 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..5c01bf61f --- /dev/null +++ b/docs/version-specific/supported-software/l/libsigc++.md @@ -0,0 +1,15 @@ +# 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`` 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..203e32a7f --- /dev/null +++ b/docs/version-specific/supported-software/l/libsigsegv.md @@ -0,0 +1,12 @@ +# 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`` 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..cbc4e3fc5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libsndfile.md @@ -0,0 +1,20 @@ +# 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`` 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..a40c848e9 --- /dev/null +++ b/docs/version-specific/supported-software/l/libsodium.md @@ -0,0 +1,28 @@ +# 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`` 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..c1f5afea4 --- /dev/null +++ b/docs/version-specific/supported-software/l/libspatialindex.md @@ -0,0 +1,18 @@ +# 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`` 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..6ce72b4ff --- /dev/null +++ b/docs/version-specific/supported-software/l/libspatialite.md @@ -0,0 +1,14 @@ +# 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`` 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..4373b7069 --- /dev/null +++ b/docs/version-specific/supported-software/l/libspectre.md @@ -0,0 +1,9 @@ +# 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`` 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..f52b83774 --- /dev/null +++ b/docs/version-specific/supported-software/l/libssh.md @@ -0,0 +1,9 @@ +# libssh + +Multiplatform C library implementing the SSHv2 protocol on client and server side + +*homepage*: + +version | toolchain +--------|---------- +``0.9.0`` | ``GCCcore/6.4.0`` 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..028eb6d2a --- /dev/null +++ b/docs/version-specific/supported-software/l/libsupermesh.md @@ -0,0 +1,9 @@ +# libsupermesh + +libsupermesh parallel supermeshing library. + +*homepage*: + +version | toolchain +--------|---------- +``2025-01-25`` | ``foss/2023a`` 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..b53dd704d --- /dev/null +++ b/docs/version-specific/supported-software/l/libtar.md @@ -0,0 +1,10 @@ +# 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`` 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..93da56b75 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtasn1.md @@ -0,0 +1,20 @@ +# 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`` 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..7ddd1e660 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtecla.md @@ -0,0 +1,9 @@ +# 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`` 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..300bb172a --- /dev/null +++ b/docs/version-specific/supported-software/l/libtirpc.md @@ -0,0 +1,19 @@ +# 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`` 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..dfd57b3b6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtool.md @@ -0,0 +1,56 @@ +# 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`` 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..e59d9b93b --- /dev/null +++ b/docs/version-specific/supported-software/l/libtree.md @@ -0,0 +1,10 @@ +# 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`` 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..f70451f10 --- /dev/null +++ b/docs/version-specific/supported-software/l/libunistring.md @@ -0,0 +1,26 @@ +# 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`` 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..55178ba4c --- /dev/null +++ b/docs/version-specific/supported-software/l/libunwind.md @@ -0,0 +1,26 @@ +# 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`` 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..cf8ad4174 --- /dev/null +++ b/docs/version-specific/supported-software/l/libutempter.md @@ -0,0 +1,9 @@ +# 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`` 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..179b72d08 --- /dev/null +++ b/docs/version-specific/supported-software/l/libuv.md @@ -0,0 +1,10 @@ +# 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`` 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..d4580fc05 --- /dev/null +++ b/docs/version-specific/supported-software/l/libvdwxc.md @@ -0,0 +1,20 @@ +# 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`` 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..ba13c8553 --- /dev/null +++ b/docs/version-specific/supported-software/l/libvorbis.md @@ -0,0 +1,14 @@ +# 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`` 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..2f683c7c7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libvori.md @@ -0,0 +1,11 @@ +# 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`` 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..062eb3f87 --- /dev/null +++ b/docs/version-specific/supported-software/l/libwebp.md @@ -0,0 +1,20 @@ +# 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`` 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..bd49e5cc8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libwpe.md @@ -0,0 +1,10 @@ +# 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`` 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..cc87091fa --- /dev/null +++ b/docs/version-specific/supported-software/l/libxc.md @@ -0,0 +1,69 @@ +# 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`` 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..1e2cd07cf --- /dev/null +++ b/docs/version-specific/supported-software/l/libxcb.md @@ -0,0 +1,12 @@ +# 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`` 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..5f0f848ce --- /dev/null +++ b/docs/version-specific/supported-software/l/libxkbcommon.md @@ -0,0 +1,10 @@ +# 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`` 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..048f72275 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxml++.md @@ -0,0 +1,12 @@ +# 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`` 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..649d299e2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxml2-python.md @@ -0,0 +1,13 @@ +# 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`` 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..8bb52c2f3 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxml2.md @@ -0,0 +1,50 @@ +# 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`` 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..aa7434418 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxslt.md @@ -0,0 +1,28 @@ +# 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`` 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..9ae04b231 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxsmm.md @@ -0,0 +1,30 @@ +# 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`` 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..1650d924e --- /dev/null +++ b/docs/version-specific/supported-software/l/libyaml.md @@ -0,0 +1,29 @@ +# 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`` 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..4aa84aa11 --- /dev/null +++ b/docs/version-specific/supported-software/l/libzeep.md @@ -0,0 +1,9 @@ +# libzeep + +Libzeep was originally developed to make it easy to create SOAP servers. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.1`` | ``gompi/2019b`` 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..a9e33c604 --- /dev/null +++ b/docs/version-specific/supported-software/l/libzip.md @@ -0,0 +1,13 @@ +# 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`` 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..c28af0a78 --- /dev/null +++ b/docs/version-specific/supported-software/l/lie_learn.md @@ -0,0 +1,9 @@ +# 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`` 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..7a16056f3 --- /dev/null +++ b/docs/version-specific/supported-software/l/lifelines.md @@ -0,0 +1,11 @@ +# 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`` 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..10a4bac20 --- /dev/null +++ b/docs/version-specific/supported-software/l/liknorm.md @@ -0,0 +1,9 @@ +# liknorm + +Moments of the product of an exponential-family likelihood with a Normal distribution. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.2`` | ``GCCcore/7.3.0`` 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..514cfb3ce --- /dev/null +++ b/docs/version-specific/supported-software/l/likwid.md @@ -0,0 +1,28 @@ +# 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`` 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..0fc03197f --- /dev/null +++ b/docs/version-specific/supported-software/l/lil-aretomo.md @@ -0,0 +1,9 @@ +# lil-aretomo + +A lightweight Python API for AreTomo. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``foss/2023a`` 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..c5bdad504 --- /dev/null +++ b/docs/version-specific/supported-software/l/limix.md @@ -0,0 +1,9 @@ +# 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`` 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..8b39f1b99 --- /dev/null +++ b/docs/version-specific/supported-software/l/line_profiler.md @@ -0,0 +1,13 @@ +# 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`` 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..f9fd4f4e3 --- /dev/null +++ b/docs/version-specific/supported-software/l/lit.md @@ -0,0 +1,9 @@ +# 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`` 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..2440a4af1 --- /dev/null +++ b/docs/version-specific/supported-software/l/lmoments3.md @@ -0,0 +1,9 @@ +# lmoments3 + +Estimate linear moments for statistical distribution functions. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.6`` | ``foss/2022a`` 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..8a8d5144a --- /dev/null +++ b/docs/version-specific/supported-software/l/logaddexp.md @@ -0,0 +1,9 @@ +# 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`` 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..5c2dd6e64 --- /dev/null +++ b/docs/version-specific/supported-software/l/longestrunsubsequence.md @@ -0,0 +1,9 @@ +# 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`` 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..2095a3e2f --- /dev/null +++ b/docs/version-specific/supported-software/l/longread_umi.md @@ -0,0 +1,9 @@ +# longread_umi + +A collection of scripts for processing longread UMI data. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``foss/2020b`` 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..3ba5098b8 --- /dev/null +++ b/docs/version-specific/supported-software/l/loomR.md @@ -0,0 +1,11 @@ +# 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`` 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..a6189a527 --- /dev/null +++ b/docs/version-specific/supported-software/l/loompy.md @@ -0,0 +1,14 @@ +# 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`` 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..fd5f9508b --- /dev/null +++ b/docs/version-specific/supported-software/l/lpsolve.md @@ -0,0 +1,22 @@ +# 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`` 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..198142dfe --- /dev/null +++ b/docs/version-specific/supported-software/l/lrslib.md @@ -0,0 +1,12 @@ +# 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`` 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..06f260cfc --- /dev/null +++ b/docs/version-specific/supported-software/l/lwgrp.md @@ -0,0 +1,15 @@ +# 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`` 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..9e0588ead --- /dev/null +++ b/docs/version-specific/supported-software/l/lxml.md @@ -0,0 +1,29 @@ +# 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`` 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..640418381 --- /dev/null +++ b/docs/version-specific/supported-software/l/lynx.md @@ -0,0 +1,9 @@ +# lynx + +lynx is an alphanumeric display oriented World-Wide Web Client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.8.9`` | ``-develop`` | ``foss/2016b`` 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..c18e4288a --- /dev/null +++ b/docs/version-specific/supported-software/l/lz4.md @@ -0,0 +1,22 @@ +# 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`` 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..efc74d306 --- /dev/null +++ b/docs/version-specific/supported-software/m/M1QN3.md @@ -0,0 +1,9 @@ +# M1QN3 + +A solver of large-scale unconstrained minimization problems + +*homepage*: + +version | toolchain +--------|---------- +``3.3`` | ``GCC/10.3.0`` 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..4cb73d3a8 --- /dev/null +++ b/docs/version-specific/supported-software/m/M3GNet.md @@ -0,0 +1,9 @@ +# 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`` 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..ef840c96b --- /dev/null +++ b/docs/version-specific/supported-software/m/M4.md @@ -0,0 +1,77 @@ +# 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`` 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..3a2875c72 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACH.md @@ -0,0 +1,9 @@ +# 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`` 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..7233a1695 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACS2.md @@ -0,0 +1,18 @@ +# 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`` 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..d53783477 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACS3.md @@ -0,0 +1,12 @@ +# 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`` 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..1677ba269 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACSE.md @@ -0,0 +1,9 @@ +# 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`` 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..6d7da1508 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAFFT.md @@ -0,0 +1,30 @@ +# 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`` 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..408a9c97e --- /dev/null +++ b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md @@ -0,0 +1,11 @@ +# 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`` 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..9830869bf --- /dev/null +++ b/docs/version-specific/supported-software/m/MAGeCK.md @@ -0,0 +1,11 @@ +# 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`` 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..342632639 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAJIQ.md @@ -0,0 +1,9 @@ +# 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`` 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..0622adcf8 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAKER.md @@ -0,0 +1,9 @@ +# 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`` 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..c4fca4816 --- /dev/null +++ b/docs/version-specific/supported-software/m/MARS.md @@ -0,0 +1,9 @@ +# MARS + +improving Multiple circular sequence Alignment using Refined Sequences + +*homepage*: + +version | toolchain +--------|---------- +``20191101`` | ``GCCcore/8.3.0`` 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..90e0401bb --- /dev/null +++ b/docs/version-specific/supported-software/m/MATIO.md @@ -0,0 +1,20 @@ +# 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`` 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..1b30cada3 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATLAB-Engine.md @@ -0,0 +1,15 @@ +# 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`` 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..6120a8103 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATLAB.md @@ -0,0 +1,25 @@ +# 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`` 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..a10f8f684 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATSim.md @@ -0,0 +1,13 @@ +# 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`` 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..d5df4fe80 --- /dev/null +++ b/docs/version-specific/supported-software/m/MBROLA.md @@ -0,0 +1,10 @@ +# 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`` 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..07e027bb2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MCL.md @@ -0,0 +1,21 @@ +# 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`` 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..b2fce0d53 --- /dev/null +++ b/docs/version-specific/supported-software/m/MCR.md @@ -0,0 +1,31 @@ +# 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`` 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..d0df99632 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDAnalysis.md @@ -0,0 +1,18 @@ +# 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`` 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..51b346622 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDBM.md @@ -0,0 +1,10 @@ +# 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`` 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..147db9054 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDI.md @@ -0,0 +1,10 @@ +# 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`` 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..af6d59a74 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDSplus-Java.md @@ -0,0 +1,9 @@ +# 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`` 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..b224d0b6b --- /dev/null +++ b/docs/version-specific/supported-software/m/MDSplus-Python.md @@ -0,0 +1,9 @@ +# 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`` 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..739d6fa43 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDSplus.md @@ -0,0 +1,12 @@ +# 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`` 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..4e0e8b69a --- /dev/null +++ b/docs/version-specific/supported-software/m/MDTraj.md @@ -0,0 +1,23 @@ +# 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`` 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..cc1ed197c --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGA.md @@ -0,0 +1,11 @@ +# 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`` 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..eb036e465 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGACC.md @@ -0,0 +1,9 @@ +# 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`` 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..dbbc400d7 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGAHIT.md @@ -0,0 +1,23 @@ +# 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`` 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..6dda80793 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGAN.md @@ -0,0 +1,10 @@ +# 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`` 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..649c1ddf6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEM.md @@ -0,0 +1,10 @@ +# 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`` 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..3164306fa --- /dev/null +++ b/docs/version-specific/supported-software/m/MEME.md @@ -0,0 +1,19 @@ +# 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`` 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..864d4283a --- /dev/null +++ b/docs/version-specific/supported-software/m/MEMOTE.md @@ -0,0 +1,9 @@ +# MEMOTE + +The genome-scale metabolic model test suite + +*homepage*: + +version | toolchain +--------|---------- +``0.13.0`` | ``foss/2021a`` 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..ed3e15150 --- /dev/null +++ b/docs/version-specific/supported-software/m/MERCKX.md @@ -0,0 +1,9 @@ +# MERCKX + +Multilingual Entity/Resource Combiner & Knowledge eXtractor + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170330`` | ``-Python-2.7.13`` | ``intel/2017a`` 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..ea89732b1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MESS.md @@ -0,0 +1,9 @@ +# MESS + +Master Equation System Solver (MESS) + +*homepage*: + +version | toolchain +--------|---------- +``0.1.6`` | ``foss/2019b`` 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..23963c507 --- /dev/null +++ b/docs/version-specific/supported-software/m/METIS.md @@ -0,0 +1,33 @@ +# 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`` 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..bb5503398 --- /dev/null +++ b/docs/version-specific/supported-software/m/MICOM.md @@ -0,0 +1,9 @@ +# MICOM + +Python package to study microbial communities using metabolic modeling. + +*homepage*: + +version | toolchain +--------|---------- +``0.33.2`` | ``foss/2023b`` 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..e0bf902ae --- /dev/null +++ b/docs/version-specific/supported-software/m/MIGRATE-N.md @@ -0,0 +1,11 @@ +# 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`` 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..ffa9f6be2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MINC.md @@ -0,0 +1,11 @@ +# 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`` 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..a642c3e7a --- /dev/null +++ b/docs/version-specific/supported-software/m/MINPACK.md @@ -0,0 +1,9 @@ +# 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`` 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..75f2595a5 --- /dev/null +++ b/docs/version-specific/supported-software/m/MIRA.md @@ -0,0 +1,14 @@ +# 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`` 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..649a56410 --- /dev/null +++ b/docs/version-specific/supported-software/m/MITObim.md @@ -0,0 +1,11 @@ +# 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`` 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..01c66e80b --- /dev/null +++ b/docs/version-specific/supported-software/m/MITgcmutils.md @@ -0,0 +1,9 @@ +# 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`` 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..b1f34202d --- /dev/null +++ b/docs/version-specific/supported-software/m/MLC.md @@ -0,0 +1,9 @@ +# 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`` 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..8d58a24a2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MLflow.md @@ -0,0 +1,9 @@ +# 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`` 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..20b426cf6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MLxtend.md @@ -0,0 +1,9 @@ +# 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`` 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..71fd6f31c --- /dev/null +++ b/docs/version-specific/supported-software/m/MMSEQ.md @@ -0,0 +1,9 @@ +# 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`` 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..7d62e35be --- /dev/null +++ b/docs/version-specific/supported-software/m/MMseqs2.md @@ -0,0 +1,21 @@ +# 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`` 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..1a1d2c861 --- /dev/null +++ b/docs/version-specific/supported-software/m/MNE-Python.md @@ -0,0 +1,10 @@ +# 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`` 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..5ed183e38 --- /dev/null +++ b/docs/version-specific/supported-software/m/MOABB.md @@ -0,0 +1,10 @@ +# 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`` 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..3530d670a --- /dev/null +++ b/docs/version-specific/supported-software/m/MOABS.md @@ -0,0 +1,9 @@ +# MOABS + +MOABS: MOdel based Analysis of Bisulfite Sequencing data + +*homepage*: + +version | toolchain +--------|---------- +``1.3.9.6`` | ``gompi/2019b`` 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..74d428339 --- /dev/null +++ b/docs/version-specific/supported-software/m/MOB-suite.md @@ -0,0 +1,9 @@ +# 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`` 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..d0b8affcf --- /dev/null +++ b/docs/version-specific/supported-software/m/MODFLOW.md @@ -0,0 +1,9 @@ +# 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`` 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..7e3e7a8dd --- /dev/null +++ b/docs/version-specific/supported-software/m/MOFA2.md @@ -0,0 +1,9 @@ +# 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`` 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..e49e6d86b --- /dev/null +++ b/docs/version-specific/supported-software/m/MONA.md @@ -0,0 +1,9 @@ +# 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`` 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..052fb6c6f --- /dev/null +++ b/docs/version-specific/supported-software/m/MONAI-Label.md @@ -0,0 +1,10 @@ +# 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`` 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..075ea7ab2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MONAI.md @@ -0,0 +1,14 @@ +# 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`` 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..5b2a26f08 --- /dev/null +++ b/docs/version-specific/supported-software/m/MOOSE.md @@ -0,0 +1,9 @@ +# 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`` 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..e759c0e2d --- /dev/null +++ b/docs/version-specific/supported-software/m/MPB.md @@ -0,0 +1,12 @@ +# 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`` 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..ee81e45c0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPC.md @@ -0,0 +1,22 @@ +# 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`` 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..f8d548c77 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPFI.md @@ -0,0 +1,10 @@ +# 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`` 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..f5eeba24b --- /dev/null +++ b/docs/version-specific/supported-software/m/MPFR.md @@ -0,0 +1,29 @@ +# 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`` 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..dbad26515 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPICH.md @@ -0,0 +1,15 @@ +# 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`` 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..c85e21ffe --- /dev/null +++ b/docs/version-specific/supported-software/m/MPICH2.md @@ -0,0 +1,9 @@ +# 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`` 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..85f8d6ec0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPJ-Express.md @@ -0,0 +1,9 @@ +# 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`` 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..24aee2b29 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRCPP.md @@ -0,0 +1,10 @@ +# MRCPP + +MultiResolution Computation Program Package + +*homepage*: + +version | toolchain +--------|---------- +``1.3.6`` | ``foss/2020a`` +``1.4.1`` | ``foss/2022a`` 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..4cc8aa668 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRChem.md @@ -0,0 +1,10 @@ +# 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`` 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..a74c6b877 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRIcron.md @@ -0,0 +1,10 @@ +# 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`` 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..c8c7ba2ac --- /dev/null +++ b/docs/version-specific/supported-software/m/MRPRESSO.md @@ -0,0 +1,9 @@ +# MRPRESSO + +Performs the Mendelian Randomization Pleiotropy RESidual Sum and Outlier (MR-PRESSO) method.. + +*homepage*: + +version | toolchain +--------|---------- +``1.0-20230502`` | ``foss/2022a`` 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..d00698708 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRtrix.md @@ -0,0 +1,17 @@ +# 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`` 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..d0cbb5eea --- /dev/null +++ b/docs/version-specific/supported-software/m/MSFragger.md @@ -0,0 +1,9 @@ +# 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`` 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..bc4c99439 --- /dev/null +++ b/docs/version-specific/supported-software/m/MSM.md @@ -0,0 +1,10 @@ +# MSM + +Multimodal Surface Matching with Higher order Clique Reduction + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2017b`` +``1.0`` | ``intel/2017b`` 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..23ef1cf65 --- /dev/null +++ b/docs/version-specific/supported-software/m/MSPC.md @@ -0,0 +1,9 @@ +# MSPC + +Using combined evidence from replicates to evaluate ChIP-seq peaks + +*homepage*: + +version | toolchain +--------|---------- +``3.3.1`` | ``system`` 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..74b6e2bc1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MTL4.md @@ -0,0 +1,10 @@ +# 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`` 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..dfdc4881e --- /dev/null +++ b/docs/version-specific/supported-software/m/MUMPS.md @@ -0,0 +1,29 @@ +# 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`` 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..47480c295 --- /dev/null +++ b/docs/version-specific/supported-software/m/MUMmer.md @@ -0,0 +1,19 @@ +# 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`` 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..614cbadaf --- /dev/null +++ b/docs/version-specific/supported-software/m/MUSCLE.md @@ -0,0 +1,29 @@ +# 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`` 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..42ff382a0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MUSCLE3.md @@ -0,0 +1,9 @@ +# 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`` 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..cbe4bebfb --- /dev/null +++ b/docs/version-specific/supported-software/m/MUST.md @@ -0,0 +1,12 @@ +# 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`` 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..dce14e1d2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MVAPICH2.md @@ -0,0 +1,11 @@ +# 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`` 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..7fb2b4bb6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MView.md @@ -0,0 +1,9 @@ +# 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`` 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..423a35447 --- /dev/null +++ b/docs/version-specific/supported-software/m/MXNet.md @@ -0,0 +1,10 @@ +# 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`` 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..42f58d03f --- /dev/null +++ b/docs/version-specific/supported-software/m/MaSuRCA.md @@ -0,0 +1,16 @@ +# 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`` 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..00a2f1365 --- /dev/null +++ b/docs/version-specific/supported-software/m/Magics.md @@ -0,0 +1,9 @@ +# 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`` 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..f75f50e2a --- /dev/null +++ b/docs/version-specific/supported-software/m/MagresPython.md @@ -0,0 +1,9 @@ +# 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`` 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..c1f798f15 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mako.md @@ -0,0 +1,37 @@ +# 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`` 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..3c063f0e3 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mamba.md @@ -0,0 +1,11 @@ +# 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`` 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..89025f569 --- /dev/null +++ b/docs/version-specific/supported-software/m/MapSplice.md @@ -0,0 +1,10 @@ +# 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`` 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..c355159ee --- /dev/null +++ b/docs/version-specific/supported-software/m/Maple.md @@ -0,0 +1,11 @@ +# 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`` 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..47c836e1e --- /dev/null +++ b/docs/version-specific/supported-software/m/Maq.md @@ -0,0 +1,9 @@ +# 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`` 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..b9808019b --- /dev/null +++ b/docs/version-specific/supported-software/m/MariaDB-connector-c.md @@ -0,0 +1,18 @@ +# 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`` 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..2e0b1a023 --- /dev/null +++ b/docs/version-specific/supported-software/m/MariaDB.md @@ -0,0 +1,25 @@ +# 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`` 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..292613739 --- /dev/null +++ b/docs/version-specific/supported-software/m/Markdown.md @@ -0,0 +1,11 @@ +# 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`` 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..7d3fd470f --- /dev/null +++ b/docs/version-specific/supported-software/m/Mash.md @@ -0,0 +1,17 @@ +# 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`` 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..2ee9bc325 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mashtree.md @@ -0,0 +1,9 @@ +# Mashtree + +Create a tree using Mash distances. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.6`` | ``GCC/12.2.0`` 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..cd9512c89 --- /dev/null +++ b/docs/version-specific/supported-software/m/MathGL.md @@ -0,0 +1,9 @@ +# 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`` 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..ba6e790c4 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mathematica.md @@ -0,0 +1,19 @@ +# 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`` 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..3f35186be --- /dev/null +++ b/docs/version-specific/supported-software/m/Maude.md @@ -0,0 +1,9 @@ +# 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`` 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..2c9a38eed --- /dev/null +++ b/docs/version-specific/supported-software/m/Maven.md @@ -0,0 +1,15 @@ +# 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`` 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..e7617bf9d --- /dev/null +++ b/docs/version-specific/supported-software/m/MaxBin.md @@ -0,0 +1,13 @@ +# 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`` 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..9432ddd45 --- /dev/null +++ b/docs/version-specific/supported-software/m/MaxQuant.md @@ -0,0 +1,12 @@ +# 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`` 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..002e345d4 --- /dev/null +++ b/docs/version-specific/supported-software/m/MbedTLS.md @@ -0,0 +1,9 @@ +# MbedTLS + +An open source, portable, easy to use, readable and flexible SSL library. + +*homepage*: + +version | toolchain +--------|---------- +``2.26.0`` | ``GCCcore/10.2.0`` 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..3d05df255 --- /dev/null +++ b/docs/version-specific/supported-software/m/MedPy.md @@ -0,0 +1,11 @@ +# 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`` 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..95792514d --- /dev/null +++ b/docs/version-specific/supported-software/m/Meep.md @@ -0,0 +1,14 @@ +# 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`` 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..b2c02d110 --- /dev/null +++ b/docs/version-specific/supported-software/m/Megalodon.md @@ -0,0 +1,12 @@ +# 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`` 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..e49545fc8 --- /dev/null +++ b/docs/version-specific/supported-software/m/Meld.md @@ -0,0 +1,9 @@ +# 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`` 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..ff2373e08 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mercurial.md @@ -0,0 +1,14 @@ +# 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`` 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..de7918b31 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mesa-demos.md @@ -0,0 +1,9 @@ +# Mesa-demos + +Mesa utility and demo programs, including glxinfo and eglinfo. + +*homepage*: + +version | toolchain +--------|---------- +``8.4.0`` | ``GCCcore/10.3.0`` 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..3e5e5ca6f --- /dev/null +++ b/docs/version-specific/supported-software/m/Mesa.md @@ -0,0 +1,39 @@ +# 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`` 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..9f80de29e --- /dev/null +++ b/docs/version-specific/supported-software/m/Meson.md @@ -0,0 +1,29 @@ +# 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`` 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..49bc6ee91 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mesquite.md @@ -0,0 +1,15 @@ +# 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`` 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..996c6fe8f --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaBAT.md @@ -0,0 +1,14 @@ +# 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`` 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..29d5a48f9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaDecoder.md @@ -0,0 +1,9 @@ +# MetaDecoder + +An algorithm for clustering metagenomic sequences + +*homepage*: + +version | toolchain +--------|---------- +``1.0.19`` | ``foss/2023b`` 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..bf01f0ffd --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaEuk.md @@ -0,0 +1,13 @@ +# 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`` 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..a151e5797 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md @@ -0,0 +1,9 @@ +# MetaGeneAnnotator + +MetaGeneAnnotator is a gene-finding program for prokaryote and phage. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20080819`` | ``-x86-64`` | ``system`` 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..d7e44c595 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaMorpheus.md @@ -0,0 +1,10 @@ +# 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`` 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..87f5fcf86 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaPhlAn.md @@ -0,0 +1,10 @@ +# 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`` 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..9b4365dfa --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaPhlAn2.md @@ -0,0 +1,11 @@ +# 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`` 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..295f017b1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaboAnalystR.md @@ -0,0 +1,9 @@ +# 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`` 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..ee33efeef --- /dev/null +++ b/docs/version-specific/supported-software/m/Metagenome-Atlas.md @@ -0,0 +1,9 @@ +# 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`` 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..f73d9604b --- /dev/null +++ b/docs/version-specific/supported-software/m/Metal.md @@ -0,0 +1,10 @@ +# 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`` 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..60f7bee14 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetalWalls.md @@ -0,0 +1,9 @@ +# 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`` 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..4918c1c9a --- /dev/null +++ b/docs/version-specific/supported-software/m/Metaxa2.md @@ -0,0 +1,9 @@ +# Metaxa2 + +Metaxa2 -- Identifies Small Subunit (SSU) rRNAs and classifies them taxonomically + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``gompi/2019a`` 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..a78988546 --- /dev/null +++ b/docs/version-specific/supported-software/m/MethylDackel.md @@ -0,0 +1,11 @@ +# 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`` 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..60881a56e --- /dev/null +++ b/docs/version-specific/supported-software/m/MiGEC.md @@ -0,0 +1,10 @@ +# 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`` 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..0d994817b --- /dev/null +++ b/docs/version-specific/supported-software/m/MiXCR.md @@ -0,0 +1,13 @@ +# 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`` 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..6fb5aa6b6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MicrobeAnnotator.md @@ -0,0 +1,9 @@ +# MicrobeAnnotator + +Easy-to-use pipeline for the comprehensive metabolic annotation of microbial genomes. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.5`` | ``foss/2021a`` 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..b72f1c57c --- /dev/null +++ b/docs/version-specific/supported-software/m/Mikado.md @@ -0,0 +1,9 @@ +# 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`` 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..22a8b29ab --- /dev/null +++ b/docs/version-specific/supported-software/m/Miller.md @@ -0,0 +1,9 @@ +# 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`` 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..b23f7c593 --- /dev/null +++ b/docs/version-specific/supported-software/m/MinCED.md @@ -0,0 +1,9 @@ +# MinCED + +Mining CRISPRs in Environmental Datasets + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.2`` | ``-Java-11`` | ``GCCcore/8.3.0`` 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..56d68d4da --- /dev/null +++ b/docs/version-specific/supported-software/m/MinPath.md @@ -0,0 +1,12 @@ +# 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`` 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..e547e5b55 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mini-XML.md @@ -0,0 +1,12 @@ +# 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`` 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..fb3b323dd --- /dev/null +++ b/docs/version-specific/supported-software/m/MiniCARD.md @@ -0,0 +1,9 @@ +# 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`` 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..26d7b749a --- /dev/null +++ b/docs/version-specific/supported-software/m/MiniSat.md @@ -0,0 +1,10 @@ +# 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`` 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..47291e9fe --- /dev/null +++ b/docs/version-specific/supported-software/m/Miniconda2.md @@ -0,0 +1,11 @@ +# 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`` 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..87c16febd --- /dev/null +++ b/docs/version-specific/supported-software/m/Miniconda3.md @@ -0,0 +1,18 @@ +# 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`` 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..bc8602711 --- /dev/null +++ b/docs/version-specific/supported-software/m/Miniforge3.md @@ -0,0 +1,9 @@ +# Miniforge3 + +Miniforge is a free minimal installer for conda and Mamba specific to conda-forge. + +*homepage*: + +version | toolchain +--------|---------- +``24.1.2-0`` | ``system`` 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..61febe86a --- /dev/null +++ b/docs/version-specific/supported-software/m/Minimac4.md @@ -0,0 +1,9 @@ +# 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`` 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..5bf6f61c1 --- /dev/null +++ b/docs/version-specific/supported-software/m/Minipolish.md @@ -0,0 +1,9 @@ +# Minipolish + +A tool for Racon polishing of miniasm assemblies + +*homepage*: + +version | toolchain +--------|---------- +``0.1.3`` | ``GCC/11.2.0`` 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..8eaf85f5c --- /dev/null +++ b/docs/version-specific/supported-software/m/Mish-Cuda.md @@ -0,0 +1,9 @@ +# Mish-Cuda + +Mish-Cuda: Self Regularized Non-Monotonic Activation Function + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210309`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` 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..dfb707b28 --- /dev/null +++ b/docs/version-specific/supported-software/m/MitoHiFi.md @@ -0,0 +1,9 @@ +# MitoHiFi + +MitoHiFi is a Python workflow that assembles mitogenomes from Pacbio HiFi reads + +*homepage*: + +version | toolchain +--------|---------- +``3.2`` | ``foss/2022b`` 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..24161f9f9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MitoZ.md @@ -0,0 +1,9 @@ +# 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`` 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..2a11ee5c1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MixMHC2pred.md @@ -0,0 +1,9 @@ +# 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`` 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..4c6f41046 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mmg.md @@ -0,0 +1,12 @@ +# 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`` 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..46e2e254f --- /dev/null +++ b/docs/version-specific/supported-software/m/ModelTest-NG.md @@ -0,0 +1,9 @@ +# 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`` 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..ee011cf13 --- /dev/null +++ b/docs/version-specific/supported-software/m/Molcas.md @@ -0,0 +1,11 @@ +# 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`` 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..4bd41b690 --- /dev/null +++ b/docs/version-specific/supported-software/m/Molden.md @@ -0,0 +1,16 @@ +# 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`` 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..1388c91cd --- /dev/null +++ b/docs/version-specific/supported-software/m/Molekel.md @@ -0,0 +1,9 @@ +# Molekel + +Molekel is an open-source multi-platform molecular visualization program. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.4.0`` | ``-Linux_x86_64`` | ``system`` 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..3ca3cce7f --- /dev/null +++ b/docs/version-specific/supported-software/m/Molpro.md @@ -0,0 +1,14 @@ +# 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`` 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..18cd4af07 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mono.md @@ -0,0 +1,19 @@ +# 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`` 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..32d82001e --- /dev/null +++ b/docs/version-specific/supported-software/m/Monocle3.md @@ -0,0 +1,12 @@ +# 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`` 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..1a922a3b8 --- /dev/null +++ b/docs/version-specific/supported-software/m/MoreRONN.md @@ -0,0 +1,9 @@ +# 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`` 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..a4cbb1b33 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mothur.md @@ -0,0 +1,11 @@ +# 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`` 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..bcb15450f --- /dev/null +++ b/docs/version-specific/supported-software/m/MotionCor2.md @@ -0,0 +1,15 @@ +# 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`` 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..852042979 --- /dev/null +++ b/docs/version-specific/supported-software/m/MotionCor3.md @@ -0,0 +1,9 @@ +# 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`` 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..a453d0ab0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MoviePy.md @@ -0,0 +1,11 @@ +# 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`` 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..2f8edb1b4 --- /dev/null +++ b/docs/version-specific/supported-software/m/MrBayes.md @@ -0,0 +1,16 @@ +# 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`` 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..88658a533 --- /dev/null +++ b/docs/version-specific/supported-software/m/MuJoCo.md @@ -0,0 +1,11 @@ +# 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`` 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..2193f70f0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MuPeXI.md @@ -0,0 +1,9 @@ +# 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`` 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..ccd44e5ae --- /dev/null +++ b/docs/version-specific/supported-software/m/MuSiC.md @@ -0,0 +1,9 @@ +# 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`` 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..80548b2c1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MuTect.md @@ -0,0 +1,11 @@ +# 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`` 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..d4e427346 --- /dev/null +++ b/docs/version-specific/supported-software/m/MultiNest.md @@ -0,0 +1,9 @@ +# 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`` 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..fc5ff7587 --- /dev/null +++ b/docs/version-specific/supported-software/m/MultiQC.md @@ -0,0 +1,31 @@ +# 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`` 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..c811ce480 --- /dev/null +++ b/docs/version-specific/supported-software/m/MultilevelEstimators.md @@ -0,0 +1,9 @@ +# MultilevelEstimators + +The Julia module for Multilevel Monte Carlo methods + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-Julia-1.7.2`` | ``GCC/11.2.0`` 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..19c0c0fac --- /dev/null +++ b/docs/version-specific/supported-software/m/Multiwfn.md @@ -0,0 +1,11 @@ +# Multiwfn + +A multifunctional wavefunction analyzer + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``intel/2017b`` +``3.6`` | ``intel/2019a`` +``3.6`` | ``intel/2019b`` 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..b74443deb --- /dev/null +++ b/docs/version-specific/supported-software/m/MyCC.md @@ -0,0 +1,9 @@ +# 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`` 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..cacdaeccc --- /dev/null +++ b/docs/version-specific/supported-software/m/MyMediaLite.md @@ -0,0 +1,11 @@ +# 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`` 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..384dbee48 --- /dev/null +++ b/docs/version-specific/supported-software/m/MySQL-python.md @@ -0,0 +1,10 @@ +# 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`` 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..c156c2d75 --- /dev/null +++ b/docs/version-specific/supported-software/m/MySQL.md @@ -0,0 +1,10 @@ +# 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`` 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..16aaa5e9c --- /dev/null +++ b/docs/version-specific/supported-software/m/Myokit.md @@ -0,0 +1,10 @@ +# 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`` 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..33ec321fd --- /dev/null +++ b/docs/version-specific/supported-software/m/index.md @@ -0,0 +1,274 @@ +# List of supported software (m) + + * [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) 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..f76c71dad --- /dev/null +++ b/docs/version-specific/supported-software/m/m4ri.md @@ -0,0 +1,10 @@ +# 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`` 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..dac27d946 --- /dev/null +++ b/docs/version-specific/supported-software/m/m4rie.md @@ -0,0 +1,10 @@ +# m4rie + +M4RIE is a library for fast arithmetic with dense matrices. + +*homepage*: + +version | toolchain +--------|---------- +``20200125`` | ``GCC/11.3.0`` +``20200125`` | ``GCC/13.2.0`` 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..5d5409e9e --- /dev/null +++ b/docs/version-specific/supported-software/m/maeparser.md @@ -0,0 +1,15 @@ +# 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`` 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..2c51d018f --- /dev/null +++ b/docs/version-specific/supported-software/m/magick.md @@ -0,0 +1,9 @@ +# magick + +R bindings to the open-source image processing library ImageMagick + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-R-3.5.1`` | ``foss/2018b`` 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..dc89f05c9 --- /dev/null +++ b/docs/version-specific/supported-software/m/magma.md @@ -0,0 +1,29 @@ +# 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`` 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..719fe599a --- /dev/null +++ b/docs/version-specific/supported-software/m/mahotas.md @@ -0,0 +1,10 @@ +# 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`` 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..80072d97e --- /dev/null +++ b/docs/version-specific/supported-software/m/make.md @@ -0,0 +1,22 @@ +# 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`` 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..10024226a --- /dev/null +++ b/docs/version-specific/supported-software/m/makedepend.md @@ -0,0 +1,20 @@ +# 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`` 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..ff406a2cf --- /dev/null +++ b/docs/version-specific/supported-software/m/makedepf90.md @@ -0,0 +1,9 @@ +# 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`` 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..36605dd9c --- /dev/null +++ b/docs/version-specific/supported-software/m/makefun.md @@ -0,0 +1,9 @@ +# 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`` 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..3369b83fe --- /dev/null +++ b/docs/version-specific/supported-software/m/makeinfo.md @@ -0,0 +1,23 @@ +# 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`` 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..57a2c82b7 --- /dev/null +++ b/docs/version-specific/supported-software/m/mandrake.md @@ -0,0 +1,9 @@ +# mandrake + +Fast visualisation of the population structure of pathogens using Stochastic Cluster Embedding. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``foss/2022a`` 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..f00867f8a --- /dev/null +++ b/docs/version-specific/supported-software/m/mannkendall.md @@ -0,0 +1,9 @@ +# mannkendall + +A python package for non parametric Mann Kendall family of trend tests. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2022a`` 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..c1fd0bb84 --- /dev/null +++ b/docs/version-specific/supported-software/m/manta.md @@ -0,0 +1,13 @@ +# 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`` 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..d87d2ad20 --- /dev/null +++ b/docs/version-specific/supported-software/m/mapDamage.md @@ -0,0 +1,12 @@ +# 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`` 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..24d214fa1 --- /dev/null +++ b/docs/version-specific/supported-software/m/matlab-proxy.md @@ -0,0 +1,10 @@ +# 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`` 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..7e2ea8592 --- /dev/null +++ b/docs/version-specific/supported-software/m/matplotlib-inline.md @@ -0,0 +1,9 @@ +# matplotlib-inline + +Matplotlib Inline Back-end for IPython and Jupyter. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.3`` | ``GCCcore/10.2.0`` 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..2ee13a59b --- /dev/null +++ b/docs/version-specific/supported-software/m/matplotlib.md @@ -0,0 +1,104 @@ +# 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`` 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..a83fb7cfa --- /dev/null +++ b/docs/version-specific/supported-software/m/maturin.md @@ -0,0 +1,15 @@ +# 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`` 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..7613e83f4 --- /dev/null +++ b/docs/version-specific/supported-software/m/mauveAligner.md @@ -0,0 +1,9 @@ +# 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`` 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..1b3d77bcd --- /dev/null +++ b/docs/version-specific/supported-software/m/mawk.md @@ -0,0 +1,15 @@ +# 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`` 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..61067921c --- /dev/null +++ b/docs/version-specific/supported-software/m/mayavi.md @@ -0,0 +1,13 @@ +# 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`` 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..67e9585fb --- /dev/null +++ b/docs/version-specific/supported-software/m/maze.md @@ -0,0 +1,9 @@ +# 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`` 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..ac89883a6 --- /dev/null +++ b/docs/version-specific/supported-software/m/mbuffer.md @@ -0,0 +1,9 @@ +# mbuffer + +mbuffer is a tool for buffering data streams with a large set of unique features. + +*homepage*: + +version | toolchain +--------|---------- +``20191016`` | ``GCCcore/9.3.0`` 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..d1c27fe0f --- /dev/null +++ b/docs/version-specific/supported-software/m/mc.md @@ -0,0 +1,9 @@ +# mc + +mc-4.6.1: User-friendly file manager and visual shell + +*homepage*: + +version | toolchain +--------|---------- +``4.8.13`` | ``GCC/4.9.2`` 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..82fc946b1 --- /dev/null +++ b/docs/version-specific/supported-software/m/mctc-lib.md @@ -0,0 +1,12 @@ +# 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`` 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..df7f88de4 --- /dev/null +++ b/docs/version-specific/supported-software/m/mcu.md @@ -0,0 +1,9 @@ +# 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`` 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..4c3484c71 --- /dev/null +++ b/docs/version-specific/supported-software/m/mdtest.md @@ -0,0 +1,9 @@ +# 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`` 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..118fccd95 --- /dev/null +++ b/docs/version-specific/supported-software/m/mdust.md @@ -0,0 +1,9 @@ +# mdust + +mdust from DFCI Gene Indices Software Tools (archived for a historical record only) + +*homepage*: + +version | toolchain +--------|---------- +``20150102`` | ``GCC/10.3.0`` 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..ff104a313 --- /dev/null +++ b/docs/version-specific/supported-software/m/meRanTK.md @@ -0,0 +1,9 @@ +# meRanTK + +meRanTK is a versatile high performance toolkit for complete analysis of methylated RNA data. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1b`` | ``system`` 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..dddda088e --- /dev/null +++ b/docs/version-specific/supported-software/m/meboot.md @@ -0,0 +1,9 @@ +# 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`` 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..780b19337 --- /dev/null +++ b/docs/version-specific/supported-software/m/medImgProc.md @@ -0,0 +1,9 @@ +# 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`` 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..86055b6f0 --- /dev/null +++ b/docs/version-specific/supported-software/m/medaka.md @@ -0,0 +1,23 @@ +# 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`` 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..802946b10 --- /dev/null +++ b/docs/version-specific/supported-software/m/memkind.md @@ -0,0 +1,9 @@ +# 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`` 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..8adf1e1b5 --- /dev/null +++ b/docs/version-specific/supported-software/m/memory-profiler.md @@ -0,0 +1,10 @@ +# 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`` 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..f7f96da28 --- /dev/null +++ b/docs/version-specific/supported-software/m/memtester.md @@ -0,0 +1,9 @@ +# memtester + +A userspace utility for testing the memory subsystem for faults + +*homepage*: + +version | toolchain +--------|---------- +``4.5.1`` | ``GCCcore/11.3.0`` 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..87c25055d --- /dev/null +++ b/docs/version-specific/supported-software/m/meshalyzer.md @@ -0,0 +1,11 @@ +# 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`` 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..b019acc79 --- /dev/null +++ b/docs/version-specific/supported-software/m/meshio.md @@ -0,0 +1,12 @@ +# 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`` 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..41df0cc82 --- /dev/null +++ b/docs/version-specific/supported-software/m/meshtool.md @@ -0,0 +1,10 @@ +# 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`` 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..78b698703 --- /dev/null +++ b/docs/version-specific/supported-software/m/meson-python.md @@ -0,0 +1,12 @@ +# 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`` 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..97d34baf3 --- /dev/null +++ b/docs/version-specific/supported-software/m/metaWRAP.md @@ -0,0 +1,11 @@ +# 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`` 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..1354f8351 --- /dev/null +++ b/docs/version-specific/supported-software/m/metaerg.md @@ -0,0 +1,9 @@ +# 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`` 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..c744ac64c --- /dev/null +++ b/docs/version-specific/supported-software/m/methylartist.md @@ -0,0 +1,9 @@ +# methylartist + +Tools for plotting methylation data in various ways + +*homepage*: + +version | toolchain +--------|---------- +``1.2.6`` | ``foss/2021b`` 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..f9d52b40f --- /dev/null +++ b/docs/version-specific/supported-software/m/methylpy.md @@ -0,0 +1,10 @@ +# 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`` 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..d735d35c3 --- /dev/null +++ b/docs/version-specific/supported-software/m/mfqe.md @@ -0,0 +1,9 @@ +# 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`` 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..0b2958a15 --- /dev/null +++ b/docs/version-specific/supported-software/m/mgen.md @@ -0,0 +1,9 @@ +# mgen + +Convenient matrix generation functions + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2022a`` 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..970e258ce --- /dev/null +++ b/docs/version-specific/supported-software/m/mgltools.md @@ -0,0 +1,9 @@ +# 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`` 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..2d6dd92d9 --- /dev/null +++ b/docs/version-specific/supported-software/m/mhcflurry.md @@ -0,0 +1,10 @@ +# 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`` 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..b593c7a77 --- /dev/null +++ b/docs/version-specific/supported-software/m/mhcnuggets.md @@ -0,0 +1,12 @@ +# 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`` 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..2a2374b5d --- /dev/null +++ b/docs/version-specific/supported-software/m/miRDeep2.md @@ -0,0 +1,10 @@ +# 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`` 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..ec100ba79 --- /dev/null +++ b/docs/version-specific/supported-software/m/microctools.md @@ -0,0 +1,9 @@ +# microctools + +Various worker functions for microclimc package + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0-20201209`` | ``-R-4.0.4`` | ``foss/2020b`` 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..c3c1b85b3 --- /dev/null +++ b/docs/version-specific/supported-software/m/mimalloc.md @@ -0,0 +1,10 @@ +# 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`` 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..5f4342932 --- /dev/null +++ b/docs/version-specific/supported-software/m/miniasm.md @@ -0,0 +1,10 @@ +# 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`` 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..ee12afea6 --- /dev/null +++ b/docs/version-specific/supported-software/m/minibar.md @@ -0,0 +1,10 @@ +# 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`` 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..da1c4ba3f --- /dev/null +++ b/docs/version-specific/supported-software/m/minieigen.md @@ -0,0 +1,14 @@ +# 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`` 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..cd5458836 --- /dev/null +++ b/docs/version-specific/supported-software/m/minimap2.md @@ -0,0 +1,24 @@ +# 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`` 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..e5b96b699 --- /dev/null +++ b/docs/version-specific/supported-software/m/minizip.md @@ -0,0 +1,9 @@ +# minizip + +Mini zip and unzip based on zlib + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCCcore/11.2.0`` 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..34bae904c --- /dev/null +++ b/docs/version-specific/supported-software/m/misha.md @@ -0,0 +1,9 @@ +# 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`` 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..043495e07 --- /dev/null +++ b/docs/version-specific/supported-software/m/mkl-dnn.md @@ -0,0 +1,13 @@ +# 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`` 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..f0162a959 --- /dev/null +++ b/docs/version-specific/supported-software/m/mkl-service.md @@ -0,0 +1,12 @@ +# 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`` 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..171ce9a65 --- /dev/null +++ b/docs/version-specific/supported-software/m/mkl_fft.md @@ -0,0 +1,9 @@ +# 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`` 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..9be776cd2 --- /dev/null +++ b/docs/version-specific/supported-software/m/ml-collections.md @@ -0,0 +1,9 @@ +# ml-collections + +ML Collections is a library of Python Collections designed for ML use cases. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``foss/2022a`` 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..ae23f98c5 --- /dev/null +++ b/docs/version-specific/supported-software/m/ml_dtypes.md @@ -0,0 +1,9 @@ +# 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`` 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..c8693a207 --- /dev/null +++ b/docs/version-specific/supported-software/m/mlpack.md @@ -0,0 +1,9 @@ +# 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`` 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..b06e9cdde --- /dev/null +++ b/docs/version-specific/supported-software/m/mm-common.md @@ -0,0 +1,10 @@ +# 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`` 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..997a10d9f --- /dev/null +++ b/docs/version-specific/supported-software/m/mmtf-cpp.md @@ -0,0 +1,9 @@ +# 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`` 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..30e6639fb --- /dev/null +++ b/docs/version-specific/supported-software/m/modred.md @@ -0,0 +1,9 @@ +# 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`` 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..e1fbfbce4 --- /dev/null +++ b/docs/version-specific/supported-software/m/mold.md @@ -0,0 +1,16 @@ +# 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`` 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..98eb3adc4 --- /dev/null +++ b/docs/version-specific/supported-software/m/molecularGSM.md @@ -0,0 +1,9 @@ +# 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`` 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..641ebd813 --- /dev/null +++ b/docs/version-specific/supported-software/m/molmod.md @@ -0,0 +1,25 @@ +# 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`` 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..ddd36b542 --- /dev/null +++ b/docs/version-specific/supported-software/m/mongolite.md @@ -0,0 +1,11 @@ +# 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`` 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..442c72be6 --- /dev/null +++ b/docs/version-specific/supported-software/m/moonjit.md @@ -0,0 +1,9 @@ +# 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`` 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..b586e8106 --- /dev/null +++ b/docs/version-specific/supported-software/m/mordecai.md @@ -0,0 +1,9 @@ +# 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`` 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..f74e66e4c --- /dev/null +++ b/docs/version-specific/supported-software/m/morphosamplers.md @@ -0,0 +1,9 @@ +# morphosamplers + +A library for sampling image data along morphological objects such as splines and surfaces. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.10`` | ``gfbf/2023a`` 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..181edcf39 --- /dev/null +++ b/docs/version-specific/supported-software/m/mosdepth.md @@ -0,0 +1,12 @@ +# 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`` 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..08a8a0eba --- /dev/null +++ b/docs/version-specific/supported-software/m/motif.md @@ -0,0 +1,26 @@ +# 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`` 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..4f662ddb3 --- /dev/null +++ b/docs/version-specific/supported-software/m/motionSegmentation.md @@ -0,0 +1,9 @@ +# 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`` 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..1e0d21a57 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpath.md @@ -0,0 +1,9 @@ +# 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`` 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..d135c1676 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpi4py.md @@ -0,0 +1,20 @@ +# 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`` 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..51207ca69 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpiP.md @@ -0,0 +1,11 @@ +# 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`` 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..74708ce84 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpifileutils.md @@ -0,0 +1,15 @@ +# 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`` 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..058022dac --- /dev/null +++ b/docs/version-specific/supported-software/m/mpmath.md @@ -0,0 +1,18 @@ +# 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`` 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..150b0f01b --- /dev/null +++ b/docs/version-specific/supported-software/m/mrcfile.md @@ -0,0 +1,13 @@ +# 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`` 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..176819d8a --- /dev/null +++ b/docs/version-specific/supported-software/m/msgpack-c.md @@ -0,0 +1,10 @@ +# 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`` 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..13bbda7c9 --- /dev/null +++ b/docs/version-specific/supported-software/m/msprime.md @@ -0,0 +1,11 @@ +# 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`` 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..4758067dd --- /dev/null +++ b/docs/version-specific/supported-software/m/mstore.md @@ -0,0 +1,13 @@ +# 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`` 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..8ec00804e --- /dev/null +++ b/docs/version-specific/supported-software/m/muMerge.md @@ -0,0 +1,9 @@ +# muMerge + +muMerge is a tool for combining bed regions from multiple bed files that overlap. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2022a`` 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..172524181 --- /dev/null +++ b/docs/version-specific/supported-software/m/muParser.md @@ -0,0 +1,14 @@ +# 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`` 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..bdc1b2679 --- /dev/null +++ b/docs/version-specific/supported-software/m/mujoco-py.md @@ -0,0 +1,9 @@ +# 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`` 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..21ea74c12 --- /dev/null +++ b/docs/version-specific/supported-software/m/multicharge.md @@ -0,0 +1,11 @@ +# 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`` 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..77ab5e323 --- /dev/null +++ b/docs/version-specific/supported-software/m/multichoose.md @@ -0,0 +1,14 @@ +# 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`` 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..43cf686ea --- /dev/null +++ b/docs/version-specific/supported-software/m/multiprocess.md @@ -0,0 +1,9 @@ +# multiprocess + +better multiprocessing and multithreading in python + +*homepage*: + +version | toolchain +--------|---------- +``0.70.15`` | ``gfbf/2023a`` 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..b80df2940 --- /dev/null +++ b/docs/version-specific/supported-software/m/mumott.md @@ -0,0 +1,9 @@ +# mumott + +mumott is a Python library for the analysis of multi-modal tensor tomography data. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2022b`` 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..e7feda39d --- /dev/null +++ b/docs/version-specific/supported-software/m/muparserx.md @@ -0,0 +1,10 @@ +# 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`` 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..70763b70a --- /dev/null +++ b/docs/version-specific/supported-software/m/mutil.md @@ -0,0 +1,9 @@ +# 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`` 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..6c479edf1 --- /dev/null +++ b/docs/version-specific/supported-software/m/mxml.md @@ -0,0 +1,9 @@ +# 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`` 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..98dfe4353 --- /dev/null +++ b/docs/version-specific/supported-software/m/mxmlplus.md @@ -0,0 +1,9 @@ +# 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`` 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..8d7fdef45 --- /dev/null +++ b/docs/version-specific/supported-software/m/mygene.md @@ -0,0 +1,11 @@ +# 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`` 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..f6ee83acb --- /dev/null +++ b/docs/version-specific/supported-software/m/mympingpong.md @@ -0,0 +1,14 @@ +# 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`` 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..254139778 --- /dev/null +++ b/docs/version-specific/supported-software/m/mypy.md @@ -0,0 +1,9 @@ +# mypy + +Optional static typing for Python + +*homepage*: + +version | toolchain +--------|---------- +``0.4.5`` | ``intel/2016b`` 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..bd878a5e2 --- /dev/null +++ b/docs/version-specific/supported-software/m/mysqlclient.md @@ -0,0 +1,10 @@ +# 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`` 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..f8163ada5 --- /dev/null +++ b/docs/version-specific/supported-software/n/NAG.md @@ -0,0 +1,12 @@ +# 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`` 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..fd78911cf --- /dev/null +++ b/docs/version-specific/supported-software/n/NAGfor.md @@ -0,0 +1,10 @@ +# NAGfor + +The checking compiler for improved code portability and detailed error reporting. + +*homepage*: + +version | toolchain +--------|---------- +``6.2.14`` | ``system`` +``7.1`` | ``system`` 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..9d2d23d96 --- /dev/null +++ b/docs/version-specific/supported-software/n/NAMD.md @@ -0,0 +1,28 @@ +# 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`` 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..18d0d88bc --- /dev/null +++ b/docs/version-specific/supported-software/n/NASM.md @@ -0,0 +1,35 @@ +# 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`` 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..115fd1c88 --- /dev/null +++ b/docs/version-specific/supported-software/n/NBO.md @@ -0,0 +1,16 @@ +# 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`` 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..d279354a1 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCBI-Toolkit.md @@ -0,0 +1,9 @@ +# 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`` 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..0b66ac39b --- /dev/null +++ b/docs/version-specific/supported-software/n/NCCL-tests.md @@ -0,0 +1,10 @@ +# 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`` 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..a15a1bd00 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCCL.md @@ -0,0 +1,27 @@ +# 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`` 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..69432d818 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCIPLOT.md @@ -0,0 +1,11 @@ +# 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`` 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..4d3640fe2 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCL.md @@ -0,0 +1,19 @@ +# 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`` 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..5cbb74da2 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCO.md @@ -0,0 +1,28 @@ +# 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`` 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..64c067b60 --- /dev/null +++ b/docs/version-specific/supported-software/n/NECI.md @@ -0,0 +1,10 @@ +# NECI + +Standalone NECI codebase designed for FCIQMC and other stochastic quantum chemistry methods. + +*homepage*: + +version | toolchain +--------|---------- +``20220711`` | ``foss/2022a`` +``20230620`` | ``foss/2022b`` 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..0eabc2576 --- /dev/null +++ b/docs/version-specific/supported-software/n/NEURON.md @@ -0,0 +1,11 @@ +# 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`` 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..973b70274 --- /dev/null +++ b/docs/version-specific/supported-software/n/NEXUS-CL.md @@ -0,0 +1,9 @@ +# 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`` 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..43dff1272 --- /dev/null +++ b/docs/version-specific/supported-software/n/NEdit.md @@ -0,0 +1,9 @@ +# 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`` 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..156941eac --- /dev/null +++ b/docs/version-specific/supported-software/n/NFFT.md @@ -0,0 +1,17 @@ +# 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`` 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..5fd5844d5 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGLess.md @@ -0,0 +1,9 @@ +# NGLess + +NGLess is a domain-specific language for NGS (next-generation sequencing data) processing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-static-Linux64`` | ``system`` 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..1e72509ed --- /dev/null +++ b/docs/version-specific/supported-software/n/NGS-Python.md @@ -0,0 +1,11 @@ +# 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`` 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..31998e952 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGS.md @@ -0,0 +1,23 @@ +# 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`` 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..faf1e56e3 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGSadmix.md @@ -0,0 +1,9 @@ +# 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`` 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..87998626f --- /dev/null +++ b/docs/version-specific/supported-software/n/NGSpeciesID.md @@ -0,0 +1,12 @@ +# 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`` 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..4d9e20c8a --- /dev/null +++ b/docs/version-specific/supported-software/n/NIMBLE.md @@ -0,0 +1,9 @@ +# 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`` 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..63f633f8b --- /dev/null +++ b/docs/version-specific/supported-software/n/NIfTI.md @@ -0,0 +1,9 @@ +# 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`` 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..a8c85e234 --- /dev/null +++ b/docs/version-specific/supported-software/n/NLMpy.md @@ -0,0 +1,9 @@ +# 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`` 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..e29eccd11 --- /dev/null +++ b/docs/version-specific/supported-software/n/NLTK.md @@ -0,0 +1,18 @@ +# 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`` 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..a6bd49b38 --- /dev/null +++ b/docs/version-specific/supported-software/n/NLopt.md @@ -0,0 +1,30 @@ +# 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`` 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..e20e1b45b --- /dev/null +++ b/docs/version-specific/supported-software/n/NOVOPlasty.md @@ -0,0 +1,9 @@ +# NOVOPlasty + +NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. + +*homepage*: + +version | toolchain +--------|---------- +``3.7`` | ``GCCcore/8.3.0`` 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..df5ef2bb3 --- /dev/null +++ b/docs/version-specific/supported-software/n/NRGLjubljana.md @@ -0,0 +1,9 @@ +# 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`` 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..87478df11 --- /dev/null +++ b/docs/version-specific/supported-software/n/NSPR.md @@ -0,0 +1,20 @@ +# 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`` 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..74f40cf40 --- /dev/null +++ b/docs/version-specific/supported-software/n/NSS.md @@ -0,0 +1,20 @@ +# 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`` 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..e40cb4fc1 --- /dev/null +++ b/docs/version-specific/supported-software/n/NTL.md @@ -0,0 +1,13 @@ +# 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`` 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..ad3c29295 --- /dev/null +++ b/docs/version-specific/supported-software/n/NTPoly.md @@ -0,0 +1,13 @@ +# 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`` 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..34ff16c42 --- /dev/null +++ b/docs/version-specific/supported-software/n/NVHPC.md @@ -0,0 +1,24 @@ +# 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`` 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..3b9b6e0c0 --- /dev/null +++ b/docs/version-specific/supported-software/n/NVSHMEM.md @@ -0,0 +1,12 @@ +# 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`` 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..ee7823af4 --- /dev/null +++ b/docs/version-specific/supported-software/n/NWChem.md @@ -0,0 +1,17 @@ +# 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`` 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..47ca2d42f --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoCaller.md @@ -0,0 +1,9 @@ +# 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`` 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..ef9a4e832 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoComp.md @@ -0,0 +1,10 @@ +# 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`` 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..b7d5e5a1d --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoFilt.md @@ -0,0 +1,13 @@ +# 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`` 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..f1d8d72a0 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoLyse.md @@ -0,0 +1,9 @@ +# NanoLyse + +Remove reads mapping to the lambda phage genome from a fastq file. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2021a`` 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..9980e7a69 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoPlot.md @@ -0,0 +1,12 @@ +# 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`` 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..264ad918c --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoStat.md @@ -0,0 +1,10 @@ +# 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`` 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..76e2c938a --- /dev/null +++ b/docs/version-specific/supported-software/n/NanopolishComp.md @@ -0,0 +1,9 @@ +# 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`` 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..deed0c62b --- /dev/null +++ b/docs/version-specific/supported-software/n/Nek5000.md @@ -0,0 +1,9 @@ +# Nek5000 + +a fast and scalable high-order solver for computational fluid dynamics + +*homepage*: + +version | toolchain +--------|---------- +``17.0`` | ``intel/2018a`` 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..259a490b3 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nektar++.md @@ -0,0 +1,9 @@ +# 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`` 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..825b183fc --- /dev/null +++ b/docs/version-specific/supported-software/n/Net-core.md @@ -0,0 +1,11 @@ +# 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`` 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..6bc6eadff --- /dev/null +++ b/docs/version-specific/supported-software/n/NetLogo.md @@ -0,0 +1,13 @@ +# 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`` 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..df663bc77 --- /dev/null +++ b/docs/version-specific/supported-software/n/NetPIPE.md @@ -0,0 +1,11 @@ +# 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`` 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..d3aa64054 --- /dev/null +++ b/docs/version-specific/supported-software/n/NetPyNE.md @@ -0,0 +1,9 @@ +# 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`` 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..0985d541a --- /dev/null +++ b/docs/version-specific/supported-software/n/NeuroKit.md @@ -0,0 +1,9 @@ +# 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`` 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..a6c706d3a --- /dev/null +++ b/docs/version-specific/supported-software/n/NewHybrids.md @@ -0,0 +1,9 @@ +# 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`` 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..2611b90a0 --- /dev/null +++ b/docs/version-specific/supported-software/n/NextGenMap.md @@ -0,0 +1,10 @@ +# 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`` 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..89ac0edee --- /dev/null +++ b/docs/version-specific/supported-software/n/Nextflow.md @@ -0,0 +1,25 @@ +# 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`` 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..be0d63bc1 --- /dev/null +++ b/docs/version-specific/supported-software/n/NiBabel.md @@ -0,0 +1,29 @@ +# 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`` 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..bd7b3ed67 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nilearn.md @@ -0,0 +1,17 @@ +# 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`` 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..4d8eacd14 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nim.md @@ -0,0 +1,14 @@ +# 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`` 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..5f9a36804 --- /dev/null +++ b/docs/version-specific/supported-software/n/Ninja.md @@ -0,0 +1,25 @@ +# 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`` 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..2e0c04195 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nipype.md @@ -0,0 +1,13 @@ +# 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`` 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..e1c8e66e5 --- /dev/null +++ b/docs/version-specific/supported-software/n/Node-RED.md @@ -0,0 +1,9 @@ +# 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`` 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..a171077e2 --- /dev/null +++ b/docs/version-specific/supported-software/n/Normaliz.md @@ -0,0 +1,12 @@ +# 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`` 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..8fc8caa8f --- /dev/null +++ b/docs/version-specific/supported-software/n/Nsight-Compute.md @@ -0,0 +1,10 @@ +# 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`` 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..f9a554744 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nsight-Systems.md @@ -0,0 +1,9 @@ +# 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`` 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..c28e4665d --- /dev/null +++ b/docs/version-specific/supported-software/n/NxTrim.md @@ -0,0 +1,9 @@ +# 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`` 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..314d7f896 --- /dev/null +++ b/docs/version-specific/supported-software/n/index.md @@ -0,0 +1,133 @@ +# List of supported software (n) + + * [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) 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..5548f2467 --- /dev/null +++ b/docs/version-specific/supported-software/n/n2v.md @@ -0,0 +1,10 @@ +# 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`` 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..d290b1928 --- /dev/null +++ b/docs/version-specific/supported-software/n/namedlist.md @@ -0,0 +1,9 @@ +# namedlist + +A Python object, similar to namedtuple, but for lists. + +*homepage*: + +version | toolchain +--------|---------- +``1.8`` | ``GCCcore/11.2.0`` 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..74cdbb85b --- /dev/null +++ b/docs/version-specific/supported-software/n/nano.md @@ -0,0 +1,12 @@ +# 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`` 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..192d55205 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanocompore.md @@ -0,0 +1,9 @@ +# 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`` 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..18cdb523a --- /dev/null +++ b/docs/version-specific/supported-software/n/nanoflann.md @@ -0,0 +1,10 @@ +# 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`` 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..afd6bbc59 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanoget.md @@ -0,0 +1,14 @@ +# 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`` 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..2c4fe3d0e --- /dev/null +++ b/docs/version-specific/supported-software/n/nanomath.md @@ -0,0 +1,13 @@ +# 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`` 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..f53d9b4ca --- /dev/null +++ b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md @@ -0,0 +1,13 @@ +# 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`` 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..19f3d4f7c --- /dev/null +++ b/docs/version-specific/supported-software/n/nanonet.md @@ -0,0 +1,9 @@ +# 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`` 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..38983dbb6 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanopolish.md @@ -0,0 +1,15 @@ +# 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`` 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..2b05ed8ca --- /dev/null +++ b/docs/version-specific/supported-software/n/napari.md @@ -0,0 +1,12 @@ +# 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`` 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..ada02d313 --- /dev/null +++ b/docs/version-specific/supported-software/n/nauty.md @@ -0,0 +1,13 @@ +# 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`` 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..5bfe0bc0e --- /dev/null +++ b/docs/version-specific/supported-software/n/nbclassic.md @@ -0,0 +1,10 @@ +# 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`` 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..02a17979d --- /dev/null +++ b/docs/version-specific/supported-software/n/ncbi-vdb.md @@ -0,0 +1,28 @@ +# 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`` 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..e02dcbae4 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncdf4.md @@ -0,0 +1,18 @@ +# 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`` 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..131b61b20 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncdu.md @@ -0,0 +1,15 @@ +# 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`` 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..e430b5454 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncolor.md @@ -0,0 +1,9 @@ +# 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`` 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..f8ea2cc72 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncompress.md @@ -0,0 +1,9 @@ +# 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`` 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..1d5308abe --- /dev/null +++ b/docs/version-specific/supported-software/n/ncurses.md @@ -0,0 +1,57 @@ +# 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`` 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..d97e51e6d --- /dev/null +++ b/docs/version-specific/supported-software/n/ncview.md @@ -0,0 +1,24 @@ +# 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`` 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..3b6201720 --- /dev/null +++ b/docs/version-specific/supported-software/n/nd2reader.md @@ -0,0 +1,9 @@ +# 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`` 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..38dc09bf4 --- /dev/null +++ b/docs/version-specific/supported-software/n/ne.md @@ -0,0 +1,9 @@ +# 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`` 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..4395f058f --- /dev/null +++ b/docs/version-specific/supported-software/n/neon.md @@ -0,0 +1,9 @@ +# 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`` 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..52129d8d9 --- /dev/null +++ b/docs/version-specific/supported-software/n/neptune-client.md @@ -0,0 +1,12 @@ +# 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`` 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..85e266902 --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF-C++.md @@ -0,0 +1,9 @@ +# 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`` 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..b16832c7e --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF-C++4.md @@ -0,0 +1,34 @@ +# 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`` 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..08bcc865e --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF-Fortran.md @@ -0,0 +1,56 @@ +# 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`` 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..be6a5151f --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF.md @@ -0,0 +1,70 @@ +# 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`` 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..248f4f842 --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHC.md @@ -0,0 +1,9 @@ +# 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`` 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..7bce1b1c3 --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHCII.md @@ -0,0 +1,9 @@ +# 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`` 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..d350a6d2b --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHCIIpan.md @@ -0,0 +1,10 @@ +# 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`` 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..37da62ae2 --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHCpan.md @@ -0,0 +1,9 @@ +# netMHCpan + +The NetMHCpan software predicts binding of peptides to any known MHC molecule using artificial neural networks (ANNs). + +*homepage*: + +version | toolchain +--------|---------- +``4.0a`` | ``system`` 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..21ce4d010 --- /dev/null +++ b/docs/version-specific/supported-software/n/netcdf4-python.md @@ -0,0 +1,35 @@ +# 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`` 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..36e0d04ff --- /dev/null +++ b/docs/version-specific/supported-software/n/netloc.md @@ -0,0 +1,9 @@ +# 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`` 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..b5e2212b0 --- /dev/null +++ b/docs/version-specific/supported-software/n/nettle.md @@ -0,0 +1,35 @@ +# 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`` 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..d3e27a408 --- /dev/null +++ b/docs/version-specific/supported-software/n/networkTools.md @@ -0,0 +1,9 @@ +# networkTools + +Dynamical Network Analysis is a method of characterizing allosteric signalling through biomolecular complexes. + +*homepage*: + +version | toolchain +--------|---------- +``2`` | ``GCC/9.3.0`` 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..d4dd37208 --- /dev/null +++ b/docs/version-specific/supported-software/n/networkx.md @@ -0,0 +1,46 @@ +# 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`` 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..e15337f0e --- /dev/null +++ b/docs/version-specific/supported-software/n/nf-core-mag.md @@ -0,0 +1,9 @@ +# nf-core-mag + +The Nextflow pipeline 'mag' ported to EasyBuild/EESSI. + +*homepage*: + +version | toolchain +--------|---------- +``20221110`` | ``foss/2021a`` 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..899508837 --- /dev/null +++ b/docs/version-specific/supported-software/n/nf-core.md @@ -0,0 +1,10 @@ +# nf-core + +Python package with helper tools for the nf-core community. + +*homepage*: + +version | toolchain +--------|---------- +``2.10`` | ``foss/2022b`` +``2.13.1`` | ``foss/2023b`` 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..b8f4bdf44 --- /dev/null +++ b/docs/version-specific/supported-software/n/nghttp2.md @@ -0,0 +1,11 @@ +# 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`` 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..ed1763a83 --- /dev/null +++ b/docs/version-specific/supported-software/n/nghttp3.md @@ -0,0 +1,11 @@ +# 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`` 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..67976043d --- /dev/null +++ b/docs/version-specific/supported-software/n/nglview.md @@ -0,0 +1,13 @@ +# 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`` 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..6262f49df --- /dev/null +++ b/docs/version-specific/supported-software/n/ngspice.md @@ -0,0 +1,10 @@ +# 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`` 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..fa5324b18 --- /dev/null +++ b/docs/version-specific/supported-software/n/ngtcp2.md @@ -0,0 +1,11 @@ +# 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`` 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..7eca7d024 --- /dev/null +++ b/docs/version-specific/supported-software/n/nichenetr.md @@ -0,0 +1,10 @@ +# 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`` 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..3fc9c4e38 --- /dev/null +++ b/docs/version-specific/supported-software/n/nifti2dicom.md @@ -0,0 +1,9 @@ +# 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`` 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..7e4f3b680 --- /dev/null +++ b/docs/version-specific/supported-software/n/nlohmann_json.md @@ -0,0 +1,14 @@ +# 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`` 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..3fbc86286 --- /dev/null +++ b/docs/version-specific/supported-software/n/nnU-Net.md @@ -0,0 +1,10 @@ +# 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`` 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..5c7553907 --- /dev/null +++ b/docs/version-specific/supported-software/n/nodejs.md @@ -0,0 +1,25 @@ +# 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`` 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..6b4e281a0 --- /dev/null +++ b/docs/version-specific/supported-software/n/noise.md @@ -0,0 +1,9 @@ +# noise + +Native-code and shader implementations of Perlin noise for Python + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``gfbf/2023a`` 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..5d2f63319 --- /dev/null +++ b/docs/version-specific/supported-software/n/nose-parameterized.md @@ -0,0 +1,12 @@ +# 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`` 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..c98b81d90 --- /dev/null +++ b/docs/version-specific/supported-software/n/nose3.md @@ -0,0 +1,10 @@ +# 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`` 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..9bc3c942a --- /dev/null +++ b/docs/version-specific/supported-software/n/novaSTA.md @@ -0,0 +1,9 @@ +# 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`` 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..da383f7aa --- /dev/null +++ b/docs/version-specific/supported-software/n/novoalign.md @@ -0,0 +1,10 @@ +# 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`` 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..acd9253d1 --- /dev/null +++ b/docs/version-specific/supported-software/n/npstat.md @@ -0,0 +1,10 @@ +# 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`` 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..24b4e3f5d --- /dev/null +++ b/docs/version-specific/supported-software/n/nsync.md @@ -0,0 +1,16 @@ +# 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`` 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..c4f962eb8 --- /dev/null +++ b/docs/version-specific/supported-software/n/ntCard.md @@ -0,0 +1,11 @@ +# 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`` 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..6fc215b44 --- /dev/null +++ b/docs/version-specific/supported-software/n/ntEdit.md @@ -0,0 +1,9 @@ +# 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`` 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..d14f4a60c --- /dev/null +++ b/docs/version-specific/supported-software/n/ntHits.md @@ -0,0 +1,9 @@ +# 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`` 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..bf56a3e92 --- /dev/null +++ b/docs/version-specific/supported-software/n/num2words.md @@ -0,0 +1,9 @@ +# num2words + +Modules to convert numbers to words. 42 --> forty-two + +*homepage*: + +version | toolchain +--------|---------- +``0.5.10`` | ``GCCcore/10.3.0`` 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..304e6fcd3 --- /dev/null +++ b/docs/version-specific/supported-software/n/numactl.md @@ -0,0 +1,46 @@ +# 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`` 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..74516f3b0 --- /dev/null +++ b/docs/version-specific/supported-software/n/numba.md @@ -0,0 +1,38 @@ +# 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`` 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..b1057e9d7 --- /dev/null +++ b/docs/version-specific/supported-software/n/numdiff.md @@ -0,0 +1,10 @@ +# 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`` 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..d18fdccca --- /dev/null +++ b/docs/version-specific/supported-software/n/numexpr.md @@ -0,0 +1,33 @@ +# 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`` 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..d1b90fd56 --- /dev/null +++ b/docs/version-specific/supported-software/n/numpy.md @@ -0,0 +1,16 @@ +# 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`` 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..1bef69dcd --- /dev/null +++ b/docs/version-specific/supported-software/n/nvitop.md @@ -0,0 +1,9 @@ +# 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`` 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..19f58544a --- /dev/null +++ b/docs/version-specific/supported-software/n/nvofbf.md @@ -0,0 +1,9 @@ +# 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`` 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..2ab0374cb --- /dev/null +++ b/docs/version-specific/supported-software/n/nvompi.md @@ -0,0 +1,9 @@ +# nvompi + +NVHPC based compiler toolchain, including OpenMPI for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2022.07`` | ``system`` 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..342d514cc --- /dev/null +++ b/docs/version-specific/supported-software/n/nvtop.md @@ -0,0 +1,17 @@ +# 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`` 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..63634716a --- /dev/null +++ b/docs/version-specific/supported-software/o/OBITools.md @@ -0,0 +1,10 @@ +# 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`` 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..f565b5808 --- /dev/null +++ b/docs/version-specific/supported-software/o/OBITools3.md @@ -0,0 +1,10 @@ +# 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`` 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..77110975b --- /dev/null +++ b/docs/version-specific/supported-software/o/OCNet.md @@ -0,0 +1,9 @@ +# 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`` 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..d4848d17a --- /dev/null +++ b/docs/version-specific/supported-software/o/OCaml.md @@ -0,0 +1,12 @@ +# 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`` 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..41cc2b1c8 --- /dev/null +++ b/docs/version-specific/supported-software/o/OGDF.md @@ -0,0 +1,9 @@ +# 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`` 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..8575de8be --- /dev/null +++ b/docs/version-specific/supported-software/o/OMA.md @@ -0,0 +1,9 @@ +# 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`` 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..80c3c6de8 --- /dev/null +++ b/docs/version-specific/supported-software/o/OMERO.insight.md @@ -0,0 +1,9 @@ +# 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`` 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..dea1cb65c --- /dev/null +++ b/docs/version-specific/supported-software/o/OMERO.py.md @@ -0,0 +1,9 @@ +# 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`` 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..a05844dc4 --- /dev/null +++ b/docs/version-specific/supported-software/o/ONNX-Runtime.md @@ -0,0 +1,11 @@ +# 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`` 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..0655b140b --- /dev/null +++ b/docs/version-specific/supported-software/o/ONNX.md @@ -0,0 +1,11 @@ +# 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`` 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..6bc6c487a --- /dev/null +++ b/docs/version-specific/supported-software/o/OOMPA.md @@ -0,0 +1,9 @@ +# 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`` 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..85c896da5 --- /dev/null +++ b/docs/version-specific/supported-software/o/OPARI2.md @@ -0,0 +1,19 @@ +# 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`` 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..a13126594 --- /dev/null +++ b/docs/version-specific/supported-software/o/OPERA-MS.md @@ -0,0 +1,9 @@ +# 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`` 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..2b388aea4 --- /dev/null +++ b/docs/version-specific/supported-software/o/OPERA.md @@ -0,0 +1,10 @@ +# 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`` 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..7b2b68692 --- /dev/null +++ b/docs/version-specific/supported-software/o/OR-Tools.md @@ -0,0 +1,9 @@ +# 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`` 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..3fa63d344 --- /dev/null +++ b/docs/version-specific/supported-software/o/ORCA.md @@ -0,0 +1,25 @@ +# 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`` 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..4cb6815d8 --- /dev/null +++ b/docs/version-specific/supported-software/o/ORFfinder.md @@ -0,0 +1,9 @@ +# 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`` 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..d8aab6420 --- /dev/null +++ b/docs/version-specific/supported-software/o/OSPRay.md @@ -0,0 +1,9 @@ +# OSPRay + +Open, Scalable, and Portable Ray Tracing Engine + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``system`` 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..883348661 --- /dev/null +++ b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md @@ -0,0 +1,49 @@ +# 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`` 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..a8e211d5d --- /dev/null +++ b/docs/version-specific/supported-software/o/OTF2.md @@ -0,0 +1,21 @@ +# 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`` 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..e5e4ebf6e --- /dev/null +++ b/docs/version-specific/supported-software/o/OVITO.md @@ -0,0 +1,9 @@ +# 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`` 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..af2dcb956 --- /dev/null +++ b/docs/version-specific/supported-software/o/Oases.md @@ -0,0 +1,11 @@ +# 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`` 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..558e164e0 --- /dev/null +++ b/docs/version-specific/supported-software/o/Octave.md @@ -0,0 +1,20 @@ +# 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`` 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..993e7ff95 --- /dev/null +++ b/docs/version-specific/supported-software/o/Octopus-vcf.md @@ -0,0 +1,10 @@ +# 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`` 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..33f55f1e4 --- /dev/null +++ b/docs/version-specific/supported-software/o/OmegaFold.md @@ -0,0 +1,9 @@ +# OmegaFold + +OmegaFold: High-resolution de novo Structure Prediction from Primary Sequence + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` 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..6a81f9727 --- /dev/null +++ b/docs/version-specific/supported-software/o/Omnipose.md @@ -0,0 +1,10 @@ +# 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`` 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..e80acac0c --- /dev/null +++ b/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md @@ -0,0 +1,9 @@ +# 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`` 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..009418d1a --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenAI-Gym.md @@ -0,0 +1,11 @@ +# 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`` 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..8294ee5c6 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenBLAS.md @@ -0,0 +1,49 @@ +# 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`` 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..5b11f5b67 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenBabel.md @@ -0,0 +1,19 @@ +# 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`` 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..35c1ac45a --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenCV.md @@ -0,0 +1,46 @@ +# 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`` 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..6263cb2ac --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenCensus-python.md @@ -0,0 +1,9 @@ +# 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`` 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..b4a5531be --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenCoarrays.md @@ -0,0 +1,12 @@ +# 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`` 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..986f9bb11 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenColorIO.md @@ -0,0 +1,9 @@ +# 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`` 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..694a69d5a --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenEXR.md @@ -0,0 +1,21 @@ +# 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`` 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..f782ad377 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFAST.md @@ -0,0 +1,9 @@ +# 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`` 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..58f18c57e --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md @@ -0,0 +1,15 @@ +# 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`` 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..aae15f250 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFOAM.md @@ -0,0 +1,68 @@ +# 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`` 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..c2d572be6 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFace.md @@ -0,0 +1,10 @@ +# 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`` 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..f03ab0285 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFold.md @@ -0,0 +1,11 @@ +# 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`` 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..83c3a525b --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenForceField.md @@ -0,0 +1,9 @@ +# 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`` 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..99a32cda0 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenImageIO.md @@ -0,0 +1,18 @@ +# 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`` 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..19801c727 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenJPEG.md @@ -0,0 +1,21 @@ +# 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`` 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..c237ccefe --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenKIM-API.md @@ -0,0 +1,13 @@ +# 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`` 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..51a71646a --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMEEG.md @@ -0,0 +1,9 @@ +# 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`` 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..f4aaace18 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md @@ -0,0 +1,9 @@ +# 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`` 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..0683536c2 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMM.md @@ -0,0 +1,31 @@ +# 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`` 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..08add2d03 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMMTools.md @@ -0,0 +1,9 @@ +# 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`` 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..392afd363 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMPI.md @@ -0,0 +1,90 @@ +# 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`` 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..07d006a46 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMS.md @@ -0,0 +1,9 @@ +# 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`` 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..1115f0f6c --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMolcas.md @@ -0,0 +1,17 @@ +# 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`` 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..50481f558 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenNLP.md @@ -0,0 +1,9 @@ +# 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`` 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..6dd7dfa06 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenPGM.md @@ -0,0 +1,26 @@ +# 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`` 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..94288f842 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenPIV.md @@ -0,0 +1,9 @@ +# OpenPIV + +OpenPIV is an open source Particle Image Velocimetry analysis software + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.21.8`` | ``-Python-3.7.4`` | ``intel/2019b`` 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..131e78c29 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenRefine.md @@ -0,0 +1,10 @@ +# 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`` 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..d27cfc3c9 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSSL.md @@ -0,0 +1,30 @@ +# 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`` 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..069e6896b --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSceneGraph.md @@ -0,0 +1,11 @@ +# 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`` 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..89149eb1f --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSees.md @@ -0,0 +1,10 @@ +# 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`` 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..7014844a8 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSlide-Java.md @@ -0,0 +1,9 @@ +# OpenSlide-Java + +This is a Java binding to OpenSlide. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.4`` | ``-Java-17`` | ``GCCcore/12.3.0`` 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..4f273d069 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSlide.md @@ -0,0 +1,14 @@ +# 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`` 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..233748292 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenStackClient.md @@ -0,0 +1,11 @@ +# 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`` 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..a292e4e15 --- /dev/null +++ b/docs/version-specific/supported-software/o/OptaDOS.md @@ -0,0 +1,9 @@ +# 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`` 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..39bb14b19 --- /dev/null +++ b/docs/version-specific/supported-software/o/Optax.md @@ -0,0 +1,10 @@ +# 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`` 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..9448b207a --- /dev/null +++ b/docs/version-specific/supported-software/o/OptiType.md @@ -0,0 +1,10 @@ +# 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`` 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..cfc490f97 --- /dev/null +++ b/docs/version-specific/supported-software/o/OptiX.md @@ -0,0 +1,12 @@ +# 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`` 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..e19b0e128 --- /dev/null +++ b/docs/version-specific/supported-software/o/Optuna.md @@ -0,0 +1,12 @@ +# 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`` 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..6ef709429 --- /dev/null +++ b/docs/version-specific/supported-software/o/OrfM.md @@ -0,0 +1,11 @@ +# 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`` 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..106dea804 --- /dev/null +++ b/docs/version-specific/supported-software/o/OrthoFinder.md @@ -0,0 +1,15 @@ +# 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`` 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..334ca8b86 --- /dev/null +++ b/docs/version-specific/supported-software/o/OrthoMCL.md @@ -0,0 +1,10 @@ +# 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`` 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..8bd043648 --- /dev/null +++ b/docs/version-specific/supported-software/o/Osi.md @@ -0,0 +1,15 @@ +# 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`` 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..1e39e5cd4 --- /dev/null +++ b/docs/version-specific/supported-software/o/index.md @@ -0,0 +1,90 @@ +# List of supported software (o) + + * [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) 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..5bf75d19b --- /dev/null +++ b/docs/version-specific/supported-software/o/ocamlbuild.md @@ -0,0 +1,9 @@ +# 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`` 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..7e6e4f26c --- /dev/null +++ b/docs/version-specific/supported-software/o/occt.md @@ -0,0 +1,12 @@ +# 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`` 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..b6cbba39d --- /dev/null +++ b/docs/version-specific/supported-software/o/oceanspy.md @@ -0,0 +1,9 @@ +# oceanspy + +OceanSpy - A Python package to facilitate ocean model data analysis and visualization. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``foss/2022a`` 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..2bca5ebb3 --- /dev/null +++ b/docs/version-specific/supported-software/o/olaFlow.md @@ -0,0 +1,9 @@ +# 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`` 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..c1d724be4 --- /dev/null +++ b/docs/version-specific/supported-software/o/olego.md @@ -0,0 +1,9 @@ +# 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`` 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..1a976a5d6 --- /dev/null +++ b/docs/version-specific/supported-software/o/onedrive.md @@ -0,0 +1,11 @@ +# 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`` 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..cc03b31e5 --- /dev/null +++ b/docs/version-specific/supported-software/o/ont-fast5-api.md @@ -0,0 +1,17 @@ +# 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`` 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..428a6fed5 --- /dev/null +++ b/docs/version-specific/supported-software/o/ont-guppy.md @@ -0,0 +1,11 @@ +# 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`` 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..397bb39ed --- /dev/null +++ b/docs/version-specific/supported-software/o/ont-remora.md @@ -0,0 +1,12 @@ +# 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`` 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..4a9596de7 --- /dev/null +++ b/docs/version-specific/supported-software/o/openCARP.md @@ -0,0 +1,11 @@ +# 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`` 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..fd0a1da29 --- /dev/null +++ b/docs/version-specific/supported-software/o/openkim-models.md @@ -0,0 +1,16 @@ +# 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`` 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..c14c7bb17 --- /dev/null +++ b/docs/version-specific/supported-software/o/openpyxl.md @@ -0,0 +1,18 @@ +# 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`` 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..0299ac7b6 --- /dev/null +++ b/docs/version-specific/supported-software/o/openslide-python.md @@ -0,0 +1,13 @@ +# 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`` 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..102878d84 --- /dev/null +++ b/docs/version-specific/supported-software/o/optiSLang.md @@ -0,0 +1,9 @@ +# 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`` 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..54bbb041b --- /dev/null +++ b/docs/version-specific/supported-software/o/orthAgogue.md @@ -0,0 +1,9 @@ +# 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`` 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..793c556f7 --- /dev/null +++ b/docs/version-specific/supported-software/o/ownCloud.md @@ -0,0 +1,10 @@ +# 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`` 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..d694b7717 --- /dev/null +++ b/docs/version-specific/supported-software/o/oxDNA.md @@ -0,0 +1,9 @@ +# 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`` 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..d7293cb78 --- /dev/null +++ b/docs/version-specific/supported-software/o/oxford_asl.md @@ -0,0 +1,9 @@ +# 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`` 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..57ba2a90a --- /dev/null +++ b/docs/version-specific/supported-software/p/PAGAN2.md @@ -0,0 +1,9 @@ +# 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`` 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..2029c12be --- /dev/null +++ b/docs/version-specific/supported-software/p/PAL2NAL.md @@ -0,0 +1,10 @@ +# 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`` 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..e042731f0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PALEOMIX.md @@ -0,0 +1,9 @@ +# 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`` 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..fd90ab7ef --- /dev/null +++ b/docs/version-specific/supported-software/p/PAML.md @@ -0,0 +1,15 @@ +# 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`` 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..ed68b42a1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PANDAseq.md @@ -0,0 +1,13 @@ +# 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`` 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..a4b85857f --- /dev/null +++ b/docs/version-specific/supported-software/p/PAPI.md @@ -0,0 +1,23 @@ +# 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`` 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..c9282ccdb --- /dev/null +++ b/docs/version-specific/supported-software/p/PARI-GP.md @@ -0,0 +1,11 @@ +# 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`` 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..a0ac4f87f --- /dev/null +++ b/docs/version-specific/supported-software/p/PASA.md @@ -0,0 +1,9 @@ +# 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`` 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..f33e4af5a --- /dev/null +++ b/docs/version-specific/supported-software/p/PAUP.md @@ -0,0 +1,10 @@ +# 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`` 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..0a1493602 --- /dev/null +++ b/docs/version-specific/supported-software/p/PBSuite.md @@ -0,0 +1,9 @@ +# 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`` 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..79ace3359 --- /dev/null +++ b/docs/version-specific/supported-software/p/PBZIP2.md @@ -0,0 +1,9 @@ +# 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`` 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..b2e998a14 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCAngsd.md @@ -0,0 +1,9 @@ +# 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`` 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..d694204e4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCC.md @@ -0,0 +1,9 @@ +# 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`` 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..efc82eddf --- /dev/null +++ b/docs/version-specific/supported-software/p/PCL.md @@ -0,0 +1,10 @@ +# 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`` 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..e4b909e2e --- /dev/null +++ b/docs/version-specific/supported-software/p/PCMSolver.md @@ -0,0 +1,14 @@ +# 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`` 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..e3c2a2c0f --- /dev/null +++ b/docs/version-specific/supported-software/p/PCRE.md @@ -0,0 +1,34 @@ +# 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`` 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..1af9495e2 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCRE2.md @@ -0,0 +1,21 @@ +# 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`` 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..a2106dfd4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCRaster.md @@ -0,0 +1,9 @@ +# 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`` 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..654cea859 --- /dev/null +++ b/docs/version-specific/supported-software/p/PDM.md @@ -0,0 +1,9 @@ +# PDM + +A modern Python package and dependency manager supporting the latest PEP standards. + +*homepage*: + +version | toolchain +--------|---------- +``2.12.4`` | ``GCCcore/12.3.0`` 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..55607c919 --- /dev/null +++ b/docs/version-specific/supported-software/p/PDT.md @@ -0,0 +1,19 @@ +# 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`` 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..c31381c6d --- /dev/null +++ b/docs/version-specific/supported-software/p/PEAR.md @@ -0,0 +1,18 @@ +# 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`` 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..9ec381ea4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PEPT.md @@ -0,0 +1,9 @@ +# 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`` 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..c0e9b0f19 --- /dev/null +++ b/docs/version-specific/supported-software/p/PEST++.md @@ -0,0 +1,9 @@ +# 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`` 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..85a7a0ca1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PETSc.md @@ -0,0 +1,31 @@ +# 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`` 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..973d6ba69 --- /dev/null +++ b/docs/version-specific/supported-software/p/PFFT.md @@ -0,0 +1,9 @@ +# 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`` 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..4cec5dd31 --- /dev/null +++ b/docs/version-specific/supported-software/p/PGDSpider.md @@ -0,0 +1,9 @@ +# 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`` 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..e45cae219 --- /dev/null +++ b/docs/version-specific/supported-software/p/PGI.md @@ -0,0 +1,28 @@ +# 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`` 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..b51f82187 --- /dev/null +++ b/docs/version-specific/supported-software/p/PGPLOT.md @@ -0,0 +1,11 @@ +# 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`` 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..38969f652 --- /dev/null +++ b/docs/version-specific/supported-software/p/PHANOTATE.md @@ -0,0 +1,9 @@ +# PHANOTATE + +PHANOTATE: a tool to annotate phage genomes + +*homepage*: + +version | toolchain +--------|---------- +``20190724`` | ``foss/2018b`` 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..43859007b --- /dev/null +++ b/docs/version-specific/supported-software/p/PHASE.md @@ -0,0 +1,9 @@ +# 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`` 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..ea12e40fc --- /dev/null +++ b/docs/version-specific/supported-software/p/PHAST.md @@ -0,0 +1,11 @@ +# 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`` 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..beaede2af --- /dev/null +++ b/docs/version-specific/supported-software/p/PHLAT.md @@ -0,0 +1,9 @@ +# 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`` 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..5563cfdda --- /dev/null +++ b/docs/version-specific/supported-software/p/PHYLIP.md @@ -0,0 +1,14 @@ +# 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`` 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..28a38404d --- /dev/null +++ b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md @@ -0,0 +1,9 @@ +# 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`` 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..38d0170de --- /dev/null +++ b/docs/version-specific/supported-software/p/PICRUSt2.md @@ -0,0 +1,10 @@ +# 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`` 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..0b31e0446 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIL.md @@ -0,0 +1,14 @@ +# 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`` 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..dc7f50584 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIMS.md @@ -0,0 +1,9 @@ +# 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`` 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..8dfcbb1c5 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIPITS.md @@ -0,0 +1,12 @@ +# 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`` 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..2ab383011 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIRATE.md @@ -0,0 +1,9 @@ +# PIRATE + +A toolbox for pangenome analysis and threshold evaluation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.5`` | ``-R-4.2.1`` | ``foss/2022a`` 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..ae021e718 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLAMS.md @@ -0,0 +1,9 @@ +# 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`` 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..e4193c4df --- /dev/null +++ b/docs/version-specific/supported-software/p/PLAST.md @@ -0,0 +1,9 @@ +# 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`` 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..135da6ee9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLINK.md @@ -0,0 +1,25 @@ +# 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`` 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..cafcf74f0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLINKSEQ.md @@ -0,0 +1,10 @@ +# 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`` 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..a9c1a7ac4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLUMED.md @@ -0,0 +1,46 @@ +# 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`` 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..2847c1f58 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLY.md @@ -0,0 +1,12 @@ +# 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`` 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..de20c719f --- /dev/null +++ b/docs/version-specific/supported-software/p/PLplot.md @@ -0,0 +1,10 @@ +# 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`` 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..136c20249 --- /dev/null +++ b/docs/version-specific/supported-software/p/PMIx.md @@ -0,0 +1,33 @@ +# 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`` 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..d6fb16112 --- /dev/null +++ b/docs/version-specific/supported-software/p/POT.md @@ -0,0 +1,10 @@ +# 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`` 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..49124cdea --- /dev/null +++ b/docs/version-specific/supported-software/p/POV-Ray.md @@ -0,0 +1,18 @@ +# 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`` 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..ed37f30c0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PPanGGOLiN.md @@ -0,0 +1,9 @@ +# 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`` 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..26dcd77b4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PPfold.md @@ -0,0 +1,9 @@ +# 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`` 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..9b6cf16ae --- /dev/null +++ b/docs/version-specific/supported-software/p/PRANK.md @@ -0,0 +1,15 @@ +# 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`` 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..cbc5f84fa --- /dev/null +++ b/docs/version-specific/supported-software/p/PRC.md @@ -0,0 +1,9 @@ +# 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`` 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..145a54e8d --- /dev/null +++ b/docs/version-specific/supported-software/p/PREQUAL.md @@ -0,0 +1,9 @@ +# 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`` 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..765bb116f --- /dev/null +++ b/docs/version-specific/supported-software/p/PRINSEQ.md @@ -0,0 +1,11 @@ +# 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`` 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..f7f3f6b71 --- /dev/null +++ b/docs/version-specific/supported-software/p/PRISMS-PF.md @@ -0,0 +1,11 @@ +# 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`` 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..c67010f22 --- /dev/null +++ b/docs/version-specific/supported-software/p/PROJ.md @@ -0,0 +1,33 @@ +# 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`` 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..79ca3bbf1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PRRTE.md @@ -0,0 +1,9 @@ +# PRRTE + +PRRTE is the PMIx Reference RunTime Environment + +*homepage*: + +version | toolchain +--------|---------- +``3.0.5`` | ``GCCcore/13.3.0`` 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..7769b25e9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PRSice.md @@ -0,0 +1,14 @@ +# 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`` 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..40e5ac3a8 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSASS.md @@ -0,0 +1,9 @@ +# 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`` 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..50b40291f --- /dev/null +++ b/docs/version-specific/supported-software/p/PSI.md @@ -0,0 +1,9 @@ +# 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`` 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..4244db741 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSI4.md @@ -0,0 +1,15 @@ +# 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`` 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..2e57a5b69 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSIPRED.md @@ -0,0 +1,10 @@ +# PSIPRED + +Accurate protein secondary structure prediction + +*homepage*: + +version | toolchain +--------|---------- +``4.02`` | ``GCC/12.3.0`` +``4.02`` | ``GCC/8.3.0`` 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..41d7419e7 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSM2.md @@ -0,0 +1,15 @@ +# 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`` 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..eb8d4327f --- /dev/null +++ b/docs/version-specific/supported-software/p/PSORTb.md @@ -0,0 +1,9 @@ +# 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`` 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..4dbb5c10c --- /dev/null +++ b/docs/version-specific/supported-software/p/PSolver.md @@ -0,0 +1,20 @@ +# 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`` 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..aa7cf5ddb --- /dev/null +++ b/docs/version-specific/supported-software/p/PTESFinder.md @@ -0,0 +1,9 @@ +# PTESFinder + +Post-Transcriptional Exon Shuffling (PTES) Identification Pipeline + +*homepage*: + +version | toolchain +--------|---------- +``1`` | ``intel/2017b`` 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..72e12c083 --- /dev/null +++ b/docs/version-specific/supported-software/p/PYPOWER.md @@ -0,0 +1,9 @@ +# 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`` 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..9ccef9f73 --- /dev/null +++ b/docs/version-specific/supported-software/p/PYTHIA.md @@ -0,0 +1,10 @@ +# 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`` 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..b068ed105 --- /dev/null +++ b/docs/version-specific/supported-software/p/PaStiX.md @@ -0,0 +1,9 @@ +# 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`` 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..b293bc964 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pandoc.md @@ -0,0 +1,13 @@ +# 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`` 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..cae4abd65 --- /dev/null +++ b/docs/version-specific/supported-software/p/Panedr.md @@ -0,0 +1,9 @@ +# 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`` 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..a572de6f2 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pango.md @@ -0,0 +1,34 @@ +# 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`` 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..ed6e4d632 --- /dev/null +++ b/docs/version-specific/supported-software/p/ParMETIS.md @@ -0,0 +1,36 @@ +# 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`` 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..ee5b57ced --- /dev/null +++ b/docs/version-specific/supported-software/p/ParMGridGen.md @@ -0,0 +1,15 @@ +# 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`` 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..c1e1f07d3 --- /dev/null +++ b/docs/version-specific/supported-software/p/ParaView.md @@ -0,0 +1,39 @@ +# 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`` 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..099f492a5 --- /dev/null +++ b/docs/version-specific/supported-software/p/Parallel-Hashmap.md @@ -0,0 +1,11 @@ +# 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`` 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..d2338392e --- /dev/null +++ b/docs/version-specific/supported-software/p/ParallelIO.md @@ -0,0 +1,11 @@ +# 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`` 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..4803228fb --- /dev/null +++ b/docs/version-specific/supported-software/p/Paraver.md @@ -0,0 +1,11 @@ +# 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`` 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..de36485ca --- /dev/null +++ b/docs/version-specific/supported-software/p/Parcels.md @@ -0,0 +1,9 @@ +# 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`` 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..3b00db39f --- /dev/null +++ b/docs/version-specific/supported-software/p/ParmEd.md @@ -0,0 +1,11 @@ +# 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`` 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..74ee43b9d --- /dev/null +++ b/docs/version-specific/supported-software/p/Parsl.md @@ -0,0 +1,9 @@ +# 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`` 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..868820b38 --- /dev/null +++ b/docs/version-specific/supported-software/p/PartitionFinder.md @@ -0,0 +1,10 @@ +# 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`` 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..aeea9fcff --- /dev/null +++ b/docs/version-specific/supported-software/p/PennCNV.md @@ -0,0 +1,9 @@ +# 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`` 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..34acd67c1 --- /dev/null +++ b/docs/version-specific/supported-software/p/Percolator.md @@ -0,0 +1,9 @@ +# Percolator + +Semi-supervised learning for peptide identification from shotgun proteomics datasets + +*homepage*: + +version | toolchain +--------|---------- +``3.4`` | ``gompi/2019a`` 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..66864c500 --- /dev/null +++ b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md @@ -0,0 +1,10 @@ +# 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`` 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..0ae0ce967 --- /dev/null +++ b/docs/version-specific/supported-software/p/Perl.md @@ -0,0 +1,60 @@ +# 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`` 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..693b913bf --- /dev/null +++ b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md @@ -0,0 +1,9 @@ +# Perl4-CoreLibs + +Libraries historically supplied with Perl 4 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.003`` | ``-Perl-5.24.1`` | ``intel/2017a`` 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..2e764341f --- /dev/null +++ b/docs/version-specific/supported-software/p/Perseus.md @@ -0,0 +1,9 @@ +# 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`` 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..7f7ee624e --- /dev/null +++ b/docs/version-specific/supported-software/p/PfamScan.md @@ -0,0 +1,9 @@ +# PfamScan + +PfamScan is used to search a FASTA sequence against a library of Pfam HMM. + +*homepage*: + +version | toolchain +--------|---------- +``1.6`` | ``gompi/2022a`` 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..655324e35 --- /dev/null +++ b/docs/version-specific/supported-software/p/Phantompeakqualtools.md @@ -0,0 +1,9 @@ +# 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`` 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..e3fa99051 --- /dev/null +++ b/docs/version-specific/supported-software/p/PheWAS.md @@ -0,0 +1,12 @@ +# 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`` 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..9b7c648ce --- /dev/null +++ b/docs/version-specific/supported-software/p/PheWeb.md @@ -0,0 +1,9 @@ +# PheWeb + +A tool for building PheWAS websites from association files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.20`` | ``-Python-3.7.4`` | ``foss/2019b`` 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..90bf6b2e5 --- /dev/null +++ b/docs/version-specific/supported-software/p/Phenoflow.md @@ -0,0 +1,9 @@ +# 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`` 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..d2ec6a230 --- /dev/null +++ b/docs/version-specific/supported-software/p/PhiPack.md @@ -0,0 +1,9 @@ +# 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`` 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..6687e02f6 --- /dev/null +++ b/docs/version-specific/supported-software/p/Philosopher.md @@ -0,0 +1,9 @@ +# 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`` 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..216df9539 --- /dev/null +++ b/docs/version-specific/supported-software/p/PhyML.md @@ -0,0 +1,11 @@ +# PhyML + +Phylogenetic estimation using (Maximum) Likelihood + +*homepage*: + +version | toolchain +--------|---------- +``3.3.20190321`` | ``foss/2018b`` +``3.3.20200621`` | ``foss/2020b`` +``3.3.20220408`` | ``foss/2023a`` 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..07551a720 --- /dev/null +++ b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md @@ -0,0 +1,9 @@ +# PhyloBayes-MPI + +A Bayesian software for phylogenetic reconstruction using mixture models + +*homepage*: + +version | toolchain +--------|---------- +``20161021`` | ``intel/2016b`` 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..928cda72c --- /dev/null +++ b/docs/version-specific/supported-software/p/PhyloPhlAn.md @@ -0,0 +1,11 @@ +# 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`` 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..083c15868 --- /dev/null +++ b/docs/version-specific/supported-software/p/PileOMeth.md @@ -0,0 +1,9 @@ +# 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`` 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..677ddae36 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pillow-SIMD.md @@ -0,0 +1,23 @@ +# 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`` 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..3b29083d4 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pillow.md @@ -0,0 +1,47 @@ +# 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`` 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..de4001218 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pilon.md @@ -0,0 +1,12 @@ +# 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`` 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..b6e1f3177 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pindel.md @@ -0,0 +1,12 @@ +# 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`` 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..6fa41c707 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pingouin.md @@ -0,0 +1,9 @@ +# 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`` 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..93abaf403 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pint.md @@ -0,0 +1,13 @@ +# 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`` 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..eb15b18e6 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pisces.md @@ -0,0 +1,9 @@ +# 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`` 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..1537c92ac --- /dev/null +++ b/docs/version-specific/supported-software/p/PlaScope.md @@ -0,0 +1,9 @@ +# PlaScope + +Plasmid exploration of bacterial genomes + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``foss/2018b`` 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..b43aa4c9e --- /dev/null +++ b/docs/version-specific/supported-software/p/PlasmaPy.md @@ -0,0 +1,9 @@ +# PlasmaPy + +Open source Python ecosystem for plasma research and education + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` 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..857c2589f --- /dev/null +++ b/docs/version-specific/supported-software/p/Platanus.md @@ -0,0 +1,10 @@ +# Platanus + +PLATform for Assembling NUcleotide Sequences + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.1`` | ``-linux-x86_64`` | ``system`` +``1.2.4`` | | ``foss/2017a`` 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..2a03f51d1 --- /dev/null +++ b/docs/version-specific/supported-software/p/Platypus-Opt.md @@ -0,0 +1,9 @@ +# 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`` 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..a2dfbbaa4 --- /dev/null +++ b/docs/version-specific/supported-software/p/Platypus.md @@ -0,0 +1,9 @@ +# 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`` 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..d138e121e --- /dev/null +++ b/docs/version-specific/supported-software/p/Ploticus.md @@ -0,0 +1,9 @@ +# 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`` 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..9235fbc2f --- /dev/null +++ b/docs/version-specific/supported-software/p/PnetCDF.md @@ -0,0 +1,26 @@ +# 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`` 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..5bb2af7e2 --- /dev/null +++ b/docs/version-specific/supported-software/p/Porechop.md @@ -0,0 +1,13 @@ +# 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`` 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..ad667b59b --- /dev/null +++ b/docs/version-specific/supported-software/p/PortAudio.md @@ -0,0 +1,9 @@ +# 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`` 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..0a7358017 --- /dev/null +++ b/docs/version-specific/supported-software/p/PortMidi.md @@ -0,0 +1,10 @@ +# 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`` 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..57d6edf27 --- /dev/null +++ b/docs/version-specific/supported-software/p/Portcullis.md @@ -0,0 +1,9 @@ +# 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`` 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..5e7e13ba6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PostgreSQL.md @@ -0,0 +1,29 @@ +# 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`` 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..eab98e771 --- /dev/null +++ b/docs/version-specific/supported-software/p/Postgres-XL.md @@ -0,0 +1,9 @@ +# 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`` 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..98d42588b --- /dev/null +++ b/docs/version-specific/supported-software/p/Primer3.md @@ -0,0 +1,12 @@ +# 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`` 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..a61516be2 --- /dev/null +++ b/docs/version-specific/supported-software/p/ProBiS.md @@ -0,0 +1,9 @@ +# ProBiS + +ProBiS algorithm aligns and superimposes complete protein surfaces, surface motifs, or protein binding sites. + +*homepage*: + +version | toolchain +--------|---------- +``20230403`` | ``gompi/2022b`` 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..c3b73ddb9 --- /dev/null +++ b/docs/version-specific/supported-software/p/ProFit.md @@ -0,0 +1,9 @@ +# 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`` 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..439461ba8 --- /dev/null +++ b/docs/version-specific/supported-software/p/ProbABEL.md @@ -0,0 +1,10 @@ +# 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`` 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..d1a12b2f5 --- /dev/null +++ b/docs/version-specific/supported-software/p/ProjectQ.md @@ -0,0 +1,9 @@ +# ProjectQ + +An open source software framework for quantum computing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.2`` | ``-Python-3.6.6`` | ``intel/2018b`` 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..5c72304fb --- /dev/null +++ b/docs/version-specific/supported-software/p/ProtHint.md @@ -0,0 +1,10 @@ +# 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`` 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..9af41463e --- /dev/null +++ b/docs/version-specific/supported-software/p/ProteinMPNN.md @@ -0,0 +1,9 @@ +# 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`` 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..8bc3eb217 --- /dev/null +++ b/docs/version-specific/supported-software/p/Proteinortho.md @@ -0,0 +1,10 @@ +# 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`` 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..a2c10c5a0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PsiCLASS.md @@ -0,0 +1,9 @@ +# 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`` 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..6e2a68e97 --- /dev/null +++ b/docs/version-specific/supported-software/p/PuLP.md @@ -0,0 +1,11 @@ +# 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`` 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..74d03149f --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAEDT.md @@ -0,0 +1,9 @@ +# 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`` 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..5a40f2543 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAMG.md @@ -0,0 +1,13 @@ +# 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`` 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..503cadd8b --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAPS3.md @@ -0,0 +1,9 @@ +# PyAPS3 + +Python 3 Atmospheric Phase Screen + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190407`` | ``-Python-3.7.2`` | ``foss/2019a`` 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..a780690b7 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAV.md @@ -0,0 +1,9 @@ +# 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`` 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..af8a72aa2 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyBerny.md @@ -0,0 +1,11 @@ +# 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`` 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..dfd3a64fd --- /dev/null +++ b/docs/version-specific/supported-software/p/PyBioLib.md @@ -0,0 +1,9 @@ +# 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`` 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..cda0aeb46 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCUDA.md @@ -0,0 +1,15 @@ +# 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`` 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..0b6c5ef5b --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCairo.md @@ -0,0 +1,24 @@ +# 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`` 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..438a05547 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCalib.md @@ -0,0 +1,10 @@ +# PyCalib + +Python library for classifier calibration + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0.dev0`` | ``foss/2021b`` +``20230531`` | ``gfbf/2022b`` 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..27cd4f8eb --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCharm.md @@ -0,0 +1,13 @@ +# 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`` 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..f3fe63213 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCheMPS2.md @@ -0,0 +1,10 @@ +# 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`` 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..e0fdc2531 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCifRW.md @@ -0,0 +1,9 @@ +# 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`` 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..c0b087210 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyClone.md @@ -0,0 +1,9 @@ +# 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`` 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..dd0fe0741 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCogent.md @@ -0,0 +1,12 @@ +# 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`` 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..086942d51 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyDamage.md @@ -0,0 +1,9 @@ +# 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`` 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..ec873b8d1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyDatastream.md @@ -0,0 +1,9 @@ +# PyDatastream + +Lightweight SOAP client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.1`` | ``-Python-3.6.4`` | ``intel/2018a`` 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..7e4ea5171 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyEVTK.md @@ -0,0 +1,10 @@ +# 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`` 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..f94a9fa54 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyEXR.md @@ -0,0 +1,9 @@ +# PyEXR + +A simple EXR IO-library for Python that simplifies the use of OpenEXR. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.10`` | ``gfbf/2023a`` 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..dea790620 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFFmpeg.md @@ -0,0 +1,10 @@ +# 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`` 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..42a2d365b --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFMI.md @@ -0,0 +1,9 @@ +# 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`` 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..4d78385b1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFR.md @@ -0,0 +1,10 @@ +# 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`` 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..412f27261 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFoam.md @@ -0,0 +1,9 @@ +# PyFoam + +A Python library to control OpenFOAM-runs and manipulate OpenFOAM-data. + +*homepage*: + +version | toolchain +--------|---------- +``2020.5`` | ``foss/2020b`` 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..bd61b1615 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFrag.md @@ -0,0 +1,10 @@ +# 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`` 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..1cfedf8fc --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGEOS.md @@ -0,0 +1,13 @@ +# 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`` 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..d8be4f433 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGObject.md @@ -0,0 +1,19 @@ +# 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`` 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..d134d1803 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGTK.md @@ -0,0 +1,12 @@ +# 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`` 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..56ddf83f3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGTS.md @@ -0,0 +1,13 @@ +# 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`` 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..ee7bd0aee --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGWAS.md @@ -0,0 +1,15 @@ +# 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`` 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..4c67be775 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyHMMER.md @@ -0,0 +1,9 @@ +# 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`` 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..39de32bd9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyImageJ.md @@ -0,0 +1,9 @@ +# 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`` 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..0a171266a --- /dev/null +++ b/docs/version-specific/supported-software/p/PyInstaller.md @@ -0,0 +1,9 @@ +# 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`` 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..c5e358030 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyMC.md @@ -0,0 +1,11 @@ +# 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`` 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..54e98f74b --- /dev/null +++ b/docs/version-specific/supported-software/p/PyMC3.md @@ -0,0 +1,14 @@ +# 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`` 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..5dcfcb612 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyMOL.md @@ -0,0 +1,9 @@ +# 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`` 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..9f144bf9d --- /dev/null +++ b/docs/version-specific/supported-software/p/PyNAST.md @@ -0,0 +1,11 @@ +# 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`` 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..ed4887396 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyOD.md @@ -0,0 +1,10 @@ +# 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`` 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..687de8abb --- /dev/null +++ b/docs/version-specific/supported-software/p/PyOpenCL.md @@ -0,0 +1,18 @@ +# 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`` 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..1c20e0c62 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyOpenGL.md @@ -0,0 +1,21 @@ +# 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`` 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..4fb8c1607 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyPSA.md @@ -0,0 +1,9 @@ +# 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`` 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..552c87794 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyPy.md @@ -0,0 +1,9 @@ +# PyPy + +A fast, compliant alternative implementation of Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.3.12`` | ``-3.10`` | ``system`` 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..c170d6793 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQt-builder.md @@ -0,0 +1,9 @@ +# 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`` 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..5895abfa0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQt.md @@ -0,0 +1,15 @@ +# 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`` 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..29d61f56e --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQt5.md @@ -0,0 +1,29 @@ +# 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`` 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..b08eeabf9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQtGraph.md @@ -0,0 +1,18 @@ +# 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`` 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..36b13e6e3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyRETIS.md @@ -0,0 +1,13 @@ +# 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`` 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..f93c36cfe --- /dev/null +++ b/docs/version-specific/supported-software/p/PyRe.md @@ -0,0 +1,10 @@ +# 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`` 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..825fa71f6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyRosetta.md @@ -0,0 +1,9 @@ +# 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`` 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..5e181f349 --- /dev/null +++ b/docs/version-specific/supported-software/p/PySAT.md @@ -0,0 +1,10 @@ +# 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`` 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..fdb1fa243 --- /dev/null +++ b/docs/version-specific/supported-software/p/PySCF.md @@ -0,0 +1,14 @@ +# 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`` 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..567526b42 --- /dev/null +++ b/docs/version-specific/supported-software/p/PySINDy.md @@ -0,0 +1,9 @@ +# 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`` 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..388971053 --- /dev/null +++ b/docs/version-specific/supported-software/p/PySide2.md @@ -0,0 +1,9 @@ +# 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`` 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..8797cbb8e --- /dev/null +++ b/docs/version-specific/supported-software/p/PyStan.md @@ -0,0 +1,12 @@ +# 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`` 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..c88272dee --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTables.md @@ -0,0 +1,40 @@ +# 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`` 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..f3ca99712 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTensor.md @@ -0,0 +1,9 @@ +# PyTensor + +Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs + +*homepage*: + +version | toolchain +--------|---------- +``2.17.1`` | ``gfbf/2023a`` 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..f4ad72c5d --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Geometric.md @@ -0,0 +1,18 @@ +# 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`` 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..d4dda960f --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Ignite.md @@ -0,0 +1,12 @@ +# 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`` 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..df2000e66 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md @@ -0,0 +1,10 @@ +# 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`` 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..4aa69247f --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Lightning.md @@ -0,0 +1,17 @@ +# 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`` 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..2c09c78d3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-bundle.md @@ -0,0 +1,12 @@ +# 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`` 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..b939ffe80 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch.md @@ -0,0 +1,59 @@ +# 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`` 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..bac4ab8b3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch3D.md @@ -0,0 +1,9 @@ +# 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`` 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..1970e8218 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorchVideo.md @@ -0,0 +1,10 @@ +# 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`` 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..5a450a2b4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyVCF.md @@ -0,0 +1,9 @@ +# PyVCF + +A Variant Call Format reader for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.8`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` 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..fe9ff6fa0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyVCF3.md @@ -0,0 +1,9 @@ +# 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`` 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..64d5ab2a9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyVista.md @@ -0,0 +1,9 @@ +# PyVista + +3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK) + +*homepage*: + +version | toolchain +--------|---------- +``0.43.8`` | ``foss/2023a`` 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..f999290ad --- /dev/null +++ b/docs/version-specific/supported-software/p/PyWBGT.md @@ -0,0 +1,10 @@ +# 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`` 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..3f22f381c --- /dev/null +++ b/docs/version-specific/supported-software/p/PyWavelets.md @@ -0,0 +1,10 @@ +# 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`` 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..8f1633793 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyYAML.md @@ -0,0 +1,42 @@ +# 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`` 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..6d22e0794 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyZMQ.md @@ -0,0 +1,30 @@ +# 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`` 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..559348c73 --- /dev/null +++ b/docs/version-specific/supported-software/p/PycURL.md @@ -0,0 +1,13 @@ +# 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`` 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..9f3129a79 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pychopper.md @@ -0,0 +1,9 @@ +# 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`` 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..9736da8a6 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pygments.md @@ -0,0 +1,10 @@ +# 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`` 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..360b49566 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pyke3.md @@ -0,0 +1,9 @@ +# 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`` 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..53c45debc --- /dev/null +++ b/docs/version-specific/supported-software/p/Pylint.md @@ -0,0 +1,15 @@ +# 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`` 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..d779f168a --- /dev/null +++ b/docs/version-specific/supported-software/p/Pyomo.md @@ -0,0 +1,14 @@ +# 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`` 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..e07dd77d2 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pyro4.md @@ -0,0 +1,9 @@ +# 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`` 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..1d5cf329e --- /dev/null +++ b/docs/version-specific/supported-software/p/Pysam.md @@ -0,0 +1,49 @@ +# 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`` 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..5083d9c7e --- /dev/null +++ b/docs/version-specific/supported-software/p/Pysolar.md @@ -0,0 +1,12 @@ +# 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`` 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..0b1bdf818 --- /dev/null +++ b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md @@ -0,0 +1,10 @@ +# Python-bundle-PyPI + +Bundle of Python packages from PyPI + +*homepage*: + +version | toolchain +--------|---------- +``2023.06`` | ``GCCcore/12.3.0`` +``2023.10`` | ``GCCcore/13.2.0`` 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..4a4b4cc3d --- /dev/null +++ b/docs/version-specific/supported-software/p/Python-bundle.md @@ -0,0 +1,9 @@ +# 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`` 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..5ce3484ed --- /dev/null +++ b/docs/version-specific/supported-software/p/Python.md @@ -0,0 +1,107 @@ +# 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`` 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..80e222f8f --- /dev/null +++ b/docs/version-specific/supported-software/p/index.md @@ -0,0 +1,438 @@ +# List of supported software (p) + + * [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) 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..58bfcf78d --- /dev/null +++ b/docs/version-specific/supported-software/p/p11-kit.md @@ -0,0 +1,16 @@ +# 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`` 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..558af5031 --- /dev/null +++ b/docs/version-specific/supported-software/p/p4-phylogenetics.md @@ -0,0 +1,9 @@ +# 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`` 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..8b9a49e51 --- /dev/null +++ b/docs/version-specific/supported-software/p/p4est.md @@ -0,0 +1,12 @@ +# 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`` 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..bfc7d3a6a --- /dev/null +++ b/docs/version-specific/supported-software/p/p4vasp.md @@ -0,0 +1,12 @@ +# 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`` 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..d50859d1c --- /dev/null +++ b/docs/version-specific/supported-software/p/p7zip.md @@ -0,0 +1,18 @@ +# 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`` 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..ade60431e --- /dev/null +++ b/docs/version-specific/supported-software/p/pFUnit.md @@ -0,0 +1,12 @@ +# 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`` 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..c79dfbe3b --- /dev/null +++ b/docs/version-specific/supported-software/p/pIRS.md @@ -0,0 +1,9 @@ +# 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`` 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..5be778178 --- /dev/null +++ b/docs/version-specific/supported-software/p/packmol.md @@ -0,0 +1,13 @@ +# 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`` 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..6f226ccef --- /dev/null +++ b/docs/version-specific/supported-software/p/pagmo.md @@ -0,0 +1,12 @@ +# 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`` 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..3f8716a00 --- /dev/null +++ b/docs/version-specific/supported-software/p/pairsnp.md @@ -0,0 +1,9 @@ +# 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`` 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..6620a17ff --- /dev/null +++ b/docs/version-specific/supported-software/p/paladin.md @@ -0,0 +1,10 @@ +# 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`` 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..0b5ddb59c --- /dev/null +++ b/docs/version-specific/supported-software/p/panaroo.md @@ -0,0 +1,11 @@ +# panaroo + +A pangenome analysis pipeline. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.8`` | ``foss/2020b`` +``1.2.9`` | ``foss/2021a`` +``1.3.2`` | ``foss/2021b`` 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..f7e8aeb49 --- /dev/null +++ b/docs/version-specific/supported-software/p/pandapower.md @@ -0,0 +1,9 @@ +# 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`` 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..2d44e204f --- /dev/null +++ b/docs/version-specific/supported-software/p/pandas-datareader.md @@ -0,0 +1,9 @@ +# 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`` 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..bb32f4d57 --- /dev/null +++ b/docs/version-specific/supported-software/p/pandas.md @@ -0,0 +1,24 @@ +# 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`` 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..582c05307 --- /dev/null +++ b/docs/version-specific/supported-software/p/pangolin.md @@ -0,0 +1,11 @@ +# 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`` 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..e8d1f7426 --- /dev/null +++ b/docs/version-specific/supported-software/p/panito.md @@ -0,0 +1,9 @@ +# panito + +Calculate genome wide average nucleotide identity (gwANI) for a multiFASTA alignment. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.1`` | ``GCC/10.3.0`` 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..e474dc48d --- /dev/null +++ b/docs/version-specific/supported-software/p/parallel-fastq-dump.md @@ -0,0 +1,12 @@ +# 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`` 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..635521a33 --- /dev/null +++ b/docs/version-specific/supported-software/p/parallel.md @@ -0,0 +1,31 @@ +# 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`` 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..5c1844a11 --- /dev/null +++ b/docs/version-specific/supported-software/p/parameterized.md @@ -0,0 +1,11 @@ +# 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`` 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..f1c39e382 --- /dev/null +++ b/docs/version-specific/supported-software/p/paramiko.md @@ -0,0 +1,9 @@ +# 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`` 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..eedce20a5 --- /dev/null +++ b/docs/version-specific/supported-software/p/parasail.md @@ -0,0 +1,20 @@ +# 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`` 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..8690c73b5 --- /dev/null +++ b/docs/version-specific/supported-software/p/pasta.md @@ -0,0 +1,9 @@ +# 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`` 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..c9fb9cea6 --- /dev/null +++ b/docs/version-specific/supported-software/p/pastml.md @@ -0,0 +1,9 @@ +# pastml + +Ancestor character reconstruction and visualisation for rooted phylogenetic trees + +*homepage*: + +version | toolchain +--------|---------- +``1.9.34`` | ``foss/2021a`` 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..24592ae60 --- /dev/null +++ b/docs/version-specific/supported-software/p/patch.md @@ -0,0 +1,9 @@ +# 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`` 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..14b62cd5c --- /dev/null +++ b/docs/version-specific/supported-software/p/patchelf.md @@ -0,0 +1,22 @@ +# 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`` 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..de65829d3 --- /dev/null +++ b/docs/version-specific/supported-software/p/path.py.md @@ -0,0 +1,14 @@ +# 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`` 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..ed2731946 --- /dev/null +++ b/docs/version-specific/supported-software/p/pauvre.md @@ -0,0 +1,14 @@ +# 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`` 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..3d4cb7c4e --- /dev/null +++ b/docs/version-specific/supported-software/p/pbbam.md @@ -0,0 +1,10 @@ +# 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`` 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..ec046f609 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbcopper.md @@ -0,0 +1,9 @@ +# pbcopper + +The pbcopper library provides a suite of data structures, algorithms, and utilities for C++ applications. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``gompi/2019a`` 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..515c99444 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbdagcon.md @@ -0,0 +1,9 @@ +# 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`` 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..420a3f890 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbipa.md @@ -0,0 +1,9 @@ +# 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`` 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..118472a75 --- /dev/null +++ b/docs/version-specific/supported-software/p/pblat.md @@ -0,0 +1,9 @@ +# 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`` 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..6c325e1b9 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbmm2.md @@ -0,0 +1,9 @@ +# pbmm2 + +A minimap2 frontend for PacBio native data formats + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``gompi/2019a`` 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..b0bf65100 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbs_python.md @@ -0,0 +1,12 @@ +# 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`` 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..3ab9d9daa --- /dev/null +++ b/docs/version-specific/supported-software/p/pdf2docx.md @@ -0,0 +1,9 @@ +# pdf2docx + +Open source Python library converting pdf to docx. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.8`` | ``foss/2023a`` 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..c6ba4a343 --- /dev/null +++ b/docs/version-specific/supported-software/p/pdsh.md @@ -0,0 +1,11 @@ +# 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`` 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..49ec601ff --- /dev/null +++ b/docs/version-specific/supported-software/p/peakdetect.md @@ -0,0 +1,9 @@ +# peakdetect + +Simple peak detection library for Python based on Billauer's work and this gist. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``foss/2022a`` 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..2c5c27e9a --- /dev/null +++ b/docs/version-specific/supported-software/p/perl-app-cpanminus.md @@ -0,0 +1,9 @@ +# perl-app-cpanminus + +cpanm - get, unpack build and install modules from CPAN + +*homepage*: + +version | toolchain +--------|---------- +``1.7039`` | ``system`` 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..95369b2e4 --- /dev/null +++ b/docs/version-specific/supported-software/p/petsc4py.md @@ -0,0 +1,12 @@ +# 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`` 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..9018bf6bd --- /dev/null +++ b/docs/version-specific/supported-software/p/pfind.md @@ -0,0 +1,9 @@ +# pfind + +Drop-in replacement for find, implemented for using parallel access and MPI. + +*homepage*: + +version | toolchain +--------|---------- +``20220613`` | ``gompi/2021b`` 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..db083ff1c --- /dev/null +++ b/docs/version-specific/supported-software/p/pftoolsV3.md @@ -0,0 +1,13 @@ +# 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`` 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..7eb77333d --- /dev/null +++ b/docs/version-specific/supported-software/p/phonemizer.md @@ -0,0 +1,10 @@ +# 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`` 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..2206fcf85 --- /dev/null +++ b/docs/version-specific/supported-software/p/phono3py.md @@ -0,0 +1,12 @@ +# 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`` 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..32d24e8b1 --- /dev/null +++ b/docs/version-specific/supported-software/p/phonopy.md @@ -0,0 +1,21 @@ +# 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`` 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..dd50d0494 --- /dev/null +++ b/docs/version-specific/supported-software/p/photontorch.md @@ -0,0 +1,11 @@ +# 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`` 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..91542bd32 --- /dev/null +++ b/docs/version-specific/supported-software/p/phototonic.md @@ -0,0 +1,9 @@ +# phototonic + +Phototonic is an image viewer and organizer + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCCcore/10.3.0`` 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..603fc812e --- /dev/null +++ b/docs/version-specific/supported-software/p/phylokit.md @@ -0,0 +1,9 @@ +# phylokit + +C++ library for high performance phylogenetics + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/8.2.0-2.31.1`` 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..04903fc6f --- /dev/null +++ b/docs/version-specific/supported-software/p/phylonaut.md @@ -0,0 +1,9 @@ +# phylonaut + +Dynamic programming for phylogenetics applications + +*homepage*: + +version | toolchain +--------|---------- +``20190626`` | ``gompi/2019a`` 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..f53c1984b --- /dev/null +++ b/docs/version-specific/supported-software/p/phyluce.md @@ -0,0 +1,9 @@ +# 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`` 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..f3b118c2f --- /dev/null +++ b/docs/version-specific/supported-software/p/phyx.md @@ -0,0 +1,10 @@ +# phyx + +phyx performs phylogenetics analyses on trees and sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.01`` | ``foss/2019a`` +``1.3`` | ``foss/2022a`` 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..495baa68a --- /dev/null +++ b/docs/version-specific/supported-software/p/piSvM-JSC.md @@ -0,0 +1,9 @@ +# 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`` 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..f73e1fef5 --- /dev/null +++ b/docs/version-specific/supported-software/p/piSvM.md @@ -0,0 +1,9 @@ +# 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`` 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..a11d4b940 --- /dev/null +++ b/docs/version-specific/supported-software/p/picard.md @@ -0,0 +1,37 @@ +# 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`` 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..f9cd80580 --- /dev/null +++ b/docs/version-specific/supported-software/p/pigz.md @@ -0,0 +1,24 @@ +# 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`` 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..35cdbd3b4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pip.md @@ -0,0 +1,12 @@ +# 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`` 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..89fd51e63 --- /dev/null +++ b/docs/version-specific/supported-software/p/pixman.md @@ -0,0 +1,26 @@ +# 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`` 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..87ce76bb3 --- /dev/null +++ b/docs/version-specific/supported-software/p/pizzly.md @@ -0,0 +1,9 @@ +# pizzly + +Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. + +*homepage*: + +version | toolchain +--------|---------- +``0.37.3`` | ``foss/2018b`` 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..062e9e4cf --- /dev/null +++ b/docs/version-specific/supported-software/p/pkg-config.md @@ -0,0 +1,38 @@ +# 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`` 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..5dda3447c --- /dev/null +++ b/docs/version-specific/supported-software/p/pkgconf.md @@ -0,0 +1,18 @@ +# 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`` 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..cad0c4ad8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pkgconfig.md @@ -0,0 +1,45 @@ +# 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`` 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..df061666e --- /dev/null +++ b/docs/version-specific/supported-software/p/planarity.md @@ -0,0 +1,9 @@ +# planarity + +A library for implementing graph algorithms + +*homepage*: + +version | toolchain +--------|---------- +``3.0.2.0`` | ``GCC/13.2.0`` 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..fd7aabb8d --- /dev/null +++ b/docs/version-specific/supported-software/p/plantcv.md @@ -0,0 +1,9 @@ +# plantcv + +PlantCV: Plant phenotyping using computer vision. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.0`` | ``-Python-3.8.2`` | ``foss/2020a`` 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..09804e274 --- /dev/null +++ b/docs/version-specific/supported-software/p/plantri.md @@ -0,0 +1,9 @@ +# 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`` 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..e08cf5489 --- /dev/null +++ b/docs/version-specific/supported-software/p/plc.md @@ -0,0 +1,12 @@ +# 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`` 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..e0b4d4671 --- /dev/null +++ b/docs/version-specific/supported-software/p/plinkQC.md @@ -0,0 +1,9 @@ +# 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`` 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..99e3c40bb --- /dev/null +++ b/docs/version-specific/supported-software/p/plinkliftover.md @@ -0,0 +1,9 @@ +# 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`` 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..7024cec33 --- /dev/null +++ b/docs/version-specific/supported-software/p/plmc.md @@ -0,0 +1,9 @@ +# plmc + +Inference of couplings in proteins and RNAs from sequence variation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20230121`` | ``-32bit`` | ``GCCcore/12.3.0`` 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..6c6f67ebe --- /dev/null +++ b/docs/version-specific/supported-software/p/plot1cell.md @@ -0,0 +1,10 @@ +# 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`` 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..d153e031d --- /dev/null +++ b/docs/version-specific/supported-software/p/plotly-orca.md @@ -0,0 +1,11 @@ +# 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`` 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..8cb819da7 --- /dev/null +++ b/docs/version-specific/supported-software/p/plotly.md @@ -0,0 +1,10 @@ +# 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`` 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..7c8e3a7b1 --- /dev/null +++ b/docs/version-specific/supported-software/p/plotly.py.md @@ -0,0 +1,19 @@ +# 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`` 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..5b2547343 --- /dev/null +++ b/docs/version-specific/supported-software/p/plotutils.md @@ -0,0 +1,9 @@ +# 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`` 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..1f1e799b8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pmt.md @@ -0,0 +1,13 @@ +# 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`` 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..4307b5c2c --- /dev/null +++ b/docs/version-specific/supported-software/p/pmx.md @@ -0,0 +1,9 @@ +# 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`` 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..7c3b56f2b --- /dev/null +++ b/docs/version-specific/supported-software/p/pocl.md @@ -0,0 +1,23 @@ +# 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`` 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..07317c5d8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pod5-file-format.md @@ -0,0 +1,9 @@ +# 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`` 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..5c42381eb --- /dev/null +++ b/docs/version-specific/supported-software/p/poetry.md @@ -0,0 +1,13 @@ +# 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`` 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..0f46843cd --- /dev/null +++ b/docs/version-specific/supported-software/p/polars.md @@ -0,0 +1,10 @@ +# polars + +Lightning-fast DataFrame library for Rust and Python. + +*homepage*: + +version | toolchain +--------|---------- +``0.15.6`` | ``foss/2022a`` +``0.20.2`` | ``gfbf/2023a`` 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..bf3129d37 --- /dev/null +++ b/docs/version-specific/supported-software/p/polymake.md @@ -0,0 +1,11 @@ +# 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`` 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..368610bd1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pomkl.md @@ -0,0 +1,11 @@ +# 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`` 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..d2db734cc --- /dev/null +++ b/docs/version-specific/supported-software/p/pompi.md @@ -0,0 +1,11 @@ +# pompi + +Toolchain with PGI C, C++ and Fortran compilers, alongside OpenMPI. + +*homepage*: + +version | toolchain +--------|---------- +``2016.03`` | ``system`` +``2016.04`` | ``system`` +``2016.09`` | ``system`` 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..cafb1141c --- /dev/null +++ b/docs/version-specific/supported-software/p/poppler.md @@ -0,0 +1,16 @@ +# 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`` 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..b572f8892 --- /dev/null +++ b/docs/version-specific/supported-software/p/poppunk.md @@ -0,0 +1,9 @@ +# 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`` 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..0e74d2713 --- /dev/null +++ b/docs/version-specific/supported-software/p/popscle.md @@ -0,0 +1,10 @@ +# 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`` 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..8232ed4dc --- /dev/null +++ b/docs/version-specific/supported-software/p/popt.md @@ -0,0 +1,12 @@ +# 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`` 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..6ed76437f --- /dev/null +++ b/docs/version-specific/supported-software/p/porefoam.md @@ -0,0 +1,9 @@ +# porefoam + +Direct pore-scale simulation of single- and two-phase flow through confined media + +*homepage*: + +version | toolchain +--------|---------- +``2021-09-21`` | ``foss/2020a`` 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..0035208ce --- /dev/null +++ b/docs/version-specific/supported-software/p/poretools.md @@ -0,0 +1,9 @@ +# 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`` 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..3e97dfdfc --- /dev/null +++ b/docs/version-specific/supported-software/p/powerlaw.md @@ -0,0 +1,9 @@ +# powerlaw + +powerlaw: A Python Package for Analysis of Heavy-Tailed Distributions + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``foss/2022a`` 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..0435d8c8e --- /dev/null +++ b/docs/version-specific/supported-software/p/pp-sketchlib.md @@ -0,0 +1,9 @@ +# pp-sketchlib + +Library of sketching functions used by PopPUNK + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``foss/2022a`` 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..076280b7b --- /dev/null +++ b/docs/version-specific/supported-software/p/ppl.md @@ -0,0 +1,10 @@ +# 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`` 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..44e51c9c4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pplacer.md @@ -0,0 +1,9 @@ +# 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`` 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..6c9295d69 --- /dev/null +++ b/docs/version-specific/supported-software/p/pplpy.md @@ -0,0 +1,13 @@ +# 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`` 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..ab58f52b6 --- /dev/null +++ b/docs/version-specific/supported-software/p/preCICE.md @@ -0,0 +1,12 @@ +# 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`` 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..e7cbafbcc --- /dev/null +++ b/docs/version-specific/supported-software/p/premailer.md @@ -0,0 +1,9 @@ +# premailer + +CSS blocks into inline style attributes for HTML emails + +*homepage*: + +version | toolchain +--------|---------- +``3.10.0`` | ``GCCcore/12.3.0`` 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..0b5049740 --- /dev/null +++ b/docs/version-specific/supported-software/p/preseq.md @@ -0,0 +1,15 @@ +# 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`` 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..86db2bd63 --- /dev/null +++ b/docs/version-specific/supported-software/p/presto.md @@ -0,0 +1,12 @@ +# 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`` 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..6ccdc29cf --- /dev/null +++ b/docs/version-specific/supported-software/p/pretty-yaml.md @@ -0,0 +1,12 @@ +# 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`` 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..b57c8e14d --- /dev/null +++ b/docs/version-specific/supported-software/p/primecount.md @@ -0,0 +1,9 @@ +# 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`` 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..b593775d7 --- /dev/null +++ b/docs/version-specific/supported-software/p/primecountpy.md @@ -0,0 +1,9 @@ +# primecountpy + +This is a Cython interface to the C++ library primecount. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0`` | ``GCCcore/11.3.0`` 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..d38d88166 --- /dev/null +++ b/docs/version-specific/supported-software/p/printproto.md @@ -0,0 +1,9 @@ +# printproto + +X.org PrintProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``intel/2016a`` 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..62094ede4 --- /dev/null +++ b/docs/version-specific/supported-software/p/prodigal.md @@ -0,0 +1,20 @@ +# 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`` 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..bfe38cc5a --- /dev/null +++ b/docs/version-specific/supported-software/p/prokka.md @@ -0,0 +1,19 @@ +# 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`` 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..17a15d733 --- /dev/null +++ b/docs/version-specific/supported-software/p/prompt-toolkit.md @@ -0,0 +1,16 @@ +# 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`` 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..5121eb5cf --- /dev/null +++ b/docs/version-specific/supported-software/p/proovread.md @@ -0,0 +1,9 @@ +# proovread + +PacBio hybrid error correction through iterative short read consensus + +*homepage*: + +version | toolchain +--------|---------- +``2.14.1`` | ``intel/2017b`` 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..9b917a70a --- /dev/null +++ b/docs/version-specific/supported-software/p/propy.md @@ -0,0 +1,9 @@ +# 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`` 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..0f3d9e1d1 --- /dev/null +++ b/docs/version-specific/supported-software/p/protobuf-python.md @@ -0,0 +1,35 @@ +# 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`` 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..c1640230f --- /dev/null +++ b/docs/version-specific/supported-software/p/protobuf.md @@ -0,0 +1,38 @@ +# 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`` 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..0d3103096 --- /dev/null +++ b/docs/version-specific/supported-software/p/protozero.md @@ -0,0 +1,10 @@ +# 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`` 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..cd3109dc1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pscom.md @@ -0,0 +1,11 @@ +# 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`` 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..2d5f62637 --- /dev/null +++ b/docs/version-specific/supported-software/p/psmc.md @@ -0,0 +1,11 @@ +# 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`` 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..8373b524f --- /dev/null +++ b/docs/version-specific/supported-software/p/psmpi.md @@ -0,0 +1,11 @@ +# 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`` 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..039a1402b --- /dev/null +++ b/docs/version-specific/supported-software/p/psmpi2.md @@ -0,0 +1,10 @@ +# 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`` 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..37361ff7f --- /dev/null +++ b/docs/version-specific/supported-software/p/psrecord.md @@ -0,0 +1,12 @@ +# 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`` 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..629120037 --- /dev/null +++ b/docs/version-specific/supported-software/p/pstoedit.md @@ -0,0 +1,11 @@ +# 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`` 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..f26e9265e --- /dev/null +++ b/docs/version-specific/supported-software/p/psutil.md @@ -0,0 +1,21 @@ +# 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`` 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..22e380063 --- /dev/null +++ b/docs/version-specific/supported-software/p/psycopg.md @@ -0,0 +1,10 @@ +# 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`` 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..f9472ea35 --- /dev/null +++ b/docs/version-specific/supported-software/p/psycopg2.md @@ -0,0 +1,15 @@ +# 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`` 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..fa715a7ed --- /dev/null +++ b/docs/version-specific/supported-software/p/ptemcee.md @@ -0,0 +1,9 @@ +# 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`` 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..92959752e --- /dev/null +++ b/docs/version-specific/supported-software/p/pubtcrs.md @@ -0,0 +1,9 @@ +# 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`` 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..635e3f8d6 --- /dev/null +++ b/docs/version-specific/supported-software/p/pugixml.md @@ -0,0 +1,11 @@ +# 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`` 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..7a294aa98 --- /dev/null +++ b/docs/version-specific/supported-software/p/pullseq.md @@ -0,0 +1,11 @@ +# 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`` 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..276900199 --- /dev/null +++ b/docs/version-specific/supported-software/p/purge_dups.md @@ -0,0 +1,9 @@ +# purge_dups + +purge haplotigs and overlaps in an assembly based on read depth + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``foss/2021b`` 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..1512ea71a --- /dev/null +++ b/docs/version-specific/supported-software/p/pv.md @@ -0,0 +1,9 @@ +# pv + +Pipe Viewer - monitor the progress of data through a pipe + +*homepage*: + +version | toolchain +--------|---------- +``1.7.24`` | ``GCCcore/12.3.0`` 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..90d3483af --- /dev/null +++ b/docs/version-specific/supported-software/p/py-aiger-bdd.md @@ -0,0 +1,9 @@ +# py-aiger-bdd + +Aiger to BDD bridge. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` 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..1b819dae6 --- /dev/null +++ b/docs/version-specific/supported-software/p/py-aiger.md @@ -0,0 +1,10 @@ +# 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`` 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..4c369bb8c --- /dev/null +++ b/docs/version-specific/supported-software/p/py-c3d.md @@ -0,0 +1,9 @@ +# 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`` 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..ae6a1eff4 --- /dev/null +++ b/docs/version-specific/supported-software/p/py-cpuinfo.md @@ -0,0 +1,15 @@ +# 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`` 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..0f4ec531e --- /dev/null +++ b/docs/version-specific/supported-software/p/py.md @@ -0,0 +1,10 @@ +# 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`` 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..4a0a5484a --- /dev/null +++ b/docs/version-specific/supported-software/p/py3Dmol.md @@ -0,0 +1,10 @@ +# 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`` 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..840cbd02a --- /dev/null +++ b/docs/version-specific/supported-software/p/pyABC.md @@ -0,0 +1,9 @@ +# 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`` 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..3bcf86965 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyBigWig.md @@ -0,0 +1,17 @@ +# 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`` 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..209d1fb3d --- /dev/null +++ b/docs/version-specific/supported-software/p/pyEGA3.md @@ -0,0 +1,13 @@ +# 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`` 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..5b288b119 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyFAI.md @@ -0,0 +1,13 @@ +# 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`` 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..f2b01975c --- /dev/null +++ b/docs/version-specific/supported-software/p/pyFFTW.md @@ -0,0 +1,13 @@ +# 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`` 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..91f058762 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyGAM.md @@ -0,0 +1,9 @@ +# 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`` 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..4da95762a --- /dev/null +++ b/docs/version-specific/supported-software/p/pyGIMLi.md @@ -0,0 +1,10 @@ +# 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`` 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..a9eec4510 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyGenomeTracks.md @@ -0,0 +1,10 @@ +# 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`` 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..e35b064ef --- /dev/null +++ b/docs/version-specific/supported-software/p/pyMannKendall.md @@ -0,0 +1,9 @@ +# pyMannKendall + +A python package for non parametric Mann Kendall family of trend tests. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.3`` | ``foss/2022a`` 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..b02af41d6 --- /dev/null +++ b/docs/version-specific/supported-software/p/pySCENIC.md @@ -0,0 +1,12 @@ +# 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`` 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..023d53120 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyScaf.md @@ -0,0 +1,9 @@ +# pyScaf + +pyScaf orders contigs from genome assemblies utilising several types of information + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12a4`` | ``-Python-2.7.14`` | ``intel/2017b`` 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..034016e31 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyWannier90.md @@ -0,0 +1,10 @@ +# pyWannier90 + +A Wannier90 Python interface for VASP and PySCF + +*homepage*: + +version | toolchain +--------|---------- +``2021-12-07`` | ``foss/2021a`` +``2021-12-07`` | ``gomkl/2021a`` 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..15d036c43 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyXDF.md @@ -0,0 +1,10 @@ +# pyXDF + +Python package for working with XDF files. + +*homepage*: + +version | toolchain +--------|---------- +``1.16.3`` | ``foss/2021a`` +``1.16.5`` | ``gfbf/2023a`` 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..55ed85cba --- /dev/null +++ b/docs/version-specific/supported-software/p/pybedtools.md @@ -0,0 +1,22 @@ +# 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`` 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..1ff14645e --- /dev/null +++ b/docs/version-specific/supported-software/p/pybind11-stubgen.md @@ -0,0 +1,9 @@ +# 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`` 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..32fdb3bb5 --- /dev/null +++ b/docs/version-specific/supported-software/p/pybind11.md @@ -0,0 +1,20 @@ +# 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`` 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..883dc69c4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pybinding.md @@ -0,0 +1,9 @@ +# pybinding + +Pybinding is a Python package for numerical tight-binding calculations in solid state physics. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.5`` | ``foss/2022a`` 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..285620cc9 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyccel.md @@ -0,0 +1,9 @@ +# pyccel + +Python extension language using accelerators + +*homepage*: + +version | toolchain +--------|---------- +``1.7.0`` | ``foss/2022a`` 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..29705d048 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycma.md @@ -0,0 +1,9 @@ +# 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`` 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..482e83776 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycoQC.md @@ -0,0 +1,9 @@ +# pycoQC + +PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.2`` | ``foss/2021a`` 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..a67f93325 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycocotools.md @@ -0,0 +1,16 @@ +# 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`` 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..9d0dc31a8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycodestyle.md @@ -0,0 +1,11 @@ +# 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`` 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..b584656ca --- /dev/null +++ b/docs/version-specific/supported-software/p/pycubescd.md @@ -0,0 +1,9 @@ +# pycubescd + +Charge-displacement analysis via natural orbitals for chemical valence in the four-component relativistic framework + +*homepage*: + +version | toolchain +--------|---------- +``20220704`` | ``foss/2022a`` 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..030ef8b45 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydantic.md @@ -0,0 +1,15 @@ +# 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`` 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..a1a8d1670 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydicom-seg.md @@ -0,0 +1,9 @@ +# 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`` 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..a66452e41 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydicom.md @@ -0,0 +1,17 @@ +# 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`` 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..759dae2e7 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydlpoly.md @@ -0,0 +1,10 @@ +# 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`` 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..1a18d1d52 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydot.md @@ -0,0 +1,15 @@ +# 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`` 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..345d19f0f --- /dev/null +++ b/docs/version-specific/supported-software/p/pyenchant.md @@ -0,0 +1,9 @@ +# 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`` 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..ad5a1af46 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyfaidx.md @@ -0,0 +1,16 @@ +# 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`` 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..8d82c22ee --- /dev/null +++ b/docs/version-specific/supported-software/p/pyfasta.md @@ -0,0 +1,9 @@ +# pyfasta + +fast, memory-efficient, pythonic (and command-line) access to fasta sequence files + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2020b`` 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..7cf03aaea --- /dev/null +++ b/docs/version-specific/supported-software/p/pyfits.md @@ -0,0 +1,9 @@ +# 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`` 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..be2a52819 --- /dev/null +++ b/docs/version-specific/supported-software/p/pygame.md @@ -0,0 +1,10 @@ +# 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`` 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..ad44563ef --- /dev/null +++ b/docs/version-specific/supported-software/p/pygccxml.md @@ -0,0 +1,10 @@ +# 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`` 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..b87196cec --- /dev/null +++ b/docs/version-specific/supported-software/p/pygmo.md @@ -0,0 +1,12 @@ +# 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`` 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..43ad7f0cb --- /dev/null +++ b/docs/version-specific/supported-software/p/pygraphviz.md @@ -0,0 +1,13 @@ +# 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`` 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..55d487c24 --- /dev/null +++ b/docs/version-specific/supported-software/p/pygrib.md @@ -0,0 +1,9 @@ +# pygrib + +Python interface for reading and writing GRIB data + +*homepage*: + +version | toolchain +--------|---------- +``2.0.4`` | ``foss/2019a`` 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..df7a8669d --- /dev/null +++ b/docs/version-specific/supported-software/p/pyhdf.md @@ -0,0 +1,9 @@ +# pyhdf + +Python wrapper around the NCSA HDF version 4 library + +*homepage*: + +version | toolchain +--------|---------- +``0.10.1`` | ``foss/2019a`` 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..8c912a11c --- /dev/null +++ b/docs/version-specific/supported-software/p/pyiron.md @@ -0,0 +1,11 @@ +# 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`` 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..0e1e6a40c --- /dev/null +++ b/docs/version-specific/supported-software/p/pylift.md @@ -0,0 +1,10 @@ +# 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`` 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..989fa944c --- /dev/null +++ b/docs/version-specific/supported-software/p/pylipid.md @@ -0,0 +1,9 @@ +# 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`` 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..d3361b65d --- /dev/null +++ b/docs/version-specific/supported-software/p/pymatgen-db.md @@ -0,0 +1,9 @@ +# 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`` 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..74ace4813 --- /dev/null +++ b/docs/version-specific/supported-software/p/pymatgen.md @@ -0,0 +1,17 @@ +# 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`` 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..ee9a2062c --- /dev/null +++ b/docs/version-specific/supported-software/p/pymbar.md @@ -0,0 +1,10 @@ +# 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`` 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..d1a5679cc --- /dev/null +++ b/docs/version-specific/supported-software/p/pymca.md @@ -0,0 +1,13 @@ +# 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`` 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..dbd73f41d --- /dev/null +++ b/docs/version-specific/supported-software/p/pymemcache.md @@ -0,0 +1,10 @@ +# 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`` 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..1bf9a5587 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyobjcryst.md @@ -0,0 +1,10 @@ +# 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`` 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..19ad8553d --- /dev/null +++ b/docs/version-specific/supported-software/p/pyodbc.md @@ -0,0 +1,9 @@ +# 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`` 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..8af2a6af6 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyparsing.md @@ -0,0 +1,11 @@ +# 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`` 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..9325c9b1a --- /dev/null +++ b/docs/version-specific/supported-software/p/pyperf.md @@ -0,0 +1,10 @@ +# 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`` 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..24947f74f --- /dev/null +++ b/docs/version-specific/supported-software/p/pyplusplus.md @@ -0,0 +1,10 @@ +# 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`` 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..e0d392fa1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pypmt.md @@ -0,0 +1,12 @@ +# 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`` 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..056b67a07 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyproj.md @@ -0,0 +1,18 @@ +# 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`` 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..97f17ac85 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyqstem.md @@ -0,0 +1,12 @@ +# 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`` 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..6bf5d421d --- /dev/null +++ b/docs/version-specific/supported-software/p/pyradiomics.md @@ -0,0 +1,10 @@ +# 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`` 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..49dae2583 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyringe.md @@ -0,0 +1,9 @@ +# 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`` 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..efd776dff --- /dev/null +++ b/docs/version-specific/supported-software/p/pyro-api.md @@ -0,0 +1,9 @@ +# pyro-api + +Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``fosscuda/2020b`` 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..76f3c2cca --- /dev/null +++ b/docs/version-specific/supported-software/p/pyro-ppl.md @@ -0,0 +1,14 @@ +# 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`` 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..84bc66d82 --- /dev/null +++ b/docs/version-specific/supported-software/p/pysamstats.md @@ -0,0 +1,9 @@ +# 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`` 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..6430d46bf --- /dev/null +++ b/docs/version-specific/supported-software/p/pyseer.md @@ -0,0 +1,9 @@ +# 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`` 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..2268dd7fe --- /dev/null +++ b/docs/version-specific/supported-software/p/pysheds.md @@ -0,0 +1,9 @@ +# pysheds + +Simple and fast watershed delineation in python. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.7.1`` | ``foss/2020b`` 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..7b19b0cf5 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyshp.md @@ -0,0 +1,10 @@ +# 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`` 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..12bb1258f --- /dev/null +++ b/docs/version-specific/supported-software/p/pyslim.md @@ -0,0 +1,10 @@ +# 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`` 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..464f227d9 --- /dev/null +++ b/docs/version-specific/supported-software/p/pysndfx.md @@ -0,0 +1,9 @@ +# 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`` 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..954a0f988 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyspoa.md @@ -0,0 +1,15 @@ +# 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`` 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..c68153a85 --- /dev/null +++ b/docs/version-specific/supported-software/p/pysqlite.md @@ -0,0 +1,9 @@ +# 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`` 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..170c6dde4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pysteps.md @@ -0,0 +1,9 @@ +# 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`` 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..bfaa914c0 --- /dev/null +++ b/docs/version-specific/supported-software/p/pystran.md @@ -0,0 +1,9 @@ +# pystran + +Toolset of dynamical model STRucture ANalysis algorithms + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2017.04.20`` | ``-Python-2.7.14`` | ``intel/2017b`` 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..7eee1b310 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytesseract.md @@ -0,0 +1,9 @@ +# 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`` 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..2e951389c --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-benchmark.md @@ -0,0 +1,9 @@ +# pytest-benchmark + +A pytest fixture for benchmarking code. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``GCCcore/10.2.0`` 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..a4b6d8327 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-cpp.md @@ -0,0 +1,9 @@ +# pytest-cpp + +Use pytest runner to discover and execute C++ tests. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCCcore/11.3.0`` 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..9df32d307 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-flakefinder.md @@ -0,0 +1,12 @@ +# 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`` 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..4a7cc2098 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-rerunfailures.md @@ -0,0 +1,12 @@ +# 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`` 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..5fe9f31b3 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-shard.md @@ -0,0 +1,12 @@ +# 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`` 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..72d5b80e3 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-workflow.md @@ -0,0 +1,10 @@ +# 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`` 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..21e8c94ef --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-xdist.md @@ -0,0 +1,14 @@ +# 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`` 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..8c0d27883 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest.md @@ -0,0 +1,29 @@ +# 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`` 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..965f87fff --- /dev/null +++ b/docs/version-specific/supported-software/p/pythermalcomfort.md @@ -0,0 +1,9 @@ +# 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`` 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..268c8779c --- /dev/null +++ b/docs/version-specific/supported-software/p/python-Levenshtein.md @@ -0,0 +1,11 @@ +# 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`` 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..be900c7b7 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-casacore.md @@ -0,0 +1,9 @@ +# 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`` 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..48d677a4c --- /dev/null +++ b/docs/version-specific/supported-software/p/python-docx.md @@ -0,0 +1,10 @@ +# 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`` 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..6090cf931 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-hl7.md @@ -0,0 +1,9 @@ +# 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`` 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..ed7271d28 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-igraph.md @@ -0,0 +1,19 @@ +# 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`` 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..a18d0d2f7 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-irodsclient.md @@ -0,0 +1,11 @@ +# 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`` 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..c7dc98669 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-isal.md @@ -0,0 +1,15 @@ +# 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`` 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..b90bdd733 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-libsbml.md @@ -0,0 +1,11 @@ +# python-libsbml + +LibSBML Python API. + +*homepage*: + +version | toolchain +--------|---------- +``5.19.7`` | ``foss/2021a`` +``5.20.2`` | ``foss/2021b`` +``5.20.2`` | ``foss/2023b`` 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..f2686b144 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-louvain.md @@ -0,0 +1,11 @@ +# python-louvain + +Louvain algorithm for community detection + +*homepage*: + +version | toolchain +--------|---------- +``0.15`` | ``foss/2021b`` +``0.16`` | ``foss/2022a`` +``0.16`` | ``foss/2023a`` 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..1a055b688 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-mujoco.md @@ -0,0 +1,10 @@ +# 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`` 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..499c35588 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-parasail.md @@ -0,0 +1,22 @@ +# 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`` 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..ede0f1c83 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-telegram-bot.md @@ -0,0 +1,9 @@ +# 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`` 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..49e528132 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-weka-wrapper3.md @@ -0,0 +1,9 @@ +# python-weka-wrapper3 + +Python3 wrapper for the Weka Machine Learning Workbench + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.11`` | ``-Python-3.7.4`` | ``foss/2019b`` 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..ab7d34089 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-xxhash.md @@ -0,0 +1,13 @@ +# 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`` 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..ca5cb92c8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pythran.md @@ -0,0 +1,9 @@ +# 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`` 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..badea745e --- /dev/null +++ b/docs/version-specific/supported-software/p/pytorch-3dunet.md @@ -0,0 +1,9 @@ +# 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`` 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..f56636747 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md @@ -0,0 +1,9 @@ +# 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`` 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..52f0323aa --- /dev/null +++ b/docs/version-specific/supported-software/q/Q6.md @@ -0,0 +1,9 @@ +# Q6 + +EVB, FEP and LIE simulator. + +*homepage*: + +version | toolchain +--------|---------- +``20180205`` | ``gompi/2019a`` 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..029f429af --- /dev/null +++ b/docs/version-specific/supported-software/q/QCA.md @@ -0,0 +1,14 @@ +# 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`` 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..7beb97943 --- /dev/null +++ b/docs/version-specific/supported-software/q/QCG-PilotJob.md @@ -0,0 +1,12 @@ +# 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`` 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..a37fc7d26 --- /dev/null +++ b/docs/version-specific/supported-software/q/QCxMS.md @@ -0,0 +1,9 @@ +# 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`` 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..eec5b6425 --- /dev/null +++ b/docs/version-specific/supported-software/q/QD.md @@ -0,0 +1,10 @@ +# QD + +QD-Engineering Python Library for CAE + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.9`` | | ``foss/2021a`` +``2.3.17`` | ``-20160110`` | ``NVHPC/21.2`` 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..e194db594 --- /dev/null +++ b/docs/version-specific/supported-software/q/QDD.md @@ -0,0 +1,9 @@ +# 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`` 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..729090c11 --- /dev/null +++ b/docs/version-specific/supported-software/q/QEMU.md @@ -0,0 +1,9 @@ +# QEMU + +QEMU is a generic and open source machine emulator and virtualizer. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.1`` | ``intel/2017b`` 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..a1e352c71 --- /dev/null +++ b/docs/version-specific/supported-software/q/QGIS.md @@ -0,0 +1,12 @@ +# 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`` 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..e7e689ce8 --- /dev/null +++ b/docs/version-specific/supported-software/q/QIIME.md @@ -0,0 +1,9 @@ +# QIIME + +QIIME is an open-source bioinformatics pipeline for performing microbiome analysis from raw DNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.1`` | ``system`` 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..92b65e2d9 --- /dev/null +++ b/docs/version-specific/supported-software/q/QIIME2.md @@ -0,0 +1,19 @@ +# 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`` 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..bd40d25e6 --- /dev/null +++ b/docs/version-specific/supported-software/q/QJson.md @@ -0,0 +1,12 @@ +# 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`` 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..f3d022984 --- /dev/null +++ b/docs/version-specific/supported-software/q/QML.md @@ -0,0 +1,9 @@ +# 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`` 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..ad72b82f9 --- /dev/null +++ b/docs/version-specific/supported-software/q/QScintilla.md @@ -0,0 +1,14 @@ +# 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`` 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..ad7417ba7 --- /dev/null +++ b/docs/version-specific/supported-software/q/QTLtools.md @@ -0,0 +1,10 @@ +# 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`` 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..b62521661 --- /dev/null +++ b/docs/version-specific/supported-software/q/QUAST.md @@ -0,0 +1,19 @@ +# 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`` 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..de79a370a --- /dev/null +++ b/docs/version-specific/supported-software/q/Qhull.md @@ -0,0 +1,27 @@ +# 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`` 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..307bee345 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qiskit.md @@ -0,0 +1,11 @@ +# 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`` 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..f16e1d635 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt.md @@ -0,0 +1,26 @@ +# 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`` 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..728d06aad --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt5.md @@ -0,0 +1,38 @@ +# 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`` 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..cd206a847 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt5Webkit.md @@ -0,0 +1,12 @@ +# 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`` 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..7202a5614 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt6.md @@ -0,0 +1,10 @@ +# 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`` 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..95d6c9379 --- /dev/null +++ b/docs/version-specific/supported-software/q/QtKeychain.md @@ -0,0 +1,11 @@ +# 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`` 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..606e92ffd --- /dev/null +++ b/docs/version-specific/supported-software/q/QtPy.md @@ -0,0 +1,13 @@ +# 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`` 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..7862113df --- /dev/null +++ b/docs/version-specific/supported-software/q/Qtconsole.md @@ -0,0 +1,14 @@ +# 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`` 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..6668f305e --- /dev/null +++ b/docs/version-specific/supported-software/q/QuPath.md @@ -0,0 +1,9 @@ +# 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`` 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..2e1754640 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuTiP.md @@ -0,0 +1,11 @@ +# 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`` 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..e16371c4b --- /dev/null +++ b/docs/version-specific/supported-software/q/QuaZIP.md @@ -0,0 +1,9 @@ +# 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`` 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..1a021223a --- /dev/null +++ b/docs/version-specific/supported-software/q/Qualimap.md @@ -0,0 +1,11 @@ +# 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`` 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..e019c3699 --- /dev/null +++ b/docs/version-specific/supported-software/q/Quandl.md @@ -0,0 +1,12 @@ +# 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`` 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..6eeac3fac --- /dev/null +++ b/docs/version-specific/supported-software/q/QuantumESPRESSO.md @@ -0,0 +1,43 @@ +# 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`` 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..038155bf4 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuickFF.md @@ -0,0 +1,14 @@ +# 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`` 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..a658b7fcc --- /dev/null +++ b/docs/version-specific/supported-software/q/QuickPIC.md @@ -0,0 +1,9 @@ +# 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`` 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..ee82c68f8 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuickTree.md @@ -0,0 +1,9 @@ +# 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`` 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..6eb6b023a --- /dev/null +++ b/docs/version-specific/supported-software/q/Quip.md @@ -0,0 +1,9 @@ +# 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`` 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..c93c934f8 --- /dev/null +++ b/docs/version-specific/supported-software/q/Quorum.md @@ -0,0 +1,9 @@ +# Quorum + +QuorUM is an error corrector for Illumina reads + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``intel/2017a`` 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..94d4a23ca --- /dev/null +++ b/docs/version-specific/supported-software/q/Qwt.md @@ -0,0 +1,19 @@ +# 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`` 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..0b12aff53 --- /dev/null +++ b/docs/version-specific/supported-software/q/QwtPolar.md @@ -0,0 +1,12 @@ +# 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`` 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..93379a4e7 --- /dev/null +++ b/docs/version-specific/supported-software/q/index.md @@ -0,0 +1,48 @@ +# List of supported software (q) + + * [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) 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..8180298d3 --- /dev/null +++ b/docs/version-specific/supported-software/q/q2-krona.md @@ -0,0 +1,9 @@ +# q2-krona + +QIIME2 plugin for creating Krona plots + +*homepage*: + +version | toolchain +--------|---------- +``20220124`` | ``GCCcore/11.3.0`` 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..66a0d4a2c --- /dev/null +++ b/docs/version-specific/supported-software/q/qcat.md @@ -0,0 +1,12 @@ +# 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`` 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..258c38139 --- /dev/null +++ b/docs/version-specific/supported-software/q/qcint.md @@ -0,0 +1,9 @@ +# 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`` 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..0e81fe1b8 --- /dev/null +++ b/docs/version-specific/supported-software/q/qforce.md @@ -0,0 +1,9 @@ +# 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`` 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..29570787e --- /dev/null +++ b/docs/version-specific/supported-software/q/qmflows.md @@ -0,0 +1,9 @@ +# 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`` 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..558ee4603 --- /dev/null +++ b/docs/version-specific/supported-software/q/qnorm.md @@ -0,0 +1,10 @@ +# qnorm + +Fast-ish (and correct!) quantile normalization in Python + +*homepage*: + +version | toolchain +--------|---------- +``0.8.1`` | ``foss/2022a`` +``0.8.1`` | ``foss/2023a`` 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..ecbe756e6 --- /dev/null +++ b/docs/version-specific/supported-software/q/qpth.md @@ -0,0 +1,9 @@ +# qpth + +A fast and differentiable QP solver for PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.13-20190626`` | ``-Python-3.7.2`` | ``foss/2019a`` 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..7df560196 --- /dev/null +++ b/docs/version-specific/supported-software/q/qrupdate.md @@ -0,0 +1,21 @@ +# 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`` 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..767e7e62b --- /dev/null +++ b/docs/version-specific/supported-software/q/qtop.md @@ -0,0 +1,9 @@ +# 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`` 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..685438850 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-INLA.md @@ -0,0 +1,9 @@ +# 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`` 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..43c3c85b1 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-MXM.md @@ -0,0 +1,9 @@ +# R-MXM + +MXM: Feature Selection (Including Multiple Solutions) and Bayesian Networks + +*homepage*: + +version | toolchain +--------|---------- +``1.5.5`` | ``foss/2021b`` 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..216678ca7 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md @@ -0,0 +1,28 @@ +# 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`` 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..ceb4afaee --- /dev/null +++ b/docs/version-specific/supported-software/r/R-bundle-CRAN.md @@ -0,0 +1,9 @@ +# R-bundle-CRAN + +Bundle of R packages from CRAN + +*homepage*: + +version | toolchain +--------|---------- +``2023.12`` | ``foss/2023a`` 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..fd8cd73b0 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-keras.md @@ -0,0 +1,15 @@ +# 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`` 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..88223919d --- /dev/null +++ b/docs/version-specific/supported-software/r/R-opencv.md @@ -0,0 +1,9 @@ +# 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`` 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..899f06b33 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-tesseract.md @@ -0,0 +1,10 @@ +# 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`` 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..9cf34fb3e --- /dev/null +++ b/docs/version-specific/supported-software/r/R-transport.md @@ -0,0 +1,9 @@ +# R-transport + +transport: Computation of Optimal Transport Plans and Wasserstein Distances + +*homepage*: + +version | toolchain +--------|---------- +``0.13-0`` | ``foss/2021b`` 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..b9cb1a4ff --- /dev/null +++ b/docs/version-specific/supported-software/r/R.md @@ -0,0 +1,55 @@ +# 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`` 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..09f294503 --- /dev/null +++ b/docs/version-specific/supported-software/r/R2jags.md @@ -0,0 +1,9 @@ +# R2jags + +Providing wrapper functions to implement Bayesian analysis in JAGS. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7-1`` | ``-R-4.2.1`` | ``foss/2022a`` 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..8c62c61f9 --- /dev/null +++ b/docs/version-specific/supported-software/r/RAPSearch2.md @@ -0,0 +1,9 @@ +# RAPSearch2 + +RAPSearch stands for Reduced Alphabet based Protein similarity Search + +*homepage*: + +version | toolchain +--------|---------- +``2.24`` | ``GCC/9.3.0`` 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..0cee2e6c4 --- /dev/null +++ b/docs/version-specific/supported-software/r/RASPA2.md @@ -0,0 +1,11 @@ +# 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`` 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..4a995faf0 --- /dev/null +++ b/docs/version-specific/supported-software/r/RAxML-NG.md @@ -0,0 +1,16 @@ +# 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`` 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..fb10092d4 --- /dev/null +++ b/docs/version-specific/supported-software/r/RAxML.md @@ -0,0 +1,27 @@ +# 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`` 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..8e8a6beef --- /dev/null +++ b/docs/version-specific/supported-software/r/RBFOpt.md @@ -0,0 +1,10 @@ +# 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`` 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..61b82718c --- /dev/null +++ b/docs/version-specific/supported-software/r/RCall.md @@ -0,0 +1,9 @@ +# 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`` 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..b719e62ed --- /dev/null +++ b/docs/version-specific/supported-software/r/RDFlib.md @@ -0,0 +1,14 @@ +# 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`` 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..e6ca3220c --- /dev/null +++ b/docs/version-specific/supported-software/r/RDKit.md @@ -0,0 +1,17 @@ +# 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`` 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..4ced5795d --- /dev/null +++ b/docs/version-specific/supported-software/r/RDP-Classifier.md @@ -0,0 +1,12 @@ +# 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`` 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..ec2ba32c6 --- /dev/null +++ b/docs/version-specific/supported-software/r/RE2.md @@ -0,0 +1,16 @@ +# 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`` 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..223a0741f --- /dev/null +++ b/docs/version-specific/supported-software/r/RECON.md @@ -0,0 +1,10 @@ +# 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`` 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..eee8be71b --- /dev/null +++ b/docs/version-specific/supported-software/r/RELION.md @@ -0,0 +1,22 @@ +# 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`` 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..5a8b049e6 --- /dev/null +++ b/docs/version-specific/supported-software/r/REMORA.md @@ -0,0 +1,13 @@ +# 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`` 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..fb9936947 --- /dev/null +++ b/docs/version-specific/supported-software/r/RERconverge.md @@ -0,0 +1,10 @@ +# 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`` 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..bf323da5e --- /dev/null +++ b/docs/version-specific/supported-software/r/RFdiffusion.md @@ -0,0 +1,10 @@ +# 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`` 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..c7b8e34b5 --- /dev/null +++ b/docs/version-specific/supported-software/r/RHEIA.md @@ -0,0 +1,9 @@ +# RHEIA + +Robust design optimization of renewable Hydrogen and dErIved energy cArrier systems + +*homepage*: + +version | toolchain +--------|---------- +``1.1.6`` | ``foss/2022a`` 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..ef6a39cc6 --- /dev/null +++ b/docs/version-specific/supported-software/r/RInChI.md @@ -0,0 +1,9 @@ +# 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`` 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..2ecbb2098 --- /dev/null +++ b/docs/version-specific/supported-software/r/RLCard.md @@ -0,0 +1,9 @@ +# RLCard + +RLCard is a toolkit for Reinforcement Learning (RL) in card games. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.9`` | ``foss/2022a`` 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..488c20d0c --- /dev/null +++ b/docs/version-specific/supported-software/r/RMBlast.md @@ -0,0 +1,14 @@ +# 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`` 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..af573d4ee --- /dev/null +++ b/docs/version-specific/supported-software/r/RNA-Bloom.md @@ -0,0 +1,11 @@ +# 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`` 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..96a8a3e5b --- /dev/null +++ b/docs/version-specific/supported-software/r/RNA-SeQC.md @@ -0,0 +1,13 @@ +# 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`` 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..b3a6be37b --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAIndel.md @@ -0,0 +1,10 @@ +# 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`` 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..88b6d5f20 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAclust.md @@ -0,0 +1,10 @@ +# 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`` 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..25a87d2eb --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAcode.md @@ -0,0 +1,9 @@ +# RNAcode + +RNAcode - Analyze the protein coding potential in multiple sequence alignments + +*homepage*: + +version | toolchain +--------|---------- +``0.3`` | ``foss/2017a`` 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..7ba9948f1 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAmmer.md @@ -0,0 +1,9 @@ +# RNAmmer + +This is an example description. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` 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..df1170980 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAz.md @@ -0,0 +1,10 @@ +# 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`` 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..3a6d753df --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCR-Runtime.md @@ -0,0 +1,9 @@ +# 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`` 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..9701a8aab --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md @@ -0,0 +1,9 @@ +# 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`` 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..403823dee --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md @@ -0,0 +1,9 @@ +# ROCm-CompilerSupport + +The compiler support repository provides various Lightning Compiler related services + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` 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..abc9772b6 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCm.md @@ -0,0 +1,9 @@ +# 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`` 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..e93759214 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROI_PAC.md @@ -0,0 +1,9 @@ +# 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`` 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..c082b43fd --- /dev/null +++ b/docs/version-specific/supported-software/r/ROME.md @@ -0,0 +1,9 @@ +# 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`` 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..6a9adc1a8 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROOT.md @@ -0,0 +1,25 @@ +# 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`` 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..0bf6e49d4 --- /dev/null +++ b/docs/version-specific/supported-software/r/RPostgreSQL.md @@ -0,0 +1,10 @@ +# 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`` 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..12fec6d5d --- /dev/null +++ b/docs/version-specific/supported-software/r/RQGIS3.md @@ -0,0 +1,9 @@ +# 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`` 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..acd1360ed --- /dev/null +++ b/docs/version-specific/supported-software/r/RSEM.md @@ -0,0 +1,20 @@ +# 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`` 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..52ec4f33f --- /dev/null +++ b/docs/version-specific/supported-software/r/RSeQC.md @@ -0,0 +1,14 @@ +# 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`` 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..c3df7c717 --- /dev/null +++ b/docs/version-specific/supported-software/r/RStan.md @@ -0,0 +1,11 @@ +# 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`` 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..f4f3d88fb --- /dev/null +++ b/docs/version-specific/supported-software/r/RStudio-Server.md @@ -0,0 +1,15 @@ +# 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`` 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..f4c87da74 --- /dev/null +++ b/docs/version-specific/supported-software/r/RTG-Tools.md @@ -0,0 +1,10 @@ +# 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`` 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..c417ab5d9 --- /dev/null +++ b/docs/version-specific/supported-software/r/RaGOO.md @@ -0,0 +1,9 @@ +# 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`` 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..561aa65ea --- /dev/null +++ b/docs/version-specific/supported-software/r/Racon.md @@ -0,0 +1,20 @@ +# 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`` 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..abec76212 --- /dev/null +++ b/docs/version-specific/supported-software/r/RagTag.md @@ -0,0 +1,10 @@ +# 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`` 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..b39300203 --- /dev/null +++ b/docs/version-specific/supported-software/r/Ragout.md @@ -0,0 +1,10 @@ +# 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`` 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..d45ff5db1 --- /dev/null +++ b/docs/version-specific/supported-software/r/RapidJSON.md @@ -0,0 +1,18 @@ +# 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`` 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..c190fb1c6 --- /dev/null +++ b/docs/version-specific/supported-software/r/Raptor.md @@ -0,0 +1,9 @@ +# 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`` 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..73d3c0718 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rascaf.md @@ -0,0 +1,9 @@ +# 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`` 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..b81eb8cbf --- /dev/null +++ b/docs/version-specific/supported-software/r/Ratatosk.md @@ -0,0 +1,9 @@ +# Ratatosk + +Phased hybrid error correction of long reads using colored de Bruijn graphs + +*homepage*: + +version | toolchain +--------|---------- +``0.4`` | ``GCC/10.2.0`` 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..ee04efc26 --- /dev/null +++ b/docs/version-specific/supported-software/r/Raven.md @@ -0,0 +1,9 @@ +# Raven + +Raven is a de novo genome assembler for long uncorrected reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.1`` | ``GCC/11.2.0`` 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..eeb767b16 --- /dev/null +++ b/docs/version-specific/supported-software/r/Ray-assembler.md @@ -0,0 +1,9 @@ +# Ray-assembler + +Parallel genome assemblies for parallel DNA sequencing + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``iimpi/2019a`` 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..0e44a2518 --- /dev/null +++ b/docs/version-specific/supported-software/r/Ray-project.md @@ -0,0 +1,14 @@ +# 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`` 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..54a1c55d4 --- /dev/null +++ b/docs/version-specific/supported-software/r/Raysect.md @@ -0,0 +1,11 @@ +# 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`` 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..7a3edfd8c --- /dev/null +++ b/docs/version-specific/supported-software/r/Rcorrector.md @@ -0,0 +1,9 @@ +# 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`` 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..944a12817 --- /dev/null +++ b/docs/version-specific/supported-software/r/RcppGSL.md @@ -0,0 +1,9 @@ +# 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`` 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..75f549c08 --- /dev/null +++ b/docs/version-specific/supported-software/r/ReFrame.md @@ -0,0 +1,35 @@ +# 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`` 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..3bdc3f715 --- /dev/null +++ b/docs/version-specific/supported-software/r/ReMatCh.md @@ -0,0 +1,9 @@ +# ReMatCh + +Reads mapping against target sequences, checking mapping and consensus sequences production + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2`` | ``-Python-2.7.12`` | ``foss/2016b`` 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..a3787850e --- /dev/null +++ b/docs/version-specific/supported-software/r/Reads2snp.md @@ -0,0 +1,9 @@ +# 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`` 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..b351227c5 --- /dev/null +++ b/docs/version-specific/supported-software/r/Reapr.md @@ -0,0 +1,9 @@ +# 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`` 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..41b1e9e94 --- /dev/null +++ b/docs/version-specific/supported-software/r/ReaxFF.md @@ -0,0 +1,10 @@ +# 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`` 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..93fd4ec80 --- /dev/null +++ b/docs/version-specific/supported-software/r/Red.md @@ -0,0 +1,9 @@ +# Red + +Red (REpeat Detector) + +*homepage*: + +version | toolchain +--------|---------- +``2015-05-22`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` 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..6d3775bf9 --- /dev/null +++ b/docs/version-specific/supported-software/r/Redis.md @@ -0,0 +1,13 @@ +# 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`` 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..8b95f1bb5 --- /dev/null +++ b/docs/version-specific/supported-software/r/Redundans.md @@ -0,0 +1,9 @@ +# Redundans + +Redundans is a pipeline that assists an assembly of heterozygous/polymorphic genomes. + +*homepage*: + +version | toolchain +--------|---------- +``0.13c`` | ``intel/2017b`` 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..85376259a --- /dev/null +++ b/docs/version-specific/supported-software/r/RegTools.md @@ -0,0 +1,12 @@ +# 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`` 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..78763e98f --- /dev/null +++ b/docs/version-specific/supported-software/r/Relate.md @@ -0,0 +1,9 @@ +# Relate + +Software for estimating genome-wide genealogies for thousands of samples + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20211123`` | ``-R-4.0.3`` | ``foss/2020b`` 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..2a1a58d87 --- /dev/null +++ b/docs/version-specific/supported-software/r/RepastHPC.md @@ -0,0 +1,9 @@ +# 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`` 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..abc5d70d5 --- /dev/null +++ b/docs/version-specific/supported-software/r/RepeatMasker.md @@ -0,0 +1,16 @@ +# 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`` 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..a7200013c --- /dev/null +++ b/docs/version-specific/supported-software/r/RepeatModeler.md @@ -0,0 +1,10 @@ +# 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`` 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..1b3aae1bd --- /dev/null +++ b/docs/version-specific/supported-software/r/RepeatScout.md @@ -0,0 +1,10 @@ +# 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`` 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..ca86ce88b --- /dev/null +++ b/docs/version-specific/supported-software/r/ResistanceGA.md @@ -0,0 +1,9 @@ +# 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`` 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..6d8cecb5d --- /dev/null +++ b/docs/version-specific/supported-software/r/Restrander.md @@ -0,0 +1,9 @@ +# Restrander + +A fast, accurate program for orienting and quality-checking cDNA sequencing reads. + +*homepage*: + +version | toolchain +--------|---------- +``20230713`` | ``GCCcore/12.2.0`` 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..eb2cba43f --- /dev/null +++ b/docs/version-specific/supported-software/r/RevBayes.md @@ -0,0 +1,11 @@ +# 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`` 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..1c6e6a5a9 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rgurobi.md @@ -0,0 +1,10 @@ +# 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`` 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..250089ccf --- /dev/null +++ b/docs/version-specific/supported-software/r/RheoTool.md @@ -0,0 +1,9 @@ +# 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`` 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..d27bd5a0b --- /dev/null +++ b/docs/version-specific/supported-software/r/Rhodium.md @@ -0,0 +1,9 @@ +# 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`` 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..0499647d0 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rivet.md @@ -0,0 +1,10 @@ +# 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`` 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..7b4e65193 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rmath.md @@ -0,0 +1,10 @@ +# 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`` 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..f018c2b28 --- /dev/null +++ b/docs/version-specific/supported-software/r/RnBeads.md @@ -0,0 +1,10 @@ +# 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`` 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..bb20b2342 --- /dev/null +++ b/docs/version-specific/supported-software/r/Roary.md @@ -0,0 +1,13 @@ +# 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`` 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..7128598f5 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rosetta.md @@ -0,0 +1,11 @@ +# 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`` 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..14db82440 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rtree.md @@ -0,0 +1,11 @@ +# 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`` 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..b4bd94344 --- /dev/null +++ b/docs/version-specific/supported-software/r/Ruby-Tk.md @@ -0,0 +1,10 @@ +# 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`` 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..8744202ff --- /dev/null +++ b/docs/version-specific/supported-software/r/Ruby.md @@ -0,0 +1,30 @@ +# 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`` 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..0a7e770a6 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rust.md @@ -0,0 +1,36 @@ +# 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`` 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..267ce203c --- /dev/null +++ b/docs/version-specific/supported-software/r/index.md @@ -0,0 +1,140 @@ +# List of supported software (r) + + * [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) 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..880b9137b --- /dev/null +++ b/docs/version-specific/supported-software/r/rCUDA.md @@ -0,0 +1,10 @@ +# 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`` 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..4b77cab41 --- /dev/null +++ b/docs/version-specific/supported-software/r/rMATS-turbo.md @@ -0,0 +1,10 @@ +# 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`` 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..bbcdac4eb --- /dev/null +++ b/docs/version-specific/supported-software/r/radeontop.md @@ -0,0 +1,9 @@ +# radeontop + +View your GPU utilization, both for the total activity percent and individual blocks. + +*homepage*: + +version | toolchain +--------|---------- +``1.3`` | ``GCCcore/10.3.0`` 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..b10c8bf5c --- /dev/null +++ b/docs/version-specific/supported-software/r/radian.md @@ -0,0 +1,9 @@ +# 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`` 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..e3165fd1e --- /dev/null +++ b/docs/version-specific/supported-software/r/rampart.md @@ -0,0 +1,10 @@ +# 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`` 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..8df2ec8bb --- /dev/null +++ b/docs/version-specific/supported-software/r/randfold.md @@ -0,0 +1,10 @@ +# randfold + +Minimum free energy of folding randomization test software + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``foss/2018b`` +``2.0.1`` | ``intel/2016b`` 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..7179a6a93 --- /dev/null +++ b/docs/version-specific/supported-software/r/randrproto.md @@ -0,0 +1,10 @@ +# randrproto + +Xrandr protocol and ancillary headers + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2016a`` +``1.5.0`` | ``intel/2016a`` 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..ba404b79a --- /dev/null +++ b/docs/version-specific/supported-software/r/rapidNJ.md @@ -0,0 +1,9 @@ +# 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`` 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..d963828e2 --- /dev/null +++ b/docs/version-specific/supported-software/r/rapidcsv.md @@ -0,0 +1,10 @@ +# 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`` 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..2f0e74100 --- /dev/null +++ b/docs/version-specific/supported-software/r/rapidtide.md @@ -0,0 +1,9 @@ +# 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`` 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..f6e581abb --- /dev/null +++ b/docs/version-specific/supported-software/r/rasterio.md @@ -0,0 +1,14 @@ +# 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`` 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..6201bedbf --- /dev/null +++ b/docs/version-specific/supported-software/r/rasterstats.md @@ -0,0 +1,10 @@ +# 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`` 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..edef57a45 --- /dev/null +++ b/docs/version-specific/supported-software/r/rclone.md @@ -0,0 +1,15 @@ +# 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`` 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..aaeeb7b66 --- /dev/null +++ b/docs/version-specific/supported-software/r/re2c.md @@ -0,0 +1,18 @@ +# 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`` 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..0af6b9dab --- /dev/null +++ b/docs/version-specific/supported-software/r/redis-py.md @@ -0,0 +1,12 @@ +# 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`` 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..641184936 --- /dev/null +++ b/docs/version-specific/supported-software/r/regionmask.md @@ -0,0 +1,12 @@ +# 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`` 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..785a8359e --- /dev/null +++ b/docs/version-specific/supported-software/r/remake.md @@ -0,0 +1,9 @@ +# 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`` 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..0a64fa9d5 --- /dev/null +++ b/docs/version-specific/supported-software/r/renderproto.md @@ -0,0 +1,12 @@ +# 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`` 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..047f0a20e --- /dev/null +++ b/docs/version-specific/supported-software/r/request.md @@ -0,0 +1,9 @@ +# 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`` 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..461749d3b --- /dev/null +++ b/docs/version-specific/supported-software/r/requests.md @@ -0,0 +1,14 @@ +# 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`` 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..dfdb2354e --- /dev/null +++ b/docs/version-specific/supported-software/r/resolos.md @@ -0,0 +1,9 @@ +# 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`` 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..405ab8f59 --- /dev/null +++ b/docs/version-specific/supported-software/r/rethinking.md @@ -0,0 +1,9 @@ +# 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`` 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..3731350c3 --- /dev/null +++ b/docs/version-specific/supported-software/r/retworkx.md @@ -0,0 +1,9 @@ +# 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`` 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..80d856564 --- /dev/null +++ b/docs/version-specific/supported-software/r/rgdal.md @@ -0,0 +1,15 @@ +# 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`` 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..44a86b7d4 --- /dev/null +++ b/docs/version-specific/supported-software/r/rgeos.md @@ -0,0 +1,13 @@ +# 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`` 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..9c40f299a --- /dev/null +++ b/docs/version-specific/supported-software/r/rhdf5.md @@ -0,0 +1,10 @@ +# 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`` 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..c9c58e122 --- /dev/null +++ b/docs/version-specific/supported-software/r/rickflow.md @@ -0,0 +1,10 @@ +# 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`` 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..09617817e --- /dev/null +++ b/docs/version-specific/supported-software/r/rioxarray.md @@ -0,0 +1,14 @@ +# 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`` 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..e62c23df1 --- /dev/null +++ b/docs/version-specific/supported-software/r/ripunzip.md @@ -0,0 +1,9 @@ +# ripunzip + +A tool to unzip files in parallel. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``system`` 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..32f5a97e7 --- /dev/null +++ b/docs/version-specific/supported-software/r/rising.md @@ -0,0 +1,12 @@ +# 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`` 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..46c9fd7f5 --- /dev/null +++ b/docs/version-specific/supported-software/r/rjags.md @@ -0,0 +1,24 @@ +# 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`` 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..d484de9bf --- /dev/null +++ b/docs/version-specific/supported-software/r/rmarkdown.md @@ -0,0 +1,9 @@ +# rmarkdown + +Convert R Markdown documents into a variety of formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.20`` | ``-R-4.1.0`` | ``foss/2021a`` 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..787fbda7c --- /dev/null +++ b/docs/version-specific/supported-software/r/rnaQUAST.md @@ -0,0 +1,11 @@ +# 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`` 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..97405d880 --- /dev/null +++ b/docs/version-specific/supported-software/r/rocm-cmake.md @@ -0,0 +1,9 @@ +# 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`` 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..3461789b3 --- /dev/null +++ b/docs/version-specific/supported-software/r/rocm-smi.md @@ -0,0 +1,11 @@ +# 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`` 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..f1f81bb03 --- /dev/null +++ b/docs/version-specific/supported-software/r/rocminfo.md @@ -0,0 +1,9 @@ +# rocminfo + +ROCm Application for Reporting System Info + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` 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..585ac3717 --- /dev/null +++ b/docs/version-specific/supported-software/r/root_numpy.md @@ -0,0 +1,9 @@ +# 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`` 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..904e2862e --- /dev/null +++ b/docs/version-specific/supported-software/r/rootpy.md @@ -0,0 +1,10 @@ +# 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`` 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..2be619a10 --- /dev/null +++ b/docs/version-specific/supported-software/r/rpmrebuild.md @@ -0,0 +1,9 @@ +# 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`` 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..29aaf7894 --- /dev/null +++ b/docs/version-specific/supported-software/r/rpy2.md @@ -0,0 +1,14 @@ +# 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`` 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..5d348bdb3 --- /dev/null +++ b/docs/version-specific/supported-software/r/rstanarm.md @@ -0,0 +1,9 @@ +# 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`` 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..fa92ce87f --- /dev/null +++ b/docs/version-specific/supported-software/r/ruamel.yaml.md @@ -0,0 +1,14 @@ +# 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`` 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..f26e18cb4 --- /dev/null +++ b/docs/version-specific/supported-software/r/ruffus.md @@ -0,0 +1,10 @@ +# 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`` 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..5b6ae5320 --- /dev/null +++ b/docs/version-specific/supported-software/r/ruptures.md @@ -0,0 +1,9 @@ +# 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`` 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..4acb9fecd --- /dev/null +++ b/docs/version-specific/supported-software/r/rustworkx.md @@ -0,0 +1,9 @@ +# 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`` 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..1747c1287 --- /dev/null +++ b/docs/version-specific/supported-software/s/S-Lang.md @@ -0,0 +1,9 @@ +# 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`` 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..6807d9082 --- /dev/null +++ b/docs/version-specific/supported-software/s/S4.md @@ -0,0 +1,9 @@ +# 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`` 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..0af2cdc58 --- /dev/null +++ b/docs/version-specific/supported-software/s/SAGE.md @@ -0,0 +1,10 @@ +# 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`` 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..8e62d0e31 --- /dev/null +++ b/docs/version-specific/supported-software/s/SALMON-TDDFT.md @@ -0,0 +1,10 @@ +# 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`` 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..fc519a04d --- /dev/null +++ b/docs/version-specific/supported-software/s/SALib.md @@ -0,0 +1,9 @@ +# 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`` 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..305c42c2c --- /dev/null +++ b/docs/version-specific/supported-software/s/SAMtools.md @@ -0,0 +1,69 @@ +# 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`` 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..b33b11051 --- /dev/null +++ b/docs/version-specific/supported-software/s/SAP.md @@ -0,0 +1,9 @@ +# SAP + +SAP is a pairwise structure alignment via double dynamic programming + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``GCC/11.3.0`` 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..2be30be4c --- /dev/null +++ b/docs/version-specific/supported-software/s/SAS.md @@ -0,0 +1,9 @@ +# SAS + +SAS is a software suite for advanced analytics, multivariate analyses, business intelligence, data management, and predictive analytics. + +*homepage*: + +version | toolchain +--------|---------- +``9.4`` | ``system`` 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..e27cf7d99 --- /dev/null +++ b/docs/version-specific/supported-software/s/SBCL.md @@ -0,0 +1,12 @@ +# 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`` 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..769e29e0b --- /dev/null +++ b/docs/version-specific/supported-software/s/SCALCE.md @@ -0,0 +1,9 @@ +# 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`` 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..a7629182c --- /dev/null +++ b/docs/version-specific/supported-software/s/SCENIC.md @@ -0,0 +1,11 @@ +# 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`` 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..e6edc3ba0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCGid.md @@ -0,0 +1,9 @@ +# SCGid + +A consensus approach to contig filtering and genome prediction from single-cell sequencing libraries + +*homepage*: + +version | toolchain +--------|---------- +``0.9b0`` | ``foss/2021b`` 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..ef66f8bef --- /dev/null +++ b/docs/version-specific/supported-software/s/SCIP.md @@ -0,0 +1,9 @@ +# 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`` 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..d7d32fbbc --- /dev/null +++ b/docs/version-specific/supported-software/s/SCIPhI.md @@ -0,0 +1,9 @@ +# 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`` 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..1db38c6a7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCOOP.md @@ -0,0 +1,13 @@ +# 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`` 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..ba8d8129e --- /dev/null +++ b/docs/version-specific/supported-software/s/SCOTCH.md @@ -0,0 +1,41 @@ +# 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`` 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..8404eee4b --- /dev/null +++ b/docs/version-specific/supported-software/s/SCReadCounts.md @@ -0,0 +1,9 @@ +# 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`` 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..bf1dc4749 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCnorm.md @@ -0,0 +1,9 @@ +# 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`` 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..c251660a3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCons.md @@ -0,0 +1,40 @@ +# 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`` 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..85ea26089 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCopeLoomR.md @@ -0,0 +1,10 @@ +# 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`` 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..fdea9b49c --- /dev/null +++ b/docs/version-specific/supported-software/s/SDCC.md @@ -0,0 +1,9 @@ +# 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`` 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..bdd0dcc29 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL.md @@ -0,0 +1,9 @@ +# SDL + +SDL: Simple DirectMedia Layer, a cross-platform multimedia library + +*homepage*: + +version | toolchain +--------|---------- +``1.2.15`` | ``GCCcore/6.4.0`` 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..a589a53bb --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2.md @@ -0,0 +1,25 @@ +# 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`` 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..2ccb1ab07 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_gfx.md @@ -0,0 +1,9 @@ +# SDL2_gfx + +Graphics drawing primitives library for SDL2 + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``GCCcore/11.3.0`` 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..232f9a6c0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_image.md @@ -0,0 +1,11 @@ +# 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`` 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..d523c3c70 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_mixer.md @@ -0,0 +1,10 @@ +# 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`` 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..c0b393de2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_ttf.md @@ -0,0 +1,10 @@ +# 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`` 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..d3a73eb60 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL_image.md @@ -0,0 +1,9 @@ +# SDL_image + +SDL_image is an image file loading library. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.12`` | ``GCCcore/6.4.0`` 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..73b3dd83f --- /dev/null +++ b/docs/version-specific/supported-software/s/SDSL.md @@ -0,0 +1,9 @@ +# 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`` 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..410a93072 --- /dev/null +++ b/docs/version-specific/supported-software/s/SEACells.md @@ -0,0 +1,9 @@ +# SEACells + +SEACells algorithm for Inference of transcriptional and epigenomic cellular states from single-cell genomics data + +*homepage*: + +version | toolchain +--------|---------- +``20230731`` | ``foss/2021a`` 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..d15fccd1a --- /dev/null +++ b/docs/version-specific/supported-software/s/SECAPR.md @@ -0,0 +1,9 @@ +# 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`` 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..4b0cb0c23 --- /dev/null +++ b/docs/version-specific/supported-software/s/SELFIES.md @@ -0,0 +1,9 @@ +# SELFIES + +Robust representation of semantically constrained graphs, in particular for molecules in chemistry + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``GCC/11.2.0`` 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..b5f34a2b3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SEPP.md @@ -0,0 +1,15 @@ +# 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`` 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..7b0b604ee --- /dev/null +++ b/docs/version-specific/supported-software/s/SHAP.md @@ -0,0 +1,12 @@ +# 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`` 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..03c7f9b29 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHAPEIT.md @@ -0,0 +1,10 @@ +# 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`` 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..676f7d333 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHAPEIT4.md @@ -0,0 +1,14 @@ +# 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`` 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..8004641b0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHORE.md @@ -0,0 +1,9 @@ +# 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`` 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..6d33b0bce --- /dev/null +++ b/docs/version-specific/supported-software/s/SHTns.md @@ -0,0 +1,10 @@ +# 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`` 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..c62aebd71 --- /dev/null +++ b/docs/version-specific/supported-software/s/SICER2.md @@ -0,0 +1,9 @@ +# SICER2 + +Redesigned and improved ChIP-seq broad peak calling tool SICER + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` 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..c28c870df --- /dev/null +++ b/docs/version-specific/supported-software/s/SIMPLE.md @@ -0,0 +1,10 @@ +# 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`` 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..8909e74ea --- /dev/null +++ b/docs/version-specific/supported-software/s/SIONlib.md @@ -0,0 +1,22 @@ +# 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`` 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..dade2d7b4 --- /dev/null +++ b/docs/version-specific/supported-software/s/SIP.md @@ -0,0 +1,23 @@ +# 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`` 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..1c129a30e --- /dev/null +++ b/docs/version-specific/supported-software/s/SISSO++.md @@ -0,0 +1,9 @@ +# SISSO++ + +C++ implementation of SISSO with built in Python bindings for an efficient python interface + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2021b`` 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..e54356e50 --- /dev/null +++ b/docs/version-specific/supported-software/s/SISSO.md @@ -0,0 +1,10 @@ +# 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`` 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..6b96c767b --- /dev/null +++ b/docs/version-specific/supported-software/s/SKESA.md @@ -0,0 +1,11 @@ +# 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`` 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..a55b27295 --- /dev/null +++ b/docs/version-specific/supported-software/s/SLATEC.md @@ -0,0 +1,11 @@ +# 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`` 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..d7d7737f7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SLEPc.md @@ -0,0 +1,21 @@ +# 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`` 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..a5934526d --- /dev/null +++ b/docs/version-specific/supported-software/s/SLiM.md @@ -0,0 +1,11 @@ +# 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`` 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..8fdede495 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMAP.md @@ -0,0 +1,9 @@ +# SMAP + +SMAP is an analysis tool for stack-based NGS read mapping + +*homepage*: + +version | toolchain +--------|---------- +``4.6.5`` | ``foss/2022a`` 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..a12c0ec03 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMARTdenovo.md @@ -0,0 +1,9 @@ +# 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`` 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..ab902e9c4 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMC++.md @@ -0,0 +1,9 @@ +# 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`` 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..6d754ec98 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMRT-Link.md @@ -0,0 +1,11 @@ +# 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`` 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..8f5d99805 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMV.md @@ -0,0 +1,9 @@ +# SMV + +Smokeview is a visualization program that displays output of FDS and CFAST simulations. + +*homepage*: + +version | toolchain +--------|---------- +``6.7.17`` | ``iccifort/2020.4.304`` 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..247fa8f3c --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP-ESA-python.md @@ -0,0 +1,10 @@ +# 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`` 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..f6a47d38b --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP-ESA.md @@ -0,0 +1,10 @@ +# 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`` 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..7076c485a --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP-HMM.md @@ -0,0 +1,13 @@ +# 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`` 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..a90b9c3c1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP.md @@ -0,0 +1,12 @@ +# 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`` 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..145a52117 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAPE-pooled.md @@ -0,0 +1,10 @@ +# 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`` 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..8b5063215 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNPhylo.md @@ -0,0 +1,12 @@ +# 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`` 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..772ed0ef5 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNPomatic.md @@ -0,0 +1,9 @@ +# 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`` 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..1cf62db93 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPaligner.md @@ -0,0 +1,9 @@ +# 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`` 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..c5a00d3cc --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md @@ -0,0 +1,10 @@ +# 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`` 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..d03154186 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPdenovo2.md @@ -0,0 +1,13 @@ +# 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`` 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..1d5767344 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPfuse.md @@ -0,0 +1,10 @@ +# 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`` 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..ea57f4cc7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOCI.md @@ -0,0 +1,15 @@ +# 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`` 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..7df131a2c --- /dev/null +++ b/docs/version-specific/supported-software/s/SPAdes.md @@ -0,0 +1,30 @@ +# 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`` 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..5e7a7b8d2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPEI.md @@ -0,0 +1,9 @@ +# 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`` 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..bffa7c935 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPLASH.md @@ -0,0 +1,9 @@ +# SPLASH + +SPLASH is a free and open source visualisation tool for Smoothed Particle Hydrodynamics (SPH) simulations. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.0`` | ``foss/2018b`` 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..bbbe7363a --- /dev/null +++ b/docs/version-specific/supported-software/s/SPM.md @@ -0,0 +1,10 @@ +# 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`` 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..31c28466e --- /dev/null +++ b/docs/version-specific/supported-software/s/SPOOLES.md @@ -0,0 +1,11 @@ +# 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`` 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..14322dbf6 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPOTPY.md @@ -0,0 +1,9 @@ +# 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`` 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..1cd1e6790 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPRNG.md @@ -0,0 +1,9 @@ +# SPRNG + +Scalable Parallel Pseudo Random Number Generators Library + +*homepage*: + +version | toolchain +--------|---------- +``2.0b`` | ``foss/2016a`` 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..a52376f54 --- /dev/null +++ b/docs/version-specific/supported-software/s/SQLAlchemy.md @@ -0,0 +1,11 @@ +# 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`` 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..8bc459c48 --- /dev/null +++ b/docs/version-specific/supported-software/s/SQLite.md @@ -0,0 +1,48 @@ +# 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`` 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..1674ca4dd --- /dev/null +++ b/docs/version-specific/supported-software/s/SRA-Toolkit.md @@ -0,0 +1,26 @@ +# 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`` 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..885098ebc --- /dev/null +++ b/docs/version-specific/supported-software/s/SRPRISM.md @@ -0,0 +1,11 @@ +# 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`` 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..9107c000f --- /dev/null +++ b/docs/version-specific/supported-software/s/SRST2.md @@ -0,0 +1,9 @@ +# SRST2 + +Short Read Sequence Typing for Bacterial Pathogens + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0-20210620`` | ``-Python-2.7.18`` | ``foss/2020b`` 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..1ab4e98c3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SSAHA2.md @@ -0,0 +1,10 @@ +# 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`` 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..a1fd04ddd --- /dev/null +++ b/docs/version-specific/supported-software/s/SSN.md @@ -0,0 +1,9 @@ +# 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`` 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..d582947f3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SSPACE_Basic.md @@ -0,0 +1,11 @@ +# 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`` 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..efac3a3cc --- /dev/null +++ b/docs/version-specific/supported-software/s/SSW.md @@ -0,0 +1,14 @@ +# 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`` 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..cda679dab --- /dev/null +++ b/docs/version-specific/supported-software/s/STACEY.md @@ -0,0 +1,9 @@ +# 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`` 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..d9b880a62 --- /dev/null +++ b/docs/version-specific/supported-software/s/STAMP.md @@ -0,0 +1,11 @@ +# 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`` 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..eb8b155bc --- /dev/null +++ b/docs/version-specific/supported-software/s/STAR-CCM+.md @@ -0,0 +1,23 @@ +# 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`` 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..544ab2f21 --- /dev/null +++ b/docs/version-specific/supported-software/s/STAR-Fusion.md @@ -0,0 +1,11 @@ +# 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`` 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..db826fe24 --- /dev/null +++ b/docs/version-specific/supported-software/s/STAR.md @@ -0,0 +1,46 @@ +# 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`` 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..5d9dc81a9 --- /dev/null +++ b/docs/version-specific/supported-software/s/STEAK.md @@ -0,0 +1,10 @@ +# 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`` 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..fc2486541 --- /dev/null +++ b/docs/version-specific/supported-software/s/STIR.md @@ -0,0 +1,9 @@ +# STIR + +Software for Tomographic Image Reconstruction + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``intel/2018a`` 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..ea705a814 --- /dev/null +++ b/docs/version-specific/supported-software/s/STREAM.md @@ -0,0 +1,16 @@ +# 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`` 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..5d889e935 --- /dev/null +++ b/docs/version-specific/supported-software/s/STRUMPACK.md @@ -0,0 +1,10 @@ +# 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`` 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..6327004c7 --- /dev/null +++ b/docs/version-specific/supported-software/s/STRique.md @@ -0,0 +1,9 @@ +# 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`` 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..14de79c38 --- /dev/null +++ b/docs/version-specific/supported-software/s/SUMACLUST.md @@ -0,0 +1,9 @@ +# SUMACLUST + +SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20`` | ``foss/2016a`` 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..154d9a5e5 --- /dev/null +++ b/docs/version-specific/supported-software/s/SUMATRA.md @@ -0,0 +1,9 @@ +# SUMATRA + +SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20`` | ``foss/2016a`` 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..15e41dd4d --- /dev/null +++ b/docs/version-specific/supported-software/s/SUMO.md @@ -0,0 +1,12 @@ +# 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`` 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..28a798b99 --- /dev/null +++ b/docs/version-specific/supported-software/s/SUNDIALS.md @@ -0,0 +1,31 @@ +# 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`` 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..a07efbfd6 --- /dev/null +++ b/docs/version-specific/supported-software/s/SUPPA.md @@ -0,0 +1,9 @@ +# SUPPA + +Fast, accurate, and uncertainty-aware differential splicing analysis across multiple conditions. + +*homepage*: + +version | toolchain +--------|---------- +``2.3-20231005`` | ``foss/2022b`` 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..9e874096f --- /dev/null +++ b/docs/version-specific/supported-software/s/SURVIVOR.md @@ -0,0 +1,10 @@ +# 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`` 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..18f6e6b13 --- /dev/null +++ b/docs/version-specific/supported-software/s/SVDetect.md @@ -0,0 +1,10 @@ +# 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`` 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..99b6ef8b9 --- /dev/null +++ b/docs/version-specific/supported-software/s/SVDquest.md @@ -0,0 +1,9 @@ +# SVDquest + +SVDquartets-based species trees + +*homepage*: + +version | toolchain +--------|---------- +``20190627`` | ``gompi/2019a`` 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..4fe948fe6 --- /dev/null +++ b/docs/version-specific/supported-software/s/SVG.md @@ -0,0 +1,12 @@ +# 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`` 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..ccaa94ca8 --- /dev/null +++ b/docs/version-specific/supported-software/s/SVIM.md @@ -0,0 +1,9 @@ +# 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`` 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..9a444e36f --- /dev/null +++ b/docs/version-specific/supported-software/s/SVclone.md @@ -0,0 +1,9 @@ +# SVclone + +Cluster structural variants of similar cancer cell fraction (CCF). + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``foss/2022b`` 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..31b17ad9c --- /dev/null +++ b/docs/version-specific/supported-software/s/SWASH.md @@ -0,0 +1,11 @@ +# 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`` 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..2f148c4d3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWAT+.md @@ -0,0 +1,10 @@ +# 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`` 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..c8bdd24d7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWIG.md @@ -0,0 +1,49 @@ +# 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`` 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..f02b837f1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWIPE.md @@ -0,0 +1,9 @@ +# SWIPE + +Smith-Waterman database searches with inter-sequence SIMD parallelisation + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``GCC/10.3.0`` 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..9704a75f8 --- /dev/null +++ b/docs/version-specific/supported-software/s/SYMMETRICA.md @@ -0,0 +1,10 @@ +# 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`` 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..50b6dc930 --- /dev/null +++ b/docs/version-specific/supported-software/s/SYMPHONY.md @@ -0,0 +1,9 @@ +# SYMPHONY + +SYMPHONY is an open-source solver for mixed-integer linear programs (MILPs) written in C. + +*homepage*: + +version | toolchain +--------|---------- +``5.6.16`` | ``foss/2018b`` 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..7e9817877 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sabre.md @@ -0,0 +1,9 @@ +# 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`` 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..15e60f0d2 --- /dev/null +++ b/docs/version-specific/supported-software/s/Safetensors.md @@ -0,0 +1,10 @@ +# 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`` 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..5158a2d54 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sailfish.md @@ -0,0 +1,10 @@ +# 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`` 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..c1f77744a --- /dev/null +++ b/docs/version-specific/supported-software/s/Salmon.md @@ -0,0 +1,23 @@ +# 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`` 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..45a684ce8 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sambamba.md @@ -0,0 +1,13 @@ +# 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`` 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..69918d86d --- /dev/null +++ b/docs/version-specific/supported-software/s/Samcef.md @@ -0,0 +1,9 @@ +# Samcef + +FEM solver solution suite for basic linear structures to advanced, flexible nonlinear mechanisms and thermal applications. + +*homepage*: + +version | toolchain +--------|---------- +``17.0-03`` | ``system`` 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..3df338c8b --- /dev/null +++ b/docs/version-specific/supported-software/s/Satsuma2.md @@ -0,0 +1,9 @@ +# 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`` 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..09d593995 --- /dev/null +++ b/docs/version-specific/supported-software/s/Saxon-HE.md @@ -0,0 +1,12 @@ +# 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`` 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..14fe8f047 --- /dev/null +++ b/docs/version-specific/supported-software/s/ScaFaCoS.md @@ -0,0 +1,16 @@ +# 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`` 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..c3bcc62cd --- /dev/null +++ b/docs/version-specific/supported-software/s/ScaLAPACK.md @@ -0,0 +1,55 @@ +# 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`` 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..17e358898 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scalasca.md @@ -0,0 +1,14 @@ +# 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`` 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..50a697007 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scalene.md @@ -0,0 +1,13 @@ +# 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`` 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..d4398ec3d --- /dev/null +++ b/docs/version-specific/supported-software/s/Schrodinger.md @@ -0,0 +1,13 @@ +# 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`` 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..73c4299e3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SciPy-bundle.md @@ -0,0 +1,47 @@ +# 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`` 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..9172e3686 --- /dev/null +++ b/docs/version-specific/supported-software/s/SciTools-Iris.md @@ -0,0 +1,10 @@ +# 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`` 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..7b4f0a468 --- /dev/null +++ b/docs/version-specific/supported-software/s/ScientificPython.md @@ -0,0 +1,10 @@ +# 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`` 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..9f2fab709 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scoary.md @@ -0,0 +1,10 @@ +# 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`` 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..5d27cea03 --- /dev/null +++ b/docs/version-specific/supported-software/s/Score-P.md @@ -0,0 +1,30 @@ +# 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`` 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..50e9b5686 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scrappie.md @@ -0,0 +1,9 @@ +# Scrappie + +Scrappie is a technology demonstrator for the Oxford Nanopore Research Algorithms group. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.2`` | ``intel/2018a`` 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..9ff31e4b2 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scythe.md @@ -0,0 +1,9 @@ +# 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`` 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..d9033e47e --- /dev/null +++ b/docs/version-specific/supported-software/s/SeaView.md @@ -0,0 +1,9 @@ +# 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`` 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..b9470c5b6 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seaborn.md @@ -0,0 +1,46 @@ +# 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`` 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..8c3b464e7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SearchGUI.md @@ -0,0 +1,9 @@ +# 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`` 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..caa538332 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seeder.md @@ -0,0 +1,9 @@ +# Seeder + +Seeder is a framework for DNA motif discovery. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.01`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` 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..f207f2ded --- /dev/null +++ b/docs/version-specific/supported-software/s/SeisSol.md @@ -0,0 +1,9 @@ +# 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`` 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..0a7b6c557 --- /dev/null +++ b/docs/version-specific/supported-software/s/SelEstim.md @@ -0,0 +1,9 @@ +# 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`` 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..5986e87fd --- /dev/null +++ b/docs/version-specific/supported-software/s/SemiBin.md @@ -0,0 +1,10 @@ +# 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`` 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..e4e8f55b7 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sentence-Transformers.md @@ -0,0 +1,9 @@ +# 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`` 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..baaccda09 --- /dev/null +++ b/docs/version-specific/supported-software/s/SentencePiece.md @@ -0,0 +1,15 @@ +# 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`` 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..120d7e9d0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seq-Gen.md @@ -0,0 +1,9 @@ +# 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`` 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..4cefcac49 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqAn.md @@ -0,0 +1,17 @@ +# 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`` 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..e37f0c1b6 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqAn3.md @@ -0,0 +1,9 @@ +# 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`` 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..1c92b4739 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqKit.md @@ -0,0 +1,13 @@ +# 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`` 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..d5634d5eb --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqLib.md @@ -0,0 +1,13 @@ +# 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`` 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..9df8cab7b --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqPrep.md @@ -0,0 +1,9 @@ +# 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`` 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..d826b487e --- /dev/null +++ b/docs/version-specific/supported-software/s/Seqmagick.md @@ -0,0 +1,11 @@ +# 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`` 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..19808a2fd --- /dev/null +++ b/docs/version-specific/supported-software/s/Serf.md @@ -0,0 +1,18 @@ +# 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`` 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..ccf4ac984 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seurat.md @@ -0,0 +1,22 @@ +# 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`` 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..5b2f6b962 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeuratData.md @@ -0,0 +1,9 @@ +# 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`` 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..f06d8a10f --- /dev/null +++ b/docs/version-specific/supported-software/s/SeuratDisk.md @@ -0,0 +1,10 @@ +# 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`` 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..7fd031f2b --- /dev/null +++ b/docs/version-specific/supported-software/s/SeuratWrappers.md @@ -0,0 +1,10 @@ +# 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`` 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..b6bbce12d --- /dev/null +++ b/docs/version-specific/supported-software/s/Shannon.md @@ -0,0 +1,9 @@ +# Shannon + +Shannon is a program for assembling transcripts from RNA-Seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170511`` | ``-Python-2.7.13`` | ``intel/2017a`` 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..0fe82c40c --- /dev/null +++ b/docs/version-specific/supported-software/s/Shapely.md @@ -0,0 +1,20 @@ +# 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`` 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..53b8e9b50 --- /dev/null +++ b/docs/version-specific/supported-software/s/Shasta.md @@ -0,0 +1,9 @@ +# 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`` 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..0272678da --- /dev/null +++ b/docs/version-specific/supported-software/s/ShengBTE.md @@ -0,0 +1,10 @@ +# ShengBTE + +A solver for the Boltzmann transport equation for phonons. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2021a`` +``1.5.0`` | ``foss/2022a`` 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..fe00fd559 --- /dev/null +++ b/docs/version-specific/supported-software/s/Short-Pair.md @@ -0,0 +1,10 @@ +# 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`` 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..ccaf7fd47 --- /dev/null +++ b/docs/version-specific/supported-software/s/SiNVICT.md @@ -0,0 +1,9 @@ +# 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`` 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..8ad3bbca0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sibelia.md @@ -0,0 +1,11 @@ +# 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`` 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..5e3e2269f --- /dev/null +++ b/docs/version-specific/supported-software/s/Siesta.md @@ -0,0 +1,23 @@ +# 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`` 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..379bd08fb --- /dev/null +++ b/docs/version-specific/supported-software/s/SignalP.md @@ -0,0 +1,13 @@ +# 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`` 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..bcf09943d --- /dev/null +++ b/docs/version-specific/supported-software/s/SimNIBS.md @@ -0,0 +1,10 @@ +# 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`` 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..bac4d0ba4 --- /dev/null +++ b/docs/version-specific/supported-software/s/SimPEG.md @@ -0,0 +1,12 @@ +# 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`` 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..60787068a --- /dev/null +++ b/docs/version-specific/supported-software/s/SimVascular.md @@ -0,0 +1,9 @@ +# 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`` 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..2a6bde5e0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Simple-DFTD3.md @@ -0,0 +1,9 @@ +# 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`` 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..56124d815 --- /dev/null +++ b/docs/version-specific/supported-software/s/SimpleElastix.md @@ -0,0 +1,11 @@ +# 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`` 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..e6a5473a0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SimpleITK.md @@ -0,0 +1,18 @@ +# 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`` 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..0cc36eebc --- /dev/null +++ b/docs/version-specific/supported-software/s/Simstrat.md @@ -0,0 +1,9 @@ +# 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`` 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..1738a043c --- /dev/null +++ b/docs/version-specific/supported-software/s/SingleM.md @@ -0,0 +1,9 @@ +# 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`` 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..3a5c056ea --- /dev/null +++ b/docs/version-specific/supported-software/s/Singular.md @@ -0,0 +1,12 @@ +# 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`` 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..7fb96ef09 --- /dev/null +++ b/docs/version-specific/supported-software/s/SlamDunk.md @@ -0,0 +1,9 @@ +# 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`` 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..6578dad8c --- /dev/null +++ b/docs/version-specific/supported-software/s/Smoldyn.md @@ -0,0 +1,9 @@ +# 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`` 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..2a8bd01d8 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sniffles.md @@ -0,0 +1,9 @@ +# 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`` 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..b425bb018 --- /dev/null +++ b/docs/version-specific/supported-software/s/SoPlex.md @@ -0,0 +1,9 @@ +# 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`` 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..8e1598add --- /dev/null +++ b/docs/version-specific/supported-software/s/SoQt.md @@ -0,0 +1,10 @@ +# 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`` 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..4fe73244c --- /dev/null +++ b/docs/version-specific/supported-software/s/SoX.md @@ -0,0 +1,11 @@ +# 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`` 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..aace06c27 --- /dev/null +++ b/docs/version-specific/supported-software/s/SoXt.md @@ -0,0 +1,9 @@ +# 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`` 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..b612c67bf --- /dev/null +++ b/docs/version-specific/supported-software/s/SolexaQA++.md @@ -0,0 +1,9 @@ +# 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`` 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..056f5eb1b --- /dev/null +++ b/docs/version-specific/supported-software/s/SortMeRNA.md @@ -0,0 +1,10 @@ +# 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`` 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..6db95bb1c --- /dev/null +++ b/docs/version-specific/supported-software/s/SoupX.md @@ -0,0 +1,9 @@ +# 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`` 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..9bd0b5a81 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpaceRanger.md @@ -0,0 +1,16 @@ +# 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`` 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..fb929b299 --- /dev/null +++ b/docs/version-specific/supported-software/s/Spack.md @@ -0,0 +1,15 @@ +# 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`` 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..8bd4969dc --- /dev/null +++ b/docs/version-specific/supported-software/s/Spark.md @@ -0,0 +1,34 @@ +# 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`` 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..eeb945c3d --- /dev/null +++ b/docs/version-specific/supported-software/s/SpatialDE.md @@ -0,0 +1,9 @@ +# 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`` 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..d48de1428 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpectrA.md @@ -0,0 +1,12 @@ +# 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`` 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..38d7ad70d --- /dev/null +++ b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md @@ -0,0 +1,9 @@ +# 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`` 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..e76a33d1e --- /dev/null +++ b/docs/version-specific/supported-software/s/Sphinx.md @@ -0,0 +1,19 @@ +# 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`` 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..6705a9438 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpiceyPy.md @@ -0,0 +1,13 @@ +# 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`` 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..c114e4b86 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpiecEasi.md @@ -0,0 +1,11 @@ +# 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`` 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..cd6be024d --- /dev/null +++ b/docs/version-specific/supported-software/s/SplAdder.md @@ -0,0 +1,9 @@ +# 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`` 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..af404b25d --- /dev/null +++ b/docs/version-specific/supported-software/s/SpliceMap.md @@ -0,0 +1,9 @@ +# 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`` 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..9fa219d47 --- /dev/null +++ b/docs/version-specific/supported-software/s/Spyder.md @@ -0,0 +1,13 @@ +# 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`` 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..46d63c883 --- /dev/null +++ b/docs/version-specific/supported-software/s/SqueezeMeta.md @@ -0,0 +1,11 @@ +# 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`` 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..60faf740e --- /dev/null +++ b/docs/version-specific/supported-software/s/Squidpy.md @@ -0,0 +1,10 @@ +# 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`` 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..0561c111f --- /dev/null +++ b/docs/version-specific/supported-software/s/StaMPS.md @@ -0,0 +1,9 @@ +# 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`` 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..365873cd3 --- /dev/null +++ b/docs/version-specific/supported-software/s/Stack.md @@ -0,0 +1,11 @@ +# 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`` 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..4c99013a0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Stacks.md @@ -0,0 +1,33 @@ +# 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`` 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..96ff38858 --- /dev/null +++ b/docs/version-specific/supported-software/s/Stampy.md @@ -0,0 +1,10 @@ +# 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`` 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..1f22deb79 --- /dev/null +++ b/docs/version-specific/supported-software/s/Stata.md @@ -0,0 +1,11 @@ +# 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`` 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..23e309422 --- /dev/null +++ b/docs/version-specific/supported-software/s/Statistics-R.md @@ -0,0 +1,9 @@ +# Statistics-R + +Perl interface with the R statistical program + +*homepage*: + +version | toolchain +--------|---------- +``0.34`` | ``foss/2020a`` 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..919cfcb17 --- /dev/null +++ b/docs/version-specific/supported-software/s/Strainberry.md @@ -0,0 +1,9 @@ +# 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`` 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..d7d7692d6 --- /dev/null +++ b/docs/version-specific/supported-software/s/StringTie.md @@ -0,0 +1,24 @@ +# 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`` 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..efaafacb4 --- /dev/null +++ b/docs/version-specific/supported-software/s/Structure.md @@ -0,0 +1,13 @@ +# 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`` 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..4a5d83801 --- /dev/null +++ b/docs/version-specific/supported-software/s/Structure_threader.md @@ -0,0 +1,9 @@ +# Structure_threader + +A program to parallelize the runs of Structure, fastStructure, MavericK and ALStructure software. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.10`` | ``foss/2022b`` 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..1a7a23d32 --- /dev/null +++ b/docs/version-specific/supported-software/s/SuAVE-biomat.md @@ -0,0 +1,9 @@ +# SuAVE-biomat + +Surface Assessment via Grid Evaluation (SuAVE) for Every Surface Curvature and Cavity Shape + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0-20230815`` | ``intel/2023a`` 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..3551f69e1 --- /dev/null +++ b/docs/version-specific/supported-software/s/Subread.md @@ -0,0 +1,19 @@ +# 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`` 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..a825a1c79 --- /dev/null +++ b/docs/version-specific/supported-software/s/Subversion.md @@ -0,0 +1,18 @@ +# 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`` 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..da85911dd --- /dev/null +++ b/docs/version-specific/supported-software/s/SuiteSparse.md @@ -0,0 +1,51 @@ +# 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`` 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..e9d7eb8ab --- /dev/null +++ b/docs/version-specific/supported-software/s/SunPy.md @@ -0,0 +1,9 @@ +# 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`` 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..a78ce0876 --- /dev/null +++ b/docs/version-specific/supported-software/s/SuperLU.md @@ -0,0 +1,19 @@ +# 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`` 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..706617e28 --- /dev/null +++ b/docs/version-specific/supported-software/s/SuperLU_DIST.md @@ -0,0 +1,14 @@ +# 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`` 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..4bf79dc98 --- /dev/null +++ b/docs/version-specific/supported-software/s/SyRI.md @@ -0,0 +1,9 @@ +# SyRI + +Synteny and Rearrangement Identifier (SyRI). + +*homepage*: + +version | toolchain +--------|---------- +``1.4`` | ``foss/2021a`` 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..085d54ec0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SymEngine-python.md @@ -0,0 +1,10 @@ +# 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`` 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..0a236f5f3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SymEngine.md @@ -0,0 +1,12 @@ +# 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`` 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..22705a9e0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Szip.md @@ -0,0 +1,36 @@ +# 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`` 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..9cc604ff9 --- /dev/null +++ b/docs/version-specific/supported-software/s/index.md @@ -0,0 +1,340 @@ +# List of supported software (s) + + * [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) 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..27a927edf --- /dev/null +++ b/docs/version-specific/supported-software/s/s3fs.md @@ -0,0 +1,9 @@ +# s3fs + +S3FS builds on aiobotocore to provide a convenient Python filesystem interface for S3.. + +*homepage*: + +version | toolchain +--------|---------- +``2023.12.2`` | ``foss/2023a`` 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..8e56e21a9 --- /dev/null +++ b/docs/version-specific/supported-software/s/safestringlib.md @@ -0,0 +1,9 @@ +# 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`` 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..9f6d039cb --- /dev/null +++ b/docs/version-specific/supported-software/s/samblaster.md @@ -0,0 +1,12 @@ +# 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`` 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..f02ba2b7b --- /dev/null +++ b/docs/version-specific/supported-software/s/samclip.md @@ -0,0 +1,12 @@ +# 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`` 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..dd7b815ee --- /dev/null +++ b/docs/version-specific/supported-software/s/samplot.md @@ -0,0 +1,9 @@ +# samplot + +Plot structural variant signals from many BAMs and CRAMs. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``foss/2021b`` 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..e0eb7e4a2 --- /dev/null +++ b/docs/version-specific/supported-software/s/sansa.md @@ -0,0 +1,9 @@ +# sansa + +Structural variant (SV) annotation, a companion to the 'dolly' tool. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.7`` | ``gompi/2020b`` 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..5528b5b62 --- /dev/null +++ b/docs/version-specific/supported-software/s/savvy.md @@ -0,0 +1,9 @@ +# savvy + +Interface to various variant calling formats. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCC/8.2.0-2.31.1`` 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..89fa1f4ee --- /dev/null +++ b/docs/version-specific/supported-software/s/sbt.md @@ -0,0 +1,12 @@ +# 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`` 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..08b93ebc9 --- /dev/null +++ b/docs/version-specific/supported-software/s/scArches.md @@ -0,0 +1,10 @@ +# 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`` 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..b5c008b88 --- /dev/null +++ b/docs/version-specific/supported-software/s/scCODA.md @@ -0,0 +1,10 @@ +# 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`` 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..ada0a9494 --- /dev/null +++ b/docs/version-specific/supported-software/s/scGSVA.md @@ -0,0 +1,9 @@ +# 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`` 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..fd932424e --- /dev/null +++ b/docs/version-specific/supported-software/s/scGeneFit.md @@ -0,0 +1,9 @@ +# scGeneFit + +Python code for genetic marker selection using linear programming. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2021a`` 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..f82ea2887 --- /dev/null +++ b/docs/version-specific/supported-software/s/scHiCExplorer.md @@ -0,0 +1,9 @@ +# 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`` 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..2b24f341f --- /dev/null +++ b/docs/version-specific/supported-software/s/scPred.md @@ -0,0 +1,9 @@ +# scPred + +scPred package for cell type prediction from scRNA-seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.2`` | ``-R-4.1.2`` | ``foss/2021b`` 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..e6fe03e73 --- /dev/null +++ b/docs/version-specific/supported-software/s/scVelo.md @@ -0,0 +1,11 @@ +# 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`` 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..4e037a66d --- /dev/null +++ b/docs/version-specific/supported-software/s/scanpy.md @@ -0,0 +1,15 @@ +# 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`` 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..42f8866ac --- /dev/null +++ b/docs/version-specific/supported-software/s/sceasy.md @@ -0,0 +1,9 @@ +# 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`` 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..15965a1b6 --- /dev/null +++ b/docs/version-specific/supported-software/s/sciClone.md @@ -0,0 +1,9 @@ +# sciClone + +An R package for inferring the subclonal architecture of tumors + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` 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..7cd7e1435 --- /dev/null +++ b/docs/version-specific/supported-software/s/scib-metrics.md @@ -0,0 +1,9 @@ +# scib-metrics + +Accelerated and Python-only metrics for benchmarking single-cell integration outputs + +*homepage*: + +version | toolchain +--------|---------- +``0.3.3`` | ``foss/2021a`` 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..b6506897a --- /dev/null +++ b/docs/version-specific/supported-software/s/scib.md @@ -0,0 +1,11 @@ +# 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`` 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..1b969d69b --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-allel.md @@ -0,0 +1,12 @@ +# 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`` 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..b0b4c7d34 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-bio.md @@ -0,0 +1,14 @@ +# 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`` 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..e2f167973 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-build-core.md @@ -0,0 +1,10 @@ +# 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`` 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..76fc53cb9 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-build.md @@ -0,0 +1,25 @@ +# 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`` 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..1d64fa5bb --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-cuda.md @@ -0,0 +1,9 @@ +# 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`` 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..b432796ac --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-extremes.md @@ -0,0 +1,9 @@ +# 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`` 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..120804f90 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-image.md @@ -0,0 +1,36 @@ +# 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`` 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..587977cff --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-learn.md @@ -0,0 +1,73 @@ +# 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`` 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..451d8b248 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-lego.md @@ -0,0 +1,10 @@ +# 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`` 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..484fdcb74 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-misc.md @@ -0,0 +1,11 @@ +# 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`` 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..520e1df38 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-multilearn.md @@ -0,0 +1,9 @@ +# 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`` 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..ca6cd656d --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-optimize.md @@ -0,0 +1,13 @@ +# 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`` 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..f7b5b2342 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-plot.md @@ -0,0 +1,9 @@ +# 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`` 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..a008ae68f --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-uplift.md @@ -0,0 +1,9 @@ +# 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`` 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..b0f496d77 --- /dev/null +++ b/docs/version-specific/supported-software/s/scipy.md @@ -0,0 +1,13 @@ +# 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`` 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..1fff0ff17 --- /dev/null +++ b/docs/version-specific/supported-software/s/scp.md @@ -0,0 +1,11 @@ +# 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`` 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..0fbff48ba --- /dev/null +++ b/docs/version-specific/supported-software/s/scrublet.md @@ -0,0 +1,9 @@ +# 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`` 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..f68d4d9f9 --- /dev/null +++ b/docs/version-specific/supported-software/s/scvi-tools.md @@ -0,0 +1,10 @@ +# 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`` 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..0ec74a4bc --- /dev/null +++ b/docs/version-specific/supported-software/s/segemehl.md @@ -0,0 +1,17 @@ +# 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`` 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..09e12061b --- /dev/null +++ b/docs/version-specific/supported-software/s/segment-anything.md @@ -0,0 +1,9 @@ +# 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`` 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..863af866b --- /dev/null +++ b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md @@ -0,0 +1,10 @@ +# 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`` 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..de0b6161c --- /dev/null +++ b/docs/version-specific/supported-software/s/segmentation-models.md @@ -0,0 +1,10 @@ +# 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`` 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..db6a1ecad --- /dev/null +++ b/docs/version-specific/supported-software/s/semla.md @@ -0,0 +1,9 @@ +# semla + +R interface to the Apache Arrow C++ library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.6`` | ``-R-4.3.2`` | ``foss/2023a`` 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..026d84662 --- /dev/null +++ b/docs/version-specific/supported-software/s/sentinelsat.md @@ -0,0 +1,9 @@ +# 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`` 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..e03d38101 --- /dev/null +++ b/docs/version-specific/supported-software/s/sep.md @@ -0,0 +1,10 @@ +# 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`` 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..a8ddfe9b5 --- /dev/null +++ b/docs/version-specific/supported-software/s/seq2HLA.md @@ -0,0 +1,10 @@ +# 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`` 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..c167bbeaf --- /dev/null +++ b/docs/version-specific/supported-software/s/seqtk.md @@ -0,0 +1,21 @@ +# 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`` 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..fde3c5b00 --- /dev/null +++ b/docs/version-specific/supported-software/s/setuptools-rust.md @@ -0,0 +1,10 @@ +# 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`` 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..f28353eb7 --- /dev/null +++ b/docs/version-specific/supported-software/s/setuptools.md @@ -0,0 +1,11 @@ +# 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`` 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..edd1561b5 --- /dev/null +++ b/docs/version-specific/supported-software/s/sf.md @@ -0,0 +1,9 @@ +# 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`` 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..93428178f --- /dev/null +++ b/docs/version-specific/supported-software/s/sfftk.md @@ -0,0 +1,9 @@ +# 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`` 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..713a280ee --- /dev/null +++ b/docs/version-specific/supported-software/s/shapAAR.md @@ -0,0 +1,9 @@ +# 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`` 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..a4cb24b42 --- /dev/null +++ b/docs/version-specific/supported-software/s/sharutils.md @@ -0,0 +1,9 @@ +# 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`` 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..4ef3fa84a --- /dev/null +++ b/docs/version-specific/supported-software/s/shift.md @@ -0,0 +1,9 @@ +# 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`` 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..5cf0a5d9f --- /dev/null +++ b/docs/version-specific/supported-software/s/shovill.md @@ -0,0 +1,11 @@ +# 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`` 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..0cb26b10c --- /dev/null +++ b/docs/version-specific/supported-software/s/shrinkwrap.md @@ -0,0 +1,10 @@ +# 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`` 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..5f569be1e --- /dev/null +++ b/docs/version-specific/supported-software/s/sickle.md @@ -0,0 +1,10 @@ +# sickle + +Windowed Adaptive Trimming for fastq files using quality + +*homepage*: + +version | toolchain +--------|---------- +``1.33`` | ``foss/2017a`` +``1.33`` | ``intel/2018a`` 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..9938638d9 --- /dev/null +++ b/docs/version-specific/supported-software/s/silhouetteRank.md @@ -0,0 +1,9 @@ +# 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`` 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..1211f177c --- /dev/null +++ b/docs/version-specific/supported-software/s/silx.md @@ -0,0 +1,13 @@ +# 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`` 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..ba00aa26f --- /dev/null +++ b/docs/version-specific/supported-software/s/simanneal.md @@ -0,0 +1,9 @@ +# 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`` 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..45cbe7384 --- /dev/null +++ b/docs/version-specific/supported-software/s/simint.md @@ -0,0 +1,9 @@ +# 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`` 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..65f55d3e8 --- /dev/null +++ b/docs/version-specific/supported-software/s/simpy.md @@ -0,0 +1,10 @@ +# 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`` 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..b320e4a14 --- /dev/null +++ b/docs/version-specific/supported-software/s/sinto.md @@ -0,0 +1,9 @@ +# sinto + +Sinto is a toolkit for processing aligned single-cell data. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.4`` | ``foss/2021a`` 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..e611c6520 --- /dev/null +++ b/docs/version-specific/supported-software/s/siscone.md @@ -0,0 +1,10 @@ +# 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`` 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..e32b79148 --- /dev/null +++ b/docs/version-specific/supported-software/s/sketchmap.md @@ -0,0 +1,9 @@ +# 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`` 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..e36988126 --- /dev/null +++ b/docs/version-specific/supported-software/s/skewer.md @@ -0,0 +1,9 @@ +# 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`` 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..b8e834d78 --- /dev/null +++ b/docs/version-specific/supported-software/s/sklearn-pandas.md @@ -0,0 +1,9 @@ +# 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`` 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..806a9aef3 --- /dev/null +++ b/docs/version-specific/supported-software/s/sklearn-som.md @@ -0,0 +1,9 @@ +# 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`` 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..e6a5d2ffb --- /dev/null +++ b/docs/version-specific/supported-software/s/skorch.md @@ -0,0 +1,12 @@ +# 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`` 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..1b74d8095 --- /dev/null +++ b/docs/version-specific/supported-software/s/sktime.md @@ -0,0 +1,9 @@ +# 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`` 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..2bbc166bf --- /dev/null +++ b/docs/version-specific/supported-software/s/slepc4py.md @@ -0,0 +1,11 @@ +# 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`` 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..3fe57af35 --- /dev/null +++ b/docs/version-specific/supported-software/s/sleuth.md @@ -0,0 +1,10 @@ +# 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`` 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..4b54c3c38 --- /dev/null +++ b/docs/version-specific/supported-software/s/slidingwindow.md @@ -0,0 +1,10 @@ +# 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`` 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..d2efa9ba0 --- /dev/null +++ b/docs/version-specific/supported-software/s/slow5tools.md @@ -0,0 +1,9 @@ +# 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`` 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..5ab30dd92 --- /dev/null +++ b/docs/version-specific/supported-software/s/slurm-drmaa.md @@ -0,0 +1,9 @@ +# 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`` 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..5540ec17e --- /dev/null +++ b/docs/version-specific/supported-software/s/smafa.md @@ -0,0 +1,9 @@ +# 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`` 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..a5d7e48ba --- /dev/null +++ b/docs/version-specific/supported-software/s/smallgenomeutilities.md @@ -0,0 +1,9 @@ +# 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`` 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..d14febf3e --- /dev/null +++ b/docs/version-specific/supported-software/s/smfishHmrf.md @@ -0,0 +1,9 @@ +# smfishHmrf + +smFish spatial pattern mining and cell type prediction + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``foss/2022a`` 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..7bd9e41b7 --- /dev/null +++ b/docs/version-specific/supported-software/s/smithwaterman.md @@ -0,0 +1,14 @@ +# 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`` 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..706267da2 --- /dev/null +++ b/docs/version-specific/supported-software/s/smooth-topk.md @@ -0,0 +1,10 @@ +# 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`` 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..8b8ecf218 --- /dev/null +++ b/docs/version-specific/supported-software/s/snakemake.md @@ -0,0 +1,20 @@ +# 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`` 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..a212add0a --- /dev/null +++ b/docs/version-specific/supported-software/s/snaphu.md @@ -0,0 +1,11 @@ +# 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`` 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..e552b1ae1 --- /dev/null +++ b/docs/version-specific/supported-software/s/snappy.md @@ -0,0 +1,26 @@ +# 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`` 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..1219252a7 --- /dev/null +++ b/docs/version-specific/supported-software/s/snippy.md @@ -0,0 +1,12 @@ +# 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`` 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..d12faa3e1 --- /dev/null +++ b/docs/version-specific/supported-software/s/snp-sites.md @@ -0,0 +1,12 @@ +# 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`` 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..9a807ebde --- /dev/null +++ b/docs/version-specific/supported-software/s/snpEff.md @@ -0,0 +1,15 @@ +# 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`` 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..954719b83 --- /dev/null +++ b/docs/version-specific/supported-software/s/socat.md @@ -0,0 +1,9 @@ +# 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`` 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..93b031dbe --- /dev/null +++ b/docs/version-specific/supported-software/s/solo.md @@ -0,0 +1,9 @@ +# solo + +Doublet detection via semi-supervised deep learning + +*homepage*: + +version | toolchain +--------|---------- +``1.3`` | ``foss/2022a`` 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..d20e543cb --- /dev/null +++ b/docs/version-specific/supported-software/s/sonic.md @@ -0,0 +1,10 @@ +# 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`` 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..1f8b8b961 --- /dev/null +++ b/docs/version-specific/supported-software/s/spaCy.md @@ -0,0 +1,9 @@ +# spaCy + +Industrial-strength Natural Language Processing (NLP) in Python. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.4`` | ``foss/2022a`` 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..547351693 --- /dev/null +++ b/docs/version-specific/supported-software/s/spaln.md @@ -0,0 +1,13 @@ +# 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`` 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..44ffcfa94 --- /dev/null +++ b/docs/version-specific/supported-software/s/sparse-neighbors-search.md @@ -0,0 +1,9 @@ +# 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`` 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..a856bec72 --- /dev/null +++ b/docs/version-specific/supported-software/s/sparsehash.md @@ -0,0 +1,20 @@ +# 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`` 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..7e40b0b6f --- /dev/null +++ b/docs/version-specific/supported-software/s/spatialreg.md @@ -0,0 +1,10 @@ +# 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`` 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..12cfc9ea9 --- /dev/null +++ b/docs/version-specific/supported-software/s/spdlog.md @@ -0,0 +1,13 @@ +# 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`` 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..681ad1652 --- /dev/null +++ b/docs/version-specific/supported-software/s/spectral.methods.md @@ -0,0 +1,10 @@ +# 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`` 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..5a91421a4 --- /dev/null +++ b/docs/version-specific/supported-software/s/speech_tools.md @@ -0,0 +1,10 @@ +# 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`` 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..04435e8cf --- /dev/null +++ b/docs/version-specific/supported-software/s/spektral.md @@ -0,0 +1,9 @@ +# 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`` 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..28658c98c --- /dev/null +++ b/docs/version-specific/supported-software/s/spglib-python.md @@ -0,0 +1,32 @@ +# 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`` 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..c30391d81 --- /dev/null +++ b/docs/version-specific/supported-software/s/spglib.md @@ -0,0 +1,14 @@ +# 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`` 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..d61b21a1d --- /dev/null +++ b/docs/version-specific/supported-software/s/split-seq.md @@ -0,0 +1,9 @@ +# split-seq + +Analysis tools for split-seq. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190717`` | ``-Python-3.6.6`` | ``foss/2018b`` 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..9c555a56a --- /dev/null +++ b/docs/version-specific/supported-software/s/splitRef.md @@ -0,0 +1,9 @@ +# 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`` 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..8dff32e76 --- /dev/null +++ b/docs/version-specific/supported-software/s/spoa.md @@ -0,0 +1,17 @@ +# 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`` 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..c5a1f0b99 --- /dev/null +++ b/docs/version-specific/supported-software/s/sradownloader.md @@ -0,0 +1,9 @@ +# 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`` 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..9a1154ee0 --- /dev/null +++ b/docs/version-specific/supported-software/s/stardist.md @@ -0,0 +1,10 @@ +# 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`` 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..96d9aca69 --- /dev/null +++ b/docs/version-specific/supported-software/s/starparser.md @@ -0,0 +1,9 @@ +# 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`` 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..34282af42 --- /dev/null +++ b/docs/version-specific/supported-software/s/stars.md @@ -0,0 +1,9 @@ +# 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`` 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..ec5760593 --- /dev/null +++ b/docs/version-specific/supported-software/s/statsmodels.md @@ -0,0 +1,32 @@ +# 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`` 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..62d00c084 --- /dev/null +++ b/docs/version-specific/supported-software/s/stpipeline.md @@ -0,0 +1,11 @@ +# 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`` 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..ce5fe8bdc --- /dev/null +++ b/docs/version-specific/supported-software/s/strace.md @@ -0,0 +1,10 @@ +# 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`` 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..edebfa49e --- /dev/null +++ b/docs/version-specific/supported-software/s/strelka.md @@ -0,0 +1,12 @@ +# 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`` 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..ca12ac6ed --- /dev/null +++ b/docs/version-specific/supported-software/s/stripy.md @@ -0,0 +1,9 @@ +# 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`` 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..5fe5e7a5e --- /dev/null +++ b/docs/version-specific/supported-software/s/suave.md @@ -0,0 +1,9 @@ +# 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`` 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..800e7c290 --- /dev/null +++ b/docs/version-specific/supported-software/s/subset-bam.md @@ -0,0 +1,9 @@ +# 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`` 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..318eac0c0 --- /dev/null +++ b/docs/version-specific/supported-software/s/subunit.md @@ -0,0 +1,9 @@ +# subunit + +Subunit is a streaming protocol for test results. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.3`` | ``GCCcore/12.2.0`` 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..50f1669ee --- /dev/null +++ b/docs/version-specific/supported-software/s/suds.md @@ -0,0 +1,9 @@ +# suds + +Lightweight SOAP client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.3.0`` | ``-Python-3.6.4`` | ``intel/2018a`` 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..880b50aa5 --- /dev/null +++ b/docs/version-specific/supported-software/s/supermagic.md @@ -0,0 +1,10 @@ +# supermagic + +Very simple MPI sanity code. Nothing more, nothing less. + +*homepage*: + +version | toolchain +--------|---------- +``20170824`` | ``foss/2017a`` +``20170824`` | ``gompi/2019b`` 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..36c61d0b3 --- /dev/null +++ b/docs/version-specific/supported-software/s/supernova.md @@ -0,0 +1,10 @@ +# 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`` 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..5028a31c1 --- /dev/null +++ b/docs/version-specific/supported-software/s/svist4get.md @@ -0,0 +1,10 @@ +# 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`` 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..827d3231a --- /dev/null +++ b/docs/version-specific/supported-software/s/swarm.md @@ -0,0 +1,9 @@ +# swarm + +A robust and fast clustering method for amplicon-based studies + +*homepage*: + +version | toolchain +--------|---------- +``2.2.2`` | ``foss/2018b`` 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..efb762b44 --- /dev/null +++ b/docs/version-specific/supported-software/s/swifter.md @@ -0,0 +1,10 @@ +# 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`` 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..e935a8965 --- /dev/null +++ b/docs/version-specific/supported-software/s/swissknife.md @@ -0,0 +1,9 @@ +# swissknife + +Perl module for reading and writing UniProtKB data in plain text format. + +*homepage*: + +version | toolchain +--------|---------- +``1.80`` | ``GCCcore/8.3.0`` 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..6303a2472 --- /dev/null +++ b/docs/version-specific/supported-software/s/sympy.md @@ -0,0 +1,30 @@ +# 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`` 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..bfd0e73e5 --- /dev/null +++ b/docs/version-specific/supported-software/s/synapseclient.md @@ -0,0 +1,9 @@ +# 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`` 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..a7b31d3a7 --- /dev/null +++ b/docs/version-specific/supported-software/s/synthcity.md @@ -0,0 +1,9 @@ +# synthcity + +A library for generating and evaluating synthetic tabular data. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.4`` | ``foss/2022a`` 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..280ec7b19 --- /dev/null +++ b/docs/version-specific/supported-software/s/sysbench.md @@ -0,0 +1,9 @@ +# 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`` 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..41af99f41 --- /dev/null +++ b/docs/version-specific/supported-software/t/T-Coffee.md @@ -0,0 +1,10 @@ +# 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`` 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..a9923aeae --- /dev/null +++ b/docs/version-specific/supported-software/t/TALON.md @@ -0,0 +1,9 @@ +# 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`` 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..cc658b335 --- /dev/null +++ b/docs/version-specific/supported-software/t/TALYS.md @@ -0,0 +1,10 @@ +# TALYS + +TALYS is a nuclear reaction program. + +*homepage*: + +version | toolchain +--------|---------- +``1.95`` | ``GCCcore/10.3.0`` +``1.95`` | ``GCCcore/9.3.0`` 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..929304d8d --- /dev/null +++ b/docs/version-specific/supported-software/t/TAMkin.md @@ -0,0 +1,17 @@ +# 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`` 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..b20cb846d --- /dev/null +++ b/docs/version-specific/supported-software/t/TBA.md @@ -0,0 +1,9 @@ +# 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`` 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..b60491ecf --- /dev/null +++ b/docs/version-specific/supported-software/t/TCC.md @@ -0,0 +1,9 @@ +# 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`` 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..ff8b01718 --- /dev/null +++ b/docs/version-specific/supported-software/t/TCLAP.md @@ -0,0 +1,13 @@ +# 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`` 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..d8bf67b1d --- /dev/null +++ b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md @@ -0,0 +1,9 @@ +# 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`` 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..d7e54e87d --- /dev/null +++ b/docs/version-specific/supported-software/t/TEToolkit.md @@ -0,0 +1,9 @@ +# 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`` 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..85fddb3c4 --- /dev/null +++ b/docs/version-specific/supported-software/t/TEtranscripts.md @@ -0,0 +1,9 @@ +# 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`` 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..883dedef7 --- /dev/null +++ b/docs/version-specific/supported-software/t/TF-COMB.md @@ -0,0 +1,9 @@ +# TF-COMB + +Transcription Factor Co-Occurrence using Market Basket analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2023a`` 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..2a8375c71 --- /dev/null +++ b/docs/version-specific/supported-software/t/TFEA.md @@ -0,0 +1,9 @@ +# TFEA + +Transcription Factor Enrichment Analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-muMerge-1.1.0`` | ``foss/2020b`` 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..dbeda3804 --- /dev/null +++ b/docs/version-specific/supported-software/t/THetA.md @@ -0,0 +1,9 @@ +# 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`` 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..6ad45368a --- /dev/null +++ b/docs/version-specific/supported-software/t/TINKER.md @@ -0,0 +1,11 @@ +# 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`` 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..987e88372 --- /dev/null +++ b/docs/version-specific/supported-software/t/TM-align.md @@ -0,0 +1,11 @@ +# 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`` 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..db1801368 --- /dev/null +++ b/docs/version-specific/supported-software/t/TN93.md @@ -0,0 +1,9 @@ +# 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`` 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..86dc9a1bf --- /dev/null +++ b/docs/version-specific/supported-software/t/TOBIAS.md @@ -0,0 +1,11 @@ +# 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`` 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..3202afba8 --- /dev/null +++ b/docs/version-specific/supported-software/t/TOML-Fortran.md @@ -0,0 +1,14 @@ +# 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`` 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..e503f0f08 --- /dev/null +++ b/docs/version-specific/supported-software/t/TOPAS.md @@ -0,0 +1,9 @@ +# 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`` 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..8c02f5737 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md @@ -0,0 +1,10 @@ +# 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`` 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..d50dc6beb --- /dev/null +++ b/docs/version-specific/supported-software/t/TRF.md @@ -0,0 +1,14 @@ +# 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`` 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..295e6f84b --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS-cthyb.md @@ -0,0 +1,12 @@ +# 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`` 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..95e2f2b0a --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md @@ -0,0 +1,12 @@ +# 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`` 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..9e591cfab --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS-tprf.md @@ -0,0 +1,12 @@ +# 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`` 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..483a69e19 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS.md @@ -0,0 +1,13 @@ +# 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`` 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..2c46c8de5 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRUST.md @@ -0,0 +1,9 @@ +# 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`` 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..43d949c9d --- /dev/null +++ b/docs/version-specific/supported-software/t/TRUST4.md @@ -0,0 +1,11 @@ +# 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`` 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..ff7d4ccd9 --- /dev/null +++ b/docs/version-specific/supported-software/t/TVB-deps.md @@ -0,0 +1,9 @@ +# TVB-deps + +Bundle of dependency Python packages for TVB (The Virtual Brain) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160618`` | ``-Python-2.7.11`` | ``intel/2016a`` 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..812b09eeb --- /dev/null +++ b/docs/version-specific/supported-software/t/TVB.md @@ -0,0 +1,10 @@ +# 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`` 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..1d9616f65 --- /dev/null +++ b/docs/version-specific/supported-software/t/TWL-NINJA.md @@ -0,0 +1,10 @@ +# 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`` 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..b43b22291 --- /dev/null +++ b/docs/version-specific/supported-software/t/TXR.md @@ -0,0 +1,9 @@ +# 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`` 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..de26149a1 --- /dev/null +++ b/docs/version-specific/supported-software/t/TagDust.md @@ -0,0 +1,10 @@ +# 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`` 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..e22a49f80 --- /dev/null +++ b/docs/version-specific/supported-software/t/TagLib.md @@ -0,0 +1,9 @@ +# 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`` 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..64f87583b --- /dev/null +++ b/docs/version-specific/supported-software/t/Taiyaki.md @@ -0,0 +1,10 @@ +# 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`` 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..fe977cdee --- /dev/null +++ b/docs/version-specific/supported-software/t/Tapenade.md @@ -0,0 +1,9 @@ +# Tapenade + +Tool for Algorithmic Differentiation of programs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.16`` | ``-Java-17`` | ``system`` 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..915f8ceb4 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tcl.md @@ -0,0 +1,45 @@ +# 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`` 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..ec6d70615 --- /dev/null +++ b/docs/version-specific/supported-software/t/Telescope.md @@ -0,0 +1,9 @@ +# 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`` 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..bdd263031 --- /dev/null +++ b/docs/version-specific/supported-software/t/Teneto.md @@ -0,0 +1,9 @@ +# 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`` 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..8cea958e3 --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md @@ -0,0 +1,10 @@ +# 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`` 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..838e76474 --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md @@ -0,0 +1,9 @@ +# 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`` 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..487cb5f88 --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorFlow.md @@ -0,0 +1,93 @@ +# 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`` 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..ff2efbc2e --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorRT.md @@ -0,0 +1,10 @@ +# 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`` 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..6e558a7ea --- /dev/null +++ b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md @@ -0,0 +1,9 @@ +# 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`` 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..d6261f244 --- /dev/null +++ b/docs/version-specific/supported-software/t/TetGen.md @@ -0,0 +1,10 @@ +# 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`` 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..b56974f3a --- /dev/null +++ b/docs/version-specific/supported-software/t/Text-CSV.md @@ -0,0 +1,9 @@ +# Text-CSV + +Text-CSV parser + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.33`` | ``-Perl-5.22.1`` | ``foss/2016a`` 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..ef7445974 --- /dev/null +++ b/docs/version-specific/supported-software/t/Theano.md @@ -0,0 +1,40 @@ +# 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`` 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..3a4ba44ac --- /dev/null +++ b/docs/version-specific/supported-software/t/ThemisPy.md @@ -0,0 +1,9 @@ +# ThemisPy + +A header-only C++ library for L-BFGS and L-BFGS-B algorithms + +*homepage*: + +version | toolchain +--------|---------- +``0.3.0`` | ``foss/2021a`` 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..fd246e8f8 --- /dev/null +++ b/docs/version-specific/supported-software/t/TiCCutils.md @@ -0,0 +1,11 @@ +# 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`` 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..273484ea9 --- /dev/null +++ b/docs/version-specific/supported-software/t/TiMBL.md @@ -0,0 +1,11 @@ +# 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`` 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..b521d83d3 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tika.md @@ -0,0 +1,9 @@ +# 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`` 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..db825929c --- /dev/null +++ b/docs/version-specific/supported-software/t/TinyDB.md @@ -0,0 +1,9 @@ +# 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`` 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..4ba9e2440 --- /dev/null +++ b/docs/version-specific/supported-software/t/TinyXML.md @@ -0,0 +1,10 @@ +# 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`` 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..08aa01a14 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tk.md @@ -0,0 +1,46 @@ +# 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`` 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..f54469d2d --- /dev/null +++ b/docs/version-specific/supported-software/t/Tkinter.md @@ -0,0 +1,49 @@ +# 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`` 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..64c069bb4 --- /dev/null +++ b/docs/version-specific/supported-software/t/ToFu.md @@ -0,0 +1,18 @@ +# 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`` 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..6375689f0 --- /dev/null +++ b/docs/version-specific/supported-software/t/Togl.md @@ -0,0 +1,12 @@ +# 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`` 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..416a75203 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tombo.md @@ -0,0 +1,9 @@ +# 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`` 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..3eedfb5f9 --- /dev/null +++ b/docs/version-specific/supported-software/t/TopHat.md @@ -0,0 +1,22 @@ +# 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`` 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..7cc57689e --- /dev/null +++ b/docs/version-specific/supported-software/t/TorchIO.md @@ -0,0 +1,9 @@ +# 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`` 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..b65f60295 --- /dev/null +++ b/docs/version-specific/supported-software/t/TotalView.md @@ -0,0 +1,11 @@ +# 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`` 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..432bfab98 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tracer.md @@ -0,0 +1,9 @@ +# Tracer + +Tracer is a graphical tool for visualization and diagnostics of MCMC output. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.1`` | ``GCCcore/8.2.0`` 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..2a8211fbd --- /dev/null +++ b/docs/version-specific/supported-software/t/TransDecoder.md @@ -0,0 +1,10 @@ +# 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`` 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..b1aaf7113 --- /dev/null +++ b/docs/version-specific/supported-software/t/TranscriptClean.md @@ -0,0 +1,9 @@ +# 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`` 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..5bcc8f180 --- /dev/null +++ b/docs/version-specific/supported-software/t/Transformers.md @@ -0,0 +1,15 @@ +# 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`` 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..363c71c66 --- /dev/null +++ b/docs/version-specific/supported-software/t/Transrate.md @@ -0,0 +1,9 @@ +# 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`` 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..94e498936 --- /dev/null +++ b/docs/version-specific/supported-software/t/TreeMix.md @@ -0,0 +1,11 @@ +# 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`` 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..ac000e290 --- /dev/null +++ b/docs/version-specific/supported-software/t/TreeShrink.md @@ -0,0 +1,9 @@ +# 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`` 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..218cf1e97 --- /dev/null +++ b/docs/version-specific/supported-software/t/Triangle.md @@ -0,0 +1,15 @@ +# 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`` 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..329512899 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trilinos.md @@ -0,0 +1,15 @@ +# 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`` 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..7ec6217e9 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trim_Galore.md @@ -0,0 +1,26 @@ +# 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`` 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..56e374ae9 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trimmomatic.md @@ -0,0 +1,15 @@ +# 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`` 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..875fcb363 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trinity.md @@ -0,0 +1,22 @@ +# 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`` 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..116b34a5b --- /dev/null +++ b/docs/version-specific/supported-software/t/Trinotate.md @@ -0,0 +1,9 @@ +# 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`` 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..cb5a28961 --- /dev/null +++ b/docs/version-specific/supported-software/t/Triplexator.md @@ -0,0 +1,9 @@ +# 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`` 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..89dbbdf36 --- /dev/null +++ b/docs/version-specific/supported-software/t/Triton.md @@ -0,0 +1,9 @@ +# 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`` 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..05b2104e3 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trycycler.md @@ -0,0 +1,11 @@ +# 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`` 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..2930474c6 --- /dev/null +++ b/docs/version-specific/supported-software/t/TurboVNC.md @@ -0,0 +1,10 @@ +# 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`` 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..8acfb01fe --- /dev/null +++ b/docs/version-specific/supported-software/t/index.md @@ -0,0 +1,136 @@ +# List of supported software (t) + + * [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) 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..97b3fb0ab --- /dev/null +++ b/docs/version-specific/supported-software/t/t-SNE-CUDA.md @@ -0,0 +1,9 @@ +# 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`` 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..2ea8906e8 --- /dev/null +++ b/docs/version-specific/supported-software/t/tMAE.md @@ -0,0 +1,10 @@ +# 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`` 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..8ef4451d9 --- /dev/null +++ b/docs/version-specific/supported-software/t/tRNAscan-SE.md @@ -0,0 +1,10 @@ +# tRNAscan-SE + +A program for detection of tRNA genes + +*homepage*: + +version | toolchain +--------|---------- +``2.0.12`` | ``GCC/11.2.0`` +``2.0.12`` | ``foss/2022b`` 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..04e412b66 --- /dev/null +++ b/docs/version-specific/supported-software/t/tabix.md @@ -0,0 +1,19 @@ +# 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`` 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..3dd8c3bb4 --- /dev/null +++ b/docs/version-specific/supported-software/t/tabixpp.md @@ -0,0 +1,14 @@ +# 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`` 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..6a8cb8d7f --- /dev/null +++ b/docs/version-specific/supported-software/t/taco.md @@ -0,0 +1,9 @@ +# taco + +Multi-sample transcriptome assembly from RNA-Seq + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` 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..f3e27441f --- /dev/null +++ b/docs/version-specific/supported-software/t/tantan.md @@ -0,0 +1,9 @@ +# tantan + +tantan identifies simple regions / low complexity / tandem repeats in DNA or protein sequences + +*homepage*: + +version | toolchain +--------|---------- +``40`` | ``GCC/11.2.0`` 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..7405b996a --- /dev/null +++ b/docs/version-specific/supported-software/t/task-spooler.md @@ -0,0 +1,9 @@ +# 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`` 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..eebf22eae --- /dev/null +++ b/docs/version-specific/supported-software/t/taxator-tk.md @@ -0,0 +1,11 @@ +# 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`` 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..a66caeddc --- /dev/null +++ b/docs/version-specific/supported-software/t/tbb.md @@ -0,0 +1,38 @@ +# 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`` 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..dc5492688 --- /dev/null +++ b/docs/version-specific/supported-software/t/tbl2asn.md @@ -0,0 +1,13 @@ +# 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`` 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..f410e3cdc --- /dev/null +++ b/docs/version-specific/supported-software/t/tcsh.md @@ -0,0 +1,21 @@ +# 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`` 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..62a49bf8e --- /dev/null +++ b/docs/version-specific/supported-software/t/tecplot360ex.md @@ -0,0 +1,9 @@ +# 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`` 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..25c40089e --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorboard.md @@ -0,0 +1,11 @@ +# 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`` 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..325092875 --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorboardX.md @@ -0,0 +1,15 @@ +# 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`` 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..56526a852 --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorflow-compression.md @@ -0,0 +1,9 @@ +# tensorflow-compression + +TensorFlow Compression (TFC) contains data compression tools for TensorFlow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` 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..20279484c --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorflow-probability.md @@ -0,0 +1,16 @@ +# 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`` 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..663792cf2 --- /dev/null +++ b/docs/version-specific/supported-software/t/terastructure.md @@ -0,0 +1,9 @@ +# 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`` 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..7b04506e7 --- /dev/null +++ b/docs/version-specific/supported-software/t/termcolor.md @@ -0,0 +1,9 @@ +# termcolor + +Termcolor is a header-only C++ library for printing colored messages to the terminal. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``system`` 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..da484957e --- /dev/null +++ b/docs/version-specific/supported-software/t/tesseract.md @@ -0,0 +1,12 @@ +# 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`` 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..75de22f82 --- /dev/null +++ b/docs/version-specific/supported-software/t/testpath.md @@ -0,0 +1,14 @@ +# 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`` 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..499743083 --- /dev/null +++ b/docs/version-specific/supported-software/t/texinfo.md @@ -0,0 +1,20 @@ +# 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`` 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..f8f853d5f --- /dev/null +++ b/docs/version-specific/supported-software/t/texlive.md @@ -0,0 +1,15 @@ +# 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`` 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..8e1e5d795 --- /dev/null +++ b/docs/version-specific/supported-software/t/thirdorder.md @@ -0,0 +1,9 @@ +# 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`` 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..f8d752ba9 --- /dev/null +++ b/docs/version-specific/supported-software/t/thurstonianIRT.md @@ -0,0 +1,9 @@ +# 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`` 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..6ddd015ea --- /dev/null +++ b/docs/version-specific/supported-software/t/tidybayes.md @@ -0,0 +1,9 @@ +# 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`` 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..8d13696fe --- /dev/null +++ b/docs/version-specific/supported-software/t/tidymodels.md @@ -0,0 +1,10 @@ +# 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`` 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..8000d9048 --- /dev/null +++ b/docs/version-specific/supported-software/t/tiktoken.md @@ -0,0 +1,9 @@ +# tiktoken + +tiktoken is a fast BPE tokeniser for use with OpenAI's models + +*homepage*: + +version | toolchain +--------|---------- +``0.6.0`` | ``GCCcore/12.3.0`` 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..6429d0702 --- /dev/null +++ b/docs/version-specific/supported-software/t/time.md @@ -0,0 +1,18 @@ +# 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`` 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..b1dc9853e --- /dev/null +++ b/docs/version-specific/supported-software/t/timm.md @@ -0,0 +1,10 @@ +# 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`` 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..c2b229b79 --- /dev/null +++ b/docs/version-specific/supported-software/t/tiny-cuda-nn.md @@ -0,0 +1,9 @@ +# 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`` 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..e7aad087f --- /dev/null +++ b/docs/version-specific/supported-software/t/tmap.md @@ -0,0 +1,9 @@ +# 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`` 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..198564550 --- /dev/null +++ b/docs/version-specific/supported-software/t/tmux.md @@ -0,0 +1,25 @@ +# 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`` 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..a4d1650fa --- /dev/null +++ b/docs/version-specific/supported-software/t/toil.md @@ -0,0 +1,9 @@ +# 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`` 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..e0b771bf0 --- /dev/null +++ b/docs/version-specific/supported-software/t/tokenizers.md @@ -0,0 +1,11 @@ +# 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`` 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..4160ba970 --- /dev/null +++ b/docs/version-specific/supported-software/t/topaz.md @@ -0,0 +1,12 @@ +# 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`` 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..bd9fc67d7 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchaudio.md @@ -0,0 +1,12 @@ +# 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`` 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..464f7d72b --- /dev/null +++ b/docs/version-specific/supported-software/t/torchdata.md @@ -0,0 +1,9 @@ +# 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`` 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..2665224c3 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchinfo.md @@ -0,0 +1,10 @@ +# 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`` 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..eb69695c4 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchsampler.md @@ -0,0 +1,10 @@ +# 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`` 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..fba50883c --- /dev/null +++ b/docs/version-specific/supported-software/t/torchtext.md @@ -0,0 +1,15 @@ +# 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`` 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..81c84ae44 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchvf.md @@ -0,0 +1,10 @@ +# 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`` 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..2a2d88fa9 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchvision.md @@ -0,0 +1,36 @@ +# 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`` 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..49c13e856 --- /dev/null +++ b/docs/version-specific/supported-software/t/tornado.md @@ -0,0 +1,10 @@ +# 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`` 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..047bf7e4e --- /dev/null +++ b/docs/version-specific/supported-software/t/tox.md @@ -0,0 +1,10 @@ +# 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`` 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..bd357b1cb --- /dev/null +++ b/docs/version-specific/supported-software/t/tqdm.md @@ -0,0 +1,26 @@ +# 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`` 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..c2a55a1d0 --- /dev/null +++ b/docs/version-specific/supported-software/t/travis.md @@ -0,0 +1,10 @@ +# 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`` 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..e12951980 --- /dev/null +++ b/docs/version-specific/supported-software/t/treatSens.md @@ -0,0 +1,9 @@ +# 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`` 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..e85c9fada --- /dev/null +++ b/docs/version-specific/supported-software/t/trimAl.md @@ -0,0 +1,15 @@ +# 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`` 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..c5e697816 --- /dev/null +++ b/docs/version-specific/supported-software/t/trimesh.md @@ -0,0 +1,10 @@ +# 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`` 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..63f8a72f6 --- /dev/null +++ b/docs/version-specific/supported-software/t/tseriesEntropy.md @@ -0,0 +1,9 @@ +# 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`` 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..94e3bc90e --- /dev/null +++ b/docs/version-specific/supported-software/t/tsne.md @@ -0,0 +1,9 @@ +# tsne + +Python library containing T-SNE algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.8`` | ``-Python-2.7.16`` | ``intel/2019b`` 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..c5e3c0689 --- /dev/null +++ b/docs/version-specific/supported-software/t/turbinesFoam.md @@ -0,0 +1,9 @@ +# 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`` 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..2cac1bfd4 --- /dev/null +++ b/docs/version-specific/supported-software/t/tvb-data.md @@ -0,0 +1,10 @@ +# 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`` 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..55295bf7f --- /dev/null +++ b/docs/version-specific/supported-software/t/tvb-framework.md @@ -0,0 +1,10 @@ +# 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`` 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..8e7a23321 --- /dev/null +++ b/docs/version-specific/supported-software/t/tvb-library.md @@ -0,0 +1,10 @@ +# 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`` 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..f2c539da5 --- /dev/null +++ b/docs/version-specific/supported-software/t/typing-extensions.md @@ -0,0 +1,18 @@ +# 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`` 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..46d607190 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCC-CUDA.md @@ -0,0 +1,11 @@ +# 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`` 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..f4edad89a --- /dev/null +++ b/docs/version-specific/supported-software/u/UCC.md @@ -0,0 +1,13 @@ +# 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`` 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..04b25885b --- /dev/null +++ b/docs/version-specific/supported-software/u/UCLUST.md @@ -0,0 +1,9 @@ +# UCLUST + +UCLUST: Extreme high-speed sequence clustering, alignment and database search. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.22q`` | ``-i86linux64`` | ``system`` 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..bd6f62e42 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCX-CUDA.md @@ -0,0 +1,17 @@ +# 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`` 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..d4b8c956a --- /dev/null +++ b/docs/version-specific/supported-software/u/UCX-ROCm.md @@ -0,0 +1,9 @@ +# 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`` 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..6573fd964 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCX.md @@ -0,0 +1,36 @@ +# 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`` 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..6b8670d21 --- /dev/null +++ b/docs/version-specific/supported-software/u/UDUNITS.md @@ -0,0 +1,30 @@ +# 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`` 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..882ec0e07 --- /dev/null +++ b/docs/version-specific/supported-software/u/UFL.md @@ -0,0 +1,10 @@ +# 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`` 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..1ff095a57 --- /dev/null +++ b/docs/version-specific/supported-software/u/UMI-tools.md @@ -0,0 +1,12 @@ +# 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`` 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..2f09b776e --- /dev/null +++ b/docs/version-specific/supported-software/u/UNAFold.md @@ -0,0 +1,9 @@ +# 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`` 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..9bdc81715 --- /dev/null +++ b/docs/version-specific/supported-software/u/UQTk.md @@ -0,0 +1,9 @@ +# 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`` 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..7c58225f5 --- /dev/null +++ b/docs/version-specific/supported-software/u/USEARCH.md @@ -0,0 +1,12 @@ +# 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`` 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..38262323e --- /dev/null +++ b/docs/version-specific/supported-software/u/USPEX.md @@ -0,0 +1,9 @@ +# 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`` 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..179501afe --- /dev/null +++ b/docs/version-specific/supported-software/u/UShER.md @@ -0,0 +1,10 @@ +# 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`` 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..4249f41c5 --- /dev/null +++ b/docs/version-specific/supported-software/u/Ultralytics.md @@ -0,0 +1,9 @@ +# 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`` 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..d89aef620 --- /dev/null +++ b/docs/version-specific/supported-software/u/UnZip.md @@ -0,0 +1,23 @@ +# 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`` 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..ff3f1172d --- /dev/null +++ b/docs/version-specific/supported-software/u/UniFrac.md @@ -0,0 +1,9 @@ +# 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`` 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..d1d312526 --- /dev/null +++ b/docs/version-specific/supported-software/u/Unicycler.md @@ -0,0 +1,12 @@ +# 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`` 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..1b7edb081 --- /dev/null +++ b/docs/version-specific/supported-software/u/Unidecode.md @@ -0,0 +1,10 @@ +# 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`` 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..0c45e8d45 --- /dev/null +++ b/docs/version-specific/supported-software/u/index.md @@ -0,0 +1,36 @@ +# List of supported software (u) + + * [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) 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..3188986e9 --- /dev/null +++ b/docs/version-specific/supported-software/u/ucx-py.md @@ -0,0 +1,9 @@ +# 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`` 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..9c95c1718 --- /dev/null +++ b/docs/version-specific/supported-software/u/udocker.md @@ -0,0 +1,10 @@ +# 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`` 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..6e9250145 --- /dev/null +++ b/docs/version-specific/supported-software/u/umap-learn.md @@ -0,0 +1,15 @@ +# 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`` 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..9c1ef9119 --- /dev/null +++ b/docs/version-specific/supported-software/u/umi4cPackage.md @@ -0,0 +1,9 @@ +# umi4cPackage + +umi4cPackage is a processing and analysis pipeline for UMI-4C experiment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200116`` | ``-R-4.0.0`` | ``foss/2020a`` 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..ce41f33b3 --- /dev/null +++ b/docs/version-specific/supported-software/u/umis.md @@ -0,0 +1,9 @@ +# umis + +Package for estimating UMI counts in Transcript Tag Counting data. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``intel/2019a`` 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..8f0480d71 --- /dev/null +++ b/docs/version-specific/supported-software/u/uncertainties.md @@ -0,0 +1,10 @@ +# 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`` 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..5c786de2e --- /dev/null +++ b/docs/version-specific/supported-software/u/uncertainty-calibration.md @@ -0,0 +1,9 @@ +# 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`` 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..cf00d82ed --- /dev/null +++ b/docs/version-specific/supported-software/u/unicore-uftp.md @@ -0,0 +1,9 @@ +# unicore-uftp + +UNICORE Java-based client for UFTP + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-Java-11`` | ``system`` 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..e5a48a0df --- /dev/null +++ b/docs/version-specific/supported-software/u/unifdef.md @@ -0,0 +1,9 @@ +# 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`` 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..22f4e9213 --- /dev/null +++ b/docs/version-specific/supported-software/u/unimap.md @@ -0,0 +1,10 @@ +# 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`` 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..12ee6140f --- /dev/null +++ b/docs/version-specific/supported-software/u/units.md @@ -0,0 +1,9 @@ +# 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`` 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..c40d113c6 --- /dev/null +++ b/docs/version-specific/supported-software/u/unixODBC.md @@ -0,0 +1,10 @@ +# unixODBC + +unixODBC provides a uniform interface between application and database driver + +*homepage*: + +version | toolchain +--------|---------- +``2.3.11`` | ``foss/2022b`` +``2.3.7`` | ``foss/2018b`` 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..79a1f4175 --- /dev/null +++ b/docs/version-specific/supported-software/u/unrar.md @@ -0,0 +1,11 @@ +# 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`` 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..177bb0a7d --- /dev/null +++ b/docs/version-specific/supported-software/u/utf8proc.md @@ -0,0 +1,18 @@ +# 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`` 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..37fdfec8b --- /dev/null +++ b/docs/version-specific/supported-software/u/util-linux.md @@ -0,0 +1,36 @@ +# 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`` 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..ec6858035 --- /dev/null +++ b/docs/version-specific/supported-software/v/V8.md @@ -0,0 +1,13 @@ +# 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`` 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..94240df80 --- /dev/null +++ b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md @@ -0,0 +1,9 @@ +# 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`` 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..a21b65914 --- /dev/null +++ b/docs/version-specific/supported-software/v/VASP.md @@ -0,0 +1,10 @@ +# 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`` 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..e29de870c --- /dev/null +++ b/docs/version-specific/supported-software/v/VAtools.md @@ -0,0 +1,9 @@ +# 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`` 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..c0ecd1e91 --- /dev/null +++ b/docs/version-specific/supported-software/v/VBZ-Compression.md @@ -0,0 +1,10 @@ +# VBZ-Compression + +VBZ compression HDF5 plugin for nanopolish + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``gompi/2020b`` +``1.0.3`` | ``gompi/2022a`` 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..3a2957c53 --- /dev/null +++ b/docs/version-specific/supported-software/v/VCF-kit.md @@ -0,0 +1,9 @@ +# 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`` 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..a8e02fe46 --- /dev/null +++ b/docs/version-specific/supported-software/v/VCFtools.md @@ -0,0 +1,25 @@ +# 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`` 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..b3492d190 --- /dev/null +++ b/docs/version-specific/supported-software/v/VEGAS.md @@ -0,0 +1,9 @@ +# 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`` 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..c8ae926de --- /dev/null +++ b/docs/version-specific/supported-software/v/VEP.md @@ -0,0 +1,18 @@ +# 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`` 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..e6b68cb68 --- /dev/null +++ b/docs/version-specific/supported-software/v/VERSE.md @@ -0,0 +1,9 @@ +# VERSE + +A versatile and efficient RNA-Seq read counting tool + +*homepage*: + +version | toolchain +--------|---------- +``0.1.5`` | ``foss/2016b`` 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..bb74a90b4 --- /dev/null +++ b/docs/version-specific/supported-software/v/VESTA.md @@ -0,0 +1,9 @@ +# 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`` 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..0edfbac98 --- /dev/null +++ b/docs/version-specific/supported-software/v/VMD.md @@ -0,0 +1,16 @@ +# 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`` 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..2d827a5a4 --- /dev/null +++ b/docs/version-specific/supported-software/v/VMTK.md @@ -0,0 +1,9 @@ +# 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`` 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..1c38246b7 --- /dev/null +++ b/docs/version-specific/supported-software/v/VSCode.md @@ -0,0 +1,10 @@ +# 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`` 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..d919765ec --- /dev/null +++ b/docs/version-specific/supported-software/v/VSEARCH.md @@ -0,0 +1,15 @@ +# 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`` 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..97f4a94b2 --- /dev/null +++ b/docs/version-specific/supported-software/v/VTK.md @@ -0,0 +1,43 @@ +# 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`` 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..cff658745 --- /dev/null +++ b/docs/version-specific/supported-software/v/VTune.md @@ -0,0 +1,32 @@ +# 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`` 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..f586d94d5 --- /dev/null +++ b/docs/version-specific/supported-software/v/VV.md @@ -0,0 +1,9 @@ +# 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`` 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..b9ebcaeac --- /dev/null +++ b/docs/version-specific/supported-software/v/VXL.md @@ -0,0 +1,9 @@ +# VXL + +A multi-platform collection of C++ software libraries for Computer Vision and Image Understanding. + +*homepage*: + +version | toolchain +--------|---------- +``1.18.0`` | ``foss/2018a`` 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..aacd18643 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vala.md @@ -0,0 +1,10 @@ +# 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`` 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..71bd69075 --- /dev/null +++ b/docs/version-specific/supported-software/v/Valgrind.md @@ -0,0 +1,28 @@ +# 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`` 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..8628551d7 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vamb.md @@ -0,0 +1,9 @@ +# 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`` 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..ab43bbddc --- /dev/null +++ b/docs/version-specific/supported-software/v/Vampir.md @@ -0,0 +1,10 @@ +# 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`` 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..1cc89aa73 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vampire.md @@ -0,0 +1,9 @@ +# Vampire + +The Vampire Theorem Prover. + +*homepage*: + +version | toolchain +--------|---------- +``4.5.1`` | ``GCCcore/10.2.0`` 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..78bc0c95a --- /dev/null +++ b/docs/version-specific/supported-software/v/VarDict.md @@ -0,0 +1,9 @@ +# 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`` 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..6a439f21a --- /dev/null +++ b/docs/version-specific/supported-software/v/VarScan.md @@ -0,0 +1,12 @@ +# 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`` 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..c17520a60 --- /dev/null +++ b/docs/version-specific/supported-software/v/VariantMetaCaller.md @@ -0,0 +1,9 @@ +# 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`` 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..a5393733e --- /dev/null +++ b/docs/version-specific/supported-software/v/Velvet.md @@ -0,0 +1,14 @@ +# 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`` 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..9313d119f --- /dev/null +++ b/docs/version-specific/supported-software/v/ViennaRNA.md @@ -0,0 +1,17 @@ +# 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`` 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..c97b40382 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vim.md @@ -0,0 +1,14 @@ +# 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`` 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..1fd6bf686 --- /dev/null +++ b/docs/version-specific/supported-software/v/VirSorter.md @@ -0,0 +1,10 @@ +# 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`` 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..a74906b57 --- /dev/null +++ b/docs/version-specific/supported-software/v/VirSorter2.md @@ -0,0 +1,10 @@ +# 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`` 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..09096b3b8 --- /dev/null +++ b/docs/version-specific/supported-software/v/VirtualGL.md @@ -0,0 +1,12 @@ +# 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`` 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..e39e5cae9 --- /dev/null +++ b/docs/version-specific/supported-software/v/Virtuoso-opensource.md @@ -0,0 +1,9 @@ +# 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`` 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..93d5e55a2 --- /dev/null +++ b/docs/version-specific/supported-software/v/VisPy.md @@ -0,0 +1,13 @@ +# 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`` 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..37e9b2401 --- /dev/null +++ b/docs/version-specific/supported-software/v/Voro++.md @@ -0,0 +1,20 @@ +# 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`` 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..ffdd25217 --- /dev/null +++ b/docs/version-specific/supported-software/v/index.md @@ -0,0 +1,60 @@ +# List of supported software (v) + + * [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) 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..bf363e24f --- /dev/null +++ b/docs/version-specific/supported-software/v/vConTACT2.md @@ -0,0 +1,9 @@ +# 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`` 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..405ca00be --- /dev/null +++ b/docs/version-specific/supported-software/v/vaeda.md @@ -0,0 +1,9 @@ +# 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`` 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..bf3e25ac0 --- /dev/null +++ b/docs/version-specific/supported-software/v/variant_tools.md @@ -0,0 +1,9 @@ +# 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`` 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..1fd2c12c5 --- /dev/null +++ b/docs/version-specific/supported-software/v/vartools.md @@ -0,0 +1,10 @@ +# 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`` 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..6da29600a --- /dev/null +++ b/docs/version-specific/supported-software/v/vawk.md @@ -0,0 +1,9 @@ +# vawk + +An awk-like VCF parser + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.1`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` 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..c6e8a45cd --- /dev/null +++ b/docs/version-specific/supported-software/v/vcflib.md @@ -0,0 +1,15 @@ +# 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`` 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..0fef7a214 --- /dev/null +++ b/docs/version-specific/supported-software/v/vcfnp.md @@ -0,0 +1,9 @@ +# 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`` 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..84871efcf --- /dev/null +++ b/docs/version-specific/supported-software/v/velocyto.md @@ -0,0 +1,11 @@ +# 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`` 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..d92900ff2 --- /dev/null +++ b/docs/version-specific/supported-software/v/verifyBamID.md @@ -0,0 +1,9 @@ +# 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`` 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..f2955d027 --- /dev/null +++ b/docs/version-specific/supported-software/v/virtualenv.md @@ -0,0 +1,10 @@ +# 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`` 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..8e6fb7ff3 --- /dev/null +++ b/docs/version-specific/supported-software/v/visdom.md @@ -0,0 +1,9 @@ +# 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`` 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..79002ff9a --- /dev/null +++ b/docs/version-specific/supported-software/v/vispr.md @@ -0,0 +1,9 @@ +# vispr + +VISPR - A visualization framework for CRISPR data. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.14`` | ``foss/2022a`` 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..9c91bf539 --- /dev/null +++ b/docs/version-specific/supported-software/v/vitessce-python.md @@ -0,0 +1,9 @@ +# vitessce-python + +Python API and Jupyter widget facilitating interactive visualization of spatial single-cell data with Vitessce. + +*homepage*: + +version | toolchain +--------|---------- +``20230222`` | ``foss/2022a`` 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..05caac9df --- /dev/null +++ b/docs/version-specific/supported-software/v/vitessceR.md @@ -0,0 +1,9 @@ +# 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`` 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..7429ba259 --- /dev/null +++ b/docs/version-specific/supported-software/v/voltools.md @@ -0,0 +1,9 @@ +# voltools + +CUDA-accelerated numpy 3D affine transformations + +*homepage*: + +version | toolchain +--------|---------- +``0.4.2`` | ``foss/2020b`` 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..5f38a3ab3 --- /dev/null +++ b/docs/version-specific/supported-software/v/vorbis-tools.md @@ -0,0 +1,11 @@ +# 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`` 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..191e0e975 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-base.md @@ -0,0 +1,21 @@ +# 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`` 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..017179162 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-install.md @@ -0,0 +1,17 @@ +# 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`` 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..5fcd2f741 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md @@ -0,0 +1,9 @@ +# 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`` 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..110502191 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-mympirun.md @@ -0,0 +1,38 @@ +# 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`` 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..ba67f87e3 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-processcontrol.md @@ -0,0 +1,10 @@ +# 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`` 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..c1b15be85 --- /dev/null +++ b/docs/version-specific/supported-software/v/vt.md @@ -0,0 +1,13 @@ +# 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`` 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..6fff42d74 --- /dev/null +++ b/docs/version-specific/supported-software/w/WCSLIB.md @@ -0,0 +1,11 @@ +# 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`` 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..baad34f5f --- /dev/null +++ b/docs/version-specific/supported-software/w/WCT.md @@ -0,0 +1,9 @@ +# 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`` 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..2bf41675a --- /dev/null +++ b/docs/version-specific/supported-software/w/WEKA.md @@ -0,0 +1,10 @@ +# 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`` 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..c6206be87 --- /dev/null +++ b/docs/version-specific/supported-software/w/WFA2.md @@ -0,0 +1,10 @@ +# 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`` 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..88b9ef578 --- /dev/null +++ b/docs/version-specific/supported-software/w/WGDgc.md @@ -0,0 +1,9 @@ +# 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`` 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..5538001ac --- /dev/null +++ b/docs/version-specific/supported-software/w/WHAM.md @@ -0,0 +1,12 @@ +# 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`` 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..2c3b44368 --- /dev/null +++ b/docs/version-specific/supported-software/w/WIEN2k.md @@ -0,0 +1,19 @@ +# 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`` 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..4cbba6e38 --- /dev/null +++ b/docs/version-specific/supported-software/w/WISExome.md @@ -0,0 +1,9 @@ +# 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`` 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..cbcadf737 --- /dev/null +++ b/docs/version-specific/supported-software/w/WPS.md @@ -0,0 +1,16 @@ +# 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`` 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..4bbfc2d49 --- /dev/null +++ b/docs/version-specific/supported-software/w/WRF-Fire.md @@ -0,0 +1,9 @@ +# 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`` 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..1733af3b2 --- /dev/null +++ b/docs/version-specific/supported-software/w/WRF.md @@ -0,0 +1,24 @@ +# 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`` 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..2fb72cb8d --- /dev/null +++ b/docs/version-specific/supported-software/w/WSClean.md @@ -0,0 +1,10 @@ +# 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`` 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..0cff1068d --- /dev/null +++ b/docs/version-specific/supported-software/w/Wannier90.md @@ -0,0 +1,31 @@ +# 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`` 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..e87d47807 --- /dev/null +++ b/docs/version-specific/supported-software/w/WannierTools.md @@ -0,0 +1,10 @@ +# WannierTools + +an open-source software package for novel topological materials + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``intel/2018a`` +``2.5.1`` | ``intel/2020b`` 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..8ef2cec6b --- /dev/null +++ b/docs/version-specific/supported-software/w/Wayland.md @@ -0,0 +1,14 @@ +# 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`` 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..de77b07c2 --- /dev/null +++ b/docs/version-specific/supported-software/w/Waylandpp.md @@ -0,0 +1,10 @@ +# 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`` 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..b7c7ab0f9 --- /dev/null +++ b/docs/version-specific/supported-software/w/WebKitGTK+.md @@ -0,0 +1,13 @@ +# 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`` 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..03d4ec828 --- /dev/null +++ b/docs/version-specific/supported-software/w/WebSocket++.md @@ -0,0 +1,9 @@ +# 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`` 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..f1ff00536 --- /dev/null +++ b/docs/version-specific/supported-software/w/WhatsHap.md @@ -0,0 +1,14 @@ +# 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`` 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..91bbf1fef --- /dev/null +++ b/docs/version-specific/supported-software/w/WildMagic.md @@ -0,0 +1,10 @@ +# WildMagic + +Wild Magic 5.17 + +*homepage*: + +version | toolchain +--------|---------- +``5.17`` | ``GCCcore/10.3.0`` +``5.17`` | ``foss/2018b`` 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..69779fce0 --- /dev/null +++ b/docs/version-specific/supported-software/w/Winnowmap.md @@ -0,0 +1,9 @@ +# 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`` 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..088651cc5 --- /dev/null +++ b/docs/version-specific/supported-software/w/WisecondorX.md @@ -0,0 +1,9 @@ +# WisecondorX + +WisecondorX -- an evolved WISECONDOR + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` 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..fdc3cda51 --- /dev/null +++ b/docs/version-specific/supported-software/w/index.md @@ -0,0 +1,41 @@ +# List of supported software (w) + + * [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) 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..0c785306d --- /dev/null +++ b/docs/version-specific/supported-software/w/waLBerla.md @@ -0,0 +1,10 @@ +# 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`` 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..7ebe0d251 --- /dev/null +++ b/docs/version-specific/supported-software/w/wandb.md @@ -0,0 +1,12 @@ +# 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`` 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..1f73380d9 --- /dev/null +++ b/docs/version-specific/supported-software/w/wcwidth.md @@ -0,0 +1,13 @@ +# 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`` 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..9f264f1a9 --- /dev/null +++ b/docs/version-specific/supported-software/w/webin-cli.md @@ -0,0 +1,9 @@ +# 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`` 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..64f457682 --- /dev/null +++ b/docs/version-specific/supported-software/w/wfdb.md @@ -0,0 +1,9 @@ +# 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`` 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..e5c4ad57b --- /dev/null +++ b/docs/version-specific/supported-software/w/wget.md @@ -0,0 +1,20 @@ +# 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`` 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..26681eb6c --- /dev/null +++ b/docs/version-specific/supported-software/w/wgsim.md @@ -0,0 +1,10 @@ +# 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`` 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..a2dab1264 --- /dev/null +++ b/docs/version-specific/supported-software/w/wheel.md @@ -0,0 +1,27 @@ +# 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`` 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..7609bdeb6 --- /dev/null +++ b/docs/version-specific/supported-software/w/wkhtmltopdf.md @@ -0,0 +1,9 @@ +# 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`` 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..d99f913e9 --- /dev/null +++ b/docs/version-specific/supported-software/w/worker.md @@ -0,0 +1,21 @@ +# 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`` 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..55b9abb66 --- /dev/null +++ b/docs/version-specific/supported-software/w/wpebackend-fdo.md @@ -0,0 +1,10 @@ +# 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`` 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..5fb6e354d --- /dev/null +++ b/docs/version-specific/supported-software/w/wrapt.md @@ -0,0 +1,12 @@ +# 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`` 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..8f96c31ed --- /dev/null +++ b/docs/version-specific/supported-software/w/wrf-python.md @@ -0,0 +1,11 @@ +# 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`` 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..bfba307bb --- /dev/null +++ b/docs/version-specific/supported-software/w/wtdbg2.md @@ -0,0 +1,12 @@ +# 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`` 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..ee0509a8e --- /dev/null +++ b/docs/version-specific/supported-software/w/wxPropertyGrid.md @@ -0,0 +1,9 @@ +# 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`` 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..19b336e02 --- /dev/null +++ b/docs/version-specific/supported-software/w/wxPython.md @@ -0,0 +1,20 @@ +# 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`` 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..f006cc517 --- /dev/null +++ b/docs/version-specific/supported-software/w/wxWidgets.md @@ -0,0 +1,18 @@ +# 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`` 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..79be361a5 --- /dev/null +++ b/docs/version-specific/supported-software/x/X11.md @@ -0,0 +1,27 @@ +# 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`` 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..2cc6cdb86 --- /dev/null +++ b/docs/version-specific/supported-software/x/XALT.md @@ -0,0 +1,9 @@ +# 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`` 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..f208f5299 --- /dev/null +++ b/docs/version-specific/supported-software/x/XBeach.md @@ -0,0 +1,9 @@ +# 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`` 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..1c9e549ca --- /dev/null +++ b/docs/version-specific/supported-software/x/XCFun.md @@ -0,0 +1,15 @@ +# 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`` 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..69a0c6dd0 --- /dev/null +++ b/docs/version-specific/supported-software/x/XCrySDen.md @@ -0,0 +1,15 @@ +# 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`` 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..8b79ce104 --- /dev/null +++ b/docs/version-specific/supported-software/x/XGBoost.md @@ -0,0 +1,20 @@ +# 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`` 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..9f68a1619 --- /dev/null +++ b/docs/version-specific/supported-software/x/XGrafix.md @@ -0,0 +1,9 @@ +# 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`` 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..9b20cce08 --- /dev/null +++ b/docs/version-specific/supported-software/x/XKeyboardConfig.md @@ -0,0 +1,10 @@ +# 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`` 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..b4cdca95f --- /dev/null +++ b/docs/version-specific/supported-software/x/XMDS2.md @@ -0,0 +1,9 @@ +# 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`` 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..082493fbd --- /dev/null +++ b/docs/version-specific/supported-software/x/XML-Compile.md @@ -0,0 +1,10 @@ +# XML-Compile + +Perl module for compilation based XML processing + +*homepage*: + +version | toolchain +--------|---------- +``1.63`` | ``GCCcore/11.2.0`` +``1.63`` | ``GCCcore/12.2.0`` 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..a229081d5 --- /dev/null +++ b/docs/version-specific/supported-software/x/XML-LibXML.md @@ -0,0 +1,24 @@ +# 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`` 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..46e0b11b1 --- /dev/null +++ b/docs/version-specific/supported-software/x/XML-Parser.md @@ -0,0 +1,24 @@ +# 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`` 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..380c6164c --- /dev/null +++ b/docs/version-specific/supported-software/x/XMLSec.md @@ -0,0 +1,9 @@ +# 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`` 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..d6c821053 --- /dev/null +++ b/docs/version-specific/supported-software/x/XMLStarlet.md @@ -0,0 +1,10 @@ +# XMLStarlet + +Command line XML tool + +*homepage*: + +version | toolchain +--------|---------- +``1.6.1`` | ``GCCcore/6.4.0`` +``1.6.1`` | ``foss/2016a`` 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..f39962e7b --- /dev/null +++ b/docs/version-specific/supported-software/x/XOOPIC.md @@ -0,0 +1,9 @@ +# 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`` 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..c1119e29f --- /dev/null +++ b/docs/version-specific/supported-software/x/XPLOR-NIH.md @@ -0,0 +1,9 @@ +# XPLOR-NIH + +A System for X-ray Crystallography and NMR + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4`` | ``-Linux_x86_64`` | ``system`` 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..70d184b96 --- /dev/null +++ b/docs/version-specific/supported-software/x/XSD.md @@ -0,0 +1,9 @@ +# 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`` 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..fa40e90bb --- /dev/null +++ b/docs/version-specific/supported-software/x/XTandem.md @@ -0,0 +1,10 @@ +# 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`` 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..c29bfb542 --- /dev/null +++ b/docs/version-specific/supported-software/x/XZ.md @@ -0,0 +1,40 @@ +# 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`` 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..52a0ace5c --- /dev/null +++ b/docs/version-specific/supported-software/x/Xerces-C++.md @@ -0,0 +1,20 @@ +# 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`` 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..772110c6b --- /dev/null +++ b/docs/version-specific/supported-software/x/XlsxWriter.md @@ -0,0 +1,15 @@ +# 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`` 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..e01481f1c --- /dev/null +++ b/docs/version-specific/supported-software/x/Xmipp.md @@ -0,0 +1,12 @@ +# 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`` 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..d98e4225c --- /dev/null +++ b/docs/version-specific/supported-software/x/Xvfb.md @@ -0,0 +1,18 @@ +# 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`` 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..e446e2566 --- /dev/null +++ b/docs/version-specific/supported-software/x/index.md @@ -0,0 +1,55 @@ +# List of supported software (x) + + * [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) 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..4e8d5db95 --- /dev/null +++ b/docs/version-specific/supported-software/x/x13as.md @@ -0,0 +1,10 @@ +# 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`` 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..f6b728074 --- /dev/null +++ b/docs/version-specific/supported-software/x/x264.md @@ -0,0 +1,32 @@ +# 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`` 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..3b229b809 --- /dev/null +++ b/docs/version-specific/supported-software/x/x265.md @@ -0,0 +1,24 @@ +# 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`` 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..d2da331ae --- /dev/null +++ b/docs/version-specific/supported-software/x/xCell.md @@ -0,0 +1,9 @@ +# 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`` 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..b05cff8a7 --- /dev/null +++ b/docs/version-specific/supported-software/x/xESMF.md @@ -0,0 +1,10 @@ +# 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`` 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..51c6ba147 --- /dev/null +++ b/docs/version-specific/supported-software/x/xarray.md @@ -0,0 +1,34 @@ +# 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`` 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..86640e27e --- /dev/null +++ b/docs/version-specific/supported-software/x/xbitmaps.md @@ -0,0 +1,12 @@ +# 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`` 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..1bc4a4272 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-proto.md @@ -0,0 +1,10 @@ +# 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`` 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..a6413fdc7 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-image.md @@ -0,0 +1,10 @@ +# 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`` 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..2aadddd12 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-keysyms.md @@ -0,0 +1,10 @@ +# 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`` 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..c3ec26d38 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-renderutil.md @@ -0,0 +1,10 @@ +# 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`` 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..a34cfb6ef --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-wm.md @@ -0,0 +1,10 @@ +# 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`` 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..5506cddf7 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util.md @@ -0,0 +1,10 @@ +# 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`` 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..529bc81ef --- /dev/null +++ b/docs/version-specific/supported-software/x/xclip.md @@ -0,0 +1,9 @@ +# 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`` 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..1cc0f256f --- /dev/null +++ b/docs/version-specific/supported-software/x/xdotool.md @@ -0,0 +1,9 @@ +# 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`` 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..7344aa009 --- /dev/null +++ b/docs/version-specific/supported-software/x/xextproto.md @@ -0,0 +1,12 @@ +# 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`` 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..5e4166427 --- /dev/null +++ b/docs/version-specific/supported-software/x/xf86vidmodeproto.md @@ -0,0 +1,10 @@ +# xf86vidmodeproto + +X11 XFree86 video mode extension protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``foss/2016a`` +``2.3.1`` | ``intel/2016a`` 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..3b7521210 --- /dev/null +++ b/docs/version-specific/supported-software/x/xineramaproto.md @@ -0,0 +1,10 @@ +# xineramaproto + +X protocol and ancillary headers for xinerama + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2016a`` +``1.2.1`` | ``intel/2016a`` 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..a5c844b02 --- /dev/null +++ b/docs/version-specific/supported-software/x/xmitgcm.md @@ -0,0 +1,9 @@ +# 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`` 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..e05abe5b5 --- /dev/null +++ b/docs/version-specific/supported-software/x/xmlf90.md @@ -0,0 +1,18 @@ +# 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`` 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..5f55e2b43 --- /dev/null +++ b/docs/version-specific/supported-software/x/xonsh.md @@ -0,0 +1,9 @@ +# xonsh + +Xonsh is a Python-ish, BASHwards-looking shell language and command prompt. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``intel/2016a`` 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..622532985 --- /dev/null +++ b/docs/version-specific/supported-software/x/xorg-macros.md @@ -0,0 +1,29 @@ +# 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`` 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..c871d4c7d --- /dev/null +++ b/docs/version-specific/supported-software/x/xpdf.md @@ -0,0 +1,9 @@ +# 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`` 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..0cf411ae9 --- /dev/null +++ b/docs/version-specific/supported-software/x/xprop.md @@ -0,0 +1,27 @@ +# 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`` 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..0c36754e3 --- /dev/null +++ b/docs/version-specific/supported-software/x/xproto.md @@ -0,0 +1,23 @@ +# 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`` 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..80b397e50 --- /dev/null +++ b/docs/version-specific/supported-software/x/xtb.md @@ -0,0 +1,19 @@ +# 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`` 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..0ab0ef0f3 --- /dev/null +++ b/docs/version-specific/supported-software/x/xtensor.md @@ -0,0 +1,9 @@ +# xtensor + +xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions. + +*homepage*: + +version | toolchain +--------|---------- +``0.24.0`` | ``foss/2021b`` 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..7cbe9524e --- /dev/null +++ b/docs/version-specific/supported-software/x/xtrans.md @@ -0,0 +1,12 @@ +# 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`` 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..ee11c67bc --- /dev/null +++ b/docs/version-specific/supported-software/x/xxHash.md @@ -0,0 +1,14 @@ +# 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`` 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..796c396d7 --- /dev/null +++ b/docs/version-specific/supported-software/x/xxd.md @@ -0,0 +1,15 @@ +# 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`` 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..fbd689940 --- /dev/null +++ b/docs/version-specific/supported-software/y/YACS.md @@ -0,0 +1,14 @@ +# 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`` 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..cd2f1658c --- /dev/null +++ b/docs/version-specific/supported-software/y/YANK.md @@ -0,0 +1,9 @@ +# 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`` 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..f349e75fe --- /dev/null +++ b/docs/version-specific/supported-software/y/YAPS.md @@ -0,0 +1,10 @@ +# 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`` 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..db0cdd989 --- /dev/null +++ b/docs/version-specific/supported-software/y/YAXT.md @@ -0,0 +1,22 @@ +# 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`` 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..3935f785b --- /dev/null +++ b/docs/version-specific/supported-software/y/YODA.md @@ -0,0 +1,10 @@ +# 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`` 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..243705984 --- /dev/null +++ b/docs/version-specific/supported-software/y/Yade.md @@ -0,0 +1,14 @@ +# 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`` 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..e10eebba3 --- /dev/null +++ b/docs/version-specific/supported-software/y/Yambo.md @@ -0,0 +1,11 @@ +# 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`` 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..f43e61bfc --- /dev/null +++ b/docs/version-specific/supported-software/y/Yasm.md @@ -0,0 +1,28 @@ +# 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`` 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..dfa0f40da --- /dev/null +++ b/docs/version-specific/supported-software/y/Yices.md @@ -0,0 +1,10 @@ +# 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`` 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..1fcbe6007 --- /dev/null +++ b/docs/version-specific/supported-software/y/index.md @@ -0,0 +1,14 @@ +# List of supported software (y) + + * [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) 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..09a6527e3 --- /dev/null +++ b/docs/version-specific/supported-software/y/yaff.md @@ -0,0 +1,25 @@ +# 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`` 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..991ae8e41 --- /dev/null +++ b/docs/version-specific/supported-software/y/yaml-cpp.md @@ -0,0 +1,13 @@ +# 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`` 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..3ac5fa6ec --- /dev/null +++ b/docs/version-specific/supported-software/y/yt.md @@ -0,0 +1,9 @@ +# yt + +yt is an open-source, permissively-licensed python package for analyzing and visualizing volumetric data. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.0`` | ``foss/2022a`` 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..363aac28c --- /dev/null +++ b/docs/version-specific/supported-software/z/Z3.md @@ -0,0 +1,24 @@ +# 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`` 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..49b75760b --- /dev/null +++ b/docs/version-specific/supported-software/z/ZIMPL.md @@ -0,0 +1,9 @@ +# 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`` 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..d8c8a6d77 --- /dev/null +++ b/docs/version-specific/supported-software/z/ZPAQ.md @@ -0,0 +1,9 @@ +# 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`` 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..9e5d399c1 --- /dev/null +++ b/docs/version-specific/supported-software/z/Zeo++.md @@ -0,0 +1,9 @@ +# 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`` 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..837e05752 --- /dev/null +++ b/docs/version-specific/supported-software/z/ZeroMQ.md @@ -0,0 +1,34 @@ +# 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`` 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..adddfc1a2 --- /dev/null +++ b/docs/version-specific/supported-software/z/Zgoubi.md @@ -0,0 +1,9 @@ +# 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`` 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..e817ddeb6 --- /dev/null +++ b/docs/version-specific/supported-software/z/Zip.md @@ -0,0 +1,20 @@ +# 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`` 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..9020b3d0e --- /dev/null +++ b/docs/version-specific/supported-software/z/Zopfli.md @@ -0,0 +1,12 @@ +# 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`` 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..31c0287ca --- /dev/null +++ b/docs/version-specific/supported-software/z/index.md @@ -0,0 +1,20 @@ +# List of supported software (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) 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..d8d6124cd --- /dev/null +++ b/docs/version-specific/supported-software/z/zUMIs.md @@ -0,0 +1,9 @@ +# 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/z/zarr.md b/docs/version-specific/supported-software/z/zarr.md new file mode 100644 index 000000000..380b6ae81 --- /dev/null +++ b/docs/version-specific/supported-software/z/zarr.md @@ -0,0 +1,16 @@ +# 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`` 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..611331ec7 --- /dev/null +++ b/docs/version-specific/supported-software/z/zeus-mcmc.md @@ -0,0 +1,9 @@ +# zeus-mcmc + +Zeus is a Python implementation of the Ensemble Slice Sampling method. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.4`` | ``foss/2022a`` 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..7312f6086 --- /dev/null +++ b/docs/version-specific/supported-software/z/zfp.md @@ -0,0 +1,13 @@ +# 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`` 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..66ce1649a --- /dev/null +++ b/docs/version-specific/supported-software/z/zingeR.md @@ -0,0 +1,9 @@ +# zingeR + +Zero-Inflated Negative binomial Gene Expression in R + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180131`` | ``-R-3.5.1`` | ``foss/2018b`` 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..4dacf71b6 --- /dev/null +++ b/docs/version-specific/supported-software/z/zlib-ng.md @@ -0,0 +1,12 @@ +# 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`` 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..6617610ff --- /dev/null +++ b/docs/version-specific/supported-software/z/zlib.md @@ -0,0 +1,77 @@ +# 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`` 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..ae65fa1fc --- /dev/null +++ b/docs/version-specific/supported-software/z/zlibbioc.md @@ -0,0 +1,10 @@ +# 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`` 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..1579b454a --- /dev/null +++ b/docs/version-specific/supported-software/z/zsh.md @@ -0,0 +1,13 @@ +# 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`` 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..5ce904d7e --- /dev/null +++ b/docs/version-specific/supported-software/z/zstd.md @@ -0,0 +1,22 @@ +# 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`` From 8fa0d7f3cded9dbc194c2616ddf71d7d0c6ef2cb Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 12:16:31 +0100 Subject: [PATCH 04/15] do not spell check software specific pages --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 93aa583d8415fddac2853ee7871179352dd71902 Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 13:50:55 +0100 Subject: [PATCH 05/15] down rank the pages in the search, add in inter page links --- .../software-markdown-pages.py | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py index fa493b402..22c13f75a 100644 --- a/docs/version-specific/software-markdown-pages.py +++ b/docs/version-specific/software-markdown-pages.py @@ -5,9 +5,36 @@ from pathlib import Path +MKDOCS_SEARCH_PRIORITY = """--- +search: + boost: 0.5 +--- +""" + + +def generate_character_links_line(characters, current=None): + """ + Generate links to index page for each character + :param characters: Initial characters to generate links for + """ + links = [] + for c in characters: + if c == current: + links.append(f'*{c}*') + else: + links.append(f"[../{c}/index.md]({c})") + return f"{' - '.join(links)}\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 + """ packages = sum(len(v) for v in processed.values()) top_page = open(output_base_path / 'index.md', 'w') + top_page.write(MKDOCS_SEARCH_PRIORITY) top_page.write("# List of supported software\n\n") top_page.write(f"EasyBuild supports {packages} different software packages (incl. toolchains, bundles):\n\n") @@ -17,7 +44,9 @@ def output_markdown(processed, output_base_path): letter_dir = output_base_path / letter letter_dir.mkdir() letter_page = open(letter_dir / 'index.md', 'w') + letter_page.write(MKDOCS_SEARCH_PRIORITY) letter_page.write(f"# List of supported software ({letter})\n\n") + letter_page.write(generate_character_links_line([v for v in processed], current=letter)) for software in processed[letter]: top_page.write(f" * [{software}]({letter}/{software}.md)\n") @@ -26,6 +55,7 @@ def output_markdown(processed, output_base_path): versionsuffix = any(v['versionsuffix'] for v in processed[letter][software]) software_page = open(letter_dir / f'{software}.md', 'w') + 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") @@ -45,6 +75,8 @@ def output_markdown(processed, output_base_path): software_page.write(" | ") software_page.write(f"``{version['toolchain']}``\n") + software_page.write('\n') + software_page.write(generate_character_links_line([v for v in processed])) software_page.close() letter_page.close() From 97b8ae5287974d396b651efac9f66a64341252e0 Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 13:51:58 +0100 Subject: [PATCH 06/15] update pages for new code --- docs/version-specific/supported-software/0/3d-dna.md | 7 +++++++ docs/version-specific/supported-software/0/3to2.md | 7 +++++++ docs/version-specific/supported-software/0/4ti2.md | 7 +++++++ docs/version-specific/supported-software/0/index.md | 6 ++++++ docs/version-specific/supported-software/a/ABAQUS.md | 7 +++++++ docs/version-specific/supported-software/a/ABINIT.md | 7 +++++++ docs/version-specific/supported-software/a/ABRA2.md | 7 +++++++ docs/version-specific/supported-software/a/ABRicate.md | 7 +++++++ docs/version-specific/supported-software/a/ABySS.md | 7 +++++++ docs/version-specific/supported-software/a/ACTC.md | 7 +++++++ docs/version-specific/supported-software/a/ADDA.md | 7 +++++++ docs/version-specific/supported-software/a/ADF.md | 7 +++++++ docs/version-specific/supported-software/a/ADIOS.md | 7 +++++++ docs/version-specific/supported-software/a/ADMIXTURE.md | 7 +++++++ docs/version-specific/supported-software/a/ADOL-C.md | 7 +++++++ docs/version-specific/supported-software/a/AEDT.md | 7 +++++++ docs/version-specific/supported-software/a/AFNI.md | 7 +++++++ docs/version-specific/supported-software/a/AGAT.md | 7 +++++++ docs/version-specific/supported-software/a/AGFusion.md | 7 +++++++ docs/version-specific/supported-software/a/AGeNT.md | 7 +++++++ docs/version-specific/supported-software/a/AICSImageIO.md | 7 +++++++ docs/version-specific/supported-software/a/AIMAll.md | 7 +++++++ docs/version-specific/supported-software/a/ALADIN.md | 7 +++++++ docs/version-specific/supported-software/a/ALAMODE.md | 7 +++++++ docs/version-specific/supported-software/a/ALFA.md | 7 +++++++ docs/version-specific/supported-software/a/ALL.md | 7 +++++++ docs/version-specific/supported-software/a/ALLPATHS-LG.md | 7 +++++++ docs/version-specific/supported-software/a/ALPS.md | 7 +++++++ docs/version-specific/supported-software/a/AMAPVox.md | 7 +++++++ docs/version-specific/supported-software/a/AMD-LibM.md | 7 +++++++ docs/version-specific/supported-software/a/AMD-RNG.md | 7 +++++++ .../version-specific/supported-software/a/AMD-SecureRNG.md | 7 +++++++ docs/version-specific/supported-software/a/AMD-uProf.md | 7 +++++++ docs/version-specific/supported-software/a/AMGX.md | 7 +++++++ docs/version-specific/supported-software/a/AMICA.md | 7 +++++++ docs/version-specific/supported-software/a/AMOS.md | 7 +++++++ docs/version-specific/supported-software/a/AMPHORA2.md | 7 +++++++ docs/version-specific/supported-software/a/AMPL-MP.md | 7 +++++++ docs/version-specific/supported-software/a/AMPtk.md | 7 +++++++ .../version-specific/supported-software/a/AMRFinderPlus.md | 7 +++++++ docs/version-specific/supported-software/a/AMS.md | 7 +++++++ docs/version-specific/supported-software/a/ANGEL.md | 7 +++++++ .../version-specific/supported-software/a/ANIcalculator.md | 7 +++++++ docs/version-specific/supported-software/a/ANSYS.md | 7 +++++++ docs/version-specific/supported-software/a/ANSYS_CFD.md | 7 +++++++ docs/version-specific/supported-software/a/ANTIC.md | 7 +++++++ docs/version-specific/supported-software/a/ANTLR.md | 7 +++++++ docs/version-specific/supported-software/a/ANTs.md | 7 +++++++ docs/version-specific/supported-software/a/AOCC.md | 7 +++++++ docs/version-specific/supported-software/a/AOFlagger.md | 7 +++++++ docs/version-specific/supported-software/a/AOMP.md | 7 +++++++ docs/version-specific/supported-software/a/APBS.md | 7 +++++++ docs/version-specific/supported-software/a/APR-util.md | 7 +++++++ docs/version-specific/supported-software/a/APR.md | 7 +++++++ docs/version-specific/supported-software/a/ARAGORN.md | 7 +++++++ docs/version-specific/supported-software/a/ARCH.md | 7 +++++++ docs/version-specific/supported-software/a/ARGoS.md | 7 +++++++ docs/version-specific/supported-software/a/ARPACK++.md | 7 +++++++ docs/version-specific/supported-software/a/ART.md | 7 +++++++ docs/version-specific/supported-software/a/ARTS.md | 7 +++++++ docs/version-specific/supported-software/a/ARWEN.md | 7 +++++++ docs/version-specific/supported-software/a/ASAP.md | 7 +++++++ docs/version-specific/supported-software/a/ASAP3.md | 7 +++++++ docs/version-specific/supported-software/a/ASCAT.md | 7 +++++++ docs/version-specific/supported-software/a/ASE.md | 7 +++++++ .../version-specific/supported-software/a/ASF-SearchAPI.md | 7 +++++++ docs/version-specific/supported-software/a/ASHS.md | 7 +++++++ docs/version-specific/supported-software/a/ASTRID.md | 7 +++++++ docs/version-specific/supported-software/a/ATAT.md | 7 +++++++ docs/version-specific/supported-software/a/ATK.md | 7 +++++++ docs/version-specific/supported-software/a/ATLAS.md | 7 +++++++ docs/version-specific/supported-software/a/ATSAS.md | 7 +++++++ docs/version-specific/supported-software/a/AUGUSTUS.md | 7 +++++++ docs/version-specific/supported-software/a/AUTO-07p.md | 7 +++++++ docs/version-specific/supported-software/a/Abseil.md | 7 +++++++ .../supported-software/a/AdapterRemoval.md | 7 +++++++ docs/version-specific/supported-software/a/Advisor.md | 7 +++++++ docs/version-specific/supported-software/a/Albacore.md | 7 +++++++ .../supported-software/a/Albumentations.md | 7 +++++++ docs/version-specific/supported-software/a/Alfred.md | 7 +++++++ docs/version-specific/supported-software/a/Allinea.md | 7 +++++++ docs/version-specific/supported-software/a/Alpha.md | 7 +++++++ docs/version-specific/supported-software/a/AlphaFold.md | 7 +++++++ .../version-specific/supported-software/a/AlphaPulldown.md | 7 +++++++ docs/version-specific/supported-software/a/Amara.md | 7 +++++++ docs/version-specific/supported-software/a/Amber.md | 7 +++++++ docs/version-specific/supported-software/a/AmberMini.md | 7 +++++++ docs/version-specific/supported-software/a/AmberTools.md | 7 +++++++ docs/version-specific/supported-software/a/AmrPlusPlus.md | 7 +++++++ docs/version-specific/supported-software/a/Anaconda2.md | 7 +++++++ docs/version-specific/supported-software/a/Anaconda3.md | 7 +++++++ docs/version-specific/supported-software/a/Annif.md | 7 +++++++ docs/version-specific/supported-software/a/Annocript.md | 7 +++++++ docs/version-specific/supported-software/a/AptaSUITE.md | 7 +++++++ docs/version-specific/supported-software/a/Arb.md | 7 +++++++ .../supported-software/a/Arcade-Learning-Environment.md | 7 +++++++ docs/version-specific/supported-software/a/ArchR.md | 7 +++++++ docs/version-specific/supported-software/a/Archive-Zip.md | 7 +++++++ docs/version-specific/supported-software/a/AreTomo2.md | 7 +++++++ docs/version-specific/supported-software/a/Arlequin.md | 7 +++++++ docs/version-specific/supported-software/a/Armadillo.md | 7 +++++++ docs/version-specific/supported-software/a/ArrayFire.md | 7 +++++++ docs/version-specific/supported-software/a/Arriba.md | 7 +++++++ docs/version-specific/supported-software/a/Arrow.md | 7 +++++++ docs/version-specific/supported-software/a/Artemis.md | 7 +++++++ docs/version-specific/supported-software/a/ArviZ.md | 7 +++++++ docs/version-specific/supported-software/a/Aspera-CLI.md | 7 +++++++ .../supported-software/a/Aspera-Connect.md | 7 +++++++ docs/version-specific/supported-software/a/Assimulo.md | 7 +++++++ docs/version-specific/supported-software/a/AtomPAW.md | 7 +++++++ docs/version-specific/supported-software/a/Austin.md | 7 +++++++ docs/version-specific/supported-software/a/AutoDock-GPU.md | 7 +++++++ .../version-specific/supported-software/a/AutoDock-Vina.md | 7 +++++++ docs/version-specific/supported-software/a/AutoDock.md | 7 +++++++ .../version-specific/supported-software/a/AutoDockSuite.md | 7 +++++++ docs/version-specific/supported-software/a/AutoGeneS.md | 7 +++++++ docs/version-specific/supported-software/a/AutoGrid.md | 7 +++++++ docs/version-specific/supported-software/a/AutoMap.md | 7 +++++++ .../supported-software/a/Autoconf-archive.md | 7 +++++++ docs/version-specific/supported-software/a/Autoconf.md | 7 +++++++ docs/version-specific/supported-software/a/Automake.md | 7 +++++++ docs/version-specific/supported-software/a/Autotools.md | 7 +++++++ docs/version-specific/supported-software/a/Avogadro2.md | 7 +++++++ docs/version-specific/supported-software/a/Ax.md | 7 +++++++ docs/version-specific/supported-software/a/aNCI.md | 7 +++++++ docs/version-specific/supported-software/a/abTEM.md | 7 +++++++ docs/version-specific/supported-software/a/ack.md | 7 +++++++ docs/version-specific/supported-software/a/ada.md | 7 +++++++ docs/version-specific/supported-software/a/adjustText.md | 7 +++++++ docs/version-specific/supported-software/a/affinity.md | 7 +++++++ docs/version-specific/supported-software/a/aiohttp.md | 7 +++++++ docs/version-specific/supported-software/a/alevin-fry.md | 7 +++++++ docs/version-specific/supported-software/a/alleleCount.md | 7 +++++++ .../supported-software/a/alleleIntegrator.md | 7 +++++++ docs/version-specific/supported-software/a/almosthere.md | 7 +++++++ docs/version-specific/supported-software/a/alsa-lib.md | 7 +++++++ docs/version-specific/supported-software/a/amask.md | 7 +++++++ docs/version-specific/supported-software/a/amdahl.md | 7 +++++++ docs/version-specific/supported-software/a/amplimap.md | 7 +++++++ docs/version-specific/supported-software/a/anadama2.md | 7 +++++++ docs/version-specific/supported-software/a/andi.md | 7 +++++++ docs/version-specific/supported-software/a/angsd.md | 7 +++++++ docs/version-specific/supported-software/a/anndata.md | 7 +++++++ docs/version-specific/supported-software/a/annovar.md | 7 +++++++ docs/version-specific/supported-software/a/ant.md | 7 +++++++ docs/version-specific/supported-software/a/antiSMASH.md | 7 +++++++ docs/version-specific/supported-software/a/anvio.md | 7 +++++++ docs/version-specific/supported-software/a/any2fasta.md | 7 +++++++ docs/version-specific/supported-software/a/apex.md | 7 +++++++ docs/version-specific/supported-software/a/arcasHLA.md | 7 +++++++ docs/version-specific/supported-software/a/archspec.md | 7 +++++++ docs/version-specific/supported-software/a/argtable.md | 7 +++++++ docs/version-specific/supported-software/a/aria2.md | 7 +++++++ docs/version-specific/supported-software/a/arosics.md | 7 +++++++ docs/version-specific/supported-software/a/arpack-ng.md | 7 +++++++ docs/version-specific/supported-software/a/arrow-R.md | 7 +++++++ .../supported-software/a/artic-ncov2019.md | 7 +++++++ .../supported-software/a/assembly-stats.md | 7 +++++++ docs/version-specific/supported-software/a/assimp.md | 7 +++++++ docs/version-specific/supported-software/a/astro-tulips.md | 7 +++++++ docs/version-specific/supported-software/a/astropy.md | 7 +++++++ docs/version-specific/supported-software/a/at-spi2-atk.md | 7 +++++++ docs/version-specific/supported-software/a/at-spi2-core.md | 7 +++++++ docs/version-specific/supported-software/a/atomate.md | 7 +++++++ docs/version-specific/supported-software/a/atools.md | 7 +++++++ docs/version-specific/supported-software/a/atropos.md | 7 +++++++ docs/version-specific/supported-software/a/attr.md | 7 +++++++ docs/version-specific/supported-software/a/attrdict.md | 7 +++++++ docs/version-specific/supported-software/a/attrdict3.md | 7 +++++++ docs/version-specific/supported-software/a/augur.md | 7 +++++++ docs/version-specific/supported-software/a/autopep8.md | 7 +++++++ docs/version-specific/supported-software/a/avro-cpp.md | 7 +++++++ docs/version-specific/supported-software/a/awscli.md | 7 +++++++ docs/version-specific/supported-software/a/axel.md | 7 +++++++ docs/version-specific/supported-software/a/index.md | 6 ++++++ .../supported-software/b/BA3-SNPS-autotune.md | 7 +++++++ docs/version-specific/supported-software/b/BAGEL.md | 7 +++++++ docs/version-specific/supported-software/b/BAMM.md | 7 +++++++ docs/version-specific/supported-software/b/BAMSurgeon.md | 7 +++++++ docs/version-specific/supported-software/b/BAli-Phy.md | 7 +++++++ docs/version-specific/supported-software/b/BBMap.md | 7 +++++++ docs/version-specific/supported-software/b/BCALM.md | 7 +++++++ docs/version-specific/supported-software/b/BCEL.md | 7 +++++++ docs/version-specific/supported-software/b/BCFtools.md | 7 +++++++ docs/version-specific/supported-software/b/BDBag.md | 7 +++++++ docs/version-specific/supported-software/b/BEDOPS.md | 7 +++++++ docs/version-specific/supported-software/b/BEDTools.md | 7 +++++++ docs/version-specific/supported-software/b/BEEF.md | 7 +++++++ docs/version-specific/supported-software/b/BFAST.md | 7 +++++++ docs/version-specific/supported-software/b/BFC.md | 7 +++++++ .../supported-software/b/BGC-Bayesian-genomic-clines.md | 7 +++++++ docs/version-specific/supported-software/b/BLACS.md | 7 +++++++ docs/version-specific/supported-software/b/BLASR.md | 7 +++++++ docs/version-specific/supported-software/b/BLAST+.md | 7 +++++++ docs/version-specific/supported-software/b/BLAST.md | 7 +++++++ docs/version-specific/supported-software/b/BLAT.md | 7 +++++++ docs/version-specific/supported-software/b/BLIS.md | 7 +++++++ docs/version-specific/supported-software/b/BLT.md | 7 +++++++ docs/version-specific/supported-software/b/BMTK.md | 7 +++++++ docs/version-specific/supported-software/b/BOINC.md | 7 +++++++ docs/version-specific/supported-software/b/BOPTEST.md | 7 +++++++ docs/version-specific/supported-software/b/BRAKER.md | 7 +++++++ docs/version-specific/supported-software/b/BRiAl.md | 7 +++++++ docs/version-specific/supported-software/b/BSMAPz.md | 7 +++++++ docs/version-specific/supported-software/b/BSseeker2.md | 7 +++++++ docs/version-specific/supported-software/b/BUFRLIB.md | 7 +++++++ docs/version-specific/supported-software/b/BUSCO.md | 7 +++++++ docs/version-specific/supported-software/b/BUStools.md | 7 +++++++ docs/version-specific/supported-software/b/BWA.md | 7 +++++++ docs/version-specific/supported-software/b/BWISE.md | 7 +++++++ .../supported-software/b/BXH_XCEDE_TOOLS.md | 7 +++++++ docs/version-specific/supported-software/b/BabelStream.md | 7 +++++++ docs/version-specific/supported-software/b/Bader.md | 7 +++++++ docs/version-specific/supported-software/b/BamTools.md | 7 +++++++ docs/version-specific/supported-software/b/BamUtil.md | 7 +++++++ docs/version-specific/supported-software/b/Bambi.md | 7 +++++++ docs/version-specific/supported-software/b/Bandage.md | 7 +++++++ docs/version-specific/supported-software/b/Bash.md | 7 +++++++ docs/version-specific/supported-software/b/BatMeth2.md | 7 +++++++ docs/version-specific/supported-software/b/BayeScEnv.md | 7 +++++++ docs/version-specific/supported-software/b/BayeScan.md | 7 +++++++ docs/version-specific/supported-software/b/BayesAss.md | 7 +++++++ .../supported-software/b/BayesAss3-SNPs.md | 7 +++++++ docs/version-specific/supported-software/b/BayesPrism.md | 7 +++++++ docs/version-specific/supported-software/b/BayesTraits.md | 7 +++++++ docs/version-specific/supported-software/b/Bazel.md | 7 +++++++ docs/version-specific/supported-software/b/Beagle.md | 7 +++++++ docs/version-specific/supported-software/b/Beast.md | 7 +++++++ .../version-specific/supported-software/b/BeautifulSoup.md | 7 +++++++ docs/version-specific/supported-software/b/BerkeleyGW.md | 7 +++++++ docs/version-specific/supported-software/b/BgeeCall.md | 7 +++++++ docs/version-specific/supported-software/b/BgeeDB.md | 7 +++++++ docs/version-specific/supported-software/b/BiG-SCAPE.md | 7 +++++++ .../version-specific/supported-software/b/BiasAdjustCXX.md | 7 +++++++ docs/version-specific/supported-software/b/BigDFT.md | 7 +++++++ docs/version-specific/supported-software/b/BinSanity.md | 7 +++++++ docs/version-specific/supported-software/b/Bio-DB-HTS.md | 7 +++++++ .../supported-software/b/Bio-EUtilities.md | 7 +++++++ .../version-specific/supported-software/b/Bio-FeatureIO.md | 7 +++++++ docs/version-specific/supported-software/b/Bio-SamTools.md | 7 +++++++ .../supported-software/b/Bio-SearchIO-hmmer.md | 7 +++++++ docs/version-specific/supported-software/b/BioPP.md | 7 +++++++ docs/version-specific/supported-software/b/BioPerl.md | 7 +++++++ docs/version-specific/supported-software/b/BioServices.md | 7 +++++++ docs/version-specific/supported-software/b/Biopython.md | 7 +++++++ docs/version-specific/supported-software/b/BirdNET.md | 7 +++++++ docs/version-specific/supported-software/b/Bismark.md | 7 +++++++ docs/version-specific/supported-software/b/Bison.md | 7 +++++++ docs/version-specific/supported-software/b/Blender.md | 7 +++++++ docs/version-specific/supported-software/b/Blitz++.md | 7 +++++++ docs/version-specific/supported-software/b/BlobTools.md | 7 +++++++ docs/version-specific/supported-software/b/Block.md | 7 +++++++ docs/version-specific/supported-software/b/Blosc.md | 7 +++++++ docs/version-specific/supported-software/b/Blosc2.md | 7 +++++++ docs/version-specific/supported-software/b/BoltzTraP.md | 7 +++++++ docs/version-specific/supported-software/b/BoltzTraP2.md | 7 +++++++ docs/version-specific/supported-software/b/Bonito.md | 7 +++++++ docs/version-specific/supported-software/b/Bonmin.md | 7 +++++++ docs/version-specific/supported-software/b/Bonnie++.md | 7 +++++++ docs/version-specific/supported-software/b/Boost.MPI.md | 7 +++++++ .../supported-software/b/Boost.Python-NumPy.md | 7 +++++++ docs/version-specific/supported-software/b/Boost.Python.md | 7 +++++++ docs/version-specific/supported-software/b/Boost.md | 7 +++++++ docs/version-specific/supported-software/b/Bottleneck.md | 7 +++++++ docs/version-specific/supported-software/b/Bowtie.md | 7 +++++++ docs/version-specific/supported-software/b/Bowtie2.md | 7 +++++++ docs/version-specific/supported-software/b/Bpipe.md | 7 +++++++ docs/version-specific/supported-software/b/Bracken.md | 7 +++++++ docs/version-specific/supported-software/b/Braindecode.md | 7 +++++++ docs/version-specific/supported-software/b/BreakDancer.md | 7 +++++++ .../version-specific/supported-software/b/Brotli-python.md | 7 +++++++ docs/version-specific/supported-software/b/Brotli.md | 7 +++++++ docs/version-specific/supported-software/b/Brunsli.md | 7 +++++++ docs/version-specific/supported-software/b/Bsoft.md | 7 +++++++ docs/version-specific/supported-software/b/BuDDy.md | 7 +++++++ docs/version-specific/supported-software/b/Bullet.md | 7 +++++++ docs/version-specific/supported-software/b/babl.md | 7 +++++++ .../version-specific/supported-software/b/bam-readcount.md | 7 +++++++ docs/version-specific/supported-software/b/bamFilters.md | 7 +++++++ docs/version-specific/supported-software/b/bamtofastq.md | 7 +++++++ docs/version-specific/supported-software/b/barrnap.md | 7 +++++++ docs/version-specific/supported-software/b/basemap.md | 7 +++++++ docs/version-specific/supported-software/b/bases2fastq.md | 7 +++++++ docs/version-specific/supported-software/b/bashplotlib.md | 7 +++++++ docs/version-specific/supported-software/b/bat.md | 7 +++++++ .../supported-software/b/batchgenerators.md | 7 +++++++ docs/version-specific/supported-software/b/bbFTP.md | 7 +++++++ docs/version-specific/supported-software/b/bbcp.md | 7 +++++++ docs/version-specific/supported-software/b/bc.md | 7 +++++++ docs/version-specific/supported-software/b/bcbio-gff.md | 7 +++++++ docs/version-specific/supported-software/b/bcgTree.md | 7 +++++++ docs/version-specific/supported-software/b/bcl-convert.md | 7 +++++++ docs/version-specific/supported-software/b/bcl2fastq2.md | 7 +++++++ docs/version-specific/supported-software/b/bcolz.md | 7 +++++++ docs/version-specific/supported-software/b/bcrypt.md | 7 +++++++ docs/version-specific/supported-software/b/beagle-lib.md | 7 +++++++ docs/version-specific/supported-software/b/behave.md | 7 +++++++ docs/version-specific/supported-software/b/bench.md | 7 +++++++ docs/version-specific/supported-software/b/bgen-reader.md | 7 +++++++ docs/version-specific/supported-software/b/bgen.md | 7 +++++++ docs/version-specific/supported-software/b/bibtexparser.md | 7 +++++++ docs/version-specific/supported-software/b/binutils.md | 7 +++++++ docs/version-specific/supported-software/b/bioawk.md | 7 +++++++ .../supported-software/b/biobakery-workflows.md | 7 +++++++ docs/version-specific/supported-software/b/biobambam2.md | 7 +++++++ docs/version-specific/supported-software/b/biogeme.md | 7 +++++++ docs/version-specific/supported-software/b/biom-format.md | 7 +++++++ docs/version-specific/supported-software/b/biomart-perl.md | 7 +++++++ docs/version-specific/supported-software/b/biscuit.md | 7 +++++++ docs/version-specific/supported-software/b/bitarray.md | 7 +++++++ docs/version-specific/supported-software/b/bitshuffle.md | 7 +++++++ docs/version-specific/supported-software/b/blasr_libcpp.md | 7 +++++++ docs/version-specific/supported-software/b/bmtagger.md | 7 +++++++ docs/version-specific/supported-software/b/bnpy.md | 7 +++++++ docs/version-specific/supported-software/b/bokeh.md | 7 +++++++ .../supported-software/b/boost_histogram.md | 7 +++++++ docs/version-specific/supported-software/b/boto3.md | 7 +++++++ docs/version-specific/supported-software/b/bpp.md | 7 +++++++ docs/version-specific/supported-software/b/bpytop.md | 7 +++++++ docs/version-specific/supported-software/b/breseq.md | 7 +++++++ docs/version-specific/supported-software/b/bsddb3.md | 7 +++++++ docs/version-specific/supported-software/b/btllib.md | 7 +++++++ docs/version-specific/supported-software/b/build.md | 7 +++++++ docs/version-specific/supported-software/b/buildenv.md | 7 +++++++ docs/version-specific/supported-software/b/buildingspy.md | 7 +++++++ docs/version-specific/supported-software/b/bwa-mem2.md | 7 +++++++ docs/version-specific/supported-software/b/bwa-meth.md | 7 +++++++ docs/version-specific/supported-software/b/bwakit.md | 7 +++++++ docs/version-specific/supported-software/b/bwidget.md | 7 +++++++ docs/version-specific/supported-software/b/bx-python.md | 7 +++++++ docs/version-specific/supported-software/b/byacc.md | 7 +++++++ docs/version-specific/supported-software/b/byobu.md | 7 +++++++ docs/version-specific/supported-software/b/bzip2.md | 7 +++++++ docs/version-specific/supported-software/b/index.md | 6 ++++++ docs/version-specific/supported-software/c/C3D.md | 7 +++++++ docs/version-specific/supported-software/c/CAFE5.md | 7 +++++++ docs/version-specific/supported-software/c/CAMPARI.md | 7 +++++++ docs/version-specific/supported-software/c/CAP3.md | 7 +++++++ docs/version-specific/supported-software/c/CASA.md | 7 +++++++ docs/version-specific/supported-software/c/CASPR.md | 7 +++++++ docs/version-specific/supported-software/c/CASTEP.md | 7 +++++++ docs/version-specific/supported-software/c/CAT-BAT.md | 7 +++++++ docs/version-specific/supported-software/c/CAVIAR.md | 7 +++++++ docs/version-specific/supported-software/c/CBLAS.md | 7 +++++++ docs/version-specific/supported-software/c/CCCL.md | 7 +++++++ docs/version-specific/supported-software/c/CCL.md | 7 +++++++ docs/version-specific/supported-software/c/CCfits.md | 7 +++++++ docs/version-specific/supported-software/c/CD-HIT.md | 7 +++++++ docs/version-specific/supported-software/c/CDAT.md | 7 +++++++ docs/version-specific/supported-software/c/CDBtools.md | 7 +++++++ docs/version-specific/supported-software/c/CDFlib.md | 7 +++++++ docs/version-specific/supported-software/c/CDO.md | 7 +++++++ docs/version-specific/supported-software/c/CENSO.md | 7 +++++++ docs/version-specific/supported-software/c/CESM-deps.md | 7 +++++++ .../version-specific/supported-software/c/CFDEMcoupling.md | 7 +++++++ docs/version-specific/supported-software/c/CFITSIO.md | 7 +++++++ docs/version-specific/supported-software/c/CGAL.md | 7 +++++++ docs/version-specific/supported-software/c/CGNS.md | 7 +++++++ docs/version-specific/supported-software/c/CGmapTools.md | 7 +++++++ docs/version-specific/supported-software/c/CHASE.md | 7 +++++++ docs/version-specific/supported-software/c/CHERAB.md | 7 +++++++ docs/version-specific/supported-software/c/CIF2Cell.md | 7 +++++++ docs/version-specific/supported-software/c/CIRCexplorer.md | 7 +++++++ .../version-specific/supported-software/c/CIRCexplorer2.md | 7 +++++++ docs/version-specific/supported-software/c/CIRI-long.md | 7 +++++++ docs/version-specific/supported-software/c/CIRI.md | 7 +++++++ docs/version-specific/supported-software/c/CIRIquant.md | 7 +++++++ .../supported-software/c/CITE-seq-Count.md | 7 +++++++ docs/version-specific/supported-software/c/CLAPACK.md | 7 +++++++ docs/version-specific/supported-software/c/CLEAR.md | 7 +++++++ docs/version-specific/supported-software/c/CLEASE.md | 7 +++++++ docs/version-specific/supported-software/c/CLHEP.md | 7 +++++++ docs/version-specific/supported-software/c/CLIP.md | 7 +++++++ docs/version-specific/supported-software/c/CLISP.md | 7 +++++++ docs/version-specific/supported-software/c/CLooG.md | 7 +++++++ docs/version-specific/supported-software/c/CMAverse.md | 7 +++++++ docs/version-specific/supported-software/c/CMSeq.md | 7 +++++++ docs/version-specific/supported-software/c/CMake.md | 7 +++++++ docs/version-specific/supported-software/c/CNT-ILP.md | 7 +++++++ docs/version-specific/supported-software/c/CNVkit.md | 7 +++++++ docs/version-specific/supported-software/c/CNVnator.md | 7 +++++++ docs/version-specific/supported-software/c/COBRApy.md | 7 +++++++ docs/version-specific/supported-software/c/CODEX2.md | 7 +++++++ docs/version-specific/supported-software/c/COMEBin.md | 7 +++++++ docs/version-specific/supported-software/c/COMSOL.md | 7 +++++++ docs/version-specific/supported-software/c/CONCOCT.md | 7 +++++++ docs/version-specific/supported-software/c/CONN.md | 7 +++++++ docs/version-specific/supported-software/c/CP2K.md | 7 +++++++ docs/version-specific/supported-software/c/CPB.md | 7 +++++++ docs/version-specific/supported-software/c/CPC2.md | 7 +++++++ docs/version-specific/supported-software/c/CPLEX.md | 7 +++++++ docs/version-specific/supported-software/c/CPMD.md | 7 +++++++ docs/version-specific/supported-software/c/CPPE.md | 7 +++++++ docs/version-specific/supported-software/c/CREST.md | 7 +++++++ docs/version-specific/supported-software/c/CRF++.md | 7 +++++++ docs/version-specific/supported-software/c/CRISPR-DAV.md | 7 +++++++ docs/version-specific/supported-software/c/CRISPResso2.md | 7 +++++++ docs/version-specific/supported-software/c/CRPropa.md | 7 +++++++ docs/version-specific/supported-software/c/CSB.md | 7 +++++++ docs/version-specific/supported-software/c/CSBDeep.md | 7 +++++++ docs/version-specific/supported-software/c/CSBLAST.md | 7 +++++++ docs/version-specific/supported-software/c/CTPL.md | 7 +++++++ docs/version-specific/supported-software/c/CUDA-Samples.md | 7 +++++++ docs/version-specific/supported-software/c/CUDA.md | 7 +++++++ docs/version-specific/supported-software/c/CUDAcompat.md | 7 +++++++ docs/version-specific/supported-software/c/CUDAcore.md | 7 +++++++ docs/version-specific/supported-software/c/CUDD.md | 7 +++++++ docs/version-specific/supported-software/c/CUTLASS.md | 7 +++++++ docs/version-specific/supported-software/c/CUnit.md | 7 +++++++ docs/version-specific/supported-software/c/CVX.md | 7 +++++++ docs/version-specific/supported-software/c/CVXOPT.md | 7 +++++++ docs/version-specific/supported-software/c/CVXPY.md | 7 +++++++ docs/version-specific/supported-software/c/CVglasso.md | 7 +++++++ docs/version-specific/supported-software/c/CWIPI.md | 7 +++++++ docs/version-specific/supported-software/c/CaDiCaL.md | 7 +++++++ docs/version-specific/supported-software/c/CaSpER.md | 7 +++++++ docs/version-specific/supported-software/c/CaVEMan.md | 7 +++++++ docs/version-specific/supported-software/c/Caffe.md | 7 +++++++ docs/version-specific/supported-software/c/Calcam.md | 7 +++++++ .../supported-software/c/CalculiX-CrunchiX.md | 7 +++++++ docs/version-specific/supported-software/c/Calendrical.md | 7 +++++++ docs/version-specific/supported-software/c/Calib.md | 7 +++++++ docs/version-specific/supported-software/c/Cantera.md | 7 +++++++ docs/version-specific/supported-software/c/Canvas.md | 7 +++++++ docs/version-specific/supported-software/c/CapnProto.md | 7 +++++++ docs/version-specific/supported-software/c/Cargo.md | 7 +++++++ docs/version-specific/supported-software/c/Carma.md | 7 +++++++ docs/version-specific/supported-software/c/Cartopy.md | 7 +++++++ docs/version-specific/supported-software/c/Casanovo.md | 7 +++++++ docs/version-specific/supported-software/c/Cassiopeia.md | 7 +++++++ docs/version-specific/supported-software/c/CastXML.md | 7 +++++++ docs/version-specific/supported-software/c/CatBoost.md | 7 +++++++ docs/version-specific/supported-software/c/CatLearn.md | 7 +++++++ docs/version-specific/supported-software/c/CatMAP.md | 7 +++++++ docs/version-specific/supported-software/c/Catch2.md | 7 +++++++ docs/version-specific/supported-software/c/Cbc.md | 7 +++++++ docs/version-specific/supported-software/c/CellBender.md | 7 +++++++ docs/version-specific/supported-software/c/CellChat.md | 7 +++++++ docs/version-specific/supported-software/c/CellMix.md | 7 +++++++ docs/version-specific/supported-software/c/CellOracle.md | 7 +++++++ .../supported-software/c/CellRanger-ARC.md | 7 +++++++ .../supported-software/c/CellRanger-ATAC.md | 7 +++++++ docs/version-specific/supported-software/c/CellRanger.md | 7 +++++++ docs/version-specific/supported-software/c/CellRank.md | 7 +++++++ docs/version-specific/supported-software/c/CellTypist.md | 7 +++++++ docs/version-specific/supported-software/c/Cellpose.md | 7 +++++++ docs/version-specific/supported-software/c/Centrifuge.md | 7 +++++++ docs/version-specific/supported-software/c/Cereal.md | 7 +++++++ docs/version-specific/supported-software/c/Cgl.md | 7 +++++++ docs/version-specific/supported-software/c/ChIPseeker.md | 7 +++++++ docs/version-specific/supported-software/c/CharLS.md | 7 +++++++ docs/version-specific/supported-software/c/CheMPS2.md | 7 +++++++ docs/version-specific/supported-software/c/Check.md | 7 +++++++ .../supported-software/c/CheckM-Database.md | 7 +++++++ docs/version-specific/supported-software/c/CheckM.md | 7 +++++++ docs/version-specific/supported-software/c/CheckM2.md | 7 +++++++ docs/version-specific/supported-software/c/Cheetah.md | 7 +++++++ .../supported-software/c/Chemaxon-Marvin.md | 7 +++++++ docs/version-specific/supported-software/c/ChimPipe.md | 7 +++++++ docs/version-specific/supported-software/c/Chimera.md | 7 +++++++ docs/version-specific/supported-software/c/Chromaprint.md | 7 +++++++ docs/version-specific/supported-software/c/Circlator.md | 7 +++++++ docs/version-specific/supported-software/c/Circos.md | 7 +++++++ docs/version-specific/supported-software/c/Circuitscape.md | 7 +++++++ docs/version-specific/supported-software/c/Clair3.md | 7 +++++++ docs/version-specific/supported-software/c/Clang-AOMP.md | 7 +++++++ .../supported-software/c/Clang-Python-bindings.md | 7 +++++++ docs/version-specific/supported-software/c/Clang.md | 7 +++++++ docs/version-specific/supported-software/c/Clarabel.rs.md | 7 +++++++ docs/version-specific/supported-software/c/CliMetLab.md | 7 +++++++ .../version-specific/supported-software/c/ClonalFrameML.md | 7 +++++++ docs/version-specific/supported-software/c/CloudCompare.md | 7 +++++++ docs/version-specific/supported-software/c/Clp.md | 7 +++++++ .../version-specific/supported-software/c/Clustal-Omega.md | 7 +++++++ docs/version-specific/supported-software/c/ClustalW2.md | 7 +++++++ .../supported-software/c/Cluster-Buster.md | 7 +++++++ docs/version-specific/supported-software/c/ClusterShell.md | 7 +++++++ docs/version-specific/supported-software/c/CmdStanR.md | 7 +++++++ docs/version-specific/supported-software/c/Co-phylog.md | 7 +++++++ docs/version-specific/supported-software/c/CoCoALib.md | 7 +++++++ docs/version-specific/supported-software/c/CoSymLib.md | 7 +++++++ docs/version-specific/supported-software/c/CodAn.md | 7 +++++++ docs/version-specific/supported-software/c/CodingQuarry.md | 7 +++++++ docs/version-specific/supported-software/c/Cogent.md | 7 +++++++ docs/version-specific/supported-software/c/Coin.md | 7 +++++++ docs/version-specific/supported-software/c/CoinUtils.md | 7 +++++++ docs/version-specific/supported-software/c/ColabFold.md | 7 +++++++ docs/version-specific/supported-software/c/Commet.md | 7 +++++++ docs/version-specific/supported-software/c/CompareM.md | 7 +++++++ docs/version-specific/supported-software/c/Compass.md | 7 +++++++ .../supported-software/c/Compress-Raw-Zlib.md | 7 +++++++ docs/version-specific/supported-software/c/Con3F.md | 7 +++++++ docs/version-specific/supported-software/c/Concorde.md | 7 +++++++ .../supported-software/c/ConcurrentVersionsSystem.md | 7 +++++++ .../supported-software/c/ConnectomeWorkbench.md | 7 +++++++ .../version-specific/supported-software/c/Control-FREEC.md | 7 +++++++ docs/version-specific/supported-software/c/CoordgenLibs.md | 7 +++++++ docs/version-specific/supported-software/c/Coot.md | 7 +++++++ docs/version-specific/supported-software/c/CopyKAT.md | 7 +++++++ docs/version-specific/supported-software/c/Coreutils.md | 7 +++++++ .../supported-software/c/CppHeaderParser.md | 7 +++++++ docs/version-specific/supported-software/c/CppUnit.md | 7 +++++++ docs/version-specific/supported-software/c/CrayCCE.md | 7 +++++++ docs/version-specific/supported-software/c/CrayGNU.md | 7 +++++++ docs/version-specific/supported-software/c/CrayIntel.md | 7 +++++++ docs/version-specific/supported-software/c/CrayPGI.md | 7 +++++++ docs/version-specific/supported-software/c/CrossMap.md | 7 +++++++ docs/version-specific/supported-software/c/CrossTalkZ.md | 7 +++++++ docs/version-specific/supported-software/c/Crumble.md | 7 +++++++ .../version-specific/supported-software/c/CryptoMiniSat.md | 7 +++++++ docs/version-specific/supported-software/c/CrystFEL.md | 7 +++++++ docs/version-specific/supported-software/c/CuCLARK.md | 7 +++++++ docs/version-specific/supported-software/c/CuPy.md | 7 +++++++ docs/version-specific/supported-software/c/Cube.md | 7 +++++++ docs/version-specific/supported-software/c/CubeGUI.md | 7 +++++++ docs/version-specific/supported-software/c/CubeLib.md | 7 +++++++ docs/version-specific/supported-software/c/CubeWriter.md | 7 +++++++ docs/version-specific/supported-software/c/Cufflinks.md | 7 +++++++ docs/version-specific/supported-software/c/Cython.md | 7 +++++++ docs/version-specific/supported-software/c/Cytoscape.md | 7 +++++++ docs/version-specific/supported-software/c/c-ares.md | 7 +++++++ docs/version-specific/supported-software/c/cDNA_Cupcake.md | 7 +++++++ docs/version-specific/supported-software/c/cURL.md | 7 +++++++ docs/version-specific/supported-software/c/cadaver.md | 7 +++++++ docs/version-specific/supported-software/c/cairo.md | 7 +++++++ docs/version-specific/supported-software/c/cairomm.md | 7 +++++++ docs/version-specific/supported-software/c/canu.md | 7 +++++++ docs/version-specific/supported-software/c/captum.md | 7 +++++++ docs/version-specific/supported-software/c/carputils.md | 7 +++++++ docs/version-specific/supported-software/c/casacore.md | 7 +++++++ docs/version-specific/supported-software/c/castor.md | 7 +++++++ .../supported-software/c/category_encoders.md | 7 +++++++ docs/version-specific/supported-software/c/causallift.md | 7 +++++++ docs/version-specific/supported-software/c/causalml.md | 7 +++++++ docs/version-specific/supported-software/c/ccache.md | 7 +++++++ docs/version-specific/supported-software/c/cclib.md | 7 +++++++ docs/version-specific/supported-software/c/cctbx-base.md | 7 +++++++ docs/version-specific/supported-software/c/cctools.md | 7 +++++++ docs/version-specific/supported-software/c/cdbfasta.md | 7 +++++++ docs/version-specific/supported-software/c/cddlib.md | 7 +++++++ docs/version-specific/supported-software/c/cdo-bindings.md | 7 +++++++ docs/version-specific/supported-software/c/cdsapi.md | 7 +++++++ .../version-specific/supported-software/c/cell2location.md | 7 +++++++ docs/version-specific/supported-software/c/centerline.md | 7 +++++++ docs/version-specific/supported-software/c/cffi.md | 7 +++++++ docs/version-specific/supported-software/c/cftime.md | 7 +++++++ docs/version-specific/supported-software/c/cget.md | 7 +++++++ docs/version-specific/supported-software/c/charm-gems.md | 7 +++++++ docs/version-specific/supported-software/c/chemprop.md | 7 +++++++ docs/version-specific/supported-software/c/chewBBACA.md | 7 +++++++ docs/version-specific/supported-software/c/chi2comb.md | 7 +++++++ .../supported-software/c/chromVARmotifs.md | 7 +++++++ docs/version-specific/supported-software/c/cicero.md | 7 +++++++ docs/version-specific/supported-software/c/cimfomfa.md | 7 +++++++ docs/version-specific/supported-software/c/cisTEM.md | 7 +++++++ docs/version-specific/supported-software/c/cliquer.md | 7 +++++++ docs/version-specific/supported-software/c/cmocean.md | 7 +++++++ docs/version-specific/supported-software/c/cmph.md | 7 +++++++ docs/version-specific/supported-software/c/code-cli.md | 7 +++++++ docs/version-specific/supported-software/c/code-server.md | 7 +++++++ docs/version-specific/supported-software/c/colossalai.md | 7 +++++++ docs/version-specific/supported-software/c/conan.md | 7 +++++++ docs/version-specific/supported-software/c/configparser.md | 7 +++++++ .../supported-software/c/configurable-http-proxy.md | 7 +++++++ .../supported-software/c/connected-components-3d.md | 7 +++++++ docs/version-specific/supported-software/c/contextily.md | 7 +++++++ docs/version-specific/supported-software/c/cooler.md | 7 +++++++ docs/version-specific/supported-software/c/core-counter.md | 7 +++++++ docs/version-specific/supported-software/c/corner.md | 7 +++++++ docs/version-specific/supported-software/c/coverage.md | 7 +++++++ docs/version-specific/supported-software/c/cowsay.md | 7 +++++++ docs/version-specific/supported-software/c/cpio.md | 7 +++++++ docs/version-specific/supported-software/c/cppy.md | 7 +++++++ docs/version-specific/supported-software/c/cppyy.md | 7 +++++++ docs/version-specific/supported-software/c/cppzmq.md | 7 +++++++ docs/version-specific/supported-software/c/cpu_features.md | 7 +++++++ docs/version-specific/supported-software/c/cram.md | 7 +++++++ docs/version-specific/supported-software/c/cramtools.md | 7 +++++++ docs/version-specific/supported-software/c/crb-blast.md | 7 +++++++ docs/version-specific/supported-software/c/cromwell.md | 7 +++++++ docs/version-specific/supported-software/c/crossguid.md | 7 +++++++ docs/version-specific/supported-software/c/cryoCARE.md | 7 +++++++ docs/version-specific/supported-software/c/cryoDRGN.md | 7 +++++++ docs/version-specific/supported-software/c/cryptography.md | 7 +++++++ docs/version-specific/supported-software/c/cscope.md | 7 +++++++ docs/version-specific/supported-software/c/csvkit.md | 7 +++++++ docs/version-specific/supported-software/c/ctags.md | 7 +++++++ docs/version-specific/supported-software/c/ctffind.md | 7 +++++++ docs/version-specific/supported-software/c/ctffind5.md | 7 +++++++ docs/version-specific/supported-software/c/cuDNN.md | 7 +++++++ docs/version-specific/supported-software/c/cuSPARSELt.md | 7 +++++++ docs/version-specific/supported-software/c/cuTENSOR.md | 7 +++++++ docs/version-specific/supported-software/c/currentNe.md | 7 +++++++ docs/version-specific/supported-software/c/custodian.md | 7 +++++++ docs/version-specific/supported-software/c/cutadapt.md | 7 +++++++ docs/version-specific/supported-software/c/cuteSV.md | 7 +++++++ docs/version-specific/supported-software/c/cwltool.md | 7 +++++++ docs/version-specific/supported-software/c/cxxopts.md | 7 +++++++ docs/version-specific/supported-software/c/cysignals.md | 7 +++++++ docs/version-specific/supported-software/c/cython-blis.md | 7 +++++++ docs/version-specific/supported-software/c/cytoolz.md | 7 +++++++ docs/version-specific/supported-software/c/cytosim.md | 7 +++++++ docs/version-specific/supported-software/c/cyvcf2.md | 7 +++++++ docs/version-specific/supported-software/c/index.md | 6 ++++++ docs/version-specific/supported-software/d/DALI.md | 7 +++++++ docs/version-specific/supported-software/d/DANPOS2.md | 7 +++++++ docs/version-specific/supported-software/d/DAS_Tool.md | 7 +++++++ docs/version-specific/supported-software/d/DB.md | 7 +++++++ docs/version-specific/supported-software/d/DBCSR.md | 7 +++++++ docs/version-specific/supported-software/d/DBD-mysql.md | 7 +++++++ docs/version-specific/supported-software/d/DBG2OLC.md | 7 +++++++ docs/version-specific/supported-software/d/DB_File.md | 7 +++++++ docs/version-specific/supported-software/d/DBus.md | 7 +++++++ docs/version-specific/supported-software/d/DCMTK.md | 7 +++++++ docs/version-specific/supported-software/d/DEICODE.md | 7 +++++++ docs/version-specific/supported-software/d/DETONATE.md | 7 +++++++ docs/version-specific/supported-software/d/DFA.md | 7 +++++++ docs/version-specific/supported-software/d/DFT-D3.md | 7 +++++++ docs/version-specific/supported-software/d/DFT-D4.md | 7 +++++++ docs/version-specific/supported-software/d/DFTB+.md | 7 +++++++ docs/version-specific/supported-software/d/DGL.md | 7 +++++++ docs/version-specific/supported-software/d/DIA-NN.md | 7 +++++++ docs/version-specific/supported-software/d/DIAL.md | 7 +++++++ docs/version-specific/supported-software/d/DIALOGUE.md | 7 +++++++ docs/version-specific/supported-software/d/DIAMOND.md | 7 +++++++ docs/version-specific/supported-software/d/DIRAC.md | 7 +++++++ docs/version-specific/supported-software/d/DLPack.md | 7 +++++++ docs/version-specific/supported-software/d/DL_POLY_4.md | 7 +++++++ .../supported-software/d/DL_POLY_Classic.md | 7 +++++++ docs/version-specific/supported-software/d/DMCfun.md | 7 +++++++ docs/version-specific/supported-software/d/DMLC-Core.md | 7 +++++++ docs/version-specific/supported-software/d/DMTCP.md | 7 +++++++ docs/version-specific/supported-software/d/DOLFIN.md | 7 +++++++ docs/version-specific/supported-software/d/DP3.md | 7 +++++++ docs/version-specific/supported-software/d/DRAGMAP.md | 7 +++++++ docs/version-specific/supported-software/d/DROP.md | 7 +++++++ docs/version-specific/supported-software/d/DSA.md | 7 +++++++ docs/version-specific/supported-software/d/DSRC.md | 7 +++++++ docs/version-specific/supported-software/d/DUBStepR.md | 7 +++++++ docs/version-specific/supported-software/d/Dakota.md | 7 +++++++ docs/version-specific/supported-software/d/DaliLite.md | 7 +++++++ docs/version-specific/supported-software/d/Dalton.md | 7 +++++++ docs/version-specific/supported-software/d/DeMixT.md | 7 +++++++ docs/version-specific/supported-software/d/DeconICA.md | 7 +++++++ docs/version-specific/supported-software/d/DeepLabCut.md | 7 +++++++ docs/version-specific/supported-software/d/DeepLoc.md | 7 +++++++ docs/version-specific/supported-software/d/DeepMod2.md | 7 +++++++ docs/version-specific/supported-software/d/DeepSurv.md | 7 +++++++ docs/version-specific/supported-software/d/Delft3D.md | 7 +++++++ docs/version-specific/supported-software/d/Delly.md | 7 +++++++ docs/version-specific/supported-software/d/DeltaLake.md | 7 +++++++ docs/version-specific/supported-software/d/Demystify.md | 7 +++++++ docs/version-specific/supported-software/d/DendroPy.md | 7 +++++++ docs/version-specific/supported-software/d/DensPart.md | 7 +++++++ docs/version-specific/supported-software/d/Deprecated.md | 7 +++++++ docs/version-specific/supported-software/d/Detectron2.md | 7 +++++++ docs/version-specific/supported-software/d/Devito.md | 7 +++++++ docs/version-specific/supported-software/d/DiCE-ML.md | 7 +++++++ docs/version-specific/supported-software/d/Dice.md | 7 +++++++ docs/version-specific/supported-software/d/DicomBrowser.md | 7 +++++++ docs/version-specific/supported-software/d/DiffBind.md | 7 +++++++ docs/version-specific/supported-software/d/Diffutils.md | 7 +++++++ .../supported-software/d/DistributedStream.md | 7 +++++++ docs/version-specific/supported-software/d/DjVuLibre.md | 7 +++++++ docs/version-specific/supported-software/d/Doris.md | 7 +++++++ .../supported-software/d/DosageConvertor.md | 7 +++++++ .../version-specific/supported-software/d/DoubletFinder.md | 7 +++++++ docs/version-specific/supported-software/d/Doxygen.md | 7 +++++++ docs/version-specific/supported-software/d/Drake.md | 7 +++++++ docs/version-specific/supported-software/d/Dsuite.md | 7 +++++++ docs/version-specific/supported-software/d/DualSPHysics.md | 7 +++++++ docs/version-specific/supported-software/d/DyMat.md | 7 +++++++ docs/version-specific/supported-software/d/dRep.md | 7 +++++++ docs/version-specific/supported-software/d/dSFMT.md | 7 +++++++ docs/version-specific/supported-software/d/dadi.md | 7 +++++++ docs/version-specific/supported-software/d/dagitty.md | 7 +++++++ docs/version-specific/supported-software/d/damageproto.md | 7 +++++++ docs/version-specific/supported-software/d/dammit.md | 7 +++++++ .../supported-software/d/dask-labextension.md | 7 +++++++ docs/version-specific/supported-software/d/dask.md | 7 +++++++ docs/version-specific/supported-software/d/datalad.md | 7 +++++++ docs/version-specific/supported-software/d/datamash.md | 7 +++++++ docs/version-specific/supported-software/d/davix.md | 7 +++++++ docs/version-specific/supported-software/d/dbus-glib.md | 7 +++++++ docs/version-specific/supported-software/d/dclone.md | 7 +++++++ docs/version-specific/supported-software/d/dcm2niix.md | 7 +++++++ docs/version-specific/supported-software/d/dd.md | 7 +++++++ docs/version-specific/supported-software/d/deal.II.md | 7 +++++++ docs/version-specific/supported-software/d/deap.md | 7 +++++++ docs/version-specific/supported-software/d/decona.md | 7 +++++++ docs/version-specific/supported-software/d/deconf.md | 7 +++++++ docs/version-specific/supported-software/d/deepTools.md | 7 +++++++ docs/version-specific/supported-software/d/deepdiff.md | 7 +++++++ docs/version-specific/supported-software/d/deepfold.md | 7 +++++++ docs/version-specific/supported-software/d/deepmedic.md | 7 +++++++ docs/version-specific/supported-software/d/denseweight.md | 7 +++++++ .../supported-software/d/desktop-file-utils.md | 7 +++++++ docs/version-specific/supported-software/d/destiny.md | 7 +++++++ .../version-specific/supported-software/d/devbio-napari.md | 7 +++++++ docs/version-specific/supported-software/d/dftd3-lib.md | 7 +++++++ docs/version-specific/supported-software/d/dftd4.md | 7 +++++++ docs/version-specific/supported-software/d/dialog.md | 7 +++++++ docs/version-specific/supported-software/d/dicom2nifti.md | 7 +++++++ docs/version-specific/supported-software/d/dijitso.md | 7 +++++++ docs/version-specific/supported-software/d/dill.md | 7 +++++++ docs/version-specific/supported-software/d/distributed.md | 7 +++++++ docs/version-specific/supported-software/d/dlb.md | 7 +++++++ docs/version-specific/supported-software/d/dlib.md | 7 +++++++ docs/version-specific/supported-software/d/dm-haiku.md | 7 +++++++ docs/version-specific/supported-software/d/dm-reverb.md | 7 +++++++ docs/version-specific/supported-software/d/dm-tree.md | 7 +++++++ docs/version-specific/supported-software/d/dominate.md | 7 +++++++ docs/version-specific/supported-software/d/dorado.md | 7 +++++++ .../supported-software/d/dotNET-Core-Runtime.md | 7 +++++++ docs/version-specific/supported-software/d/dotNET-Core.md | 7 +++++++ docs/version-specific/supported-software/d/dotNET-SDK.md | 7 +++++++ .../supported-software/d/double-conversion.md | 7 +++++++ docs/version-specific/supported-software/d/drmaa-python.md | 7 +++++++ docs/version-specific/supported-software/d/dropEst.md | 7 +++++++ docs/version-specific/supported-software/d/dtcmp.md | 7 +++++++ docs/version-specific/supported-software/d/dtcwt.md | 7 +++++++ docs/version-specific/supported-software/d/dune-core.md | 7 +++++++ docs/version-specific/supported-software/d/dune-fem.md | 7 +++++++ docs/version-specific/supported-software/d/duplex-tools.md | 7 +++++++ docs/version-specific/supported-software/d/dx-toolkit.md | 7 +++++++ docs/version-specific/supported-software/d/dxpy.md | 7 +++++++ docs/version-specific/supported-software/d/dynesty.md | 7 +++++++ docs/version-specific/supported-software/d/index.md | 6 ++++++ docs/version-specific/supported-software/e/E-ANTIC.md | 7 +++++++ docs/version-specific/supported-software/e/ECL.md | 7 +++++++ docs/version-specific/supported-software/e/ED2.md | 7 +++++++ docs/version-specific/supported-software/e/EDirect.md | 7 +++++++ docs/version-specific/supported-software/e/EGTtools.md | 7 +++++++ docs/version-specific/supported-software/e/EIGENSOFT.md | 7 +++++++ docs/version-specific/supported-software/e/ELFIO.md | 7 +++++++ docs/version-specific/supported-software/e/ELPA.md | 7 +++++++ docs/version-specific/supported-software/e/ELPH.md | 7 +++++++ docs/version-specific/supported-software/e/ELSI-RCI.md | 7 +++++++ docs/version-specific/supported-software/e/ELSI.md | 7 +++++++ docs/version-specific/supported-software/e/EMAN2.md | 7 +++++++ docs/version-specific/supported-software/e/EMBOSS.md | 7 +++++++ docs/version-specific/supported-software/e/EMU.md | 7 +++++++ docs/version-specific/supported-software/e/EPD.md | 7 +++++++ docs/version-specific/supported-software/e/EPIC.md | 7 +++++++ docs/version-specific/supported-software/e/ESL-Bundle.md | 7 +++++++ docs/version-specific/supported-software/e/ESM-2.md | 7 +++++++ docs/version-specific/supported-software/e/ESMF.md | 7 +++++++ docs/version-specific/supported-software/e/ESMPy.md | 7 +++++++ docs/version-specific/supported-software/e/ESMValTool.md | 7 +++++++ docs/version-specific/supported-software/e/ESPResSo.md | 7 +++++++ docs/version-specific/supported-software/e/ETE.md | 7 +++++++ docs/version-specific/supported-software/e/ETSF_IO.md | 7 +++++++ docs/version-specific/supported-software/e/EUKulele.md | 7 +++++++ docs/version-specific/supported-software/e/EVcouplings.md | 7 +++++++ docs/version-specific/supported-software/e/EZC3D.md | 7 +++++++ docs/version-specific/supported-software/e/EasyBuild.md | 7 +++++++ docs/version-specific/supported-software/e/EasyMocap.md | 7 +++++++ docs/version-specific/supported-software/e/EasyQC.md | 7 +++++++ docs/version-specific/supported-software/e/EggLib.md | 7 +++++++ docs/version-specific/supported-software/e/Eigen.md | 7 +++++++ docs/version-specific/supported-software/e/EigenExa.md | 7 +++++++ docs/version-specific/supported-software/e/Elk.md | 7 +++++++ docs/version-specific/supported-software/e/Elmer.md | 7 +++++++ docs/version-specific/supported-software/e/Emacs.md | 7 +++++++ docs/version-specific/supported-software/e/Embree.md | 7 +++++++ docs/version-specific/supported-software/e/EnergyPlus.md | 7 +++++++ .../supported-software/e/EnsEMBLCoreAPI.md | 7 +++++++ docs/version-specific/supported-software/e/EpiSCORE.md | 7 +++++++ docs/version-specific/supported-software/e/EricScript.md | 7 +++++++ docs/version-specific/supported-software/e/Essentia.md | 7 +++++++ docs/version-specific/supported-software/e/Evcxr-REPL.md | 7 +++++++ docs/version-specific/supported-software/e/EveryBeam.md | 7 +++++++ .../supported-software/e/EvidentialGene.md | 7 +++++++ docs/version-specific/supported-software/e/ExaBayes.md | 7 +++++++ docs/version-specific/supported-software/e/ExaML.md | 7 +++++++ .../supported-software/e/Excel-Writer-XLSX.md | 7 +++++++ docs/version-specific/supported-software/e/ExifTool.md | 7 +++++++ docs/version-specific/supported-software/e/Exonerate.md | 7 +++++++ .../supported-software/e/ExpressBetaDiversity.md | 7 +++++++ docs/version-specific/supported-software/e/Extrae.md | 7 +++++++ docs/version-specific/supported-software/e/ExtremeLy.md | 7 +++++++ docs/version-specific/supported-software/e/e3nn.md | 7 +++++++ docs/version-specific/supported-software/e/eQuilibrator.md | 7 +++++++ docs/version-specific/supported-software/e/eSpeak-NG.md | 7 +++++++ docs/version-specific/supported-software/e/eXpress.md | 7 +++++++ docs/version-specific/supported-software/e/ea-utils.md | 7 +++++++ .../supported-software/e/earthengine-api.md | 7 +++++++ docs/version-specific/supported-software/e/easel.md | 7 +++++++ docs/version-specific/supported-software/e/ebGSEA.md | 7 +++++++ docs/version-specific/supported-software/e/ecBuild.md | 7 +++++++ docs/version-specific/supported-software/e/ecCodes.md | 7 +++++++ docs/version-specific/supported-software/e/ecFlow.md | 7 +++++++ .../supported-software/e/eccodes-python.md | 7 +++++++ docs/version-specific/supported-software/e/eclib.md | 7 +++++++ docs/version-specific/supported-software/e/edlib.md | 7 +++++++ .../version-specific/supported-software/e/eggnog-mapper.md | 7 +++++++ docs/version-specific/supported-software/e/eht-imaging.md | 7 +++++++ docs/version-specific/supported-software/e/einops.md | 7 +++++++ docs/version-specific/supported-software/e/elastix.md | 7 +++++++ docs/version-specific/supported-software/e/elbencho.md | 7 +++++++ docs/version-specific/supported-software/e/elfutils.md | 7 +++++++ docs/version-specific/supported-software/e/elprep.md | 7 +++++++ docs/version-specific/supported-software/e/emcee.md | 7 +++++++ .../supported-software/e/enaBrowserTool.md | 7 +++++++ docs/version-specific/supported-software/e/enchant-2.md | 7 +++++++ docs/version-specific/supported-software/e/enchant.md | 7 +++++++ docs/version-specific/supported-software/e/ensmallen.md | 7 +++++++ docs/version-specific/supported-software/e/entrypoints.md | 7 +++++++ docs/version-specific/supported-software/e/epct.md | 7 +++++++ docs/version-specific/supported-software/e/epiScanpy.md | 7 +++++++ docs/version-specific/supported-software/e/eudev.md | 7 +++++++ docs/version-specific/supported-software/e/evince.md | 7 +++++++ docs/version-specific/supported-software/e/evmix.md | 7 +++++++ docs/version-specific/supported-software/e/exiv2.md | 7 +++++++ docs/version-specific/supported-software/e/expat.md | 7 +++++++ docs/version-specific/supported-software/e/expect.md | 7 +++++++ docs/version-specific/supported-software/e/expecttest.md | 7 +++++++ docs/version-specific/supported-software/e/index.md | 6 ++++++ docs/version-specific/supported-software/f/FACE.md | 7 +++++++ docs/version-specific/supported-software/f/FALCON.md | 7 +++++++ docs/version-specific/supported-software/f/FANN.md | 7 +++++++ docs/version-specific/supported-software/f/FASTA.md | 7 +++++++ .../version-specific/supported-software/f/FASTX-Toolkit.md | 7 +++++++ docs/version-specific/supported-software/f/FBPIC.md | 7 +++++++ docs/version-specific/supported-software/f/FCC.md | 7 +++++++ docs/version-specific/supported-software/f/FCM.md | 7 +++++++ docs/version-specific/supported-software/f/FDMNES.md | 7 +++++++ docs/version-specific/supported-software/f/FDS.md | 7 +++++++ .../supported-software/f/FDTD_Solutions.md | 7 +++++++ docs/version-specific/supported-software/f/FEniCS.md | 7 +++++++ docs/version-specific/supported-software/f/FFAVES.md | 7 +++++++ docs/version-specific/supported-software/f/FFC.md | 7 +++++++ docs/version-specific/supported-software/f/FFLAS-FFPACK.md | 7 +++++++ docs/version-specific/supported-software/f/FFTW.MPI.md | 7 +++++++ docs/version-specific/supported-software/f/FFTW.md | 7 +++++++ docs/version-specific/supported-software/f/FFmpeg.md | 7 +++++++ docs/version-specific/supported-software/f/FGSL.md | 7 +++++++ docs/version-specific/supported-software/f/FHI-aims.md | 7 +++++++ docs/version-specific/supported-software/f/FIAT.md | 7 +++++++ docs/version-specific/supported-software/f/FIGARO.md | 7 +++++++ docs/version-specific/supported-software/f/FIRESTARTER.md | 7 +++++++ docs/version-specific/supported-software/f/FIX.md | 7 +++++++ docs/version-specific/supported-software/f/FIt-SNE.md | 7 +++++++ docs/version-specific/supported-software/f/FLAC.md | 7 +++++++ docs/version-specific/supported-software/f/FLAIR.md | 7 +++++++ docs/version-specific/supported-software/f/FLANN.md | 7 +++++++ docs/version-specific/supported-software/f/FLASH.md | 7 +++++++ docs/version-specific/supported-software/f/FLEUR.md | 7 +++++++ docs/version-specific/supported-software/f/FLINT.md | 7 +++++++ docs/version-specific/supported-software/f/FLTK.md | 7 +++++++ docs/version-specific/supported-software/f/FLUENT.md | 7 +++++++ docs/version-specific/supported-software/f/FMILibrary.md | 7 +++++++ docs/version-specific/supported-software/f/FMM3D.md | 7 +++++++ docs/version-specific/supported-software/f/FMPy.md | 7 +++++++ docs/version-specific/supported-software/f/FMRIprep.md | 7 +++++++ docs/version-specific/supported-software/f/FMS.md | 7 +++++++ docs/version-specific/supported-software/f/FORD.md | 7 +++++++ docs/version-specific/supported-software/f/FOX-Toolkit.md | 7 +++++++ docs/version-specific/supported-software/f/FPM.md | 7 +++++++ docs/version-specific/supported-software/f/FRANz.md | 7 +++++++ docs/version-specific/supported-software/f/FRUIT.md | 7 +++++++ .../supported-software/f/FRUIT_processor.md | 7 +++++++ docs/version-specific/supported-software/f/FSL.md | 7 +++++++ docs/version-specific/supported-software/f/FSLeyes.md | 7 +++++++ docs/version-specific/supported-software/f/FSON.md | 7 +++++++ docs/version-specific/supported-software/f/FTGL.md | 7 +++++++ docs/version-specific/supported-software/f/FUNWAVE-TVD.md | 7 +++++++ docs/version-specific/supported-software/f/FUSE.md | 7 +++++++ docs/version-specific/supported-software/f/FabIO.md | 7 +++++++ docs/version-specific/supported-software/f/Faber.md | 7 +++++++ docs/version-specific/supported-software/f/Faiss.md | 7 +++++++ docs/version-specific/supported-software/f/FastANI.md | 7 +++++++ docs/version-specific/supported-software/f/FastFold.md | 7 +++++++ docs/version-specific/supported-software/f/FastME.md | 7 +++++++ docs/version-specific/supported-software/f/FastQC.md | 7 +++++++ docs/version-specific/supported-software/f/FastQTL.md | 7 +++++++ docs/version-specific/supported-software/f/FastQ_Screen.md | 7 +++++++ docs/version-specific/supported-software/f/FastRFS.md | 7 +++++++ docs/version-specific/supported-software/f/FastTree.md | 7 +++++++ .../supported-software/f/FastViromeExplorer.md | 7 +++++++ docs/version-specific/supported-software/f/FastaIndex.md | 7 +++++++ docs/version-specific/supported-software/f/Fastaq.md | 7 +++++++ docs/version-specific/supported-software/f/Ferret.md | 7 +++++++ docs/version-specific/supported-software/f/FigureGen.md | 7 +++++++ docs/version-specific/supported-software/f/Fiji.md | 7 +++++++ docs/version-specific/supported-software/f/Filtlong.md | 7 +++++++ docs/version-specific/supported-software/f/Fiona.md | 7 +++++++ docs/version-specific/supported-software/f/FireWorks.md | 7 +++++++ docs/version-specific/supported-software/f/Firefox.md | 7 +++++++ docs/version-specific/supported-software/f/Flask.md | 7 +++++++ docs/version-specific/supported-software/f/Flexbar.md | 7 +++++++ docs/version-specific/supported-software/f/FlexiBLAS.md | 7 +++++++ docs/version-specific/supported-software/f/FlexiDot.md | 7 +++++++ docs/version-specific/supported-software/f/Flink.md | 7 +++++++ docs/version-specific/supported-software/f/Flye.md | 7 +++++++ docs/version-specific/supported-software/f/FoBiS.md | 7 +++++++ docs/version-specific/supported-software/f/FoX.md | 7 +++++++ docs/version-specific/supported-software/f/FoldX.md | 7 +++++++ docs/version-specific/supported-software/f/FragGeneScan.md | 7 +++++++ docs/version-specific/supported-software/f/FragPipe.md | 7 +++++++ docs/version-specific/supported-software/f/FreeBarcodes.md | 7 +++++++ docs/version-specific/supported-software/f/FreeFEM.md | 7 +++++++ docs/version-specific/supported-software/f/FreeFem++.md | 7 +++++++ docs/version-specific/supported-software/f/FreeImage.md | 7 +++++++ docs/version-specific/supported-software/f/FreeSASA.md | 7 +++++++ docs/version-specific/supported-software/f/FreeSurfer.md | 7 +++++++ docs/version-specific/supported-software/f/FreeTDS.md | 7 +++++++ docs/version-specific/supported-software/f/FreeXL.md | 7 +++++++ docs/version-specific/supported-software/f/FriBidi.md | 7 +++++++ docs/version-specific/supported-software/f/FuSeq.md | 7 +++++++ docs/version-specific/supported-software/f/Fujitsu.md | 7 +++++++ docs/version-specific/supported-software/f/FunGAP.md | 7 +++++++ .../version-specific/supported-software/f/FusionCatcher.md | 7 +++++++ docs/version-specific/supported-software/f/f90cache.md | 7 +++++++ docs/version-specific/supported-software/f/f90nml.md | 7 +++++++ docs/version-specific/supported-software/f/f90wrap.md | 7 +++++++ docs/version-specific/supported-software/f/faceswap.md | 7 +++++++ docs/version-specific/supported-software/f/fast5.md | 7 +++++++ docs/version-specific/supported-software/f/fastPHASE.md | 7 +++++++ .../version-specific/supported-software/f/fastStructure.md | 7 +++++++ docs/version-specific/supported-software/f/fasta-reader.md | 7 +++++++ docs/version-specific/supported-software/f/fastahack.md | 7 +++++++ docs/version-specific/supported-software/f/fastai.md | 7 +++++++ .../supported-software/f/fastjet-contrib.md | 7 +++++++ docs/version-specific/supported-software/f/fastjet.md | 7 +++++++ docs/version-specific/supported-software/f/fastml.md | 7 +++++++ docs/version-specific/supported-software/f/fastp.md | 7 +++++++ docs/version-specific/supported-software/f/fastparquet.md | 7 +++++++ docs/version-specific/supported-software/f/fastq-pair.md | 7 +++++++ docs/version-specific/supported-software/f/fastq-tools.md | 7 +++++++ .../version-specific/supported-software/f/fastqsplitter.md | 7 +++++++ docs/version-specific/supported-software/f/fastqz.md | 7 +++++++ docs/version-specific/supported-software/f/fatslim.md | 7 +++++++ docs/version-specific/supported-software/f/fbm.md | 7 +++++++ docs/version-specific/supported-software/f/fdict.md | 7 +++++++ docs/version-specific/supported-software/f/fdstools.md | 7 +++++++ docs/version-specific/supported-software/f/feh.md | 7 +++++++ docs/version-specific/supported-software/f/fermi-lite.md | 7 +++++++ docs/version-specific/supported-software/f/festival.md | 7 +++++++ docs/version-specific/supported-software/f/fetchMG.md | 7 +++++++ docs/version-specific/supported-software/f/ffmpi.md | 7 +++++++ docs/version-specific/supported-software/f/ffnet.md | 7 +++++++ docs/version-specific/supported-software/f/ffnvcodec.md | 7 +++++++ docs/version-specific/supported-software/f/fftlib.md | 7 +++++++ docs/version-specific/supported-software/f/fgbio.md | 7 +++++++ docs/version-specific/supported-software/f/file.md | 7 +++++++ docs/version-specific/supported-software/f/filevercmp.md | 7 +++++++ docs/version-specific/supported-software/f/find_circ.md | 7 +++++++ docs/version-specific/supported-software/f/finder.md | 7 +++++++ docs/version-specific/supported-software/f/findhap.md | 7 +++++++ docs/version-specific/supported-software/f/findutils.md | 7 +++++++ .../supported-software/f/fineRADstructure.md | 7 +++++++ .../version-specific/supported-software/f/fineSTRUCTURE.md | 7 +++++++ docs/version-specific/supported-software/f/fio.md | 7 +++++++ docs/version-specific/supported-software/f/fixesproto.md | 7 +++++++ docs/version-specific/supported-software/f/flair-NLP.md | 7 +++++++ .../supported-software/f/flatbuffers-python.md | 7 +++++++ docs/version-specific/supported-software/f/flatbuffers.md | 7 +++++++ docs/version-specific/supported-software/f/flex.md | 7 +++++++ docs/version-specific/supported-software/f/flit.md | 7 +++++++ docs/version-specific/supported-software/f/flook.md | 7 +++++++ docs/version-specific/supported-software/f/flowFDA.md | 7 +++++++ docs/version-specific/supported-software/f/fmt.md | 7 +++++++ docs/version-specific/supported-software/f/fontconfig.md | 7 +++++++ docs/version-specific/supported-software/f/fontsproto.md | 7 +++++++ docs/version-specific/supported-software/f/forbear.md | 7 +++++++ docs/version-specific/supported-software/f/foss.md | 7 +++++++ docs/version-specific/supported-software/f/fosscuda.md | 7 +++++++ docs/version-specific/supported-software/f/fplll.md | 7 +++++++ docs/version-specific/supported-software/f/fpocket.md | 7 +++++++ docs/version-specific/supported-software/f/fpylll.md | 7 +++++++ docs/version-specific/supported-software/f/fqtrim.md | 7 +++++++ docs/version-specific/supported-software/f/fqzcomp.md | 7 +++++++ docs/version-specific/supported-software/f/freebayes.md | 7 +++++++ docs/version-specific/supported-software/f/freeglut.md | 7 +++++++ docs/version-specific/supported-software/f/freetype-py.md | 7 +++++++ docs/version-specific/supported-software/f/freetype.md | 7 +++++++ .../supported-software/f/freud-analysis.md | 7 +++++++ docs/version-specific/supported-software/f/fsom.md | 7 +++++++ docs/version-specific/supported-software/f/ftfy.md | 7 +++++++ docs/version-specific/supported-software/f/fugue.md | 7 +++++++ docs/version-specific/supported-software/f/fullrmc.md | 7 +++++++ docs/version-specific/supported-software/f/fumi_tools.md | 7 +++++++ docs/version-specific/supported-software/f/funannotate.md | 7 +++++++ docs/version-specific/supported-software/f/futhark.md | 7 +++++++ docs/version-specific/supported-software/f/futile.md | 7 +++++++ docs/version-specific/supported-software/f/future.md | 7 +++++++ docs/version-specific/supported-software/f/fxtract.md | 7 +++++++ docs/version-specific/supported-software/f/index.md | 6 ++++++ docs/version-specific/supported-software/g/G-PhoCS.md | 7 +++++++ docs/version-specific/supported-software/g/GAMESS-US.md | 7 +++++++ docs/version-specific/supported-software/g/GAPPadder.md | 7 +++++++ docs/version-specific/supported-software/g/GARLI.md | 7 +++++++ docs/version-specific/supported-software/g/GAT.md | 7 +++++++ docs/version-specific/supported-software/g/GATB-Core.md | 7 +++++++ docs/version-specific/supported-software/g/GATE.md | 7 +++++++ docs/version-specific/supported-software/g/GATK.md | 7 +++++++ docs/version-specific/supported-software/g/GBprocesS.md | 7 +++++++ docs/version-specific/supported-software/g/GC3Pie.md | 7 +++++++ docs/version-specific/supported-software/g/GCC.md | 7 +++++++ docs/version-specific/supported-software/g/GCCcore.md | 7 +++++++ docs/version-specific/supported-software/g/GCTA.md | 7 +++++++ docs/version-specific/supported-software/g/GConf.md | 7 +++++++ docs/version-specific/supported-software/g/GD.md | 7 +++++++ docs/version-specific/supported-software/g/GDAL.md | 7 +++++++ docs/version-specific/supported-software/g/GDB.md | 7 +++++++ docs/version-specific/supported-software/g/GDCHART.md | 7 +++++++ docs/version-specific/supported-software/g/GDCM.md | 7 +++++++ docs/version-specific/supported-software/g/GDGraph.md | 7 +++++++ docs/version-specific/supported-software/g/GDRCopy.md | 7 +++++++ docs/version-specific/supported-software/g/GEGL.md | 7 +++++++ docs/version-specific/supported-software/g/GEM-library.md | 7 +++++++ docs/version-specific/supported-software/g/GEM.md | 7 +++++++ docs/version-specific/supported-software/g/GEMMA.md | 7 +++++++ docs/version-specific/supported-software/g/GEOS.md | 7 +++++++ docs/version-specific/supported-software/g/GETORB.md | 7 +++++++ docs/version-specific/supported-software/g/GFF3-toolkit.md | 7 +++++++ docs/version-specific/supported-software/g/GFOLD.md | 7 +++++++ docs/version-specific/supported-software/g/GHC.md | 7 +++++++ docs/version-specific/supported-software/g/GI-DocGen.md | 7 +++++++ docs/version-specific/supported-software/g/GIMIC.md | 7 +++++++ docs/version-specific/supported-software/g/GIMP.md | 7 +++++++ docs/version-specific/supported-software/g/GIMPS.md | 7 +++++++ docs/version-specific/supported-software/g/GKeyll.md | 7 +++++++ docs/version-specific/supported-software/g/GKlib-METIS.md | 7 +++++++ docs/version-specific/supported-software/g/GL2PS.md | 7 +++++++ docs/version-specific/supported-software/g/GLFW.md | 7 +++++++ docs/version-specific/supported-software/g/GLI.md | 7 +++++++ docs/version-specific/supported-software/g/GLIMMER.md | 7 +++++++ docs/version-specific/supported-software/g/GLIMPSE.md | 7 +++++++ docs/version-specific/supported-software/g/GLM-AED.md | 7 +++++++ docs/version-specific/supported-software/g/GLM.md | 7 +++++++ docs/version-specific/supported-software/g/GLPK.md | 7 +++++++ docs/version-specific/supported-software/g/GLib.md | 7 +++++++ docs/version-specific/supported-software/g/GLibmm.md | 7 +++++++ docs/version-specific/supported-software/g/GMAP-GSNAP.md | 7 +++++++ docs/version-specific/supported-software/g/GMP-ECM.md | 7 +++++++ docs/version-specific/supported-software/g/GMP.md | 7 +++++++ docs/version-specific/supported-software/g/GMT.md | 7 +++++++ docs/version-specific/supported-software/g/GNU.md | 7 +++++++ docs/version-specific/supported-software/g/GOATOOLS.md | 7 +++++++ docs/version-specific/supported-software/g/GOBNILP.md | 7 +++++++ .../supported-software/g/GObject-Introspection.md | 7 +++++++ docs/version-specific/supported-software/g/GP2C.md | 7 +++++++ docs/version-specific/supported-software/g/GPAW-setups.md | 7 +++++++ docs/version-specific/supported-software/g/GPAW.md | 7 +++++++ docs/version-specific/supported-software/g/GPy.md | 7 +++++++ docs/version-specific/supported-software/g/GPyOpt.md | 7 +++++++ docs/version-specific/supported-software/g/GPyTorch.md | 7 +++++++ docs/version-specific/supported-software/g/GRASP-suite.md | 7 +++++++ docs/version-specific/supported-software/g/GRASP.md | 7 +++++++ docs/version-specific/supported-software/g/GRASS.md | 7 +++++++ docs/version-specific/supported-software/g/GRIDSS.md | 7 +++++++ docs/version-specific/supported-software/g/GRIT.md | 7 +++++++ docs/version-specific/supported-software/g/GRNBoost.md | 7 +++++++ docs/version-specific/supported-software/g/GROMACS.md | 7 +++++++ docs/version-specific/supported-software/g/GSD.md | 7 +++++++ docs/version-specific/supported-software/g/GSEA.md | 7 +++++++ docs/version-specific/supported-software/g/GSL.md | 7 +++++++ .../supported-software/g/GST-plugins-bad.md | 7 +++++++ .../supported-software/g/GST-plugins-base.md | 7 +++++++ docs/version-specific/supported-software/g/GStreamer.md | 7 +++++++ docs/version-specific/supported-software/g/GTDB-Tk.md | 7 +++++++ docs/version-specific/supported-software/g/GTK+.md | 7 +++++++ docs/version-specific/supported-software/g/GTK2.md | 7 +++++++ docs/version-specific/supported-software/g/GTK3.md | 7 +++++++ docs/version-specific/supported-software/g/GTK4.md | 7 +++++++ docs/version-specific/supported-software/g/GTOOL.md | 7 +++++++ docs/version-specific/supported-software/g/GTS.md | 7 +++++++ docs/version-specific/supported-software/g/GUIDANCE.md | 7 +++++++ docs/version-specific/supported-software/g/GULP.md | 7 +++++++ docs/version-specific/supported-software/g/GUSHR.md | 7 +++++++ docs/version-specific/supported-software/g/Gaia.md | 7 +++++++ docs/version-specific/supported-software/g/GapCloser.md | 7 +++++++ docs/version-specific/supported-software/g/GapFiller.md | 7 +++++++ docs/version-specific/supported-software/g/Gaussian.md | 7 +++++++ docs/version-specific/supported-software/g/Gblocks.md | 7 +++++++ docs/version-specific/supported-software/g/Gctf.md | 7 +++++++ docs/version-specific/supported-software/g/Gdk-Pixbuf.md | 7 +++++++ docs/version-specific/supported-software/g/Gdspy.md | 7 +++++++ docs/version-specific/supported-software/g/Geant4-data.md | 7 +++++++ docs/version-specific/supported-software/g/Geant4.md | 7 +++++++ docs/version-specific/supported-software/g/GenMap.md | 7 +++++++ docs/version-specific/supported-software/g/GeneMark-ET.md | 7 +++++++ .../supported-software/g/GenerativeModels.md | 7 +++++++ docs/version-specific/supported-software/g/GenomeComb.md | 7 +++++++ docs/version-specific/supported-software/g/GenomeMapper.md | 7 +++++++ .../version-specific/supported-software/g/GenomeTester4.md | 7 +++++++ .../supported-software/g/GenomeThreader.md | 7 +++++++ docs/version-specific/supported-software/g/GenomeTools.md | 7 +++++++ docs/version-specific/supported-software/g/GenomeWorks.md | 7 +++++++ .../supported-software/g/Genome_Profiler.md | 7 +++++++ .../supported-software/g/GenotypeHarmonizer.md | 7 +++++++ docs/version-specific/supported-software/g/Gerris.md | 7 +++++++ docs/version-specific/supported-software/g/GetOrganelle.md | 7 +++++++ docs/version-specific/supported-software/g/GffCompare.md | 7 +++++++ docs/version-specific/supported-software/g/Ghostscript.md | 7 +++++++ docs/version-specific/supported-software/g/Gibbs2.md | 7 +++++++ docs/version-specific/supported-software/g/GimmeMotifs.md | 7 +++++++ docs/version-specific/supported-software/g/Giotto-Suite.md | 7 +++++++ docs/version-specific/supported-software/g/GitPython.md | 7 +++++++ docs/version-specific/supported-software/g/Givaro.md | 7 +++++++ docs/version-specific/supported-software/g/Giza.md | 7 +++++++ docs/version-specific/supported-software/g/Glade.md | 7 +++++++ docs/version-specific/supported-software/g/GlimmerHMM.md | 7 +++++++ docs/version-specific/supported-software/g/GlobalArrays.md | 7 +++++++ docs/version-specific/supported-software/g/Globus-CLI.md | 7 +++++++ .../supported-software/g/GlobusConnectPersonal.md | 7 +++++++ docs/version-specific/supported-software/g/Glucose.md | 7 +++++++ docs/version-specific/supported-software/g/GnuTLS.md | 7 +++++++ docs/version-specific/supported-software/g/Go.md | 7 +++++++ docs/version-specific/supported-software/g/Godon.md | 7 +++++++ docs/version-specific/supported-software/g/GraPhlAn.md | 7 +++++++ docs/version-specific/supported-software/g/Grace.md | 7 +++++++ docs/version-specific/supported-software/g/Gradle.md | 7 +++++++ docs/version-specific/supported-software/g/GraphDB.md | 7 +++++++ docs/version-specific/supported-software/g/GraphMap.md | 7 +++++++ docs/version-specific/supported-software/g/GraphMap2.md | 7 +++++++ docs/version-specific/supported-software/g/Graphene.md | 7 +++++++ .../supported-software/g/GraphicsMagick.md | 7 +++++++ docs/version-specific/supported-software/g/Graphviz.md | 7 +++++++ docs/version-specific/supported-software/g/Greenlet.md | 7 +++++++ docs/version-specific/supported-software/g/Grep.md | 7 +++++++ docs/version-specific/supported-software/g/GroIMP.md | 7 +++++++ .../supported-software/g/GromacsWrapper.md | 7 +++++++ docs/version-specific/supported-software/g/Groovy.md | 7 +++++++ .../version-specific/supported-software/g/GtkSourceView.md | 7 +++++++ docs/version-specific/supported-software/g/Guile.md | 7 +++++++ docs/version-specific/supported-software/g/Gurobi.md | 7 +++++++ docs/version-specific/supported-software/g/g2clib.md | 7 +++++++ docs/version-specific/supported-software/g/g2lib.md | 7 +++++++ docs/version-specific/supported-software/g/g2log.md | 7 +++++++ docs/version-specific/supported-software/g/gRPC.md | 7 +++++++ docs/version-specific/supported-software/g/gSOAP.md | 7 +++++++ docs/version-specific/supported-software/g/gap.md | 7 +++++++ docs/version-specific/supported-software/g/gappa.md | 7 +++++++ docs/version-specific/supported-software/g/garnett.md | 7 +++++++ docs/version-specific/supported-software/g/gawk.md | 7 +++++++ docs/version-specific/supported-software/g/gbasis.md | 7 +++++++ docs/version-specific/supported-software/g/gbs2ploidy.md | 7 +++++++ docs/version-specific/supported-software/g/gc.md | 7 +++++++ docs/version-specific/supported-software/g/gcccuda.md | 7 +++++++ docs/version-specific/supported-software/g/gcloud.md | 7 +++++++ docs/version-specific/supported-software/g/gcsfs.md | 7 +++++++ docs/version-specific/supported-software/g/gdbgui.md | 7 +++++++ docs/version-specific/supported-software/g/gdbm.md | 7 +++++++ docs/version-specific/supported-software/g/gdc-client.md | 7 +++++++ docs/version-specific/supported-software/g/gdist.md | 7 +++++++ docs/version-specific/supported-software/g/gearshifft.md | 7 +++++++ docs/version-specific/supported-software/g/gemelli.md | 7 +++++++ docs/version-specific/supported-software/g/gemmi.md | 7 +++++++ .../supported-software/g/gencore_variant_detection.md | 7 +++++++ docs/version-specific/supported-software/g/gengetopt.md | 7 +++++++ docs/version-specific/supported-software/g/genomepy.md | 7 +++++++ docs/version-specific/supported-software/g/genozip.md | 7 +++++++ docs/version-specific/supported-software/g/gensim.md | 7 +++++++ docs/version-specific/supported-software/g/geocube.md | 7 +++++++ docs/version-specific/supported-software/g/geopandas.md | 7 +++++++ docs/version-specific/supported-software/g/geopy.md | 7 +++++++ docs/version-specific/supported-software/g/georges.md | 7 +++++++ docs/version-specific/supported-software/g/geosphere.md | 7 +++++++ docs/version-specific/supported-software/g/gettext.md | 7 +++++++ docs/version-specific/supported-software/g/gexiv2.md | 7 +++++++ docs/version-specific/supported-software/g/gfbf.md | 7 +++++++ docs/version-specific/supported-software/g/gffread.md | 7 +++++++ docs/version-specific/supported-software/g/gffutils.md | 7 +++++++ docs/version-specific/supported-software/g/gflags.md | 7 +++++++ docs/version-specific/supported-software/g/gh.md | 7 +++++++ docs/version-specific/supported-software/g/giac.md | 7 +++++++ docs/version-specific/supported-software/g/giflib.md | 7 +++++++ docs/version-specific/supported-software/g/gifsicle.md | 7 +++++++ docs/version-specific/supported-software/g/gimkl.md | 7 +++++++ docs/version-specific/supported-software/g/gimpi.md | 7 +++++++ docs/version-specific/supported-software/g/gimpic.md | 7 +++++++ docs/version-specific/supported-software/g/giolf.md | 7 +++++++ docs/version-specific/supported-software/g/giolfc.md | 7 +++++++ docs/version-specific/supported-software/g/git-annex.md | 7 +++++++ docs/version-specific/supported-software/g/git-extras.md | 7 +++++++ docs/version-specific/supported-software/g/git-lfs.md | 7 +++++++ docs/version-specific/supported-software/g/git.md | 7 +++++++ docs/version-specific/supported-software/g/gkmSVM.md | 7 +++++++ docs/version-specific/supported-software/g/glew.md | 7 +++++++ .../supported-software/g/glib-networking.md | 7 +++++++ docs/version-specific/supported-software/g/glibc.md | 7 +++++++ docs/version-specific/supported-software/g/glog.md | 7 +++++++ docs/version-specific/supported-software/g/glproto.md | 7 +++++++ docs/version-specific/supported-software/g/gmpich.md | 7 +++++++ docs/version-specific/supported-software/g/gmpolf.md | 7 +++++++ docs/version-specific/supported-software/g/gmpy2.md | 7 +++++++ docs/version-specific/supported-software/g/gmsh.md | 7 +++++++ docs/version-specific/supported-software/g/gmvapich2.md | 7 +++++++ docs/version-specific/supported-software/g/gmvolf.md | 7 +++++++ docs/version-specific/supported-software/g/gnupg-bundle.md | 7 +++++++ docs/version-specific/supported-software/g/gnuplot.md | 7 +++++++ docs/version-specific/supported-software/g/goalign.md | 7 +++++++ docs/version-specific/supported-software/g/gobff.md | 7 +++++++ docs/version-specific/supported-software/g/goblf.md | 7 +++++++ docs/version-specific/supported-software/g/gofasta.md | 7 +++++++ docs/version-specific/supported-software/g/golf.md | 7 +++++++ docs/version-specific/supported-software/g/gomkl.md | 7 +++++++ docs/version-specific/supported-software/g/gompi.md | 7 +++++++ docs/version-specific/supported-software/g/gompic.md | 7 +++++++ .../supported-software/g/google-java-format.md | 7 +++++++ docs/version-specific/supported-software/g/googletest.md | 7 +++++++ docs/version-specific/supported-software/g/gotree.md | 7 +++++++ docs/version-specific/supported-software/g/gperf.md | 7 +++++++ docs/version-specific/supported-software/g/gperftools.md | 7 +++++++ docs/version-specific/supported-software/g/gpustat.md | 7 +++++++ docs/version-specific/supported-software/g/gradunwarp.md | 7 +++++++ docs/version-specific/supported-software/g/graph-tool.md | 7 +++++++ docs/version-specific/supported-software/g/graphite2.md | 7 +++++++ .../supported-software/g/graphviz-python.md | 7 +++++++ docs/version-specific/supported-software/g/gretl.md | 7 +++++++ docs/version-specific/supported-software/g/grib_api.md | 7 +++++++ docs/version-specific/supported-software/g/grid.md | 7 +++++++ docs/version-specific/supported-software/g/groff.md | 7 +++++++ docs/version-specific/supported-software/g/grpcio.md | 7 +++++++ .../supported-software/g/gsettings-desktop-schemas.md | 7 +++++++ docs/version-specific/supported-software/g/gspell.md | 7 +++++++ docs/version-specific/supported-software/g/gsport.md | 7 +++++++ docs/version-specific/supported-software/g/gsutil.md | 7 +++++++ docs/version-specific/supported-software/g/gsw.md | 7 +++++++ docs/version-specific/supported-software/g/gubbins.md | 7 +++++++ docs/version-specific/supported-software/g/guenomu.md | 7 +++++++ docs/version-specific/supported-software/g/gzip.md | 7 +++++++ docs/version-specific/supported-software/g/index.md | 6 ++++++ docs/version-specific/supported-software/h/H5hut.md | 7 +++++++ docs/version-specific/supported-software/h/HAL.md | 7 +++++++ docs/version-specific/supported-software/h/HAPGEN2.md | 7 +++++++ docs/version-specific/supported-software/h/HBase.md | 7 +++++++ docs/version-specific/supported-software/h/HD-BET.md | 7 +++++++ docs/version-specific/supported-software/h/HDBSCAN.md | 7 +++++++ docs/version-specific/supported-software/h/HDDM.md | 7 +++++++ docs/version-specific/supported-software/h/HDF-EOS.md | 7 +++++++ docs/version-specific/supported-software/h/HDF-EOS2.md | 7 +++++++ docs/version-specific/supported-software/h/HDF-EOS5.md | 7 +++++++ docs/version-specific/supported-software/h/HDF.md | 7 +++++++ docs/version-specific/supported-software/h/HDF5.md | 7 +++++++ docs/version-specific/supported-software/h/HDFView.md | 7 +++++++ docs/version-specific/supported-software/h/HEALPix.md | 7 +++++++ docs/version-specific/supported-software/h/HF-Datasets.md | 7 +++++++ docs/version-specific/supported-software/h/HH-suite.md | 7 +++++++ docs/version-specific/supported-software/h/HIP.md | 7 +++++++ docs/version-specific/supported-software/h/HIPS.md | 7 +++++++ docs/version-specific/supported-software/h/HISAT2.md | 7 +++++++ docs/version-specific/supported-software/h/HLAminer.md | 7 +++++++ docs/version-specific/supported-software/h/HMMER.md | 7 +++++++ docs/version-specific/supported-software/h/HMMER2.md | 7 +++++++ docs/version-specific/supported-software/h/HOME.md | 7 +++++++ docs/version-specific/supported-software/h/HOMER.md | 7 +++++++ docs/version-specific/supported-software/h/HOOMD-blue.md | 7 +++++++ docs/version-specific/supported-software/h/HPCC.md | 7 +++++++ docs/version-specific/supported-software/h/HPCG.md | 7 +++++++ docs/version-specific/supported-software/h/HPCX.md | 7 +++++++ docs/version-specific/supported-software/h/HPDBSCAN.md | 7 +++++++ docs/version-specific/supported-software/h/HPL.md | 7 +++++++ docs/version-specific/supported-software/h/HTSeq.md | 7 +++++++ docs/version-specific/supported-software/h/HTSlib.md | 7 +++++++ docs/version-specific/supported-software/h/HTSplotter.md | 7 +++++++ docs/version-specific/supported-software/h/Hadoop.md | 7 +++++++ docs/version-specific/supported-software/h/HarfBuzz.md | 7 +++++++ docs/version-specific/supported-software/h/Harminv.md | 7 +++++++ docs/version-specific/supported-software/h/HeFFTe.md | 7 +++++++ docs/version-specific/supported-software/h/Health-GPS.md | 7 +++++++ docs/version-specific/supported-software/h/Hello.md | 7 +++++++ docs/version-specific/supported-software/h/HepMC.md | 7 +++++++ docs/version-specific/supported-software/h/HepMC3.md | 7 +++++++ docs/version-specific/supported-software/h/HiC-Pro.md | 7 +++++++ docs/version-specific/supported-software/h/HiCExplorer.md | 7 +++++++ docs/version-specific/supported-software/h/HiCMatrix.md | 7 +++++++ docs/version-specific/supported-software/h/HiGHS.md | 7 +++++++ docs/version-specific/supported-software/h/HighFive.md | 7 +++++++ docs/version-specific/supported-software/h/Highway.md | 7 +++++++ docs/version-specific/supported-software/h/Horovod.md | 7 +++++++ docs/version-specific/supported-software/h/HyPhy.md | 7 +++++++ docs/version-specific/supported-software/h/HyPo.md | 7 +++++++ docs/version-specific/supported-software/h/Hybpiper.md | 7 +++++++ docs/version-specific/supported-software/h/Hydra.md | 7 +++++++ docs/version-specific/supported-software/h/HyperQueue.md | 7 +++++++ docs/version-specific/supported-software/h/Hyperopt.md | 7 +++++++ docs/version-specific/supported-software/h/Hypre.md | 7 +++++++ docs/version-specific/supported-software/h/h4toh5.md | 7 +++++++ docs/version-specific/supported-software/h/h5netcdf.md | 7 +++++++ docs/version-specific/supported-software/h/h5py.md | 7 +++++++ docs/version-specific/supported-software/h/hampel.md | 7 +++++++ .../supported-software/h/hanythingondemand.md | 7 +++++++ docs/version-specific/supported-software/h/harmony.md | 7 +++++++ .../supported-software/h/hatch-jupyter-builder.md | 7 +++++++ docs/version-specific/supported-software/h/hatchling.md | 7 +++++++ docs/version-specific/supported-software/h/hdWGCNA.md | 7 +++++++ docs/version-specific/supported-software/h/hdf5storage.md | 7 +++++++ docs/version-specific/supported-software/h/heaptrack.md | 7 +++++++ docs/version-specific/supported-software/h/hector.md | 7 +++++++ docs/version-specific/supported-software/h/help2man.md | 7 +++++++ docs/version-specific/supported-software/h/hevea.md | 7 +++++++ docs/version-specific/supported-software/h/hic-straw.md | 7 +++++++ docs/version-specific/supported-software/h/hierfstat.md | 7 +++++++ docs/version-specific/supported-software/h/hifiasm.md | 7 +++++++ docs/version-specific/supported-software/h/hipSYCL.md | 7 +++++++ docs/version-specific/supported-software/h/hipify-clang.md | 7 +++++++ docs/version-specific/supported-software/h/hiredis.md | 7 +++++++ docs/version-specific/supported-software/h/histolab.md | 7 +++++++ docs/version-specific/supported-software/h/hivtrace.md | 7 +++++++ docs/version-specific/supported-software/h/hl7apy.md | 7 +++++++ .../version-specific/supported-software/h/hmmcopy_utils.md | 7 +++++++ docs/version-specific/supported-software/h/hmmlearn.md | 7 +++++++ docs/version-specific/supported-software/h/horton.md | 7 +++++++ .../supported-software/h/how_are_we_stranded_here.md | 7 +++++++ docs/version-specific/supported-software/h/htop.md | 7 +++++++ docs/version-specific/supported-software/h/hub.md | 7 +++++++ docs/version-specific/supported-software/h/humann.md | 7 +++++++ docs/version-specific/supported-software/h/hunspell.md | 7 +++++++ docs/version-specific/supported-software/h/hwloc.md | 7 +++++++ docs/version-specific/supported-software/h/hyperspy.md | 7 +++++++ docs/version-specific/supported-software/h/hypothesis.md | 7 +++++++ docs/version-specific/supported-software/h/index.md | 6 ++++++ docs/version-specific/supported-software/i/I-TASSER.md | 7 +++++++ docs/version-specific/supported-software/i/ICA-AROMA.md | 7 +++++++ docs/version-specific/supported-software/i/ICON.md | 7 +++++++ docs/version-specific/supported-software/i/ICU.md | 7 +++++++ docs/version-specific/supported-software/i/IDBA-UD.md | 7 +++++++ docs/version-specific/supported-software/i/IDG.md | 7 +++++++ docs/version-specific/supported-software/i/IGMPlot.md | 7 +++++++ docs/version-specific/supported-software/i/IGV.md | 7 +++++++ docs/version-specific/supported-software/i/IGVTools.md | 7 +++++++ docs/version-specific/supported-software/i/IJulia.md | 7 +++++++ docs/version-specific/supported-software/i/ILAMB.md | 7 +++++++ docs/version-specific/supported-software/i/IMB.md | 7 +++++++ docs/version-specific/supported-software/i/IML.md | 7 +++++++ docs/version-specific/supported-software/i/IMOD.md | 7 +++++++ docs/version-specific/supported-software/i/IMPUTE2.md | 7 +++++++ docs/version-specific/supported-software/i/IMa2.md | 7 +++++++ docs/version-specific/supported-software/i/IMa2p.md | 7 +++++++ .../version-specific/supported-software/i/INTEGRATE-Neo.md | 7 +++++++ docs/version-specific/supported-software/i/INTEGRATE.md | 7 +++++++ docs/version-specific/supported-software/i/IOR.md | 7 +++++++ docs/version-specific/supported-software/i/IOzone.md | 7 +++++++ docs/version-specific/supported-software/i/IPM.md | 7 +++++++ docs/version-specific/supported-software/i/IPy.md | 7 +++++++ docs/version-specific/supported-software/i/IPython.md | 7 +++++++ docs/version-specific/supported-software/i/IQ-TREE.md | 7 +++++++ docs/version-specific/supported-software/i/IRkernel.md | 7 +++++++ docs/version-specific/supported-software/i/ISA-L.md | 7 +++++++ docs/version-specific/supported-software/i/ISL.md | 7 +++++++ docs/version-specific/supported-software/i/ITK.md | 7 +++++++ docs/version-specific/supported-software/i/ITSTool.md | 7 +++++++ docs/version-specific/supported-software/i/ITSx.md | 7 +++++++ docs/version-specific/supported-software/i/IgBLAST.md | 7 +++++++ docs/version-specific/supported-software/i/ImageJ.md | 7 +++++++ docs/version-specific/supported-software/i/ImageMagick.md | 7 +++++++ docs/version-specific/supported-software/i/Imath.md | 7 +++++++ docs/version-specific/supported-software/i/Imlib2.md | 7 +++++++ docs/version-specific/supported-software/i/InChI.md | 7 +++++++ docs/version-specific/supported-software/i/InParanoid.md | 7 +++++++ docs/version-specific/supported-software/i/Inelastica.md | 7 +++++++ docs/version-specific/supported-software/i/Inferelator.md | 7 +++++++ docs/version-specific/supported-software/i/Infernal.md | 7 +++++++ docs/version-specific/supported-software/i/Infomap.md | 7 +++++++ docs/version-specific/supported-software/i/Inspector.md | 7 +++++++ docs/version-specific/supported-software/i/IntaRNA.md | 7 +++++++ .../supported-software/i/IntelClusterChecker.md | 7 +++++++ docs/version-specific/supported-software/i/IntelDAAL.md | 7 +++++++ docs/version-specific/supported-software/i/IntelPython.md | 7 +++++++ docs/version-specific/supported-software/i/InterOp.md | 7 +++++++ docs/version-specific/supported-software/i/InterProScan.md | 7 +++++++ .../supported-software/i/InterProScan_data.md | 7 +++++++ docs/version-specific/supported-software/i/IonQuant.md | 7 +++++++ docs/version-specific/supported-software/i/Ipopt.md | 7 +++++++ docs/version-specific/supported-software/i/Iris.md | 7 +++++++ docs/version-specific/supported-software/i/IronPython.md | 7 +++++++ docs/version-specific/supported-software/i/IsoNet.md | 7 +++++++ docs/version-specific/supported-software/i/IsoQuant.md | 7 +++++++ docs/version-specific/supported-software/i/IsoSeq.md | 7 +++++++ .../supported-software/i/IsoformSwitchAnalyzeR.md | 7 +++++++ docs/version-specific/supported-software/i/i-PI.md | 7 +++++++ docs/version-specific/supported-software/i/i-cisTarget.md | 7 +++++++ docs/version-specific/supported-software/i/i7z.md | 7 +++++++ docs/version-specific/supported-software/i/iCount.md | 7 +++++++ docs/version-specific/supported-software/i/iVar.md | 7 +++++++ docs/version-specific/supported-software/i/icc.md | 7 +++++++ docs/version-specific/supported-software/i/iccifort.md | 7 +++++++ docs/version-specific/supported-software/i/iccifortcuda.md | 7 +++++++ docs/version-specific/supported-software/i/iced.md | 7 +++++++ docs/version-specific/supported-software/i/ichorCNA.md | 7 +++++++ docs/version-specific/supported-software/i/icmake.md | 7 +++++++ docs/version-specific/supported-software/i/idemux.md | 7 +++++++ docs/version-specific/supported-software/i/ieeg-cli.md | 7 +++++++ docs/version-specific/supported-software/i/ifort.md | 7 +++++++ docs/version-specific/supported-software/i/igraph.md | 7 +++++++ docs/version-specific/supported-software/i/igv-reports.md | 7 +++++++ docs/version-specific/supported-software/i/igvShiny.md | 7 +++++++ docs/version-specific/supported-software/i/iibff.md | 7 +++++++ docs/version-specific/supported-software/i/iimkl.md | 7 +++++++ docs/version-specific/supported-software/i/iimpi.md | 7 +++++++ docs/version-specific/supported-software/i/iimpic.md | 7 +++++++ docs/version-specific/supported-software/i/imagecodecs.md | 7 +++++++ docs/version-specific/supported-software/i/imageio.md | 7 +++++++ docs/version-specific/supported-software/i/imake.md | 7 +++++++ .../supported-software/i/imbalanced-learn.md | 7 +++++++ docs/version-specific/supported-software/i/imgaug.md | 7 +++++++ docs/version-specific/supported-software/i/imkl-FFTW.md | 7 +++++++ docs/version-specific/supported-software/i/imkl.md | 7 +++++++ docs/version-specific/supported-software/i/immunedeconv.md | 7 +++++++ docs/version-specific/supported-software/i/impi.md | 7 +++++++ docs/version-specific/supported-software/i/imutils.md | 7 +++++++ docs/version-specific/supported-software/i/index.md | 6 ++++++ docs/version-specific/supported-software/i/indicators.md | 7 +++++++ docs/version-specific/supported-software/i/inferCNV.md | 7 +++++++ docs/version-specific/supported-software/i/infercnvpy.md | 7 +++++++ docs/version-specific/supported-software/i/inflection.md | 7 +++++++ docs/version-specific/supported-software/i/inih.md | 7 +++++++ docs/version-specific/supported-software/i/inline.md | 7 +++++++ docs/version-specific/supported-software/i/inputproto.md | 7 +++++++ .../supported-software/i/intel-compilers.md | 7 +++++++ docs/version-specific/supported-software/i/intel.md | 7 +++++++ docs/version-specific/supported-software/i/intelcuda.md | 7 +++++++ .../supported-software/i/intervaltree-python.md | 7 +++++++ docs/version-specific/supported-software/i/intervaltree.md | 7 +++++++ docs/version-specific/supported-software/i/intltool.md | 7 +++++++ docs/version-specific/supported-software/i/io_lib.md | 7 +++++++ docs/version-specific/supported-software/i/ioapi.md | 7 +++++++ docs/version-specific/supported-software/i/iodata.md | 7 +++++++ docs/version-specific/supported-software/i/iomkl.md | 7 +++++++ docs/version-specific/supported-software/i/iompi.md | 7 +++++++ docs/version-specific/supported-software/i/iperf.md | 7 +++++++ docs/version-specific/supported-software/i/ipp.md | 7 +++++++ docs/version-specific/supported-software/i/ipympl.md | 7 +++++++ docs/version-specific/supported-software/i/ipyparallel.md | 7 +++++++ docs/version-specific/supported-software/i/ipyrad.md | 7 +++++++ docs/version-specific/supported-software/i/irodsfs.md | 7 +++++++ docs/version-specific/supported-software/i/isoCirc.md | 7 +++++++ docs/version-specific/supported-software/i/ispc.md | 7 +++++++ docs/version-specific/supported-software/i/itac.md | 7 +++++++ docs/version-specific/supported-software/i/itpp.md | 7 +++++++ docs/version-specific/supported-software/index.md | 4 ++++ docs/version-specific/supported-software/j/JAGS.md | 7 +++++++ docs/version-specific/supported-software/j/JAXFrontCE.md | 7 +++++++ docs/version-specific/supported-software/j/JSON-GLib.md | 7 +++++++ docs/version-specific/supported-software/j/JUBE.md | 7 +++++++ docs/version-specific/supported-software/j/JUnit.md | 7 +++++++ docs/version-specific/supported-software/j/JWM.md | 7 +++++++ docs/version-specific/supported-software/j/Jansson.md | 7 +++++++ docs/version-specific/supported-software/j/JasPer.md | 7 +++++++ docs/version-specific/supported-software/j/Jasmine.md | 7 +++++++ docs/version-specific/supported-software/j/Java.md | 7 +++++++ docs/version-specific/supported-software/j/JavaFX.md | 7 +++++++ docs/version-specific/supported-software/j/Jblob.md | 7 +++++++ docs/version-specific/supported-software/j/Jellyfish.md | 7 +++++++ docs/version-specific/supported-software/j/JiTCODE.md | 7 +++++++ docs/version-specific/supported-software/j/Jmol.md | 7 +++++++ docs/version-specific/supported-software/j/Jorg.md | 7 +++++++ docs/version-specific/supported-software/j/JsonCpp.md | 7 +++++++ docs/version-specific/supported-software/j/Judy.md | 7 +++++++ docs/version-specific/supported-software/j/Julia.md | 7 +++++++ .../supported-software/j/Jupyter-bundle.md | 7 +++++++ docs/version-specific/supported-software/j/JupyterHub.md | 7 +++++++ docs/version-specific/supported-software/j/JupyterLab.md | 7 +++++++ .../supported-software/j/JupyterNotebook.md | 7 +++++++ docs/version-specific/supported-software/j/index.md | 6 ++++++ docs/version-specific/supported-software/j/jModelTest.md | 7 +++++++ docs/version-specific/supported-software/j/jax.md | 7 +++++++ docs/version-specific/supported-software/j/jbigkit.md | 7 +++++++ .../supported-software/j/jedi-language-server.md | 7 +++++++ docs/version-specific/supported-software/j/jedi.md | 7 +++++++ docs/version-specific/supported-software/j/jemalloc.md | 7 +++++++ docs/version-specific/supported-software/j/jhbuild.md | 7 +++++++ docs/version-specific/supported-software/j/jiter.md | 7 +++++++ docs/version-specific/supported-software/j/joypy.md | 7 +++++++ docs/version-specific/supported-software/j/jq.md | 7 +++++++ docs/version-specific/supported-software/j/json-c.md | 7 +++++++ docs/version-specific/supported-software/j/json-fortran.md | 7 +++++++ .../supported-software/j/jupyter-contrib-nbextensions.md | 7 +++++++ .../supported-software/j/jupyter-matlab-proxy.md | 7 +++++++ .../supported-software/j/jupyter-resource-usage.md | 7 +++++++ .../supported-software/j/jupyter-rsession-proxy.md | 7 +++++++ .../supported-software/j/jupyter-server-proxy.md | 7 +++++++ .../supported-software/j/jupyter-server.md | 7 +++++++ .../supported-software/j/jupyterlab-lmod.md | 7 +++++++ docs/version-specific/supported-software/j/jupyterlmod.md | 7 +++++++ docs/version-specific/supported-software/j/jxrlib.md | 7 +++++++ docs/version-specific/supported-software/k/KAT.md | 7 +++++++ docs/version-specific/supported-software/k/KITE.md | 7 +++++++ docs/version-specific/supported-software/k/KMC.md | 7 +++++++ docs/version-specific/supported-software/k/KMCP.md | 7 +++++++ docs/version-specific/supported-software/k/KNIME.md | 7 +++++++ docs/version-specific/supported-software/k/KWIML.md | 7 +++++++ docs/version-specific/supported-software/k/KaHIP.md | 7 +++++++ docs/version-specific/supported-software/k/Kaiju.md | 7 +++++++ docs/version-specific/supported-software/k/Kaleido.md | 7 +++++++ docs/version-specific/supported-software/k/Kalign.md | 7 +++++++ docs/version-specific/supported-software/k/Kent_tools.md | 7 +++++++ docs/version-specific/supported-software/k/Keras.md | 7 +++++++ docs/version-specific/supported-software/k/KerasTuner.md | 7 +++++++ docs/version-specific/supported-software/k/KmerGenie.md | 7 +++++++ docs/version-specific/supported-software/k/Kraken.md | 7 +++++++ docs/version-specific/supported-software/k/Kraken2.md | 7 +++++++ docs/version-specific/supported-software/k/KrakenUniq.md | 7 +++++++ docs/version-specific/supported-software/k/Kratos.md | 7 +++++++ docs/version-specific/supported-software/k/KronaTools.md | 7 +++++++ docs/version-specific/supported-software/k/KyotoCabinet.md | 7 +++++++ docs/version-specific/supported-software/k/index.md | 6 ++++++ docs/version-specific/supported-software/k/kWIP.md | 7 +++++++ docs/version-specific/supported-software/k/kallisto.md | 7 +++++++ docs/version-specific/supported-software/k/kb-python.md | 7 +++++++ docs/version-specific/supported-software/k/kbproto.md | 7 +++++++ docs/version-specific/supported-software/k/kedro.md | 7 +++++++ docs/version-specific/supported-software/k/khmer.md | 7 +++++++ docs/version-specific/supported-software/k/kim-api.md | 7 +++++++ docs/version-specific/supported-software/k/kineto.md | 7 +++++++ docs/version-specific/supported-software/k/king.md | 7 +++++++ docs/version-specific/supported-software/k/kma.md | 7 +++++++ docs/version-specific/supported-software/k/kneaddata.md | 7 +++++++ docs/version-specific/supported-software/k/kpcalg.md | 7 +++++++ docs/version-specific/supported-software/k/krbalancing.md | 7 +++++++ docs/version-specific/supported-software/k/kwant.md | 7 +++++++ docs/version-specific/supported-software/l/LADR.md | 7 +++++++ docs/version-specific/supported-software/l/LAME.md | 7 +++++++ docs/version-specific/supported-software/l/LAMMPS.md | 7 +++++++ docs/version-specific/supported-software/l/LAPACK.md | 7 +++++++ docs/version-specific/supported-software/l/LASSO-Python.md | 7 +++++++ docs/version-specific/supported-software/l/LAST.md | 7 +++++++ docs/version-specific/supported-software/l/LASTZ.md | 7 +++++++ docs/version-specific/supported-software/l/LBFGS++.md | 7 +++++++ docs/version-specific/supported-software/l/LCov.md | 7 +++++++ docs/version-specific/supported-software/l/LDC.md | 7 +++++++ docs/version-specific/supported-software/l/LEMON.md | 7 +++++++ docs/version-specific/supported-software/l/LERC.md | 7 +++++++ docs/version-specific/supported-software/l/LHAPDF.md | 7 +++++++ docs/version-specific/supported-software/l/LIANA.md | 7 +++++++ .../version-specific/supported-software/l/LIBSVM-MATLAB.md | 7 +++++++ .../version-specific/supported-software/l/LIBSVM-Python.md | 7 +++++++ docs/version-specific/supported-software/l/LIBSVM.md | 7 +++++++ docs/version-specific/supported-software/l/LISFLOOD-FP.md | 7 +++++++ docs/version-specific/supported-software/l/LLDB.md | 7 +++++++ docs/version-specific/supported-software/l/LLVM.md | 7 +++++++ docs/version-specific/supported-software/l/LMDB.md | 7 +++++++ docs/version-specific/supported-software/l/LMfit.md | 7 +++++++ docs/version-specific/supported-software/l/LOHHLA.md | 7 +++++++ docs/version-specific/supported-software/l/LPJmL.md | 7 +++++++ docs/version-specific/supported-software/l/LPeg.md | 7 +++++++ docs/version-specific/supported-software/l/LS-PrePost.md | 7 +++++++ docs/version-specific/supported-software/l/LSD2.md | 7 +++++++ docs/version-specific/supported-software/l/LSMS.md | 7 +++++++ .../version-specific/supported-software/l/LTR_retriever.md | 7 +++++++ docs/version-specific/supported-software/l/LUMPY.md | 7 +++++++ docs/version-specific/supported-software/l/LUSCUS.md | 7 +++++++ docs/version-specific/supported-software/l/LZO.md | 7 +++++++ .../supported-software/l/L_RNA_scaffolder.md | 7 +++++++ .../supported-software/l/Lab-Streaming-Layer.md | 7 +++++++ docs/version-specific/supported-software/l/Lace.md | 7 +++++++ docs/version-specific/supported-software/l/LangChain.md | 7 +++++++ docs/version-specific/supported-software/l/LayoutParser.md | 7 +++++++ docs/version-specific/supported-software/l/LeadIT.md | 7 +++++++ docs/version-specific/supported-software/l/Leptonica.md | 7 +++++++ docs/version-specific/supported-software/l/LevelDB.md | 7 +++++++ docs/version-specific/supported-software/l/Levenshtein.md | 7 +++++++ docs/version-specific/supported-software/l/LiBis.md | 7 +++++++ docs/version-specific/supported-software/l/LibLZF.md | 7 +++++++ docs/version-specific/supported-software/l/LibSoup.md | 7 +++++++ docs/version-specific/supported-software/l/LibTIFF.md | 7 +++++++ docs/version-specific/supported-software/l/LibUUID.md | 7 +++++++ docs/version-specific/supported-software/l/Libint.md | 7 +++++++ docs/version-specific/supported-software/l/Lighter.md | 7 +++++++ docs/version-specific/supported-software/l/Lightning.md | 7 +++++++ docs/version-specific/supported-software/l/LinBox.md | 7 +++++++ docs/version-specific/supported-software/l/Lingeling.md | 7 +++++++ docs/version-specific/supported-software/l/LittleCMS.md | 7 +++++++ docs/version-specific/supported-software/l/Lmod.md | 7 +++++++ docs/version-specific/supported-software/l/LncLOOM.md | 7 +++++++ docs/version-specific/supported-software/l/LoFreq.md | 7 +++++++ docs/version-specific/supported-software/l/LoRDEC.md | 7 +++++++ docs/version-specific/supported-software/l/LocARNA.md | 7 +++++++ docs/version-specific/supported-software/l/Log-Log4perl.md | 7 +++++++ docs/version-specific/supported-software/l/Loki.md | 7 +++++++ docs/version-specific/supported-software/l/Longshot.md | 7 +++++++ docs/version-specific/supported-software/l/LoopTools.md | 7 +++++++ docs/version-specific/supported-software/l/LtrDetector.md | 7 +++++++ docs/version-specific/supported-software/l/Lua.md | 7 +++++++ docs/version-specific/supported-software/l/LuaJIT.md | 7 +++++++ .../supported-software/l/LuaJIT2-OpenResty.md | 7 +++++++ docs/version-specific/supported-software/l/LuaRocks.md | 7 +++++++ .../supported-software/l/Lucene-Geo-Gazetteer.md | 7 +++++++ docs/version-specific/supported-software/l/index.md | 6 ++++++ docs/version-specific/supported-software/l/lDDT.md | 7 +++++++ .../supported-software/l/lagrangian-filtering.md | 7 +++++++ docs/version-specific/supported-software/l/lancet.md | 7 +++++++ .../supported-software/l/langchain-anthropic.md | 7 +++++++ docs/version-specific/supported-software/l/lavaan.md | 7 +++++++ docs/version-specific/supported-software/l/lcalc.md | 7 +++++++ docs/version-specific/supported-software/l/leafcutter.md | 7 +++++++ docs/version-specific/supported-software/l/leidenalg.md | 7 +++++++ docs/version-specific/supported-software/l/less.md | 7 +++++++ docs/version-specific/supported-software/l/lftp.md | 7 +++++++ docs/version-specific/supported-software/l/libBigWig.md | 7 +++++++ docs/version-specific/supported-software/l/libFLAME.md | 7 +++++++ docs/version-specific/supported-software/l/libGDSII.md | 7 +++++++ docs/version-specific/supported-software/l/libGLU.md | 7 +++++++ docs/version-specific/supported-software/l/libGridXC.md | 7 +++++++ docs/version-specific/supported-software/l/libICE.md | 7 +++++++ docs/version-specific/supported-software/l/libMemcached.md | 7 +++++++ docs/version-specific/supported-software/l/libPSML.md | 7 +++++++ docs/version-specific/supported-software/l/libQGLViewer.md | 7 +++++++ docs/version-specific/supported-software/l/libRmath.md | 7 +++++++ docs/version-specific/supported-software/l/libSBML.md | 7 +++++++ docs/version-specific/supported-software/l/libSM.md | 7 +++++++ docs/version-specific/supported-software/l/libStatGen.md | 7 +++++++ .../supported-software/l/libWallModelledLES.md | 7 +++++++ docs/version-specific/supported-software/l/libX11.md | 7 +++++++ docs/version-specific/supported-software/l/libXau.md | 7 +++++++ docs/version-specific/supported-software/l/libXcursor.md | 7 +++++++ docs/version-specific/supported-software/l/libXdamage.md | 7 +++++++ docs/version-specific/supported-software/l/libXdmcp.md | 7 +++++++ docs/version-specific/supported-software/l/libXext.md | 7 +++++++ docs/version-specific/supported-software/l/libXfixes.md | 7 +++++++ docs/version-specific/supported-software/l/libXfont.md | 7 +++++++ docs/version-specific/supported-software/l/libXft.md | 7 +++++++ docs/version-specific/supported-software/l/libXi.md | 7 +++++++ docs/version-specific/supported-software/l/libXinerama.md | 7 +++++++ docs/version-specific/supported-software/l/libXmu.md | 7 +++++++ docs/version-specific/supported-software/l/libXp.md | 7 +++++++ docs/version-specific/supported-software/l/libXpm.md | 7 +++++++ docs/version-specific/supported-software/l/libXrandr.md | 7 +++++++ docs/version-specific/supported-software/l/libXrender.md | 7 +++++++ docs/version-specific/supported-software/l/libXt.md | 7 +++++++ docs/version-specific/supported-software/l/libXxf86vm.md | 7 +++++++ docs/version-specific/supported-software/l/libabigail.md | 7 +++++++ docs/version-specific/supported-software/l/libaec.md | 7 +++++++ docs/version-specific/supported-software/l/libaed2.md | 7 +++++++ docs/version-specific/supported-software/l/libaio.md | 7 +++++++ docs/version-specific/supported-software/l/libarchive.md | 7 +++++++ docs/version-specific/supported-software/l/libav.md | 7 +++++++ docs/version-specific/supported-software/l/libavif.md | 7 +++++++ .../version-specific/supported-software/l/libbaseencode.md | 7 +++++++ docs/version-specific/supported-software/l/libbitmask.md | 7 +++++++ docs/version-specific/supported-software/l/libbraiding.md | 7 +++++++ docs/version-specific/supported-software/l/libcdms.md | 7 +++++++ docs/version-specific/supported-software/l/libcerf.md | 7 +++++++ docs/version-specific/supported-software/l/libcint.md | 7 +++++++ docs/version-specific/supported-software/l/libcircle.md | 7 +++++++ docs/version-specific/supported-software/l/libcmaes.md | 7 +++++++ docs/version-specific/supported-software/l/libconfig.md | 7 +++++++ docs/version-specific/supported-software/l/libcotp.md | 7 +++++++ docs/version-specific/supported-software/l/libcpuset.md | 7 +++++++ docs/version-specific/supported-software/l/libcroco.md | 7 +++++++ docs/version-specific/supported-software/l/libctl.md | 7 +++++++ docs/version-specific/supported-software/l/libdap.md | 7 +++++++ docs/version-specific/supported-software/l/libde265.md | 7 +++++++ docs/version-specific/supported-software/l/libdeflate.md | 7 +++++++ .../version-specific/supported-software/l/libdivsufsort.md | 7 +++++++ docs/version-specific/supported-software/l/libdrm.md | 7 +++++++ docs/version-specific/supported-software/l/libdrs.md | 7 +++++++ docs/version-specific/supported-software/l/libdwarf.md | 7 +++++++ docs/version-specific/supported-software/l/libedit.md | 7 +++++++ docs/version-specific/supported-software/l/libelf.md | 7 +++++++ docs/version-specific/supported-software/l/libemf.md | 7 +++++++ docs/version-specific/supported-software/l/libepoxy.md | 7 +++++++ docs/version-specific/supported-software/l/libev.md | 7 +++++++ docs/version-specific/supported-software/l/libevent.md | 7 +++++++ docs/version-specific/supported-software/l/libexif.md | 7 +++++++ docs/version-specific/supported-software/l/libfabric.md | 7 +++++++ docs/version-specific/supported-software/l/libfdf.md | 7 +++++++ docs/version-specific/supported-software/l/libffcall.md | 7 +++++++ docs/version-specific/supported-software/l/libffi.md | 7 +++++++ docs/version-specific/supported-software/l/libfontenc.md | 7 +++++++ docs/version-specific/supported-software/l/libfyaml.md | 7 +++++++ docs/version-specific/supported-software/l/libgcrypt.md | 7 +++++++ docs/version-specific/supported-software/l/libgd.md | 7 +++++++ docs/version-specific/supported-software/l/libgdiplus.md | 7 +++++++ docs/version-specific/supported-software/l/libgeotiff.md | 7 +++++++ docs/version-specific/supported-software/l/libgit2.md | 7 +++++++ docs/version-specific/supported-software/l/libglade.md | 7 +++++++ docs/version-specific/supported-software/l/libglvnd.md | 7 +++++++ docs/version-specific/supported-software/l/libgpg-error.md | 7 +++++++ docs/version-specific/supported-software/l/libgpuarray.md | 7 +++++++ .../version-specific/supported-software/l/libgtextutils.md | 7 +++++++ docs/version-specific/supported-software/l/libgxps.md | 7 +++++++ docs/version-specific/supported-software/l/libhandy.md | 7 +++++++ docs/version-specific/supported-software/l/libharu.md | 7 +++++++ docs/version-specific/supported-software/l/libheif.md | 7 +++++++ docs/version-specific/supported-software/l/libhomfly.md | 7 +++++++ docs/version-specific/supported-software/l/libibmad.md | 7 +++++++ docs/version-specific/supported-software/l/libibumad.md | 7 +++++++ docs/version-specific/supported-software/l/libiconv.md | 7 +++++++ docs/version-specific/supported-software/l/libidn.md | 7 +++++++ docs/version-specific/supported-software/l/libidn2.md | 7 +++++++ .../version-specific/supported-software/l/libjpeg-turbo.md | 7 +++++++ docs/version-specific/supported-software/l/libjxl.md | 7 +++++++ docs/version-specific/supported-software/l/libleidenalg.md | 7 +++++++ docs/version-specific/supported-software/l/libmad.md | 7 +++++++ docs/version-specific/supported-software/l/libmatheval.md | 7 +++++++ docs/version-specific/supported-software/l/libmaus2.md | 7 +++++++ docs/version-specific/supported-software/l/libmbd.md | 7 +++++++ .../version-specific/supported-software/l/libmicrohttpd.md | 7 +++++++ docs/version-specific/supported-software/l/libmo_unpack.md | 7 +++++++ docs/version-specific/supported-software/l/libmypaint.md | 7 +++++++ docs/version-specific/supported-software/l/libnsl.md | 7 +++++++ docs/version-specific/supported-software/l/libobjcryst.md | 7 +++++++ docs/version-specific/supported-software/l/libogg.md | 7 +++++++ docs/version-specific/supported-software/l/libopus.md | 7 +++++++ docs/version-specific/supported-software/l/libosmium.md | 7 +++++++ docs/version-specific/supported-software/l/libpci.md | 7 +++++++ docs/version-specific/supported-software/l/libpciaccess.md | 7 +++++++ docs/version-specific/supported-software/l/libplinkio.md | 7 +++++++ docs/version-specific/supported-software/l/libpng.md | 7 +++++++ docs/version-specific/supported-software/l/libpsl.md | 7 +++++++ docs/version-specific/supported-software/l/libpsortb.md | 7 +++++++ docs/version-specific/supported-software/l/libpspio.md | 7 +++++++ .../supported-software/l/libpthread-stubs.md | 7 +++++++ docs/version-specific/supported-software/l/libreadline.md | 7 +++++++ docs/version-specific/supported-software/l/librosa.md | 7 +++++++ docs/version-specific/supported-software/l/librsb.md | 7 +++++++ docs/version-specific/supported-software/l/librsvg.md | 7 +++++++ docs/version-specific/supported-software/l/librttopo.md | 7 +++++++ .../version-specific/supported-software/l/libsamplerate.md | 7 +++++++ docs/version-specific/supported-software/l/libsigc++.md | 7 +++++++ docs/version-specific/supported-software/l/libsigsegv.md | 7 +++++++ docs/version-specific/supported-software/l/libsndfile.md | 7 +++++++ docs/version-specific/supported-software/l/libsodium.md | 7 +++++++ .../supported-software/l/libspatialindex.md | 7 +++++++ .../version-specific/supported-software/l/libspatialite.md | 7 +++++++ docs/version-specific/supported-software/l/libspectre.md | 7 +++++++ docs/version-specific/supported-software/l/libssh.md | 7 +++++++ docs/version-specific/supported-software/l/libsupermesh.md | 7 +++++++ docs/version-specific/supported-software/l/libtar.md | 7 +++++++ docs/version-specific/supported-software/l/libtasn1.md | 7 +++++++ docs/version-specific/supported-software/l/libtecla.md | 7 +++++++ docs/version-specific/supported-software/l/libtirpc.md | 7 +++++++ docs/version-specific/supported-software/l/libtool.md | 7 +++++++ docs/version-specific/supported-software/l/libtree.md | 7 +++++++ docs/version-specific/supported-software/l/libunistring.md | 7 +++++++ docs/version-specific/supported-software/l/libunwind.md | 7 +++++++ docs/version-specific/supported-software/l/libutempter.md | 7 +++++++ docs/version-specific/supported-software/l/libuv.md | 7 +++++++ docs/version-specific/supported-software/l/libvdwxc.md | 7 +++++++ docs/version-specific/supported-software/l/libvorbis.md | 7 +++++++ docs/version-specific/supported-software/l/libvori.md | 7 +++++++ docs/version-specific/supported-software/l/libwebp.md | 7 +++++++ docs/version-specific/supported-software/l/libwpe.md | 7 +++++++ docs/version-specific/supported-software/l/libxc.md | 7 +++++++ docs/version-specific/supported-software/l/libxcb.md | 7 +++++++ docs/version-specific/supported-software/l/libxkbcommon.md | 7 +++++++ docs/version-specific/supported-software/l/libxml++.md | 7 +++++++ .../supported-software/l/libxml2-python.md | 7 +++++++ docs/version-specific/supported-software/l/libxml2.md | 7 +++++++ docs/version-specific/supported-software/l/libxslt.md | 7 +++++++ docs/version-specific/supported-software/l/libxsmm.md | 7 +++++++ docs/version-specific/supported-software/l/libyaml.md | 7 +++++++ docs/version-specific/supported-software/l/libzeep.md | 7 +++++++ docs/version-specific/supported-software/l/libzip.md | 7 +++++++ docs/version-specific/supported-software/l/lie_learn.md | 7 +++++++ docs/version-specific/supported-software/l/lifelines.md | 7 +++++++ docs/version-specific/supported-software/l/liknorm.md | 7 +++++++ docs/version-specific/supported-software/l/likwid.md | 7 +++++++ docs/version-specific/supported-software/l/lil-aretomo.md | 7 +++++++ docs/version-specific/supported-software/l/limix.md | 7 +++++++ .../version-specific/supported-software/l/line_profiler.md | 7 +++++++ docs/version-specific/supported-software/l/lit.md | 7 +++++++ docs/version-specific/supported-software/l/lmoments3.md | 7 +++++++ docs/version-specific/supported-software/l/logaddexp.md | 7 +++++++ .../supported-software/l/longestrunsubsequence.md | 7 +++++++ docs/version-specific/supported-software/l/longread_umi.md | 7 +++++++ docs/version-specific/supported-software/l/loomR.md | 7 +++++++ docs/version-specific/supported-software/l/loompy.md | 7 +++++++ docs/version-specific/supported-software/l/lpsolve.md | 7 +++++++ docs/version-specific/supported-software/l/lrslib.md | 7 +++++++ docs/version-specific/supported-software/l/lwgrp.md | 7 +++++++ docs/version-specific/supported-software/l/lxml.md | 7 +++++++ docs/version-specific/supported-software/l/lynx.md | 7 +++++++ docs/version-specific/supported-software/l/lz4.md | 7 +++++++ docs/version-specific/supported-software/m/M1QN3.md | 7 +++++++ docs/version-specific/supported-software/m/M3GNet.md | 7 +++++++ docs/version-specific/supported-software/m/M4.md | 7 +++++++ docs/version-specific/supported-software/m/MACH.md | 7 +++++++ docs/version-specific/supported-software/m/MACS2.md | 7 +++++++ docs/version-specific/supported-software/m/MACS3.md | 7 +++++++ docs/version-specific/supported-software/m/MACSE.md | 7 +++++++ docs/version-specific/supported-software/m/MAFFT.md | 7 +++++++ .../supported-software/m/MAGMA-gene-analysis.md | 7 +++++++ docs/version-specific/supported-software/m/MAGeCK.md | 7 +++++++ docs/version-specific/supported-software/m/MAJIQ.md | 7 +++++++ docs/version-specific/supported-software/m/MAKER.md | 7 +++++++ docs/version-specific/supported-software/m/MARS.md | 7 +++++++ docs/version-specific/supported-software/m/MATIO.md | 7 +++++++ .../version-specific/supported-software/m/MATLAB-Engine.md | 7 +++++++ docs/version-specific/supported-software/m/MATLAB.md | 7 +++++++ docs/version-specific/supported-software/m/MATSim.md | 7 +++++++ docs/version-specific/supported-software/m/MBROLA.md | 7 +++++++ docs/version-specific/supported-software/m/MCL.md | 7 +++++++ docs/version-specific/supported-software/m/MCR.md | 7 +++++++ docs/version-specific/supported-software/m/MDAnalysis.md | 7 +++++++ docs/version-specific/supported-software/m/MDBM.md | 7 +++++++ docs/version-specific/supported-software/m/MDI.md | 7 +++++++ docs/version-specific/supported-software/m/MDSplus-Java.md | 7 +++++++ .../supported-software/m/MDSplus-Python.md | 7 +++++++ docs/version-specific/supported-software/m/MDSplus.md | 7 +++++++ docs/version-specific/supported-software/m/MDTraj.md | 7 +++++++ docs/version-specific/supported-software/m/MEGA.md | 7 +++++++ docs/version-specific/supported-software/m/MEGACC.md | 7 +++++++ docs/version-specific/supported-software/m/MEGAHIT.md | 7 +++++++ docs/version-specific/supported-software/m/MEGAN.md | 7 +++++++ docs/version-specific/supported-software/m/MEM.md | 7 +++++++ docs/version-specific/supported-software/m/MEME.md | 7 +++++++ docs/version-specific/supported-software/m/MEMOTE.md | 7 +++++++ docs/version-specific/supported-software/m/MERCKX.md | 7 +++++++ docs/version-specific/supported-software/m/MESS.md | 7 +++++++ docs/version-specific/supported-software/m/METIS.md | 7 +++++++ docs/version-specific/supported-software/m/MICOM.md | 7 +++++++ docs/version-specific/supported-software/m/MIGRATE-N.md | 7 +++++++ docs/version-specific/supported-software/m/MINC.md | 7 +++++++ docs/version-specific/supported-software/m/MINPACK.md | 7 +++++++ docs/version-specific/supported-software/m/MIRA.md | 7 +++++++ docs/version-specific/supported-software/m/MITObim.md | 7 +++++++ docs/version-specific/supported-software/m/MITgcmutils.md | 7 +++++++ docs/version-specific/supported-software/m/MLC.md | 7 +++++++ docs/version-specific/supported-software/m/MLflow.md | 7 +++++++ docs/version-specific/supported-software/m/MLxtend.md | 7 +++++++ docs/version-specific/supported-software/m/MMSEQ.md | 7 +++++++ docs/version-specific/supported-software/m/MMseqs2.md | 7 +++++++ docs/version-specific/supported-software/m/MNE-Python.md | 7 +++++++ docs/version-specific/supported-software/m/MOABB.md | 7 +++++++ docs/version-specific/supported-software/m/MOABS.md | 7 +++++++ docs/version-specific/supported-software/m/MOB-suite.md | 7 +++++++ docs/version-specific/supported-software/m/MODFLOW.md | 7 +++++++ docs/version-specific/supported-software/m/MOFA2.md | 7 +++++++ docs/version-specific/supported-software/m/MONA.md | 7 +++++++ docs/version-specific/supported-software/m/MONAI-Label.md | 7 +++++++ docs/version-specific/supported-software/m/MONAI.md | 7 +++++++ docs/version-specific/supported-software/m/MOOSE.md | 7 +++++++ docs/version-specific/supported-software/m/MPB.md | 7 +++++++ docs/version-specific/supported-software/m/MPC.md | 7 +++++++ docs/version-specific/supported-software/m/MPFI.md | 7 +++++++ docs/version-specific/supported-software/m/MPFR.md | 7 +++++++ docs/version-specific/supported-software/m/MPICH.md | 7 +++++++ docs/version-specific/supported-software/m/MPICH2.md | 7 +++++++ docs/version-specific/supported-software/m/MPJ-Express.md | 7 +++++++ docs/version-specific/supported-software/m/MRCPP.md | 7 +++++++ docs/version-specific/supported-software/m/MRChem.md | 7 +++++++ docs/version-specific/supported-software/m/MRIcron.md | 7 +++++++ docs/version-specific/supported-software/m/MRPRESSO.md | 7 +++++++ docs/version-specific/supported-software/m/MRtrix.md | 7 +++++++ docs/version-specific/supported-software/m/MSFragger.md | 7 +++++++ docs/version-specific/supported-software/m/MSM.md | 7 +++++++ docs/version-specific/supported-software/m/MSPC.md | 7 +++++++ docs/version-specific/supported-software/m/MTL4.md | 7 +++++++ docs/version-specific/supported-software/m/MUMPS.md | 7 +++++++ docs/version-specific/supported-software/m/MUMmer.md | 7 +++++++ docs/version-specific/supported-software/m/MUSCLE.md | 7 +++++++ docs/version-specific/supported-software/m/MUSCLE3.md | 7 +++++++ docs/version-specific/supported-software/m/MUST.md | 7 +++++++ docs/version-specific/supported-software/m/MVAPICH2.md | 7 +++++++ docs/version-specific/supported-software/m/MView.md | 7 +++++++ docs/version-specific/supported-software/m/MXNet.md | 7 +++++++ docs/version-specific/supported-software/m/MaSuRCA.md | 7 +++++++ docs/version-specific/supported-software/m/Magics.md | 7 +++++++ docs/version-specific/supported-software/m/MagresPython.md | 7 +++++++ docs/version-specific/supported-software/m/Mako.md | 7 +++++++ docs/version-specific/supported-software/m/Mamba.md | 7 +++++++ docs/version-specific/supported-software/m/MapSplice.md | 7 +++++++ docs/version-specific/supported-software/m/Maple.md | 7 +++++++ docs/version-specific/supported-software/m/Maq.md | 7 +++++++ .../supported-software/m/MariaDB-connector-c.md | 7 +++++++ docs/version-specific/supported-software/m/MariaDB.md | 7 +++++++ docs/version-specific/supported-software/m/Markdown.md | 7 +++++++ docs/version-specific/supported-software/m/Mash.md | 7 +++++++ docs/version-specific/supported-software/m/Mashtree.md | 7 +++++++ docs/version-specific/supported-software/m/MathGL.md | 7 +++++++ docs/version-specific/supported-software/m/Mathematica.md | 7 +++++++ docs/version-specific/supported-software/m/Maude.md | 7 +++++++ docs/version-specific/supported-software/m/Maven.md | 7 +++++++ docs/version-specific/supported-software/m/MaxBin.md | 7 +++++++ docs/version-specific/supported-software/m/MaxQuant.md | 7 +++++++ docs/version-specific/supported-software/m/MbedTLS.md | 7 +++++++ docs/version-specific/supported-software/m/MedPy.md | 7 +++++++ docs/version-specific/supported-software/m/Meep.md | 7 +++++++ docs/version-specific/supported-software/m/Megalodon.md | 7 +++++++ docs/version-specific/supported-software/m/Meld.md | 7 +++++++ docs/version-specific/supported-software/m/Mercurial.md | 7 +++++++ docs/version-specific/supported-software/m/Mesa-demos.md | 7 +++++++ docs/version-specific/supported-software/m/Mesa.md | 7 +++++++ docs/version-specific/supported-software/m/Meson.md | 7 +++++++ docs/version-specific/supported-software/m/Mesquite.md | 7 +++++++ docs/version-specific/supported-software/m/MetaBAT.md | 7 +++++++ docs/version-specific/supported-software/m/MetaDecoder.md | 7 +++++++ docs/version-specific/supported-software/m/MetaEuk.md | 7 +++++++ .../supported-software/m/MetaGeneAnnotator.md | 7 +++++++ docs/version-specific/supported-software/m/MetaMorpheus.md | 7 +++++++ docs/version-specific/supported-software/m/MetaPhlAn.md | 7 +++++++ docs/version-specific/supported-software/m/MetaPhlAn2.md | 7 +++++++ .../supported-software/m/MetaboAnalystR.md | 7 +++++++ .../supported-software/m/Metagenome-Atlas.md | 7 +++++++ docs/version-specific/supported-software/m/Metal.md | 7 +++++++ docs/version-specific/supported-software/m/MetalWalls.md | 7 +++++++ docs/version-specific/supported-software/m/Metaxa2.md | 7 +++++++ docs/version-specific/supported-software/m/MethylDackel.md | 7 +++++++ docs/version-specific/supported-software/m/MiGEC.md | 7 +++++++ docs/version-specific/supported-software/m/MiXCR.md | 7 +++++++ .../supported-software/m/MicrobeAnnotator.md | 7 +++++++ docs/version-specific/supported-software/m/Mikado.md | 7 +++++++ docs/version-specific/supported-software/m/Miller.md | 7 +++++++ docs/version-specific/supported-software/m/MinCED.md | 7 +++++++ docs/version-specific/supported-software/m/MinPath.md | 7 +++++++ docs/version-specific/supported-software/m/Mini-XML.md | 7 +++++++ docs/version-specific/supported-software/m/MiniCARD.md | 7 +++++++ docs/version-specific/supported-software/m/MiniSat.md | 7 +++++++ docs/version-specific/supported-software/m/Miniconda2.md | 7 +++++++ docs/version-specific/supported-software/m/Miniconda3.md | 7 +++++++ docs/version-specific/supported-software/m/Miniforge3.md | 7 +++++++ docs/version-specific/supported-software/m/Minimac4.md | 7 +++++++ docs/version-specific/supported-software/m/Minipolish.md | 7 +++++++ docs/version-specific/supported-software/m/Mish-Cuda.md | 7 +++++++ docs/version-specific/supported-software/m/MitoHiFi.md | 7 +++++++ docs/version-specific/supported-software/m/MitoZ.md | 7 +++++++ docs/version-specific/supported-software/m/MixMHC2pred.md | 7 +++++++ docs/version-specific/supported-software/m/Mmg.md | 7 +++++++ docs/version-specific/supported-software/m/ModelTest-NG.md | 7 +++++++ docs/version-specific/supported-software/m/Molcas.md | 7 +++++++ docs/version-specific/supported-software/m/Molden.md | 7 +++++++ docs/version-specific/supported-software/m/Molekel.md | 7 +++++++ docs/version-specific/supported-software/m/Molpro.md | 7 +++++++ docs/version-specific/supported-software/m/Mono.md | 7 +++++++ docs/version-specific/supported-software/m/Monocle3.md | 7 +++++++ docs/version-specific/supported-software/m/MoreRONN.md | 7 +++++++ docs/version-specific/supported-software/m/Mothur.md | 7 +++++++ docs/version-specific/supported-software/m/MotionCor2.md | 7 +++++++ docs/version-specific/supported-software/m/MotionCor3.md | 7 +++++++ docs/version-specific/supported-software/m/MoviePy.md | 7 +++++++ docs/version-specific/supported-software/m/MrBayes.md | 7 +++++++ docs/version-specific/supported-software/m/MuJoCo.md | 7 +++++++ docs/version-specific/supported-software/m/MuPeXI.md | 7 +++++++ docs/version-specific/supported-software/m/MuSiC.md | 7 +++++++ docs/version-specific/supported-software/m/MuTect.md | 7 +++++++ docs/version-specific/supported-software/m/MultiNest.md | 7 +++++++ docs/version-specific/supported-software/m/MultiQC.md | 7 +++++++ .../supported-software/m/MultilevelEstimators.md | 7 +++++++ docs/version-specific/supported-software/m/Multiwfn.md | 7 +++++++ docs/version-specific/supported-software/m/MyCC.md | 7 +++++++ docs/version-specific/supported-software/m/MyMediaLite.md | 7 +++++++ docs/version-specific/supported-software/m/MySQL-python.md | 7 +++++++ docs/version-specific/supported-software/m/MySQL.md | 7 +++++++ docs/version-specific/supported-software/m/Myokit.md | 7 +++++++ docs/version-specific/supported-software/m/index.md | 6 ++++++ docs/version-specific/supported-software/m/m4ri.md | 7 +++++++ docs/version-specific/supported-software/m/m4rie.md | 7 +++++++ docs/version-specific/supported-software/m/maeparser.md | 7 +++++++ docs/version-specific/supported-software/m/magick.md | 7 +++++++ docs/version-specific/supported-software/m/magma.md | 7 +++++++ docs/version-specific/supported-software/m/mahotas.md | 7 +++++++ docs/version-specific/supported-software/m/make.md | 7 +++++++ docs/version-specific/supported-software/m/makedepend.md | 7 +++++++ docs/version-specific/supported-software/m/makedepf90.md | 7 +++++++ docs/version-specific/supported-software/m/makefun.md | 7 +++++++ docs/version-specific/supported-software/m/makeinfo.md | 7 +++++++ docs/version-specific/supported-software/m/mandrake.md | 7 +++++++ docs/version-specific/supported-software/m/mannkendall.md | 7 +++++++ docs/version-specific/supported-software/m/manta.md | 7 +++++++ docs/version-specific/supported-software/m/mapDamage.md | 7 +++++++ docs/version-specific/supported-software/m/matlab-proxy.md | 7 +++++++ .../supported-software/m/matplotlib-inline.md | 7 +++++++ docs/version-specific/supported-software/m/matplotlib.md | 7 +++++++ docs/version-specific/supported-software/m/maturin.md | 7 +++++++ docs/version-specific/supported-software/m/mauveAligner.md | 7 +++++++ docs/version-specific/supported-software/m/mawk.md | 7 +++++++ docs/version-specific/supported-software/m/mayavi.md | 7 +++++++ docs/version-specific/supported-software/m/maze.md | 7 +++++++ docs/version-specific/supported-software/m/mbuffer.md | 7 +++++++ docs/version-specific/supported-software/m/mc.md | 7 +++++++ docs/version-specific/supported-software/m/mctc-lib.md | 7 +++++++ docs/version-specific/supported-software/m/mcu.md | 7 +++++++ docs/version-specific/supported-software/m/mdtest.md | 7 +++++++ docs/version-specific/supported-software/m/mdust.md | 7 +++++++ docs/version-specific/supported-software/m/meRanTK.md | 7 +++++++ docs/version-specific/supported-software/m/meboot.md | 7 +++++++ docs/version-specific/supported-software/m/medImgProc.md | 7 +++++++ docs/version-specific/supported-software/m/medaka.md | 7 +++++++ docs/version-specific/supported-software/m/memkind.md | 7 +++++++ .../supported-software/m/memory-profiler.md | 7 +++++++ docs/version-specific/supported-software/m/memtester.md | 7 +++++++ docs/version-specific/supported-software/m/meshalyzer.md | 7 +++++++ docs/version-specific/supported-software/m/meshio.md | 7 +++++++ docs/version-specific/supported-software/m/meshtool.md | 7 +++++++ docs/version-specific/supported-software/m/meson-python.md | 7 +++++++ docs/version-specific/supported-software/m/metaWRAP.md | 7 +++++++ docs/version-specific/supported-software/m/metaerg.md | 7 +++++++ docs/version-specific/supported-software/m/methylartist.md | 7 +++++++ docs/version-specific/supported-software/m/methylpy.md | 7 +++++++ docs/version-specific/supported-software/m/mfqe.md | 7 +++++++ docs/version-specific/supported-software/m/mgen.md | 7 +++++++ docs/version-specific/supported-software/m/mgltools.md | 7 +++++++ docs/version-specific/supported-software/m/mhcflurry.md | 7 +++++++ docs/version-specific/supported-software/m/mhcnuggets.md | 7 +++++++ docs/version-specific/supported-software/m/miRDeep2.md | 7 +++++++ docs/version-specific/supported-software/m/microctools.md | 7 +++++++ docs/version-specific/supported-software/m/mimalloc.md | 7 +++++++ docs/version-specific/supported-software/m/miniasm.md | 7 +++++++ docs/version-specific/supported-software/m/minibar.md | 7 +++++++ docs/version-specific/supported-software/m/minieigen.md | 7 +++++++ docs/version-specific/supported-software/m/minimap2.md | 7 +++++++ docs/version-specific/supported-software/m/minizip.md | 7 +++++++ docs/version-specific/supported-software/m/misha.md | 7 +++++++ docs/version-specific/supported-software/m/mkl-dnn.md | 7 +++++++ docs/version-specific/supported-software/m/mkl-service.md | 7 +++++++ docs/version-specific/supported-software/m/mkl_fft.md | 7 +++++++ .../supported-software/m/ml-collections.md | 7 +++++++ docs/version-specific/supported-software/m/ml_dtypes.md | 7 +++++++ docs/version-specific/supported-software/m/mlpack.md | 7 +++++++ docs/version-specific/supported-software/m/mm-common.md | 7 +++++++ docs/version-specific/supported-software/m/mmtf-cpp.md | 7 +++++++ docs/version-specific/supported-software/m/modred.md | 7 +++++++ docs/version-specific/supported-software/m/mold.md | 7 +++++++ docs/version-specific/supported-software/m/molecularGSM.md | 7 +++++++ docs/version-specific/supported-software/m/molmod.md | 7 +++++++ docs/version-specific/supported-software/m/mongolite.md | 7 +++++++ docs/version-specific/supported-software/m/moonjit.md | 7 +++++++ docs/version-specific/supported-software/m/mordecai.md | 7 +++++++ .../supported-software/m/morphosamplers.md | 7 +++++++ docs/version-specific/supported-software/m/mosdepth.md | 7 +++++++ docs/version-specific/supported-software/m/motif.md | 7 +++++++ .../supported-software/m/motionSegmentation.md | 7 +++++++ docs/version-specific/supported-software/m/mpath.md | 7 +++++++ docs/version-specific/supported-software/m/mpi4py.md | 7 +++++++ docs/version-specific/supported-software/m/mpiP.md | 7 +++++++ docs/version-specific/supported-software/m/mpifileutils.md | 7 +++++++ docs/version-specific/supported-software/m/mpmath.md | 7 +++++++ docs/version-specific/supported-software/m/mrcfile.md | 7 +++++++ docs/version-specific/supported-software/m/msgpack-c.md | 7 +++++++ docs/version-specific/supported-software/m/msprime.md | 7 +++++++ docs/version-specific/supported-software/m/mstore.md | 7 +++++++ docs/version-specific/supported-software/m/muMerge.md | 7 +++++++ docs/version-specific/supported-software/m/muParser.md | 7 +++++++ docs/version-specific/supported-software/m/mujoco-py.md | 7 +++++++ docs/version-specific/supported-software/m/multicharge.md | 7 +++++++ docs/version-specific/supported-software/m/multichoose.md | 7 +++++++ docs/version-specific/supported-software/m/multiprocess.md | 7 +++++++ docs/version-specific/supported-software/m/mumott.md | 7 +++++++ docs/version-specific/supported-software/m/muparserx.md | 7 +++++++ docs/version-specific/supported-software/m/mutil.md | 7 +++++++ docs/version-specific/supported-software/m/mxml.md | 7 +++++++ docs/version-specific/supported-software/m/mxmlplus.md | 7 +++++++ docs/version-specific/supported-software/m/mygene.md | 7 +++++++ docs/version-specific/supported-software/m/mympingpong.md | 7 +++++++ docs/version-specific/supported-software/m/mypy.md | 7 +++++++ docs/version-specific/supported-software/m/mysqlclient.md | 7 +++++++ docs/version-specific/supported-software/n/NAG.md | 7 +++++++ docs/version-specific/supported-software/n/NAGfor.md | 7 +++++++ docs/version-specific/supported-software/n/NAMD.md | 7 +++++++ docs/version-specific/supported-software/n/NASM.md | 7 +++++++ docs/version-specific/supported-software/n/NBO.md | 7 +++++++ docs/version-specific/supported-software/n/NCBI-Toolkit.md | 7 +++++++ docs/version-specific/supported-software/n/NCCL-tests.md | 7 +++++++ docs/version-specific/supported-software/n/NCCL.md | 7 +++++++ docs/version-specific/supported-software/n/NCIPLOT.md | 7 +++++++ docs/version-specific/supported-software/n/NCL.md | 7 +++++++ docs/version-specific/supported-software/n/NCO.md | 7 +++++++ docs/version-specific/supported-software/n/NECI.md | 7 +++++++ docs/version-specific/supported-software/n/NEURON.md | 7 +++++++ docs/version-specific/supported-software/n/NEXUS-CL.md | 7 +++++++ docs/version-specific/supported-software/n/NEdit.md | 7 +++++++ docs/version-specific/supported-software/n/NFFT.md | 7 +++++++ docs/version-specific/supported-software/n/NGLess.md | 7 +++++++ docs/version-specific/supported-software/n/NGS-Python.md | 7 +++++++ docs/version-specific/supported-software/n/NGS.md | 7 +++++++ docs/version-specific/supported-software/n/NGSadmix.md | 7 +++++++ docs/version-specific/supported-software/n/NGSpeciesID.md | 7 +++++++ docs/version-specific/supported-software/n/NIMBLE.md | 7 +++++++ docs/version-specific/supported-software/n/NIfTI.md | 7 +++++++ docs/version-specific/supported-software/n/NLMpy.md | 7 +++++++ docs/version-specific/supported-software/n/NLTK.md | 7 +++++++ docs/version-specific/supported-software/n/NLopt.md | 7 +++++++ docs/version-specific/supported-software/n/NOVOPlasty.md | 7 +++++++ docs/version-specific/supported-software/n/NRGLjubljana.md | 7 +++++++ docs/version-specific/supported-software/n/NSPR.md | 7 +++++++ docs/version-specific/supported-software/n/NSS.md | 7 +++++++ docs/version-specific/supported-software/n/NTL.md | 7 +++++++ docs/version-specific/supported-software/n/NTPoly.md | 7 +++++++ docs/version-specific/supported-software/n/NVHPC.md | 7 +++++++ docs/version-specific/supported-software/n/NVSHMEM.md | 7 +++++++ docs/version-specific/supported-software/n/NWChem.md | 7 +++++++ docs/version-specific/supported-software/n/NanoCaller.md | 7 +++++++ docs/version-specific/supported-software/n/NanoComp.md | 7 +++++++ docs/version-specific/supported-software/n/NanoFilt.md | 7 +++++++ docs/version-specific/supported-software/n/NanoLyse.md | 7 +++++++ docs/version-specific/supported-software/n/NanoPlot.md | 7 +++++++ docs/version-specific/supported-software/n/NanoStat.md | 7 +++++++ .../supported-software/n/NanopolishComp.md | 7 +++++++ docs/version-specific/supported-software/n/Nek5000.md | 7 +++++++ docs/version-specific/supported-software/n/Nektar++.md | 7 +++++++ docs/version-specific/supported-software/n/Net-core.md | 7 +++++++ docs/version-specific/supported-software/n/NetLogo.md | 7 +++++++ docs/version-specific/supported-software/n/NetPIPE.md | 7 +++++++ docs/version-specific/supported-software/n/NetPyNE.md | 7 +++++++ docs/version-specific/supported-software/n/NeuroKit.md | 7 +++++++ docs/version-specific/supported-software/n/NewHybrids.md | 7 +++++++ docs/version-specific/supported-software/n/NextGenMap.md | 7 +++++++ docs/version-specific/supported-software/n/Nextflow.md | 7 +++++++ docs/version-specific/supported-software/n/NiBabel.md | 7 +++++++ docs/version-specific/supported-software/n/Nilearn.md | 7 +++++++ docs/version-specific/supported-software/n/Nim.md | 7 +++++++ docs/version-specific/supported-software/n/Ninja.md | 7 +++++++ docs/version-specific/supported-software/n/Nipype.md | 7 +++++++ docs/version-specific/supported-software/n/Node-RED.md | 7 +++++++ docs/version-specific/supported-software/n/Normaliz.md | 7 +++++++ .../supported-software/n/Nsight-Compute.md | 7 +++++++ .../supported-software/n/Nsight-Systems.md | 7 +++++++ docs/version-specific/supported-software/n/NxTrim.md | 7 +++++++ docs/version-specific/supported-software/n/index.md | 6 ++++++ docs/version-specific/supported-software/n/n2v.md | 7 +++++++ docs/version-specific/supported-software/n/namedlist.md | 7 +++++++ docs/version-specific/supported-software/n/nano.md | 7 +++++++ docs/version-specific/supported-software/n/nanocompore.md | 7 +++++++ docs/version-specific/supported-software/n/nanoflann.md | 7 +++++++ docs/version-specific/supported-software/n/nanoget.md | 7 +++++++ docs/version-specific/supported-software/n/nanomath.md | 7 +++++++ .../supported-software/n/nanomax-analysis-utils.md | 7 +++++++ docs/version-specific/supported-software/n/nanonet.md | 7 +++++++ docs/version-specific/supported-software/n/nanopolish.md | 7 +++++++ docs/version-specific/supported-software/n/napari.md | 7 +++++++ docs/version-specific/supported-software/n/nauty.md | 7 +++++++ docs/version-specific/supported-software/n/nbclassic.md | 7 +++++++ docs/version-specific/supported-software/n/ncbi-vdb.md | 7 +++++++ docs/version-specific/supported-software/n/ncdf4.md | 7 +++++++ docs/version-specific/supported-software/n/ncdu.md | 7 +++++++ docs/version-specific/supported-software/n/ncolor.md | 7 +++++++ docs/version-specific/supported-software/n/ncompress.md | 7 +++++++ docs/version-specific/supported-software/n/ncurses.md | 7 +++++++ docs/version-specific/supported-software/n/ncview.md | 7 +++++++ docs/version-specific/supported-software/n/nd2reader.md | 7 +++++++ docs/version-specific/supported-software/n/ne.md | 7 +++++++ docs/version-specific/supported-software/n/neon.md | 7 +++++++ .../supported-software/n/neptune-client.md | 7 +++++++ docs/version-specific/supported-software/n/netCDF-C++.md | 7 +++++++ docs/version-specific/supported-software/n/netCDF-C++4.md | 7 +++++++ .../supported-software/n/netCDF-Fortran.md | 7 +++++++ docs/version-specific/supported-software/n/netCDF.md | 7 +++++++ docs/version-specific/supported-software/n/netMHC.md | 7 +++++++ docs/version-specific/supported-software/n/netMHCII.md | 7 +++++++ docs/version-specific/supported-software/n/netMHCIIpan.md | 7 +++++++ docs/version-specific/supported-software/n/netMHCpan.md | 7 +++++++ .../supported-software/n/netcdf4-python.md | 7 +++++++ docs/version-specific/supported-software/n/netloc.md | 7 +++++++ docs/version-specific/supported-software/n/nettle.md | 7 +++++++ docs/version-specific/supported-software/n/networkTools.md | 7 +++++++ docs/version-specific/supported-software/n/networkx.md | 7 +++++++ docs/version-specific/supported-software/n/nf-core-mag.md | 7 +++++++ docs/version-specific/supported-software/n/nf-core.md | 7 +++++++ docs/version-specific/supported-software/n/nghttp2.md | 7 +++++++ docs/version-specific/supported-software/n/nghttp3.md | 7 +++++++ docs/version-specific/supported-software/n/nglview.md | 7 +++++++ docs/version-specific/supported-software/n/ngspice.md | 7 +++++++ docs/version-specific/supported-software/n/ngtcp2.md | 7 +++++++ docs/version-specific/supported-software/n/nichenetr.md | 7 +++++++ docs/version-specific/supported-software/n/nifti2dicom.md | 7 +++++++ .../version-specific/supported-software/n/nlohmann_json.md | 7 +++++++ docs/version-specific/supported-software/n/nnU-Net.md | 7 +++++++ docs/version-specific/supported-software/n/nodejs.md | 7 +++++++ docs/version-specific/supported-software/n/noise.md | 7 +++++++ .../supported-software/n/nose-parameterized.md | 7 +++++++ docs/version-specific/supported-software/n/nose3.md | 7 +++++++ docs/version-specific/supported-software/n/novaSTA.md | 7 +++++++ docs/version-specific/supported-software/n/novoalign.md | 7 +++++++ docs/version-specific/supported-software/n/npstat.md | 7 +++++++ docs/version-specific/supported-software/n/nsync.md | 7 +++++++ docs/version-specific/supported-software/n/ntCard.md | 7 +++++++ docs/version-specific/supported-software/n/ntEdit.md | 7 +++++++ docs/version-specific/supported-software/n/ntHits.md | 7 +++++++ docs/version-specific/supported-software/n/num2words.md | 7 +++++++ docs/version-specific/supported-software/n/numactl.md | 7 +++++++ docs/version-specific/supported-software/n/numba.md | 7 +++++++ docs/version-specific/supported-software/n/numdiff.md | 7 +++++++ docs/version-specific/supported-software/n/numexpr.md | 7 +++++++ docs/version-specific/supported-software/n/numpy.md | 7 +++++++ docs/version-specific/supported-software/n/nvitop.md | 7 +++++++ docs/version-specific/supported-software/n/nvofbf.md | 7 +++++++ docs/version-specific/supported-software/n/nvompi.md | 7 +++++++ docs/version-specific/supported-software/n/nvtop.md | 7 +++++++ docs/version-specific/supported-software/o/OBITools.md | 7 +++++++ docs/version-specific/supported-software/o/OBITools3.md | 7 +++++++ docs/version-specific/supported-software/o/OCNet.md | 7 +++++++ docs/version-specific/supported-software/o/OCaml.md | 7 +++++++ docs/version-specific/supported-software/o/OGDF.md | 7 +++++++ docs/version-specific/supported-software/o/OMA.md | 7 +++++++ .../version-specific/supported-software/o/OMERO.insight.md | 7 +++++++ docs/version-specific/supported-software/o/OMERO.py.md | 7 +++++++ docs/version-specific/supported-software/o/ONNX-Runtime.md | 7 +++++++ docs/version-specific/supported-software/o/ONNX.md | 7 +++++++ docs/version-specific/supported-software/o/OOMPA.md | 7 +++++++ docs/version-specific/supported-software/o/OPARI2.md | 7 +++++++ docs/version-specific/supported-software/o/OPERA-MS.md | 7 +++++++ docs/version-specific/supported-software/o/OPERA.md | 7 +++++++ docs/version-specific/supported-software/o/OR-Tools.md | 7 +++++++ docs/version-specific/supported-software/o/ORCA.md | 7 +++++++ docs/version-specific/supported-software/o/ORFfinder.md | 7 +++++++ docs/version-specific/supported-software/o/OSPRay.md | 7 +++++++ .../supported-software/o/OSU-Micro-Benchmarks.md | 7 +++++++ docs/version-specific/supported-software/o/OTF2.md | 7 +++++++ docs/version-specific/supported-software/o/OVITO.md | 7 +++++++ docs/version-specific/supported-software/o/Oases.md | 7 +++++++ docs/version-specific/supported-software/o/Octave.md | 7 +++++++ docs/version-specific/supported-software/o/Octopus-vcf.md | 7 +++++++ docs/version-specific/supported-software/o/OmegaFold.md | 7 +++++++ docs/version-specific/supported-software/o/Omnipose.md | 7 +++++++ .../supported-software/o/Open-Data-Cube-Core.md | 7 +++++++ docs/version-specific/supported-software/o/OpenAI-Gym.md | 7 +++++++ docs/version-specific/supported-software/o/OpenBLAS.md | 7 +++++++ docs/version-specific/supported-software/o/OpenBabel.md | 7 +++++++ docs/version-specific/supported-software/o/OpenCV.md | 7 +++++++ .../supported-software/o/OpenCensus-python.md | 7 +++++++ docs/version-specific/supported-software/o/OpenCoarrays.md | 7 +++++++ docs/version-specific/supported-software/o/OpenColorIO.md | 7 +++++++ docs/version-specific/supported-software/o/OpenEXR.md | 7 +++++++ docs/version-specific/supported-software/o/OpenFAST.md | 7 +++++++ .../supported-software/o/OpenFOAM-Extend.md | 7 +++++++ docs/version-specific/supported-software/o/OpenFOAM.md | 7 +++++++ docs/version-specific/supported-software/o/OpenFace.md | 7 +++++++ docs/version-specific/supported-software/o/OpenFold.md | 7 +++++++ .../supported-software/o/OpenForceField.md | 7 +++++++ docs/version-specific/supported-software/o/OpenImageIO.md | 7 +++++++ docs/version-specific/supported-software/o/OpenJPEG.md | 7 +++++++ docs/version-specific/supported-software/o/OpenKIM-API.md | 7 +++++++ docs/version-specific/supported-software/o/OpenMEEG.md | 7 +++++++ .../version-specific/supported-software/o/OpenMM-PLUMED.md | 7 +++++++ docs/version-specific/supported-software/o/OpenMM.md | 7 +++++++ docs/version-specific/supported-software/o/OpenMMTools.md | 7 +++++++ docs/version-specific/supported-software/o/OpenMPI.md | 7 +++++++ docs/version-specific/supported-software/o/OpenMS.md | 7 +++++++ docs/version-specific/supported-software/o/OpenMolcas.md | 7 +++++++ docs/version-specific/supported-software/o/OpenNLP.md | 7 +++++++ docs/version-specific/supported-software/o/OpenPGM.md | 7 +++++++ docs/version-specific/supported-software/o/OpenPIV.md | 7 +++++++ docs/version-specific/supported-software/o/OpenRefine.md | 7 +++++++ docs/version-specific/supported-software/o/OpenSSL.md | 7 +++++++ .../supported-software/o/OpenSceneGraph.md | 7 +++++++ docs/version-specific/supported-software/o/OpenSees.md | 7 +++++++ .../supported-software/o/OpenSlide-Java.md | 7 +++++++ docs/version-specific/supported-software/o/OpenSlide.md | 7 +++++++ .../supported-software/o/OpenStackClient.md | 7 +++++++ docs/version-specific/supported-software/o/OptaDOS.md | 7 +++++++ docs/version-specific/supported-software/o/Optax.md | 7 +++++++ docs/version-specific/supported-software/o/OptiType.md | 7 +++++++ docs/version-specific/supported-software/o/OptiX.md | 7 +++++++ docs/version-specific/supported-software/o/Optuna.md | 7 +++++++ docs/version-specific/supported-software/o/OrfM.md | 7 +++++++ docs/version-specific/supported-software/o/OrthoFinder.md | 7 +++++++ docs/version-specific/supported-software/o/OrthoMCL.md | 7 +++++++ docs/version-specific/supported-software/o/Osi.md | 7 +++++++ docs/version-specific/supported-software/o/index.md | 6 ++++++ docs/version-specific/supported-software/o/ocamlbuild.md | 7 +++++++ docs/version-specific/supported-software/o/occt.md | 7 +++++++ docs/version-specific/supported-software/o/oceanspy.md | 7 +++++++ docs/version-specific/supported-software/o/olaFlow.md | 7 +++++++ docs/version-specific/supported-software/o/olego.md | 7 +++++++ docs/version-specific/supported-software/o/onedrive.md | 7 +++++++ .../version-specific/supported-software/o/ont-fast5-api.md | 7 +++++++ docs/version-specific/supported-software/o/ont-guppy.md | 7 +++++++ docs/version-specific/supported-software/o/ont-remora.md | 7 +++++++ docs/version-specific/supported-software/o/openCARP.md | 7 +++++++ .../supported-software/o/openkim-models.md | 7 +++++++ docs/version-specific/supported-software/o/openpyxl.md | 7 +++++++ .../supported-software/o/openslide-python.md | 7 +++++++ docs/version-specific/supported-software/o/optiSLang.md | 7 +++++++ docs/version-specific/supported-software/o/orthAgogue.md | 7 +++++++ docs/version-specific/supported-software/o/ownCloud.md | 7 +++++++ docs/version-specific/supported-software/o/oxDNA.md | 7 +++++++ docs/version-specific/supported-software/o/oxford_asl.md | 7 +++++++ docs/version-specific/supported-software/p/PAGAN2.md | 7 +++++++ docs/version-specific/supported-software/p/PAL2NAL.md | 7 +++++++ docs/version-specific/supported-software/p/PALEOMIX.md | 7 +++++++ docs/version-specific/supported-software/p/PAML.md | 7 +++++++ docs/version-specific/supported-software/p/PANDAseq.md | 7 +++++++ docs/version-specific/supported-software/p/PAPI.md | 7 +++++++ docs/version-specific/supported-software/p/PARI-GP.md | 7 +++++++ docs/version-specific/supported-software/p/PASA.md | 7 +++++++ docs/version-specific/supported-software/p/PAUP.md | 7 +++++++ docs/version-specific/supported-software/p/PBSuite.md | 7 +++++++ docs/version-specific/supported-software/p/PBZIP2.md | 7 +++++++ docs/version-specific/supported-software/p/PCAngsd.md | 7 +++++++ docs/version-specific/supported-software/p/PCC.md | 7 +++++++ docs/version-specific/supported-software/p/PCL.md | 7 +++++++ docs/version-specific/supported-software/p/PCMSolver.md | 7 +++++++ docs/version-specific/supported-software/p/PCRE.md | 7 +++++++ docs/version-specific/supported-software/p/PCRE2.md | 7 +++++++ docs/version-specific/supported-software/p/PCRaster.md | 7 +++++++ docs/version-specific/supported-software/p/PDM.md | 7 +++++++ docs/version-specific/supported-software/p/PDT.md | 7 +++++++ docs/version-specific/supported-software/p/PEAR.md | 7 +++++++ docs/version-specific/supported-software/p/PEPT.md | 7 +++++++ docs/version-specific/supported-software/p/PEST++.md | 7 +++++++ docs/version-specific/supported-software/p/PETSc.md | 7 +++++++ docs/version-specific/supported-software/p/PFFT.md | 7 +++++++ docs/version-specific/supported-software/p/PGDSpider.md | 7 +++++++ docs/version-specific/supported-software/p/PGI.md | 7 +++++++ docs/version-specific/supported-software/p/PGPLOT.md | 7 +++++++ docs/version-specific/supported-software/p/PHANOTATE.md | 7 +++++++ docs/version-specific/supported-software/p/PHASE.md | 7 +++++++ docs/version-specific/supported-software/p/PHAST.md | 7 +++++++ docs/version-specific/supported-software/p/PHLAT.md | 7 +++++++ docs/version-specific/supported-software/p/PHYLIP.md | 7 +++++++ .../version-specific/supported-software/p/PICI-LIGGGHTS.md | 7 +++++++ docs/version-specific/supported-software/p/PICRUSt2.md | 7 +++++++ docs/version-specific/supported-software/p/PIL.md | 7 +++++++ docs/version-specific/supported-software/p/PIMS.md | 7 +++++++ docs/version-specific/supported-software/p/PIPITS.md | 7 +++++++ docs/version-specific/supported-software/p/PIRATE.md | 7 +++++++ docs/version-specific/supported-software/p/PLAMS.md | 7 +++++++ docs/version-specific/supported-software/p/PLAST.md | 7 +++++++ docs/version-specific/supported-software/p/PLINK.md | 7 +++++++ docs/version-specific/supported-software/p/PLINKSEQ.md | 7 +++++++ docs/version-specific/supported-software/p/PLUMED.md | 7 +++++++ docs/version-specific/supported-software/p/PLY.md | 7 +++++++ docs/version-specific/supported-software/p/PLplot.md | 7 +++++++ docs/version-specific/supported-software/p/PMIx.md | 7 +++++++ docs/version-specific/supported-software/p/POT.md | 7 +++++++ docs/version-specific/supported-software/p/POV-Ray.md | 7 +++++++ docs/version-specific/supported-software/p/PPanGGOLiN.md | 7 +++++++ docs/version-specific/supported-software/p/PPfold.md | 7 +++++++ docs/version-specific/supported-software/p/PRANK.md | 7 +++++++ docs/version-specific/supported-software/p/PRC.md | 7 +++++++ docs/version-specific/supported-software/p/PREQUAL.md | 7 +++++++ docs/version-specific/supported-software/p/PRINSEQ.md | 7 +++++++ docs/version-specific/supported-software/p/PRISMS-PF.md | 7 +++++++ docs/version-specific/supported-software/p/PROJ.md | 7 +++++++ docs/version-specific/supported-software/p/PRRTE.md | 7 +++++++ docs/version-specific/supported-software/p/PRSice.md | 7 +++++++ docs/version-specific/supported-software/p/PSASS.md | 7 +++++++ docs/version-specific/supported-software/p/PSI.md | 7 +++++++ docs/version-specific/supported-software/p/PSI4.md | 7 +++++++ docs/version-specific/supported-software/p/PSIPRED.md | 7 +++++++ docs/version-specific/supported-software/p/PSM2.md | 7 +++++++ docs/version-specific/supported-software/p/PSORTb.md | 7 +++++++ docs/version-specific/supported-software/p/PSolver.md | 7 +++++++ docs/version-specific/supported-software/p/PTESFinder.md | 7 +++++++ docs/version-specific/supported-software/p/PYPOWER.md | 7 +++++++ docs/version-specific/supported-software/p/PYTHIA.md | 7 +++++++ docs/version-specific/supported-software/p/PaStiX.md | 7 +++++++ docs/version-specific/supported-software/p/Pandoc.md | 7 +++++++ docs/version-specific/supported-software/p/Panedr.md | 7 +++++++ docs/version-specific/supported-software/p/Pango.md | 7 +++++++ docs/version-specific/supported-software/p/ParMETIS.md | 7 +++++++ docs/version-specific/supported-software/p/ParMGridGen.md | 7 +++++++ docs/version-specific/supported-software/p/ParaView.md | 7 +++++++ .../supported-software/p/Parallel-Hashmap.md | 7 +++++++ docs/version-specific/supported-software/p/ParallelIO.md | 7 +++++++ docs/version-specific/supported-software/p/Paraver.md | 7 +++++++ docs/version-specific/supported-software/p/Parcels.md | 7 +++++++ docs/version-specific/supported-software/p/ParmEd.md | 7 +++++++ docs/version-specific/supported-software/p/Parsl.md | 7 +++++++ .../supported-software/p/PartitionFinder.md | 7 +++++++ docs/version-specific/supported-software/p/PennCNV.md | 7 +++++++ docs/version-specific/supported-software/p/Percolator.md | 7 +++++++ .../supported-software/p/Perl-bundle-CPAN.md | 7 +++++++ docs/version-specific/supported-software/p/Perl.md | 7 +++++++ .../supported-software/p/Perl4-CoreLibs.md | 7 +++++++ docs/version-specific/supported-software/p/Perseus.md | 7 +++++++ docs/version-specific/supported-software/p/PfamScan.md | 7 +++++++ .../supported-software/p/Phantompeakqualtools.md | 7 +++++++ docs/version-specific/supported-software/p/PheWAS.md | 7 +++++++ docs/version-specific/supported-software/p/PheWeb.md | 7 +++++++ docs/version-specific/supported-software/p/Phenoflow.md | 7 +++++++ docs/version-specific/supported-software/p/PhiPack.md | 7 +++++++ docs/version-specific/supported-software/p/Philosopher.md | 7 +++++++ docs/version-specific/supported-software/p/PhyML.md | 7 +++++++ .../supported-software/p/PhyloBayes-MPI.md | 7 +++++++ docs/version-specific/supported-software/p/PhyloPhlAn.md | 7 +++++++ docs/version-specific/supported-software/p/PileOMeth.md | 7 +++++++ docs/version-specific/supported-software/p/Pillow-SIMD.md | 7 +++++++ docs/version-specific/supported-software/p/Pillow.md | 7 +++++++ docs/version-specific/supported-software/p/Pilon.md | 7 +++++++ docs/version-specific/supported-software/p/Pindel.md | 7 +++++++ docs/version-specific/supported-software/p/Pingouin.md | 7 +++++++ docs/version-specific/supported-software/p/Pint.md | 7 +++++++ docs/version-specific/supported-software/p/Pisces.md | 7 +++++++ docs/version-specific/supported-software/p/PlaScope.md | 7 +++++++ docs/version-specific/supported-software/p/PlasmaPy.md | 7 +++++++ docs/version-specific/supported-software/p/Platanus.md | 7 +++++++ docs/version-specific/supported-software/p/Platypus-Opt.md | 7 +++++++ docs/version-specific/supported-software/p/Platypus.md | 7 +++++++ docs/version-specific/supported-software/p/Ploticus.md | 7 +++++++ docs/version-specific/supported-software/p/PnetCDF.md | 7 +++++++ docs/version-specific/supported-software/p/Porechop.md | 7 +++++++ docs/version-specific/supported-software/p/PortAudio.md | 7 +++++++ docs/version-specific/supported-software/p/PortMidi.md | 7 +++++++ docs/version-specific/supported-software/p/Portcullis.md | 7 +++++++ docs/version-specific/supported-software/p/PostgreSQL.md | 7 +++++++ docs/version-specific/supported-software/p/Postgres-XL.md | 7 +++++++ docs/version-specific/supported-software/p/Primer3.md | 7 +++++++ docs/version-specific/supported-software/p/ProBiS.md | 7 +++++++ docs/version-specific/supported-software/p/ProFit.md | 7 +++++++ docs/version-specific/supported-software/p/ProbABEL.md | 7 +++++++ docs/version-specific/supported-software/p/ProjectQ.md | 7 +++++++ docs/version-specific/supported-software/p/ProtHint.md | 7 +++++++ docs/version-specific/supported-software/p/ProteinMPNN.md | 7 +++++++ docs/version-specific/supported-software/p/Proteinortho.md | 7 +++++++ docs/version-specific/supported-software/p/PsiCLASS.md | 7 +++++++ docs/version-specific/supported-software/p/PuLP.md | 7 +++++++ docs/version-specific/supported-software/p/PyAEDT.md | 7 +++++++ docs/version-specific/supported-software/p/PyAMG.md | 7 +++++++ docs/version-specific/supported-software/p/PyAPS3.md | 7 +++++++ docs/version-specific/supported-software/p/PyAV.md | 7 +++++++ docs/version-specific/supported-software/p/PyBerny.md | 7 +++++++ docs/version-specific/supported-software/p/PyBioLib.md | 7 +++++++ docs/version-specific/supported-software/p/PyCUDA.md | 7 +++++++ docs/version-specific/supported-software/p/PyCairo.md | 7 +++++++ docs/version-specific/supported-software/p/PyCalib.md | 7 +++++++ docs/version-specific/supported-software/p/PyCharm.md | 7 +++++++ docs/version-specific/supported-software/p/PyCheMPS2.md | 7 +++++++ docs/version-specific/supported-software/p/PyCifRW.md | 7 +++++++ docs/version-specific/supported-software/p/PyClone.md | 7 +++++++ docs/version-specific/supported-software/p/PyCogent.md | 7 +++++++ docs/version-specific/supported-software/p/PyDamage.md | 7 +++++++ docs/version-specific/supported-software/p/PyDatastream.md | 7 +++++++ docs/version-specific/supported-software/p/PyEVTK.md | 7 +++++++ docs/version-specific/supported-software/p/PyEXR.md | 7 +++++++ docs/version-specific/supported-software/p/PyFFmpeg.md | 7 +++++++ docs/version-specific/supported-software/p/PyFMI.md | 7 +++++++ docs/version-specific/supported-software/p/PyFR.md | 7 +++++++ docs/version-specific/supported-software/p/PyFoam.md | 7 +++++++ docs/version-specific/supported-software/p/PyFrag.md | 7 +++++++ docs/version-specific/supported-software/p/PyGEOS.md | 7 +++++++ docs/version-specific/supported-software/p/PyGObject.md | 7 +++++++ docs/version-specific/supported-software/p/PyGTK.md | 7 +++++++ docs/version-specific/supported-software/p/PyGTS.md | 7 +++++++ docs/version-specific/supported-software/p/PyGWAS.md | 7 +++++++ docs/version-specific/supported-software/p/PyHMMER.md | 7 +++++++ docs/version-specific/supported-software/p/PyImageJ.md | 7 +++++++ docs/version-specific/supported-software/p/PyInstaller.md | 7 +++++++ docs/version-specific/supported-software/p/PyMC.md | 7 +++++++ docs/version-specific/supported-software/p/PyMC3.md | 7 +++++++ docs/version-specific/supported-software/p/PyMOL.md | 7 +++++++ docs/version-specific/supported-software/p/PyNAST.md | 7 +++++++ docs/version-specific/supported-software/p/PyOD.md | 7 +++++++ docs/version-specific/supported-software/p/PyOpenCL.md | 7 +++++++ docs/version-specific/supported-software/p/PyOpenGL.md | 7 +++++++ docs/version-specific/supported-software/p/PyPSA.md | 7 +++++++ docs/version-specific/supported-software/p/PyPy.md | 7 +++++++ docs/version-specific/supported-software/p/PyQt-builder.md | 7 +++++++ docs/version-specific/supported-software/p/PyQt.md | 7 +++++++ docs/version-specific/supported-software/p/PyQt5.md | 7 +++++++ docs/version-specific/supported-software/p/PyQtGraph.md | 7 +++++++ docs/version-specific/supported-software/p/PyRETIS.md | 7 +++++++ docs/version-specific/supported-software/p/PyRe.md | 7 +++++++ docs/version-specific/supported-software/p/PyRosetta.md | 7 +++++++ docs/version-specific/supported-software/p/PySAT.md | 7 +++++++ docs/version-specific/supported-software/p/PySCF.md | 7 +++++++ docs/version-specific/supported-software/p/PySINDy.md | 7 +++++++ docs/version-specific/supported-software/p/PySide2.md | 7 +++++++ docs/version-specific/supported-software/p/PyStan.md | 7 +++++++ docs/version-specific/supported-software/p/PyTables.md | 7 +++++++ docs/version-specific/supported-software/p/PyTensor.md | 7 +++++++ .../supported-software/p/PyTorch-Geometric.md | 7 +++++++ .../supported-software/p/PyTorch-Ignite.md | 7 +++++++ .../supported-software/p/PyTorch-Image-Models.md | 7 +++++++ .../supported-software/p/PyTorch-Lightning.md | 7 +++++++ .../supported-software/p/PyTorch-bundle.md | 7 +++++++ docs/version-specific/supported-software/p/PyTorch.md | 7 +++++++ docs/version-specific/supported-software/p/PyTorch3D.md | 7 +++++++ docs/version-specific/supported-software/p/PyTorchVideo.md | 7 +++++++ docs/version-specific/supported-software/p/PyVCF.md | 7 +++++++ docs/version-specific/supported-software/p/PyVCF3.md | 7 +++++++ docs/version-specific/supported-software/p/PyVista.md | 7 +++++++ docs/version-specific/supported-software/p/PyWBGT.md | 7 +++++++ docs/version-specific/supported-software/p/PyWavelets.md | 7 +++++++ docs/version-specific/supported-software/p/PyYAML.md | 7 +++++++ docs/version-specific/supported-software/p/PyZMQ.md | 7 +++++++ docs/version-specific/supported-software/p/PycURL.md | 7 +++++++ docs/version-specific/supported-software/p/Pychopper.md | 7 +++++++ docs/version-specific/supported-software/p/Pygments.md | 7 +++++++ docs/version-specific/supported-software/p/Pyke3.md | 7 +++++++ docs/version-specific/supported-software/p/Pylint.md | 7 +++++++ docs/version-specific/supported-software/p/Pyomo.md | 7 +++++++ docs/version-specific/supported-software/p/Pyro4.md | 7 +++++++ docs/version-specific/supported-software/p/Pysam.md | 7 +++++++ docs/version-specific/supported-software/p/Pysolar.md | 7 +++++++ .../supported-software/p/Python-bundle-PyPI.md | 7 +++++++ .../version-specific/supported-software/p/Python-bundle.md | 7 +++++++ docs/version-specific/supported-software/p/Python.md | 7 +++++++ docs/version-specific/supported-software/p/index.md | 6 ++++++ docs/version-specific/supported-software/p/p11-kit.md | 7 +++++++ .../supported-software/p/p4-phylogenetics.md | 7 +++++++ docs/version-specific/supported-software/p/p4est.md | 7 +++++++ docs/version-specific/supported-software/p/p4vasp.md | 7 +++++++ docs/version-specific/supported-software/p/p7zip.md | 7 +++++++ docs/version-specific/supported-software/p/pFUnit.md | 7 +++++++ docs/version-specific/supported-software/p/pIRS.md | 7 +++++++ docs/version-specific/supported-software/p/packmol.md | 7 +++++++ docs/version-specific/supported-software/p/pagmo.md | 7 +++++++ docs/version-specific/supported-software/p/pairsnp.md | 7 +++++++ docs/version-specific/supported-software/p/paladin.md | 7 +++++++ docs/version-specific/supported-software/p/panaroo.md | 7 +++++++ docs/version-specific/supported-software/p/pandapower.md | 7 +++++++ .../supported-software/p/pandas-datareader.md | 7 +++++++ docs/version-specific/supported-software/p/pandas.md | 7 +++++++ docs/version-specific/supported-software/p/pangolin.md | 7 +++++++ docs/version-specific/supported-software/p/panito.md | 7 +++++++ .../supported-software/p/parallel-fastq-dump.md | 7 +++++++ docs/version-specific/supported-software/p/parallel.md | 7 +++++++ .../version-specific/supported-software/p/parameterized.md | 7 +++++++ docs/version-specific/supported-software/p/paramiko.md | 7 +++++++ docs/version-specific/supported-software/p/parasail.md | 7 +++++++ docs/version-specific/supported-software/p/pasta.md | 7 +++++++ docs/version-specific/supported-software/p/pastml.md | 7 +++++++ docs/version-specific/supported-software/p/patch.md | 7 +++++++ docs/version-specific/supported-software/p/patchelf.md | 7 +++++++ docs/version-specific/supported-software/p/path.py.md | 7 +++++++ docs/version-specific/supported-software/p/pauvre.md | 7 +++++++ docs/version-specific/supported-software/p/pbbam.md | 7 +++++++ docs/version-specific/supported-software/p/pbcopper.md | 7 +++++++ docs/version-specific/supported-software/p/pbdagcon.md | 7 +++++++ docs/version-specific/supported-software/p/pbipa.md | 7 +++++++ docs/version-specific/supported-software/p/pblat.md | 7 +++++++ docs/version-specific/supported-software/p/pbmm2.md | 7 +++++++ docs/version-specific/supported-software/p/pbs_python.md | 7 +++++++ docs/version-specific/supported-software/p/pdf2docx.md | 7 +++++++ docs/version-specific/supported-software/p/pdsh.md | 7 +++++++ docs/version-specific/supported-software/p/peakdetect.md | 7 +++++++ .../supported-software/p/perl-app-cpanminus.md | 7 +++++++ docs/version-specific/supported-software/p/petsc4py.md | 7 +++++++ docs/version-specific/supported-software/p/pfind.md | 7 +++++++ docs/version-specific/supported-software/p/pftoolsV3.md | 7 +++++++ docs/version-specific/supported-software/p/phonemizer.md | 7 +++++++ docs/version-specific/supported-software/p/phono3py.md | 7 +++++++ docs/version-specific/supported-software/p/phonopy.md | 7 +++++++ docs/version-specific/supported-software/p/photontorch.md | 7 +++++++ docs/version-specific/supported-software/p/phototonic.md | 7 +++++++ docs/version-specific/supported-software/p/phylokit.md | 7 +++++++ docs/version-specific/supported-software/p/phylonaut.md | 7 +++++++ docs/version-specific/supported-software/p/phyluce.md | 7 +++++++ docs/version-specific/supported-software/p/phyx.md | 7 +++++++ docs/version-specific/supported-software/p/piSvM-JSC.md | 7 +++++++ docs/version-specific/supported-software/p/piSvM.md | 7 +++++++ docs/version-specific/supported-software/p/picard.md | 7 +++++++ docs/version-specific/supported-software/p/pigz.md | 7 +++++++ docs/version-specific/supported-software/p/pip.md | 7 +++++++ docs/version-specific/supported-software/p/pixman.md | 7 +++++++ docs/version-specific/supported-software/p/pizzly.md | 7 +++++++ docs/version-specific/supported-software/p/pkg-config.md | 7 +++++++ docs/version-specific/supported-software/p/pkgconf.md | 7 +++++++ docs/version-specific/supported-software/p/pkgconfig.md | 7 +++++++ docs/version-specific/supported-software/p/planarity.md | 7 +++++++ docs/version-specific/supported-software/p/plantcv.md | 7 +++++++ docs/version-specific/supported-software/p/plantri.md | 7 +++++++ docs/version-specific/supported-software/p/plc.md | 7 +++++++ docs/version-specific/supported-software/p/plinkQC.md | 7 +++++++ .../version-specific/supported-software/p/plinkliftover.md | 7 +++++++ docs/version-specific/supported-software/p/plmc.md | 7 +++++++ docs/version-specific/supported-software/p/plot1cell.md | 7 +++++++ docs/version-specific/supported-software/p/plotly-orca.md | 7 +++++++ docs/version-specific/supported-software/p/plotly.md | 7 +++++++ docs/version-specific/supported-software/p/plotly.py.md | 7 +++++++ docs/version-specific/supported-software/p/plotutils.md | 7 +++++++ docs/version-specific/supported-software/p/pmt.md | 7 +++++++ docs/version-specific/supported-software/p/pmx.md | 7 +++++++ docs/version-specific/supported-software/p/pocl.md | 7 +++++++ .../supported-software/p/pod5-file-format.md | 7 +++++++ docs/version-specific/supported-software/p/poetry.md | 7 +++++++ docs/version-specific/supported-software/p/polars.md | 7 +++++++ docs/version-specific/supported-software/p/polymake.md | 7 +++++++ docs/version-specific/supported-software/p/pomkl.md | 7 +++++++ docs/version-specific/supported-software/p/pompi.md | 7 +++++++ docs/version-specific/supported-software/p/poppler.md | 7 +++++++ docs/version-specific/supported-software/p/poppunk.md | 7 +++++++ docs/version-specific/supported-software/p/popscle.md | 7 +++++++ docs/version-specific/supported-software/p/popt.md | 7 +++++++ docs/version-specific/supported-software/p/porefoam.md | 7 +++++++ docs/version-specific/supported-software/p/poretools.md | 7 +++++++ docs/version-specific/supported-software/p/powerlaw.md | 7 +++++++ docs/version-specific/supported-software/p/pp-sketchlib.md | 7 +++++++ docs/version-specific/supported-software/p/ppl.md | 7 +++++++ docs/version-specific/supported-software/p/pplacer.md | 7 +++++++ docs/version-specific/supported-software/p/pplpy.md | 7 +++++++ docs/version-specific/supported-software/p/preCICE.md | 7 +++++++ docs/version-specific/supported-software/p/premailer.md | 7 +++++++ docs/version-specific/supported-software/p/preseq.md | 7 +++++++ docs/version-specific/supported-software/p/presto.md | 7 +++++++ docs/version-specific/supported-software/p/pretty-yaml.md | 7 +++++++ docs/version-specific/supported-software/p/primecount.md | 7 +++++++ docs/version-specific/supported-software/p/primecountpy.md | 7 +++++++ docs/version-specific/supported-software/p/printproto.md | 7 +++++++ docs/version-specific/supported-software/p/prodigal.md | 7 +++++++ docs/version-specific/supported-software/p/prokka.md | 7 +++++++ .../supported-software/p/prompt-toolkit.md | 7 +++++++ docs/version-specific/supported-software/p/proovread.md | 7 +++++++ docs/version-specific/supported-software/p/propy.md | 7 +++++++ .../supported-software/p/protobuf-python.md | 7 +++++++ docs/version-specific/supported-software/p/protobuf.md | 7 +++++++ docs/version-specific/supported-software/p/protozero.md | 7 +++++++ docs/version-specific/supported-software/p/pscom.md | 7 +++++++ docs/version-specific/supported-software/p/psmc.md | 7 +++++++ docs/version-specific/supported-software/p/psmpi.md | 7 +++++++ docs/version-specific/supported-software/p/psmpi2.md | 7 +++++++ docs/version-specific/supported-software/p/psrecord.md | 7 +++++++ docs/version-specific/supported-software/p/pstoedit.md | 7 +++++++ docs/version-specific/supported-software/p/psutil.md | 7 +++++++ docs/version-specific/supported-software/p/psycopg.md | 7 +++++++ docs/version-specific/supported-software/p/psycopg2.md | 7 +++++++ docs/version-specific/supported-software/p/ptemcee.md | 7 +++++++ docs/version-specific/supported-software/p/pubtcrs.md | 7 +++++++ docs/version-specific/supported-software/p/pugixml.md | 7 +++++++ docs/version-specific/supported-software/p/pullseq.md | 7 +++++++ docs/version-specific/supported-software/p/purge_dups.md | 7 +++++++ docs/version-specific/supported-software/p/pv.md | 7 +++++++ docs/version-specific/supported-software/p/py-aiger-bdd.md | 7 +++++++ docs/version-specific/supported-software/p/py-aiger.md | 7 +++++++ docs/version-specific/supported-software/p/py-c3d.md | 7 +++++++ docs/version-specific/supported-software/p/py-cpuinfo.md | 7 +++++++ docs/version-specific/supported-software/p/py.md | 7 +++++++ docs/version-specific/supported-software/p/py3Dmol.md | 7 +++++++ docs/version-specific/supported-software/p/pyABC.md | 7 +++++++ docs/version-specific/supported-software/p/pyBigWig.md | 7 +++++++ docs/version-specific/supported-software/p/pyEGA3.md | 7 +++++++ docs/version-specific/supported-software/p/pyFAI.md | 7 +++++++ docs/version-specific/supported-software/p/pyFFTW.md | 7 +++++++ docs/version-specific/supported-software/p/pyGAM.md | 7 +++++++ docs/version-specific/supported-software/p/pyGIMLi.md | 7 +++++++ .../supported-software/p/pyGenomeTracks.md | 7 +++++++ .../version-specific/supported-software/p/pyMannKendall.md | 7 +++++++ docs/version-specific/supported-software/p/pySCENIC.md | 7 +++++++ docs/version-specific/supported-software/p/pyScaf.md | 7 +++++++ docs/version-specific/supported-software/p/pyWannier90.md | 7 +++++++ docs/version-specific/supported-software/p/pyXDF.md | 7 +++++++ docs/version-specific/supported-software/p/pybedtools.md | 7 +++++++ .../supported-software/p/pybind11-stubgen.md | 7 +++++++ docs/version-specific/supported-software/p/pybind11.md | 7 +++++++ docs/version-specific/supported-software/p/pybinding.md | 7 +++++++ docs/version-specific/supported-software/p/pyccel.md | 7 +++++++ docs/version-specific/supported-software/p/pycma.md | 7 +++++++ docs/version-specific/supported-software/p/pycoQC.md | 7 +++++++ docs/version-specific/supported-software/p/pycocotools.md | 7 +++++++ docs/version-specific/supported-software/p/pycodestyle.md | 7 +++++++ docs/version-specific/supported-software/p/pycubescd.md | 7 +++++++ docs/version-specific/supported-software/p/pydantic.md | 7 +++++++ docs/version-specific/supported-software/p/pydicom-seg.md | 7 +++++++ docs/version-specific/supported-software/p/pydicom.md | 7 +++++++ docs/version-specific/supported-software/p/pydlpoly.md | 7 +++++++ docs/version-specific/supported-software/p/pydot.md | 7 +++++++ docs/version-specific/supported-software/p/pyenchant.md | 7 +++++++ docs/version-specific/supported-software/p/pyfaidx.md | 7 +++++++ docs/version-specific/supported-software/p/pyfasta.md | 7 +++++++ docs/version-specific/supported-software/p/pyfits.md | 7 +++++++ docs/version-specific/supported-software/p/pygame.md | 7 +++++++ docs/version-specific/supported-software/p/pygccxml.md | 7 +++++++ docs/version-specific/supported-software/p/pygmo.md | 7 +++++++ docs/version-specific/supported-software/p/pygraphviz.md | 7 +++++++ docs/version-specific/supported-software/p/pygrib.md | 7 +++++++ docs/version-specific/supported-software/p/pyhdf.md | 7 +++++++ docs/version-specific/supported-software/p/pyiron.md | 7 +++++++ docs/version-specific/supported-software/p/pylift.md | 7 +++++++ docs/version-specific/supported-software/p/pylipid.md | 7 +++++++ docs/version-specific/supported-software/p/pymatgen-db.md | 7 +++++++ docs/version-specific/supported-software/p/pymatgen.md | 7 +++++++ docs/version-specific/supported-software/p/pymbar.md | 7 +++++++ docs/version-specific/supported-software/p/pymca.md | 7 +++++++ docs/version-specific/supported-software/p/pymemcache.md | 7 +++++++ docs/version-specific/supported-software/p/pyobjcryst.md | 7 +++++++ docs/version-specific/supported-software/p/pyodbc.md | 7 +++++++ docs/version-specific/supported-software/p/pyparsing.md | 7 +++++++ docs/version-specific/supported-software/p/pyperf.md | 7 +++++++ docs/version-specific/supported-software/p/pyplusplus.md | 7 +++++++ docs/version-specific/supported-software/p/pypmt.md | 7 +++++++ docs/version-specific/supported-software/p/pyproj.md | 7 +++++++ docs/version-specific/supported-software/p/pyqstem.md | 7 +++++++ docs/version-specific/supported-software/p/pyradiomics.md | 7 +++++++ docs/version-specific/supported-software/p/pyringe.md | 7 +++++++ docs/version-specific/supported-software/p/pyro-api.md | 7 +++++++ docs/version-specific/supported-software/p/pyro-ppl.md | 7 +++++++ docs/version-specific/supported-software/p/pysamstats.md | 7 +++++++ docs/version-specific/supported-software/p/pyseer.md | 7 +++++++ docs/version-specific/supported-software/p/pysheds.md | 7 +++++++ docs/version-specific/supported-software/p/pyshp.md | 7 +++++++ docs/version-specific/supported-software/p/pyslim.md | 7 +++++++ docs/version-specific/supported-software/p/pysndfx.md | 7 +++++++ docs/version-specific/supported-software/p/pyspoa.md | 7 +++++++ docs/version-specific/supported-software/p/pysqlite.md | 7 +++++++ docs/version-specific/supported-software/p/pysteps.md | 7 +++++++ docs/version-specific/supported-software/p/pystran.md | 7 +++++++ docs/version-specific/supported-software/p/pytesseract.md | 7 +++++++ .../supported-software/p/pytest-benchmark.md | 7 +++++++ docs/version-specific/supported-software/p/pytest-cpp.md | 7 +++++++ .../supported-software/p/pytest-flakefinder.md | 7 +++++++ .../supported-software/p/pytest-rerunfailures.md | 7 +++++++ docs/version-specific/supported-software/p/pytest-shard.md | 7 +++++++ .../supported-software/p/pytest-workflow.md | 7 +++++++ docs/version-specific/supported-software/p/pytest-xdist.md | 7 +++++++ docs/version-specific/supported-software/p/pytest.md | 7 +++++++ .../supported-software/p/pythermalcomfort.md | 7 +++++++ .../supported-software/p/python-Levenshtein.md | 7 +++++++ .../supported-software/p/python-casacore.md | 7 +++++++ docs/version-specific/supported-software/p/python-docx.md | 7 +++++++ docs/version-specific/supported-software/p/python-hl7.md | 7 +++++++ .../version-specific/supported-software/p/python-igraph.md | 7 +++++++ .../supported-software/p/python-irodsclient.md | 7 +++++++ docs/version-specific/supported-software/p/python-isal.md | 7 +++++++ .../supported-software/p/python-libsbml.md | 7 +++++++ .../supported-software/p/python-louvain.md | 7 +++++++ .../version-specific/supported-software/p/python-mujoco.md | 7 +++++++ .../supported-software/p/python-parasail.md | 7 +++++++ .../supported-software/p/python-telegram-bot.md | 7 +++++++ .../supported-software/p/python-weka-wrapper3.md | 7 +++++++ .../version-specific/supported-software/p/python-xxhash.md | 7 +++++++ docs/version-specific/supported-software/p/pythran.md | 7 +++++++ .../supported-software/p/pytorch-3dunet.md | 7 +++++++ .../supported-software/p/pytorch-CycleGAN-pix2pix.md | 7 +++++++ docs/version-specific/supported-software/q/Q6.md | 7 +++++++ docs/version-specific/supported-software/q/QCA.md | 7 +++++++ docs/version-specific/supported-software/q/QCG-PilotJob.md | 7 +++++++ docs/version-specific/supported-software/q/QCxMS.md | 7 +++++++ docs/version-specific/supported-software/q/QD.md | 7 +++++++ docs/version-specific/supported-software/q/QDD.md | 7 +++++++ docs/version-specific/supported-software/q/QEMU.md | 7 +++++++ docs/version-specific/supported-software/q/QGIS.md | 7 +++++++ docs/version-specific/supported-software/q/QIIME.md | 7 +++++++ docs/version-specific/supported-software/q/QIIME2.md | 7 +++++++ docs/version-specific/supported-software/q/QJson.md | 7 +++++++ docs/version-specific/supported-software/q/QML.md | 7 +++++++ docs/version-specific/supported-software/q/QScintilla.md | 7 +++++++ docs/version-specific/supported-software/q/QTLtools.md | 7 +++++++ docs/version-specific/supported-software/q/QUAST.md | 7 +++++++ docs/version-specific/supported-software/q/Qhull.md | 7 +++++++ docs/version-specific/supported-software/q/Qiskit.md | 7 +++++++ docs/version-specific/supported-software/q/Qt.md | 7 +++++++ docs/version-specific/supported-software/q/Qt5.md | 7 +++++++ docs/version-specific/supported-software/q/Qt5Webkit.md | 7 +++++++ docs/version-specific/supported-software/q/Qt6.md | 7 +++++++ docs/version-specific/supported-software/q/QtKeychain.md | 7 +++++++ docs/version-specific/supported-software/q/QtPy.md | 7 +++++++ docs/version-specific/supported-software/q/Qtconsole.md | 7 +++++++ docs/version-specific/supported-software/q/QuPath.md | 7 +++++++ docs/version-specific/supported-software/q/QuTiP.md | 7 +++++++ docs/version-specific/supported-software/q/QuaZIP.md | 7 +++++++ docs/version-specific/supported-software/q/Qualimap.md | 7 +++++++ docs/version-specific/supported-software/q/Quandl.md | 7 +++++++ .../supported-software/q/QuantumESPRESSO.md | 7 +++++++ docs/version-specific/supported-software/q/QuickFF.md | 7 +++++++ docs/version-specific/supported-software/q/QuickPIC.md | 7 +++++++ docs/version-specific/supported-software/q/QuickTree.md | 7 +++++++ docs/version-specific/supported-software/q/Quip.md | 7 +++++++ docs/version-specific/supported-software/q/Quorum.md | 7 +++++++ docs/version-specific/supported-software/q/Qwt.md | 7 +++++++ docs/version-specific/supported-software/q/QwtPolar.md | 7 +++++++ docs/version-specific/supported-software/q/index.md | 6 ++++++ docs/version-specific/supported-software/q/q2-krona.md | 7 +++++++ docs/version-specific/supported-software/q/qcat.md | 7 +++++++ docs/version-specific/supported-software/q/qcint.md | 7 +++++++ docs/version-specific/supported-software/q/qforce.md | 7 +++++++ docs/version-specific/supported-software/q/qmflows.md | 7 +++++++ docs/version-specific/supported-software/q/qnorm.md | 7 +++++++ docs/version-specific/supported-software/q/qpth.md | 7 +++++++ docs/version-specific/supported-software/q/qrupdate.md | 7 +++++++ docs/version-specific/supported-software/q/qtop.md | 7 +++++++ docs/version-specific/supported-software/r/R-INLA.md | 7 +++++++ docs/version-specific/supported-software/r/R-MXM.md | 7 +++++++ .../supported-software/r/R-bundle-Bioconductor.md | 7 +++++++ .../version-specific/supported-software/r/R-bundle-CRAN.md | 7 +++++++ docs/version-specific/supported-software/r/R-keras.md | 7 +++++++ docs/version-specific/supported-software/r/R-opencv.md | 7 +++++++ docs/version-specific/supported-software/r/R-tesseract.md | 7 +++++++ docs/version-specific/supported-software/r/R-transport.md | 7 +++++++ docs/version-specific/supported-software/r/R.md | 7 +++++++ docs/version-specific/supported-software/r/R2jags.md | 7 +++++++ docs/version-specific/supported-software/r/RAPSearch2.md | 7 +++++++ docs/version-specific/supported-software/r/RASPA2.md | 7 +++++++ docs/version-specific/supported-software/r/RAxML-NG.md | 7 +++++++ docs/version-specific/supported-software/r/RAxML.md | 7 +++++++ docs/version-specific/supported-software/r/RBFOpt.md | 7 +++++++ docs/version-specific/supported-software/r/RCall.md | 7 +++++++ docs/version-specific/supported-software/r/RDFlib.md | 7 +++++++ docs/version-specific/supported-software/r/RDKit.md | 7 +++++++ .../supported-software/r/RDP-Classifier.md | 7 +++++++ docs/version-specific/supported-software/r/RE2.md | 7 +++++++ docs/version-specific/supported-software/r/RECON.md | 7 +++++++ docs/version-specific/supported-software/r/RELION.md | 7 +++++++ docs/version-specific/supported-software/r/REMORA.md | 7 +++++++ docs/version-specific/supported-software/r/RERconverge.md | 7 +++++++ docs/version-specific/supported-software/r/RFdiffusion.md | 7 +++++++ docs/version-specific/supported-software/r/RHEIA.md | 7 +++++++ docs/version-specific/supported-software/r/RInChI.md | 7 +++++++ docs/version-specific/supported-software/r/RLCard.md | 7 +++++++ docs/version-specific/supported-software/r/RMBlast.md | 7 +++++++ docs/version-specific/supported-software/r/RNA-Bloom.md | 7 +++++++ docs/version-specific/supported-software/r/RNA-SeQC.md | 7 +++++++ docs/version-specific/supported-software/r/RNAIndel.md | 7 +++++++ docs/version-specific/supported-software/r/RNAclust.md | 7 +++++++ docs/version-specific/supported-software/r/RNAcode.md | 7 +++++++ docs/version-specific/supported-software/r/RNAmmer.md | 7 +++++++ docs/version-specific/supported-software/r/RNAz.md | 7 +++++++ docs/version-specific/supported-software/r/ROCR-Runtime.md | 7 +++++++ .../supported-software/r/ROCT-Thunk-Interface.md | 7 +++++++ .../supported-software/r/ROCm-CompilerSupport.md | 7 +++++++ docs/version-specific/supported-software/r/ROCm.md | 7 +++++++ docs/version-specific/supported-software/r/ROI_PAC.md | 7 +++++++ docs/version-specific/supported-software/r/ROME.md | 7 +++++++ docs/version-specific/supported-software/r/ROOT.md | 7 +++++++ docs/version-specific/supported-software/r/RPostgreSQL.md | 7 +++++++ docs/version-specific/supported-software/r/RQGIS3.md | 7 +++++++ docs/version-specific/supported-software/r/RSEM.md | 7 +++++++ docs/version-specific/supported-software/r/RSeQC.md | 7 +++++++ docs/version-specific/supported-software/r/RStan.md | 7 +++++++ .../supported-software/r/RStudio-Server.md | 7 +++++++ docs/version-specific/supported-software/r/RTG-Tools.md | 7 +++++++ docs/version-specific/supported-software/r/RaGOO.md | 7 +++++++ docs/version-specific/supported-software/r/Racon.md | 7 +++++++ docs/version-specific/supported-software/r/RagTag.md | 7 +++++++ docs/version-specific/supported-software/r/Ragout.md | 7 +++++++ docs/version-specific/supported-software/r/RapidJSON.md | 7 +++++++ docs/version-specific/supported-software/r/Raptor.md | 7 +++++++ docs/version-specific/supported-software/r/Rascaf.md | 7 +++++++ docs/version-specific/supported-software/r/Ratatosk.md | 7 +++++++ docs/version-specific/supported-software/r/Raven.md | 7 +++++++ .../version-specific/supported-software/r/Ray-assembler.md | 7 +++++++ docs/version-specific/supported-software/r/Ray-project.md | 7 +++++++ docs/version-specific/supported-software/r/Raysect.md | 7 +++++++ docs/version-specific/supported-software/r/Rcorrector.md | 7 +++++++ docs/version-specific/supported-software/r/RcppGSL.md | 7 +++++++ docs/version-specific/supported-software/r/ReFrame.md | 7 +++++++ docs/version-specific/supported-software/r/ReMatCh.md | 7 +++++++ docs/version-specific/supported-software/r/Reads2snp.md | 7 +++++++ docs/version-specific/supported-software/r/Reapr.md | 7 +++++++ docs/version-specific/supported-software/r/ReaxFF.md | 7 +++++++ docs/version-specific/supported-software/r/Red.md | 7 +++++++ docs/version-specific/supported-software/r/Redis.md | 7 +++++++ docs/version-specific/supported-software/r/Redundans.md | 7 +++++++ docs/version-specific/supported-software/r/RegTools.md | 7 +++++++ docs/version-specific/supported-software/r/Relate.md | 7 +++++++ docs/version-specific/supported-software/r/RepastHPC.md | 7 +++++++ docs/version-specific/supported-software/r/RepeatMasker.md | 7 +++++++ .../version-specific/supported-software/r/RepeatModeler.md | 7 +++++++ docs/version-specific/supported-software/r/RepeatScout.md | 7 +++++++ docs/version-specific/supported-software/r/ResistanceGA.md | 7 +++++++ docs/version-specific/supported-software/r/Restrander.md | 7 +++++++ docs/version-specific/supported-software/r/RevBayes.md | 7 +++++++ docs/version-specific/supported-software/r/Rgurobi.md | 7 +++++++ docs/version-specific/supported-software/r/RheoTool.md | 7 +++++++ docs/version-specific/supported-software/r/Rhodium.md | 7 +++++++ docs/version-specific/supported-software/r/Rivet.md | 7 +++++++ docs/version-specific/supported-software/r/Rmath.md | 7 +++++++ docs/version-specific/supported-software/r/RnBeads.md | 7 +++++++ docs/version-specific/supported-software/r/Roary.md | 7 +++++++ docs/version-specific/supported-software/r/Rosetta.md | 7 +++++++ docs/version-specific/supported-software/r/Rtree.md | 7 +++++++ docs/version-specific/supported-software/r/Ruby-Tk.md | 7 +++++++ docs/version-specific/supported-software/r/Ruby.md | 7 +++++++ docs/version-specific/supported-software/r/Rust.md | 7 +++++++ docs/version-specific/supported-software/r/index.md | 6 ++++++ docs/version-specific/supported-software/r/rCUDA.md | 7 +++++++ docs/version-specific/supported-software/r/rMATS-turbo.md | 7 +++++++ docs/version-specific/supported-software/r/radeontop.md | 7 +++++++ docs/version-specific/supported-software/r/radian.md | 7 +++++++ docs/version-specific/supported-software/r/rampart.md | 7 +++++++ docs/version-specific/supported-software/r/randfold.md | 7 +++++++ docs/version-specific/supported-software/r/randrproto.md | 7 +++++++ docs/version-specific/supported-software/r/rapidNJ.md | 7 +++++++ docs/version-specific/supported-software/r/rapidcsv.md | 7 +++++++ docs/version-specific/supported-software/r/rapidtide.md | 7 +++++++ docs/version-specific/supported-software/r/rasterio.md | 7 +++++++ docs/version-specific/supported-software/r/rasterstats.md | 7 +++++++ docs/version-specific/supported-software/r/rclone.md | 7 +++++++ docs/version-specific/supported-software/r/re2c.md | 7 +++++++ docs/version-specific/supported-software/r/redis-py.md | 7 +++++++ docs/version-specific/supported-software/r/regionmask.md | 7 +++++++ docs/version-specific/supported-software/r/remake.md | 7 +++++++ docs/version-specific/supported-software/r/renderproto.md | 7 +++++++ docs/version-specific/supported-software/r/request.md | 7 +++++++ docs/version-specific/supported-software/r/requests.md | 7 +++++++ docs/version-specific/supported-software/r/resolos.md | 7 +++++++ docs/version-specific/supported-software/r/rethinking.md | 7 +++++++ docs/version-specific/supported-software/r/retworkx.md | 7 +++++++ docs/version-specific/supported-software/r/rgdal.md | 7 +++++++ docs/version-specific/supported-software/r/rgeos.md | 7 +++++++ docs/version-specific/supported-software/r/rhdf5.md | 7 +++++++ docs/version-specific/supported-software/r/rickflow.md | 7 +++++++ docs/version-specific/supported-software/r/rioxarray.md | 7 +++++++ docs/version-specific/supported-software/r/ripunzip.md | 7 +++++++ docs/version-specific/supported-software/r/rising.md | 7 +++++++ docs/version-specific/supported-software/r/rjags.md | 7 +++++++ docs/version-specific/supported-software/r/rmarkdown.md | 7 +++++++ docs/version-specific/supported-software/r/rnaQUAST.md | 7 +++++++ docs/version-specific/supported-software/r/rocm-cmake.md | 7 +++++++ docs/version-specific/supported-software/r/rocm-smi.md | 7 +++++++ docs/version-specific/supported-software/r/rocminfo.md | 7 +++++++ docs/version-specific/supported-software/r/root_numpy.md | 7 +++++++ docs/version-specific/supported-software/r/rootpy.md | 7 +++++++ docs/version-specific/supported-software/r/rpmrebuild.md | 7 +++++++ docs/version-specific/supported-software/r/rpy2.md | 7 +++++++ docs/version-specific/supported-software/r/rstanarm.md | 7 +++++++ docs/version-specific/supported-software/r/ruamel.yaml.md | 7 +++++++ docs/version-specific/supported-software/r/ruffus.md | 7 +++++++ docs/version-specific/supported-software/r/ruptures.md | 7 +++++++ docs/version-specific/supported-software/r/rustworkx.md | 7 +++++++ docs/version-specific/supported-software/s/S-Lang.md | 7 +++++++ docs/version-specific/supported-software/s/S4.md | 7 +++++++ docs/version-specific/supported-software/s/SAGE.md | 7 +++++++ docs/version-specific/supported-software/s/SALMON-TDDFT.md | 7 +++++++ docs/version-specific/supported-software/s/SALib.md | 7 +++++++ docs/version-specific/supported-software/s/SAMtools.md | 7 +++++++ docs/version-specific/supported-software/s/SAP.md | 7 +++++++ docs/version-specific/supported-software/s/SAS.md | 7 +++++++ docs/version-specific/supported-software/s/SBCL.md | 7 +++++++ docs/version-specific/supported-software/s/SCALCE.md | 7 +++++++ docs/version-specific/supported-software/s/SCENIC.md | 7 +++++++ docs/version-specific/supported-software/s/SCGid.md | 7 +++++++ docs/version-specific/supported-software/s/SCIP.md | 7 +++++++ docs/version-specific/supported-software/s/SCIPhI.md | 7 +++++++ docs/version-specific/supported-software/s/SCOOP.md | 7 +++++++ docs/version-specific/supported-software/s/SCOTCH.md | 7 +++++++ docs/version-specific/supported-software/s/SCReadCounts.md | 7 +++++++ docs/version-specific/supported-software/s/SCnorm.md | 7 +++++++ docs/version-specific/supported-software/s/SCons.md | 7 +++++++ docs/version-specific/supported-software/s/SCopeLoomR.md | 7 +++++++ docs/version-specific/supported-software/s/SDCC.md | 7 +++++++ docs/version-specific/supported-software/s/SDL.md | 7 +++++++ docs/version-specific/supported-software/s/SDL2.md | 7 +++++++ docs/version-specific/supported-software/s/SDL2_gfx.md | 7 +++++++ docs/version-specific/supported-software/s/SDL2_image.md | 7 +++++++ docs/version-specific/supported-software/s/SDL2_mixer.md | 7 +++++++ docs/version-specific/supported-software/s/SDL2_ttf.md | 7 +++++++ docs/version-specific/supported-software/s/SDL_image.md | 7 +++++++ docs/version-specific/supported-software/s/SDSL.md | 7 +++++++ docs/version-specific/supported-software/s/SEACells.md | 7 +++++++ docs/version-specific/supported-software/s/SECAPR.md | 7 +++++++ docs/version-specific/supported-software/s/SELFIES.md | 7 +++++++ docs/version-specific/supported-software/s/SEPP.md | 7 +++++++ docs/version-specific/supported-software/s/SHAP.md | 7 +++++++ docs/version-specific/supported-software/s/SHAPEIT.md | 7 +++++++ docs/version-specific/supported-software/s/SHAPEIT4.md | 7 +++++++ docs/version-specific/supported-software/s/SHORE.md | 7 +++++++ docs/version-specific/supported-software/s/SHTns.md | 7 +++++++ docs/version-specific/supported-software/s/SICER2.md | 7 +++++++ docs/version-specific/supported-software/s/SIMPLE.md | 7 +++++++ docs/version-specific/supported-software/s/SIONlib.md | 7 +++++++ docs/version-specific/supported-software/s/SIP.md | 7 +++++++ docs/version-specific/supported-software/s/SISSO++.md | 7 +++++++ docs/version-specific/supported-software/s/SISSO.md | 7 +++++++ docs/version-specific/supported-software/s/SKESA.md | 7 +++++++ docs/version-specific/supported-software/s/SLATEC.md | 7 +++++++ docs/version-specific/supported-software/s/SLEPc.md | 7 +++++++ docs/version-specific/supported-software/s/SLiM.md | 7 +++++++ docs/version-specific/supported-software/s/SMAP.md | 7 +++++++ docs/version-specific/supported-software/s/SMARTdenovo.md | 7 +++++++ docs/version-specific/supported-software/s/SMC++.md | 7 +++++++ docs/version-specific/supported-software/s/SMRT-Link.md | 7 +++++++ docs/version-specific/supported-software/s/SMV.md | 7 +++++++ .../supported-software/s/SNAP-ESA-python.md | 7 +++++++ docs/version-specific/supported-software/s/SNAP-ESA.md | 7 +++++++ docs/version-specific/supported-software/s/SNAP-HMM.md | 7 +++++++ docs/version-specific/supported-software/s/SNAP.md | 7 +++++++ docs/version-specific/supported-software/s/SNAPE-pooled.md | 7 +++++++ docs/version-specific/supported-software/s/SNPhylo.md | 7 +++++++ docs/version-specific/supported-software/s/SNPomatic.md | 7 +++++++ docs/version-specific/supported-software/s/SOAPaligner.md | 7 +++++++ .../supported-software/s/SOAPdenovo-Trans.md | 7 +++++++ docs/version-specific/supported-software/s/SOAPdenovo2.md | 7 +++++++ docs/version-specific/supported-software/s/SOAPfuse.md | 7 +++++++ docs/version-specific/supported-software/s/SOCI.md | 7 +++++++ docs/version-specific/supported-software/s/SPAdes.md | 7 +++++++ docs/version-specific/supported-software/s/SPEI.md | 7 +++++++ docs/version-specific/supported-software/s/SPLASH.md | 7 +++++++ docs/version-specific/supported-software/s/SPM.md | 7 +++++++ docs/version-specific/supported-software/s/SPOOLES.md | 7 +++++++ docs/version-specific/supported-software/s/SPOTPY.md | 7 +++++++ docs/version-specific/supported-software/s/SPRNG.md | 7 +++++++ docs/version-specific/supported-software/s/SQLAlchemy.md | 7 +++++++ docs/version-specific/supported-software/s/SQLite.md | 7 +++++++ docs/version-specific/supported-software/s/SRA-Toolkit.md | 7 +++++++ docs/version-specific/supported-software/s/SRPRISM.md | 7 +++++++ docs/version-specific/supported-software/s/SRST2.md | 7 +++++++ docs/version-specific/supported-software/s/SSAHA2.md | 7 +++++++ docs/version-specific/supported-software/s/SSN.md | 7 +++++++ docs/version-specific/supported-software/s/SSPACE_Basic.md | 7 +++++++ docs/version-specific/supported-software/s/SSW.md | 7 +++++++ docs/version-specific/supported-software/s/STACEY.md | 7 +++++++ docs/version-specific/supported-software/s/STAMP.md | 7 +++++++ docs/version-specific/supported-software/s/STAR-CCM+.md | 7 +++++++ docs/version-specific/supported-software/s/STAR-Fusion.md | 7 +++++++ docs/version-specific/supported-software/s/STAR.md | 7 +++++++ docs/version-specific/supported-software/s/STEAK.md | 7 +++++++ docs/version-specific/supported-software/s/STIR.md | 7 +++++++ docs/version-specific/supported-software/s/STREAM.md | 7 +++++++ docs/version-specific/supported-software/s/STRUMPACK.md | 7 +++++++ docs/version-specific/supported-software/s/STRique.md | 7 +++++++ docs/version-specific/supported-software/s/SUMACLUST.md | 7 +++++++ docs/version-specific/supported-software/s/SUMATRA.md | 7 +++++++ docs/version-specific/supported-software/s/SUMO.md | 7 +++++++ docs/version-specific/supported-software/s/SUNDIALS.md | 7 +++++++ docs/version-specific/supported-software/s/SUPPA.md | 7 +++++++ docs/version-specific/supported-software/s/SURVIVOR.md | 7 +++++++ docs/version-specific/supported-software/s/SVDetect.md | 7 +++++++ docs/version-specific/supported-software/s/SVDquest.md | 7 +++++++ docs/version-specific/supported-software/s/SVG.md | 7 +++++++ docs/version-specific/supported-software/s/SVIM.md | 7 +++++++ docs/version-specific/supported-software/s/SVclone.md | 7 +++++++ docs/version-specific/supported-software/s/SWASH.md | 7 +++++++ docs/version-specific/supported-software/s/SWAT+.md | 7 +++++++ docs/version-specific/supported-software/s/SWIG.md | 7 +++++++ docs/version-specific/supported-software/s/SWIPE.md | 7 +++++++ docs/version-specific/supported-software/s/SYMMETRICA.md | 7 +++++++ docs/version-specific/supported-software/s/SYMPHONY.md | 7 +++++++ docs/version-specific/supported-software/s/Sabre.md | 7 +++++++ docs/version-specific/supported-software/s/Safetensors.md | 7 +++++++ docs/version-specific/supported-software/s/Sailfish.md | 7 +++++++ docs/version-specific/supported-software/s/Salmon.md | 7 +++++++ docs/version-specific/supported-software/s/Sambamba.md | 7 +++++++ docs/version-specific/supported-software/s/Samcef.md | 7 +++++++ docs/version-specific/supported-software/s/Satsuma2.md | 7 +++++++ docs/version-specific/supported-software/s/Saxon-HE.md | 7 +++++++ docs/version-specific/supported-software/s/ScaFaCoS.md | 7 +++++++ docs/version-specific/supported-software/s/ScaLAPACK.md | 7 +++++++ docs/version-specific/supported-software/s/Scalasca.md | 7 +++++++ docs/version-specific/supported-software/s/Scalene.md | 7 +++++++ docs/version-specific/supported-software/s/Schrodinger.md | 7 +++++++ docs/version-specific/supported-software/s/SciPy-bundle.md | 7 +++++++ .../version-specific/supported-software/s/SciTools-Iris.md | 7 +++++++ .../supported-software/s/ScientificPython.md | 7 +++++++ docs/version-specific/supported-software/s/Scoary.md | 7 +++++++ docs/version-specific/supported-software/s/Score-P.md | 7 +++++++ docs/version-specific/supported-software/s/Scrappie.md | 7 +++++++ docs/version-specific/supported-software/s/Scythe.md | 7 +++++++ docs/version-specific/supported-software/s/SeaView.md | 7 +++++++ docs/version-specific/supported-software/s/Seaborn.md | 7 +++++++ docs/version-specific/supported-software/s/SearchGUI.md | 7 +++++++ docs/version-specific/supported-software/s/Seeder.md | 7 +++++++ docs/version-specific/supported-software/s/SeisSol.md | 7 +++++++ docs/version-specific/supported-software/s/SelEstim.md | 7 +++++++ docs/version-specific/supported-software/s/SemiBin.md | 7 +++++++ .../supported-software/s/Sentence-Transformers.md | 7 +++++++ .../version-specific/supported-software/s/SentencePiece.md | 7 +++++++ docs/version-specific/supported-software/s/Seq-Gen.md | 7 +++++++ docs/version-specific/supported-software/s/SeqAn.md | 7 +++++++ docs/version-specific/supported-software/s/SeqAn3.md | 7 +++++++ docs/version-specific/supported-software/s/SeqKit.md | 7 +++++++ docs/version-specific/supported-software/s/SeqLib.md | 7 +++++++ docs/version-specific/supported-software/s/SeqPrep.md | 7 +++++++ docs/version-specific/supported-software/s/Seqmagick.md | 7 +++++++ docs/version-specific/supported-software/s/Serf.md | 7 +++++++ docs/version-specific/supported-software/s/Seurat.md | 7 +++++++ docs/version-specific/supported-software/s/SeuratData.md | 7 +++++++ docs/version-specific/supported-software/s/SeuratDisk.md | 7 +++++++ .../supported-software/s/SeuratWrappers.md | 7 +++++++ docs/version-specific/supported-software/s/Shannon.md | 7 +++++++ docs/version-specific/supported-software/s/Shapely.md | 7 +++++++ docs/version-specific/supported-software/s/Shasta.md | 7 +++++++ docs/version-specific/supported-software/s/ShengBTE.md | 7 +++++++ docs/version-specific/supported-software/s/Short-Pair.md | 7 +++++++ docs/version-specific/supported-software/s/SiNVICT.md | 7 +++++++ docs/version-specific/supported-software/s/Sibelia.md | 7 +++++++ docs/version-specific/supported-software/s/Siesta.md | 7 +++++++ docs/version-specific/supported-software/s/SignalP.md | 7 +++++++ docs/version-specific/supported-software/s/SimNIBS.md | 7 +++++++ docs/version-specific/supported-software/s/SimPEG.md | 7 +++++++ docs/version-specific/supported-software/s/SimVascular.md | 7 +++++++ docs/version-specific/supported-software/s/Simple-DFTD3.md | 7 +++++++ .../version-specific/supported-software/s/SimpleElastix.md | 7 +++++++ docs/version-specific/supported-software/s/SimpleITK.md | 7 +++++++ docs/version-specific/supported-software/s/Simstrat.md | 7 +++++++ docs/version-specific/supported-software/s/SingleM.md | 7 +++++++ docs/version-specific/supported-software/s/Singular.md | 7 +++++++ docs/version-specific/supported-software/s/SlamDunk.md | 7 +++++++ docs/version-specific/supported-software/s/Smoldyn.md | 7 +++++++ docs/version-specific/supported-software/s/Sniffles.md | 7 +++++++ docs/version-specific/supported-software/s/SoPlex.md | 7 +++++++ docs/version-specific/supported-software/s/SoQt.md | 7 +++++++ docs/version-specific/supported-software/s/SoX.md | 7 +++++++ docs/version-specific/supported-software/s/SoXt.md | 7 +++++++ docs/version-specific/supported-software/s/SolexaQA++.md | 7 +++++++ docs/version-specific/supported-software/s/SortMeRNA.md | 7 +++++++ docs/version-specific/supported-software/s/SoupX.md | 7 +++++++ docs/version-specific/supported-software/s/SpaceRanger.md | 7 +++++++ docs/version-specific/supported-software/s/Spack.md | 7 +++++++ docs/version-specific/supported-software/s/Spark.md | 7 +++++++ docs/version-specific/supported-software/s/SpatialDE.md | 7 +++++++ docs/version-specific/supported-software/s/SpectrA.md | 7 +++++++ .../supported-software/s/Sphinx-RTD-Theme.md | 7 +++++++ docs/version-specific/supported-software/s/Sphinx.md | 7 +++++++ docs/version-specific/supported-software/s/SpiceyPy.md | 7 +++++++ docs/version-specific/supported-software/s/SpiecEasi.md | 7 +++++++ docs/version-specific/supported-software/s/SplAdder.md | 7 +++++++ docs/version-specific/supported-software/s/SpliceMap.md | 7 +++++++ docs/version-specific/supported-software/s/Spyder.md | 7 +++++++ docs/version-specific/supported-software/s/SqueezeMeta.md | 7 +++++++ docs/version-specific/supported-software/s/Squidpy.md | 7 +++++++ docs/version-specific/supported-software/s/StaMPS.md | 7 +++++++ docs/version-specific/supported-software/s/Stack.md | 7 +++++++ docs/version-specific/supported-software/s/Stacks.md | 7 +++++++ docs/version-specific/supported-software/s/Stampy.md | 7 +++++++ docs/version-specific/supported-software/s/Stata.md | 7 +++++++ docs/version-specific/supported-software/s/Statistics-R.md | 7 +++++++ docs/version-specific/supported-software/s/Strainberry.md | 7 +++++++ docs/version-specific/supported-software/s/StringTie.md | 7 +++++++ docs/version-specific/supported-software/s/Structure.md | 7 +++++++ .../supported-software/s/Structure_threader.md | 7 +++++++ docs/version-specific/supported-software/s/SuAVE-biomat.md | 7 +++++++ docs/version-specific/supported-software/s/Subread.md | 7 +++++++ docs/version-specific/supported-software/s/Subversion.md | 7 +++++++ docs/version-specific/supported-software/s/SuiteSparse.md | 7 +++++++ docs/version-specific/supported-software/s/SunPy.md | 7 +++++++ docs/version-specific/supported-software/s/SuperLU.md | 7 +++++++ docs/version-specific/supported-software/s/SuperLU_DIST.md | 7 +++++++ docs/version-specific/supported-software/s/SyRI.md | 7 +++++++ .../supported-software/s/SymEngine-python.md | 7 +++++++ docs/version-specific/supported-software/s/SymEngine.md | 7 +++++++ docs/version-specific/supported-software/s/Szip.md | 7 +++++++ docs/version-specific/supported-software/s/index.md | 6 ++++++ docs/version-specific/supported-software/s/s3fs.md | 7 +++++++ .../version-specific/supported-software/s/safestringlib.md | 7 +++++++ docs/version-specific/supported-software/s/samblaster.md | 7 +++++++ docs/version-specific/supported-software/s/samclip.md | 7 +++++++ docs/version-specific/supported-software/s/samplot.md | 7 +++++++ docs/version-specific/supported-software/s/sansa.md | 7 +++++++ docs/version-specific/supported-software/s/savvy.md | 7 +++++++ docs/version-specific/supported-software/s/sbt.md | 7 +++++++ docs/version-specific/supported-software/s/scArches.md | 7 +++++++ docs/version-specific/supported-software/s/scCODA.md | 7 +++++++ docs/version-specific/supported-software/s/scGSVA.md | 7 +++++++ docs/version-specific/supported-software/s/scGeneFit.md | 7 +++++++ .../version-specific/supported-software/s/scHiCExplorer.md | 7 +++++++ docs/version-specific/supported-software/s/scPred.md | 7 +++++++ docs/version-specific/supported-software/s/scVelo.md | 7 +++++++ docs/version-specific/supported-software/s/scanpy.md | 7 +++++++ docs/version-specific/supported-software/s/sceasy.md | 7 +++++++ docs/version-specific/supported-software/s/sciClone.md | 7 +++++++ docs/version-specific/supported-software/s/scib-metrics.md | 7 +++++++ docs/version-specific/supported-software/s/scib.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-allel.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-bio.md | 7 +++++++ .../supported-software/s/scikit-build-core.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-build.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-cuda.md | 7 +++++++ .../supported-software/s/scikit-extremes.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-image.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-learn.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-lego.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-misc.md | 7 +++++++ .../supported-software/s/scikit-multilearn.md | 7 +++++++ .../supported-software/s/scikit-optimize.md | 7 +++++++ docs/version-specific/supported-software/s/scikit-plot.md | 7 +++++++ .../version-specific/supported-software/s/scikit-uplift.md | 7 +++++++ docs/version-specific/supported-software/s/scipy.md | 7 +++++++ docs/version-specific/supported-software/s/scp.md | 7 +++++++ docs/version-specific/supported-software/s/scrublet.md | 7 +++++++ docs/version-specific/supported-software/s/scvi-tools.md | 7 +++++++ docs/version-specific/supported-software/s/segemehl.md | 7 +++++++ .../supported-software/s/segment-anything.md | 7 +++++++ .../supported-software/s/segmentation-models-pytorch.md | 7 +++++++ .../supported-software/s/segmentation-models.md | 7 +++++++ docs/version-specific/supported-software/s/semla.md | 7 +++++++ docs/version-specific/supported-software/s/sentinelsat.md | 7 +++++++ docs/version-specific/supported-software/s/sep.md | 7 +++++++ docs/version-specific/supported-software/s/seq2HLA.md | 7 +++++++ docs/version-specific/supported-software/s/seqtk.md | 7 +++++++ .../supported-software/s/setuptools-rust.md | 7 +++++++ docs/version-specific/supported-software/s/setuptools.md | 7 +++++++ docs/version-specific/supported-software/s/sf.md | 7 +++++++ docs/version-specific/supported-software/s/sfftk.md | 7 +++++++ docs/version-specific/supported-software/s/shapAAR.md | 7 +++++++ docs/version-specific/supported-software/s/sharutils.md | 7 +++++++ docs/version-specific/supported-software/s/shift.md | 7 +++++++ docs/version-specific/supported-software/s/shovill.md | 7 +++++++ docs/version-specific/supported-software/s/shrinkwrap.md | 7 +++++++ docs/version-specific/supported-software/s/sickle.md | 7 +++++++ .../supported-software/s/silhouetteRank.md | 7 +++++++ docs/version-specific/supported-software/s/silx.md | 7 +++++++ docs/version-specific/supported-software/s/simanneal.md | 7 +++++++ docs/version-specific/supported-software/s/simint.md | 7 +++++++ docs/version-specific/supported-software/s/simpy.md | 7 +++++++ docs/version-specific/supported-software/s/sinto.md | 7 +++++++ docs/version-specific/supported-software/s/siscone.md | 7 +++++++ docs/version-specific/supported-software/s/sketchmap.md | 7 +++++++ docs/version-specific/supported-software/s/skewer.md | 7 +++++++ .../supported-software/s/sklearn-pandas.md | 7 +++++++ docs/version-specific/supported-software/s/sklearn-som.md | 7 +++++++ docs/version-specific/supported-software/s/skorch.md | 7 +++++++ docs/version-specific/supported-software/s/sktime.md | 7 +++++++ docs/version-specific/supported-software/s/slepc4py.md | 7 +++++++ docs/version-specific/supported-software/s/sleuth.md | 7 +++++++ .../version-specific/supported-software/s/slidingwindow.md | 7 +++++++ docs/version-specific/supported-software/s/slow5tools.md | 7 +++++++ docs/version-specific/supported-software/s/slurm-drmaa.md | 7 +++++++ docs/version-specific/supported-software/s/smafa.md | 7 +++++++ .../supported-software/s/smallgenomeutilities.md | 7 +++++++ docs/version-specific/supported-software/s/smfishHmrf.md | 7 +++++++ .../version-specific/supported-software/s/smithwaterman.md | 7 +++++++ docs/version-specific/supported-software/s/smooth-topk.md | 7 +++++++ docs/version-specific/supported-software/s/snakemake.md | 7 +++++++ docs/version-specific/supported-software/s/snaphu.md | 7 +++++++ docs/version-specific/supported-software/s/snappy.md | 7 +++++++ docs/version-specific/supported-software/s/snippy.md | 7 +++++++ docs/version-specific/supported-software/s/snp-sites.md | 7 +++++++ docs/version-specific/supported-software/s/snpEff.md | 7 +++++++ docs/version-specific/supported-software/s/socat.md | 7 +++++++ docs/version-specific/supported-software/s/solo.md | 7 +++++++ docs/version-specific/supported-software/s/sonic.md | 7 +++++++ docs/version-specific/supported-software/s/spaCy.md | 7 +++++++ docs/version-specific/supported-software/s/spaln.md | 7 +++++++ .../supported-software/s/sparse-neighbors-search.md | 7 +++++++ docs/version-specific/supported-software/s/sparsehash.md | 7 +++++++ docs/version-specific/supported-software/s/spatialreg.md | 7 +++++++ docs/version-specific/supported-software/s/spdlog.md | 7 +++++++ .../supported-software/s/spectral.methods.md | 7 +++++++ docs/version-specific/supported-software/s/speech_tools.md | 7 +++++++ docs/version-specific/supported-software/s/spektral.md | 7 +++++++ .../version-specific/supported-software/s/spglib-python.md | 7 +++++++ docs/version-specific/supported-software/s/spglib.md | 7 +++++++ docs/version-specific/supported-software/s/split-seq.md | 7 +++++++ docs/version-specific/supported-software/s/splitRef.md | 7 +++++++ docs/version-specific/supported-software/s/spoa.md | 7 +++++++ .../version-specific/supported-software/s/sradownloader.md | 7 +++++++ docs/version-specific/supported-software/s/stardist.md | 7 +++++++ docs/version-specific/supported-software/s/starparser.md | 7 +++++++ docs/version-specific/supported-software/s/stars.md | 7 +++++++ docs/version-specific/supported-software/s/statsmodels.md | 7 +++++++ docs/version-specific/supported-software/s/stpipeline.md | 7 +++++++ docs/version-specific/supported-software/s/strace.md | 7 +++++++ docs/version-specific/supported-software/s/strelka.md | 7 +++++++ docs/version-specific/supported-software/s/stripy.md | 7 +++++++ docs/version-specific/supported-software/s/suave.md | 7 +++++++ docs/version-specific/supported-software/s/subset-bam.md | 7 +++++++ docs/version-specific/supported-software/s/subunit.md | 7 +++++++ docs/version-specific/supported-software/s/suds.md | 7 +++++++ docs/version-specific/supported-software/s/supermagic.md | 7 +++++++ docs/version-specific/supported-software/s/supernova.md | 7 +++++++ docs/version-specific/supported-software/s/svist4get.md | 7 +++++++ docs/version-specific/supported-software/s/swarm.md | 7 +++++++ docs/version-specific/supported-software/s/swifter.md | 7 +++++++ docs/version-specific/supported-software/s/swissknife.md | 7 +++++++ docs/version-specific/supported-software/s/sympy.md | 7 +++++++ .../version-specific/supported-software/s/synapseclient.md | 7 +++++++ docs/version-specific/supported-software/s/synthcity.md | 7 +++++++ docs/version-specific/supported-software/s/sysbench.md | 7 +++++++ docs/version-specific/supported-software/t/T-Coffee.md | 7 +++++++ docs/version-specific/supported-software/t/TALON.md | 7 +++++++ docs/version-specific/supported-software/t/TALYS.md | 7 +++++++ docs/version-specific/supported-software/t/TAMkin.md | 7 +++++++ docs/version-specific/supported-software/t/TBA.md | 7 +++++++ docs/version-specific/supported-software/t/TCC.md | 7 +++++++ docs/version-specific/supported-software/t/TCLAP.md | 7 +++++++ .../supported-software/t/TELEMAC-MASCARET.md | 7 +++++++ docs/version-specific/supported-software/t/TEToolkit.md | 7 +++++++ .../version-specific/supported-software/t/TEtranscripts.md | 7 +++++++ docs/version-specific/supported-software/t/TF-COMB.md | 7 +++++++ docs/version-specific/supported-software/t/TFEA.md | 7 +++++++ docs/version-specific/supported-software/t/THetA.md | 7 +++++++ docs/version-specific/supported-software/t/TINKER.md | 7 +++++++ docs/version-specific/supported-software/t/TM-align.md | 7 +++++++ docs/version-specific/supported-software/t/TN93.md | 7 +++++++ docs/version-specific/supported-software/t/TOBIAS.md | 7 +++++++ docs/version-specific/supported-software/t/TOML-Fortran.md | 7 +++++++ docs/version-specific/supported-software/t/TOPAS.md | 7 +++++++ .../supported-software/t/TRAVIS-Analyzer.md | 7 +++++++ docs/version-specific/supported-software/t/TRF.md | 7 +++++++ docs/version-specific/supported-software/t/TRIQS-cthyb.md | 7 +++++++ .../supported-software/t/TRIQS-dft_tools.md | 7 +++++++ docs/version-specific/supported-software/t/TRIQS-tprf.md | 7 +++++++ docs/version-specific/supported-software/t/TRIQS.md | 7 +++++++ docs/version-specific/supported-software/t/TRUST.md | 7 +++++++ docs/version-specific/supported-software/t/TRUST4.md | 7 +++++++ docs/version-specific/supported-software/t/TVB-deps.md | 7 +++++++ docs/version-specific/supported-software/t/TVB.md | 7 +++++++ docs/version-specific/supported-software/t/TWL-NINJA.md | 7 +++++++ docs/version-specific/supported-software/t/TXR.md | 7 +++++++ docs/version-specific/supported-software/t/TagDust.md | 7 +++++++ docs/version-specific/supported-software/t/TagLib.md | 7 +++++++ docs/version-specific/supported-software/t/Taiyaki.md | 7 +++++++ docs/version-specific/supported-software/t/Tapenade.md | 7 +++++++ docs/version-specific/supported-software/t/Tcl.md | 7 +++++++ docs/version-specific/supported-software/t/Telescope.md | 7 +++++++ docs/version-specific/supported-software/t/Teneto.md | 7 +++++++ .../supported-software/t/TensorFlow-Datasets.md | 7 +++++++ .../supported-software/t/TensorFlow-Graphics.md | 7 +++++++ docs/version-specific/supported-software/t/TensorFlow.md | 7 +++++++ docs/version-specific/supported-software/t/TensorRT.md | 7 +++++++ .../supported-software/t/Tesla-Deployment-Kit.md | 7 +++++++ docs/version-specific/supported-software/t/TetGen.md | 7 +++++++ docs/version-specific/supported-software/t/Text-CSV.md | 7 +++++++ docs/version-specific/supported-software/t/Theano.md | 7 +++++++ docs/version-specific/supported-software/t/ThemisPy.md | 7 +++++++ docs/version-specific/supported-software/t/TiCCutils.md | 7 +++++++ docs/version-specific/supported-software/t/TiMBL.md | 7 +++++++ docs/version-specific/supported-software/t/Tika.md | 7 +++++++ docs/version-specific/supported-software/t/TinyDB.md | 7 +++++++ docs/version-specific/supported-software/t/TinyXML.md | 7 +++++++ docs/version-specific/supported-software/t/Tk.md | 7 +++++++ docs/version-specific/supported-software/t/Tkinter.md | 7 +++++++ docs/version-specific/supported-software/t/ToFu.md | 7 +++++++ docs/version-specific/supported-software/t/Togl.md | 7 +++++++ docs/version-specific/supported-software/t/Tombo.md | 7 +++++++ docs/version-specific/supported-software/t/TopHat.md | 7 +++++++ docs/version-specific/supported-software/t/TorchIO.md | 7 +++++++ docs/version-specific/supported-software/t/TotalView.md | 7 +++++++ docs/version-specific/supported-software/t/Tracer.md | 7 +++++++ docs/version-specific/supported-software/t/TransDecoder.md | 7 +++++++ .../supported-software/t/TranscriptClean.md | 7 +++++++ docs/version-specific/supported-software/t/Transformers.md | 7 +++++++ docs/version-specific/supported-software/t/Transrate.md | 7 +++++++ docs/version-specific/supported-software/t/TreeMix.md | 7 +++++++ docs/version-specific/supported-software/t/TreeShrink.md | 7 +++++++ docs/version-specific/supported-software/t/Triangle.md | 7 +++++++ docs/version-specific/supported-software/t/Trilinos.md | 7 +++++++ docs/version-specific/supported-software/t/Trim_Galore.md | 7 +++++++ docs/version-specific/supported-software/t/Trimmomatic.md | 7 +++++++ docs/version-specific/supported-software/t/Trinity.md | 7 +++++++ docs/version-specific/supported-software/t/Trinotate.md | 7 +++++++ docs/version-specific/supported-software/t/Triplexator.md | 7 +++++++ docs/version-specific/supported-software/t/Triton.md | 7 +++++++ docs/version-specific/supported-software/t/Trycycler.md | 7 +++++++ docs/version-specific/supported-software/t/TurboVNC.md | 7 +++++++ docs/version-specific/supported-software/t/index.md | 6 ++++++ docs/version-specific/supported-software/t/t-SNE-CUDA.md | 7 +++++++ docs/version-specific/supported-software/t/tMAE.md | 7 +++++++ docs/version-specific/supported-software/t/tRNAscan-SE.md | 7 +++++++ docs/version-specific/supported-software/t/tabix.md | 7 +++++++ docs/version-specific/supported-software/t/tabixpp.md | 7 +++++++ docs/version-specific/supported-software/t/taco.md | 7 +++++++ docs/version-specific/supported-software/t/tantan.md | 7 +++++++ docs/version-specific/supported-software/t/task-spooler.md | 7 +++++++ docs/version-specific/supported-software/t/taxator-tk.md | 7 +++++++ docs/version-specific/supported-software/t/tbb.md | 7 +++++++ docs/version-specific/supported-software/t/tbl2asn.md | 7 +++++++ docs/version-specific/supported-software/t/tcsh.md | 7 +++++++ docs/version-specific/supported-software/t/tecplot360ex.md | 7 +++++++ docs/version-specific/supported-software/t/tensorboard.md | 7 +++++++ docs/version-specific/supported-software/t/tensorboardX.md | 7 +++++++ .../supported-software/t/tensorflow-compression.md | 7 +++++++ .../supported-software/t/tensorflow-probability.md | 7 +++++++ .../version-specific/supported-software/t/terastructure.md | 7 +++++++ docs/version-specific/supported-software/t/termcolor.md | 7 +++++++ docs/version-specific/supported-software/t/tesseract.md | 7 +++++++ docs/version-specific/supported-software/t/testpath.md | 7 +++++++ docs/version-specific/supported-software/t/texinfo.md | 7 +++++++ docs/version-specific/supported-software/t/texlive.md | 7 +++++++ docs/version-specific/supported-software/t/thirdorder.md | 7 +++++++ .../supported-software/t/thurstonianIRT.md | 7 +++++++ docs/version-specific/supported-software/t/tidybayes.md | 7 +++++++ docs/version-specific/supported-software/t/tidymodels.md | 7 +++++++ docs/version-specific/supported-software/t/tiktoken.md | 7 +++++++ docs/version-specific/supported-software/t/time.md | 7 +++++++ docs/version-specific/supported-software/t/timm.md | 7 +++++++ docs/version-specific/supported-software/t/tiny-cuda-nn.md | 7 +++++++ docs/version-specific/supported-software/t/tmap.md | 7 +++++++ docs/version-specific/supported-software/t/tmux.md | 7 +++++++ docs/version-specific/supported-software/t/toil.md | 7 +++++++ docs/version-specific/supported-software/t/tokenizers.md | 7 +++++++ docs/version-specific/supported-software/t/topaz.md | 7 +++++++ docs/version-specific/supported-software/t/torchaudio.md | 7 +++++++ docs/version-specific/supported-software/t/torchdata.md | 7 +++++++ docs/version-specific/supported-software/t/torchinfo.md | 7 +++++++ docs/version-specific/supported-software/t/torchsampler.md | 7 +++++++ docs/version-specific/supported-software/t/torchtext.md | 7 +++++++ docs/version-specific/supported-software/t/torchvf.md | 7 +++++++ docs/version-specific/supported-software/t/torchvision.md | 7 +++++++ docs/version-specific/supported-software/t/tornado.md | 7 +++++++ docs/version-specific/supported-software/t/tox.md | 7 +++++++ docs/version-specific/supported-software/t/tqdm.md | 7 +++++++ docs/version-specific/supported-software/t/travis.md | 7 +++++++ docs/version-specific/supported-software/t/treatSens.md | 7 +++++++ docs/version-specific/supported-software/t/trimAl.md | 7 +++++++ docs/version-specific/supported-software/t/trimesh.md | 7 +++++++ .../supported-software/t/tseriesEntropy.md | 7 +++++++ docs/version-specific/supported-software/t/tsne.md | 7 +++++++ docs/version-specific/supported-software/t/turbinesFoam.md | 7 +++++++ docs/version-specific/supported-software/t/tvb-data.md | 7 +++++++ .../version-specific/supported-software/t/tvb-framework.md | 7 +++++++ docs/version-specific/supported-software/t/tvb-library.md | 7 +++++++ .../supported-software/t/typing-extensions.md | 7 +++++++ docs/version-specific/supported-software/u/UCC-CUDA.md | 7 +++++++ docs/version-specific/supported-software/u/UCC.md | 7 +++++++ docs/version-specific/supported-software/u/UCLUST.md | 7 +++++++ docs/version-specific/supported-software/u/UCX-CUDA.md | 7 +++++++ docs/version-specific/supported-software/u/UCX-ROCm.md | 7 +++++++ docs/version-specific/supported-software/u/UCX.md | 7 +++++++ docs/version-specific/supported-software/u/UDUNITS.md | 7 +++++++ docs/version-specific/supported-software/u/UFL.md | 7 +++++++ docs/version-specific/supported-software/u/UMI-tools.md | 7 +++++++ docs/version-specific/supported-software/u/UNAFold.md | 7 +++++++ docs/version-specific/supported-software/u/UQTk.md | 7 +++++++ docs/version-specific/supported-software/u/USEARCH.md | 7 +++++++ docs/version-specific/supported-software/u/USPEX.md | 7 +++++++ docs/version-specific/supported-software/u/UShER.md | 7 +++++++ docs/version-specific/supported-software/u/Ultralytics.md | 7 +++++++ docs/version-specific/supported-software/u/UnZip.md | 7 +++++++ docs/version-specific/supported-software/u/UniFrac.md | 7 +++++++ docs/version-specific/supported-software/u/Unicycler.md | 7 +++++++ docs/version-specific/supported-software/u/Unidecode.md | 7 +++++++ docs/version-specific/supported-software/u/index.md | 6 ++++++ docs/version-specific/supported-software/u/ucx-py.md | 7 +++++++ docs/version-specific/supported-software/u/udocker.md | 7 +++++++ docs/version-specific/supported-software/u/umap-learn.md | 7 +++++++ docs/version-specific/supported-software/u/umi4cPackage.md | 7 +++++++ docs/version-specific/supported-software/u/umis.md | 7 +++++++ .../version-specific/supported-software/u/uncertainties.md | 7 +++++++ .../supported-software/u/uncertainty-calibration.md | 7 +++++++ docs/version-specific/supported-software/u/unicore-uftp.md | 7 +++++++ docs/version-specific/supported-software/u/unifdef.md | 7 +++++++ docs/version-specific/supported-software/u/unimap.md | 7 +++++++ docs/version-specific/supported-software/u/units.md | 7 +++++++ docs/version-specific/supported-software/u/unixODBC.md | 7 +++++++ docs/version-specific/supported-software/u/unrar.md | 7 +++++++ docs/version-specific/supported-software/u/utf8proc.md | 7 +++++++ docs/version-specific/supported-software/u/util-linux.md | 7 +++++++ docs/version-specific/supported-software/v/V8.md | 7 +++++++ docs/version-specific/supported-software/v/VAMPIRE-ASM.md | 7 +++++++ docs/version-specific/supported-software/v/VASP.md | 7 +++++++ docs/version-specific/supported-software/v/VAtools.md | 7 +++++++ .../supported-software/v/VBZ-Compression.md | 7 +++++++ docs/version-specific/supported-software/v/VCF-kit.md | 7 +++++++ docs/version-specific/supported-software/v/VCFtools.md | 7 +++++++ docs/version-specific/supported-software/v/VEGAS.md | 7 +++++++ docs/version-specific/supported-software/v/VEP.md | 7 +++++++ docs/version-specific/supported-software/v/VERSE.md | 7 +++++++ docs/version-specific/supported-software/v/VESTA.md | 7 +++++++ docs/version-specific/supported-software/v/VMD.md | 7 +++++++ docs/version-specific/supported-software/v/VMTK.md | 7 +++++++ docs/version-specific/supported-software/v/VSCode.md | 7 +++++++ docs/version-specific/supported-software/v/VSEARCH.md | 7 +++++++ docs/version-specific/supported-software/v/VTK.md | 7 +++++++ docs/version-specific/supported-software/v/VTune.md | 7 +++++++ docs/version-specific/supported-software/v/VV.md | 7 +++++++ docs/version-specific/supported-software/v/VXL.md | 7 +++++++ docs/version-specific/supported-software/v/Vala.md | 7 +++++++ docs/version-specific/supported-software/v/Valgrind.md | 7 +++++++ docs/version-specific/supported-software/v/Vamb.md | 7 +++++++ docs/version-specific/supported-software/v/Vampir.md | 7 +++++++ docs/version-specific/supported-software/v/Vampire.md | 7 +++++++ docs/version-specific/supported-software/v/VarDict.md | 7 +++++++ docs/version-specific/supported-software/v/VarScan.md | 7 +++++++ .../supported-software/v/VariantMetaCaller.md | 7 +++++++ docs/version-specific/supported-software/v/Velvet.md | 7 +++++++ docs/version-specific/supported-software/v/ViennaRNA.md | 7 +++++++ docs/version-specific/supported-software/v/Vim.md | 7 +++++++ docs/version-specific/supported-software/v/VirSorter.md | 7 +++++++ docs/version-specific/supported-software/v/VirSorter2.md | 7 +++++++ docs/version-specific/supported-software/v/VirtualGL.md | 7 +++++++ .../supported-software/v/Virtuoso-opensource.md | 7 +++++++ docs/version-specific/supported-software/v/VisPy.md | 7 +++++++ docs/version-specific/supported-software/v/Voro++.md | 7 +++++++ docs/version-specific/supported-software/v/index.md | 6 ++++++ docs/version-specific/supported-software/v/vConTACT2.md | 7 +++++++ docs/version-specific/supported-software/v/vaeda.md | 7 +++++++ .../version-specific/supported-software/v/variant_tools.md | 7 +++++++ docs/version-specific/supported-software/v/vartools.md | 7 +++++++ docs/version-specific/supported-software/v/vawk.md | 7 +++++++ docs/version-specific/supported-software/v/vcflib.md | 7 +++++++ docs/version-specific/supported-software/v/vcfnp.md | 7 +++++++ docs/version-specific/supported-software/v/velocyto.md | 7 +++++++ docs/version-specific/supported-software/v/verifyBamID.md | 7 +++++++ docs/version-specific/supported-software/v/virtualenv.md | 7 +++++++ docs/version-specific/supported-software/v/visdom.md | 7 +++++++ docs/version-specific/supported-software/v/vispr.md | 7 +++++++ .../supported-software/v/vitessce-python.md | 7 +++++++ docs/version-specific/supported-software/v/vitessceR.md | 7 +++++++ docs/version-specific/supported-software/v/voltools.md | 7 +++++++ docs/version-specific/supported-software/v/vorbis-tools.md | 7 +++++++ docs/version-specific/supported-software/v/vsc-base.md | 7 +++++++ docs/version-specific/supported-software/v/vsc-install.md | 7 +++++++ .../supported-software/v/vsc-mympirun-scoop.md | 7 +++++++ docs/version-specific/supported-software/v/vsc-mympirun.md | 7 +++++++ .../supported-software/v/vsc-processcontrol.md | 7 +++++++ docs/version-specific/supported-software/v/vt.md | 7 +++++++ docs/version-specific/supported-software/w/WCSLIB.md | 7 +++++++ docs/version-specific/supported-software/w/WCT.md | 7 +++++++ docs/version-specific/supported-software/w/WEKA.md | 7 +++++++ docs/version-specific/supported-software/w/WFA2.md | 7 +++++++ docs/version-specific/supported-software/w/WGDgc.md | 7 +++++++ docs/version-specific/supported-software/w/WHAM.md | 7 +++++++ docs/version-specific/supported-software/w/WIEN2k.md | 7 +++++++ docs/version-specific/supported-software/w/WISExome.md | 7 +++++++ docs/version-specific/supported-software/w/WPS.md | 7 +++++++ docs/version-specific/supported-software/w/WRF-Fire.md | 7 +++++++ docs/version-specific/supported-software/w/WRF.md | 7 +++++++ docs/version-specific/supported-software/w/WSClean.md | 7 +++++++ docs/version-specific/supported-software/w/Wannier90.md | 7 +++++++ docs/version-specific/supported-software/w/WannierTools.md | 7 +++++++ docs/version-specific/supported-software/w/Wayland.md | 7 +++++++ docs/version-specific/supported-software/w/Waylandpp.md | 7 +++++++ docs/version-specific/supported-software/w/WebKitGTK+.md | 7 +++++++ docs/version-specific/supported-software/w/WebSocket++.md | 7 +++++++ docs/version-specific/supported-software/w/WhatsHap.md | 7 +++++++ docs/version-specific/supported-software/w/WildMagic.md | 7 +++++++ docs/version-specific/supported-software/w/Winnowmap.md | 7 +++++++ docs/version-specific/supported-software/w/WisecondorX.md | 7 +++++++ docs/version-specific/supported-software/w/index.md | 6 ++++++ docs/version-specific/supported-software/w/waLBerla.md | 7 +++++++ docs/version-specific/supported-software/w/wandb.md | 7 +++++++ docs/version-specific/supported-software/w/wcwidth.md | 7 +++++++ docs/version-specific/supported-software/w/webin-cli.md | 7 +++++++ docs/version-specific/supported-software/w/wfdb.md | 7 +++++++ docs/version-specific/supported-software/w/wget.md | 7 +++++++ docs/version-specific/supported-software/w/wgsim.md | 7 +++++++ docs/version-specific/supported-software/w/wheel.md | 7 +++++++ docs/version-specific/supported-software/w/wkhtmltopdf.md | 7 +++++++ docs/version-specific/supported-software/w/worker.md | 7 +++++++ .../supported-software/w/wpebackend-fdo.md | 7 +++++++ docs/version-specific/supported-software/w/wrapt.md | 7 +++++++ docs/version-specific/supported-software/w/wrf-python.md | 7 +++++++ docs/version-specific/supported-software/w/wtdbg2.md | 7 +++++++ .../supported-software/w/wxPropertyGrid.md | 7 +++++++ docs/version-specific/supported-software/w/wxPython.md | 7 +++++++ docs/version-specific/supported-software/w/wxWidgets.md | 7 +++++++ docs/version-specific/supported-software/x/X11.md | 7 +++++++ docs/version-specific/supported-software/x/XALT.md | 7 +++++++ docs/version-specific/supported-software/x/XBeach.md | 7 +++++++ docs/version-specific/supported-software/x/XCFun.md | 7 +++++++ docs/version-specific/supported-software/x/XCrySDen.md | 7 +++++++ docs/version-specific/supported-software/x/XGBoost.md | 7 +++++++ docs/version-specific/supported-software/x/XGrafix.md | 7 +++++++ .../supported-software/x/XKeyboardConfig.md | 7 +++++++ docs/version-specific/supported-software/x/XMDS2.md | 7 +++++++ docs/version-specific/supported-software/x/XML-Compile.md | 7 +++++++ docs/version-specific/supported-software/x/XML-LibXML.md | 7 +++++++ docs/version-specific/supported-software/x/XML-Parser.md | 7 +++++++ docs/version-specific/supported-software/x/XMLSec.md | 7 +++++++ docs/version-specific/supported-software/x/XMLStarlet.md | 7 +++++++ docs/version-specific/supported-software/x/XOOPIC.md | 7 +++++++ docs/version-specific/supported-software/x/XPLOR-NIH.md | 7 +++++++ docs/version-specific/supported-software/x/XSD.md | 7 +++++++ docs/version-specific/supported-software/x/XTandem.md | 7 +++++++ docs/version-specific/supported-software/x/XZ.md | 7 +++++++ docs/version-specific/supported-software/x/Xerces-C++.md | 7 +++++++ docs/version-specific/supported-software/x/XlsxWriter.md | 7 +++++++ docs/version-specific/supported-software/x/Xmipp.md | 7 +++++++ docs/version-specific/supported-software/x/Xvfb.md | 7 +++++++ docs/version-specific/supported-software/x/index.md | 6 ++++++ docs/version-specific/supported-software/x/x13as.md | 7 +++++++ docs/version-specific/supported-software/x/x264.md | 7 +++++++ docs/version-specific/supported-software/x/x265.md | 7 +++++++ docs/version-specific/supported-software/x/xCell.md | 7 +++++++ docs/version-specific/supported-software/x/xESMF.md | 7 +++++++ docs/version-specific/supported-software/x/xarray.md | 7 +++++++ docs/version-specific/supported-software/x/xbitmaps.md | 7 +++++++ docs/version-specific/supported-software/x/xcb-proto.md | 7 +++++++ .../supported-software/x/xcb-util-image.md | 7 +++++++ .../supported-software/x/xcb-util-keysyms.md | 7 +++++++ .../supported-software/x/xcb-util-renderutil.md | 7 +++++++ docs/version-specific/supported-software/x/xcb-util-wm.md | 7 +++++++ docs/version-specific/supported-software/x/xcb-util.md | 7 +++++++ docs/version-specific/supported-software/x/xclip.md | 7 +++++++ docs/version-specific/supported-software/x/xdotool.md | 7 +++++++ docs/version-specific/supported-software/x/xextproto.md | 7 +++++++ .../supported-software/x/xf86vidmodeproto.md | 7 +++++++ .../version-specific/supported-software/x/xineramaproto.md | 7 +++++++ docs/version-specific/supported-software/x/xmitgcm.md | 7 +++++++ docs/version-specific/supported-software/x/xmlf90.md | 7 +++++++ docs/version-specific/supported-software/x/xonsh.md | 7 +++++++ docs/version-specific/supported-software/x/xorg-macros.md | 7 +++++++ docs/version-specific/supported-software/x/xpdf.md | 7 +++++++ docs/version-specific/supported-software/x/xprop.md | 7 +++++++ docs/version-specific/supported-software/x/xproto.md | 7 +++++++ docs/version-specific/supported-software/x/xtb.md | 7 +++++++ docs/version-specific/supported-software/x/xtensor.md | 7 +++++++ docs/version-specific/supported-software/x/xtrans.md | 7 +++++++ docs/version-specific/supported-software/x/xxHash.md | 7 +++++++ docs/version-specific/supported-software/x/xxd.md | 7 +++++++ docs/version-specific/supported-software/y/YACS.md | 7 +++++++ docs/version-specific/supported-software/y/YANK.md | 7 +++++++ docs/version-specific/supported-software/y/YAPS.md | 7 +++++++ docs/version-specific/supported-software/y/YAXT.md | 7 +++++++ docs/version-specific/supported-software/y/YODA.md | 7 +++++++ docs/version-specific/supported-software/y/Yade.md | 7 +++++++ docs/version-specific/supported-software/y/Yambo.md | 7 +++++++ docs/version-specific/supported-software/y/Yasm.md | 7 +++++++ docs/version-specific/supported-software/y/Yices.md | 7 +++++++ docs/version-specific/supported-software/y/index.md | 6 ++++++ docs/version-specific/supported-software/y/yaff.md | 7 +++++++ docs/version-specific/supported-software/y/yaml-cpp.md | 7 +++++++ docs/version-specific/supported-software/y/yt.md | 7 +++++++ docs/version-specific/supported-software/z/Z3.md | 7 +++++++ docs/version-specific/supported-software/z/ZIMPL.md | 7 +++++++ docs/version-specific/supported-software/z/ZPAQ.md | 7 +++++++ docs/version-specific/supported-software/z/Zeo++.md | 7 +++++++ docs/version-specific/supported-software/z/ZeroMQ.md | 7 +++++++ docs/version-specific/supported-software/z/Zgoubi.md | 7 +++++++ docs/version-specific/supported-software/z/Zip.md | 7 +++++++ docs/version-specific/supported-software/z/Zopfli.md | 7 +++++++ docs/version-specific/supported-software/z/index.md | 6 ++++++ docs/version-specific/supported-software/z/zUMIs.md | 7 +++++++ docs/version-specific/supported-software/z/zarr.md | 7 +++++++ docs/version-specific/supported-software/z/zeus-mcmc.md | 7 +++++++ docs/version-specific/supported-software/z/zfp.md | 7 +++++++ docs/version-specific/supported-software/z/zingeR.md | 7 +++++++ docs/version-specific/supported-software/z/zlib-ng.md | 7 +++++++ docs/version-specific/supported-software/z/zlib.md | 7 +++++++ docs/version-specific/supported-software/z/zlibbioc.md | 7 +++++++ docs/version-specific/supported-software/z/zsh.md | 7 +++++++ docs/version-specific/supported-software/z/zstd.md | 7 +++++++ 3580 files changed, 25030 insertions(+) diff --git a/docs/version-specific/supported-software/0/3d-dna.md b/docs/version-specific/supported-software/0/3d-dna.md index 507467177..2830bde95 100644 --- a/docs/version-specific/supported-software/0/3d-dna.md +++ b/docs/version-specific/supported-software/0/3d-dna.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # 3d-dna 3D de novo assembly (3D DNA) pipeline @@ -7,3 +11,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``180922`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/0/3to2.md b/docs/version-specific/supported-software/0/3to2.md index 7492e4fd7..b61da8e04 100644 --- a/docs/version-specific/supported-software/0/3to2.md +++ b/docs/version-specific/supported-software/0/3to2.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/0/4ti2.md b/docs/version-specific/supported-software/0/4ti2.md index 3e7ecb37c..c55d6f7a0 100644 --- a/docs/version-specific/supported-software/0/4ti2.md +++ b/docs/version-specific/supported-software/0/4ti2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # 4ti2 A software package for algebraic, geometric and combinatorial problems on linear spaces @@ -10,3 +14,6 @@ version | toolchain ``1.6.9`` | ``GCC/11.3.0`` ``1.6.9`` | ``GCC/8.2.0-2.31.1`` ``1.6.9`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/0/index.md b/docs/version-specific/supported-software/0/index.md index 8047ef088..91d20dff7 100644 --- a/docs/version-specific/supported-software/0/index.md +++ b/docs/version-specific/supported-software/0/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (0) +*0* - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [3d-dna](3d-dna.md) * [3to2](3to2.md) * [4ti2](4ti2.md) diff --git a/docs/version-specific/supported-software/a/ABAQUS.md b/docs/version-specific/supported-software/a/ABAQUS.md index ba3406048..7f5f39581 100644 --- a/docs/version-specific/supported-software/a/ABAQUS.md +++ b/docs/version-specific/supported-software/a/ABAQUS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ABAQUS Finite Element Analysis software for modeling, visualization and best-in-class implicit and explicit dynamics FEA. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``6.12.1`` | ``-linux-x86_64`` | ``system`` ``6.13.5`` | ``-linux-x86_64`` | ``system`` ``6.14.1`` | ``-linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ABINIT.md b/docs/version-specific/supported-software/a/ABINIT.md index 28bc25319..0ae5b24ec 100644 --- a/docs/version-specific/supported-software/a/ABINIT.md +++ b/docs/version-specific/supported-software/a/ABINIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ABINIT Abinit is a plane wave pseudopotential code for doing condensed phase electronic structure calculations using DFT. @@ -33,3 +37,6 @@ version | versionsuffix | toolchain ``9.6.2`` | | ``intel/2021a`` ``9.6.2`` | | ``intel/2021b`` ``9.6.2`` | | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ABRA2.md b/docs/version-specific/supported-software/a/ABRA2.md index 373865604..2b1ac5d6f 100644 --- a/docs/version-specific/supported-software/a/ABRA2.md +++ b/docs/version-specific/supported-software/a/ABRA2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ABRA2 Assembly Based ReAligner @@ -9,3 +13,6 @@ version | toolchain ``2.22`` | ``iccifort/2019.5.281`` ``2.23`` | ``GCC/10.2.0`` ``2.23`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ABRicate.md b/docs/version-specific/supported-software/a/ABRicate.md index bff51d8c2..4f225e2fb 100644 --- a/docs/version-specific/supported-software/a/ABRicate.md +++ b/docs/version-specific/supported-software/a/ABRicate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ABRicate Mass screening of contigs for antimicrobial and virulence genes @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.9.9`` | ``-Perl-5.28.1`` | ``gompi/2019a`` ``0.9.9`` | | ``gompi/2019b`` ``1.0.0`` | | ``gompi/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ABySS.md b/docs/version-specific/supported-software/a/ABySS.md index 97bf19cd9..bde216083 100644 --- a/docs/version-specific/supported-software/a/ABySS.md +++ b/docs/version-specific/supported-software/a/ABySS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ABySS Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler @@ -16,3 +20,6 @@ version | toolchain ``2.1.5`` | ``foss/2019b`` ``2.2.5`` | ``foss/2020b`` ``2.3.7`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ACTC.md b/docs/version-specific/supported-software/a/ACTC.md index 9f5718921..c10e3a7cd 100644 --- a/docs/version-specific/supported-software/a/ACTC.md +++ b/docs/version-specific/supported-software/a/ACTC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ACTC ACTC converts independent triangles into triangle strips or fans. @@ -13,3 +17,6 @@ version | toolchain ``1.1`` | ``GCCcore/8.3.0`` ``1.1`` | ``GCCcore/9.3.0`` ``1.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ADDA.md b/docs/version-specific/supported-software/a/ADDA.md index 1afa9311f..adc205118 100644 --- a/docs/version-specific/supported-software/a/ADDA.md +++ b/docs/version-specific/supported-software/a/ADDA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ADDA is an open-source parallel implementation of the discrete dipole approximat version | toolchain --------|---------- ``1.3b4`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ADF.md b/docs/version-specific/supported-software/a/ADF.md index 470d0851a..d14bf2c3c 100644 --- a/docs/version-specific/supported-software/a/ADF.md +++ b/docs/version-specific/supported-software/a/ADF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ADF ADF is a premium-quality quantum chemistry software package based on Density Functional Theory (DFT). @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2014.11.r48287`` | | ``intel/2016a`` ``2016.101`` | | ``system`` ``2019.303`` | ``-intelmpi`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ADIOS.md b/docs/version-specific/supported-software/a/ADIOS.md index 493c7b5a1..941efe133 100644 --- a/docs/version-specific/supported-software/a/ADIOS.md +++ b/docs/version-specific/supported-software/a/ADIOS.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ADMIXTURE.md b/docs/version-specific/supported-software/a/ADMIXTURE.md index 9c34a6ba2..b49533a4d 100644 --- a/docs/version-specific/supported-software/a/ADMIXTURE.md +++ b/docs/version-specific/supported-software/a/ADMIXTURE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ADMIXTURE is a software tool for maximum likelihood estimation of individual anc version | toolchain --------|---------- ``1.3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ADOL-C.md b/docs/version-specific/supported-software/a/ADOL-C.md index 4801548ba..7db55dae7 100644 --- a/docs/version-specific/supported-software/a/ADOL-C.md +++ b/docs/version-specific/supported-software/a/ADOL-C.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.7.0`` | ``gompi/2019a`` ``2.7.2`` | ``gompi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AEDT.md b/docs/version-specific/supported-software/a/AEDT.md index 61954f91c..20fa3789a 100644 --- a/docs/version-specific/supported-software/a/AEDT.md +++ b/docs/version-specific/supported-software/a/AEDT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Ansys Electronics Desktop (AEDT) is a platform that enables true electronics version | toolchain --------|---------- ``2024R1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AFNI.md b/docs/version-specific/supported-software/a/AFNI.md index 076856008..3271862fc 100644 --- a/docs/version-specific/supported-software/a/AFNI.md +++ b/docs/version-specific/supported-software/a/AFNI.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``19.0.01`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20160329`` | ``-Python-2.7.11`` | ``intel/2016a`` ``24.0.02`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AGAT.md b/docs/version-specific/supported-software/a/AGAT.md index 4a6888d20..9addc05f1 100644 --- a/docs/version-specific/supported-software/a/AGAT.md +++ b/docs/version-specific/supported-software/a/AGAT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AGAT AGAT: Another GTF/GFF Analysis Toolkit. Suite of tools to handle gene annotations in any GTF/GFF format. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.9.2`` | ``GCC/11.2.0`` ``1.1.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AGFusion.md b/docs/version-specific/supported-software/a/AGFusion.md index 359e030d0..475b4a66e 100644 --- a/docs/version-specific/supported-software/a/AGFusion.md +++ b/docs/version-specific/supported-software/a/AGFusion.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AGFusion AGFusion is a python package for annotating gene fusions from the human or mouse genomes. @@ -7,3 +11,6 @@ AGFusion is a python package for annotating gene fusions from the human or mous version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AGeNT.md b/docs/version-specific/supported-software/a/AGeNT.md index cfa4a2531..587a7cca8 100644 --- a/docs/version-specific/supported-software/a/AGeNT.md +++ b/docs/version-specific/supported-software/a/AGeNT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Agilent Genomics NextGen Toolkit (AGeNT) is a Java-based software module tha version | toolchain --------|---------- ``3.0.6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AICSImageIO.md b/docs/version-specific/supported-software/a/AICSImageIO.md index 3c36769ef..81241ee4e 100644 --- a/docs/version-specific/supported-software/a/AICSImageIO.md +++ b/docs/version-specific/supported-software/a/AICSImageIO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AICSImageIO Image Reading, Metadata Conversion, and Image Writing for Microscopy Images in Pure Python @@ -7,3 +11,6 @@ Image Reading, Metadata Conversion, and Image Writing for Microscopy Images in P version | toolchain --------|---------- ``4.14.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AIMAll.md b/docs/version-specific/supported-software/a/AIMAll.md index 2501302cf..205e7fdd2 100644 --- a/docs/version-specific/supported-software/a/AIMAll.md +++ b/docs/version-specific/supported-software/a/AIMAll.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AIMAll is an easy to use, accurate, reliable and efficient quantum chemistry sof version | versionsuffix | toolchain --------|---------------|---------- ``19.10.12`` | ``-linux_64bit`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ALADIN.md b/docs/version-specific/supported-software/a/ALADIN.md index 076ea3c9e..8363ee9ce 100644 --- a/docs/version-specific/supported-software/a/ALADIN.md +++ b/docs/version-specific/supported-software/a/ALADIN.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ALADIN was entirely built on the notion of compatibility with its mother system, version | toolchain --------|---------- ``36t1_op2bf1`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ALAMODE.md b/docs/version-specific/supported-software/a/ALAMODE.md index f00728537..8a7bcf480 100644 --- a/docs/version-specific/supported-software/a/ALAMODE.md +++ b/docs/version-specific/supported-software/a/ALAMODE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ALAMODE is an open source software designed for analyzing lattice anharmonicity version | toolchain --------|---------- ``1.4.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ALFA.md b/docs/version-specific/supported-software/a/ALFA.md index f17011b48..15b029d1a 100644 --- a/docs/version-specific/supported-software/a/ALFA.md +++ b/docs/version-specific/supported-software/a/ALFA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ALFA provides a global overview of features distribution composing NGS dataset(s version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ALL.md b/docs/version-specific/supported-software/a/ALL.md index 8d4db4bd5..127a4af28 100644 --- a/docs/version-specific/supported-software/a/ALL.md +++ b/docs/version-specific/supported-software/a/ALL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.9.2`` | ``foss/2022b`` ``0.9.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ALLPATHS-LG.md b/docs/version-specific/supported-software/a/ALLPATHS-LG.md index 0074570eb..62895a6e6 100644 --- a/docs/version-specific/supported-software/a/ALLPATHS-LG.md +++ b/docs/version-specific/supported-software/a/ALLPATHS-LG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ALLPATHS-LG ALLPATHS-LG, the new short read genome assembler. @@ -7,3 +11,6 @@ ALLPATHS-LG, the new short read genome assembler. version | toolchain --------|---------- ``52488`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ALPS.md b/docs/version-specific/supported-software/a/ALPS.md index 667583f31..db6638e5f 100644 --- a/docs/version-specific/supported-software/a/ALPS.md +++ b/docs/version-specific/supported-software/a/ALPS.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMAPVox.md b/docs/version-specific/supported-software/a/AMAPVox.md index 57fda9c37..04dab27a6 100644 --- a/docs/version-specific/supported-software/a/AMAPVox.md +++ b/docs/version-specific/supported-software/a/AMAPVox.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMAPVox LiDAR data voxelisation software @@ -7,3 +11,6 @@ LiDAR data voxelisation software version | versionsuffix | toolchain --------|---------------|---------- ``1.9.4`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMD-LibM.md b/docs/version-specific/supported-software/a/AMD-LibM.md index 346bd8a38..a3fd1622e 100644 --- a/docs/version-specific/supported-software/a/AMD-LibM.md +++ b/docs/version-specific/supported-software/a/AMD-LibM.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.2.2`` | ``GCC/7.3.0-2.30`` ``3.6.0-4`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMD-RNG.md b/docs/version-specific/supported-software/a/AMD-RNG.md index 5c35bdadf..31bf3fb27 100644 --- a/docs/version-specific/supported-software/a/AMD-RNG.md +++ b/docs/version-specific/supported-software/a/AMD-RNG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMD-RNG AMD Random Number Generator Library is a pseudorandom number generator library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/7.3.0-2.30`` ``2.2-4`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMD-SecureRNG.md b/docs/version-specific/supported-software/a/AMD-SecureRNG.md index 18ea0abd3..a1431b9ab 100644 --- a/docs/version-specific/supported-software/a/AMD-SecureRNG.md +++ b/docs/version-specific/supported-software/a/AMD-SecureRNG.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/7.3.0-2.30`` ``2.2-4`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMD-uProf.md b/docs/version-specific/supported-software/a/AMD-uProf.md index 51913e22e..2f5d71345 100644 --- a/docs/version-specific/supported-software/a/AMD-uProf.md +++ b/docs/version-specific/supported-software/a/AMD-uProf.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.4.502`` | ``system`` ``3.5.671`` | ``system`` ``4.1.424`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMGX.md b/docs/version-specific/supported-software/a/AMGX.md index 7c2c93fc1..4cecc80db 100644 --- a/docs/version-specific/supported-software/a/AMGX.md +++ b/docs/version-specific/supported-software/a/AMGX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMGX Distributed multigrid linear solver library on GPU @@ -7,3 +11,6 @@ Distributed multigrid linear solver library on GPU version | versionsuffix | toolchain --------|---------------|---------- ``2.4.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMICA.md b/docs/version-specific/supported-software/a/AMICA.md index a0c6c1db4..172959c3a 100644 --- a/docs/version-specific/supported-software/a/AMICA.md +++ b/docs/version-specific/supported-software/a/AMICA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMICA Code for AMICA: Adaptive Mixture ICA with shared components @@ -7,3 +11,6 @@ Code for AMICA: Adaptive Mixture ICA with shared components version | toolchain --------|---------- ``2024.1.19`` | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMOS.md b/docs/version-specific/supported-software/a/AMOS.md index f6f1025c7..fc3651754 100644 --- a/docs/version-specific/supported-software/a/AMOS.md +++ b/docs/version-specific/supported-software/a/AMOS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMOS The AMOS consortium is committed to the development of open-source whole genome assembly software @@ -9,3 +13,6 @@ version | toolchain ``3.1.0`` | ``foss/2018b`` ``3.1.0`` | ``foss/2021b`` ``3.1.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMPHORA2.md b/docs/version-specific/supported-software/a/AMPHORA2.md index 9d1cd22fd..2d2db3f92 100644 --- a/docs/version-specific/supported-software/a/AMPHORA2.md +++ b/docs/version-specific/supported-software/a/AMPHORA2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMPHORA2 An Automated Phylogenomic Inference Pipeline for Bacterial and Archaeal Sequences. @@ -7,3 +11,6 @@ An Automated Phylogenomic Inference Pipeline for Bacterial and Archaeal Sequence version | versionsuffix | toolchain --------|---------------|---------- ``20190730`` | ``-Java-13-pthreads-avx2`` | ``gompi/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMPL-MP.md b/docs/version-specific/supported-software/a/AMPL-MP.md index dbdaab335..1a7e69905 100644 --- a/docs/version-specific/supported-software/a/AMPL-MP.md +++ b/docs/version-specific/supported-software/a/AMPL-MP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AMPL-MP An open-source library for mathematical programming. @@ -7,3 +11,6 @@ An open-source library for mathematical programming. version | toolchain --------|---------- ``3.1.0`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMPtk.md b/docs/version-specific/supported-software/a/AMPtk.md index f95eb6b93..aaa97e699 100644 --- a/docs/version-specific/supported-software/a/AMPtk.md +++ b/docs/version-specific/supported-software/a/AMPtk.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AMPtk is a series of scripts to process NGS amplicon data using USEARCH and VSEA version | toolchain --------|---------- ``1.5.4`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMRFinderPlus.md b/docs/version-specific/supported-software/a/AMRFinderPlus.md index cc8a15f2e..cbde4f4ae 100644 --- a/docs/version-specific/supported-software/a/AMRFinderPlus.md +++ b/docs/version-specific/supported-software/a/AMRFinderPlus.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.11.18`` | ``gompi/2021b`` ``3.11.18`` | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AMS.md b/docs/version-specific/supported-software/a/AMS.md index 18721a0ba..3dc63e9d7 100644 --- a/docs/version-specific/supported-software/a/AMS.md +++ b/docs/version-specific/supported-software/a/AMS.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2022.102`` | ``-intelmpi`` | ``iimpi/2021b`` ``2023.101`` | ``-intelmpi`` | ``iimpi/2022a`` ``2023.104`` | ``-intelmpi`` | ``iimpi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANGEL.md b/docs/version-specific/supported-software/a/ANGEL.md index f44ae7a40..743a8d07f 100644 --- a/docs/version-specific/supported-software/a/ANGEL.md +++ b/docs/version-specific/supported-software/a/ANGEL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ANGEL ANGEL: Robust Open Reading Frame prediction @@ -7,3 +11,6 @@ ANGEL: Robust Open Reading Frame prediction version | versionsuffix | toolchain --------|---------------|---------- ``3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANIcalculator.md b/docs/version-specific/supported-software/a/ANIcalculator.md index b1e608546..1316e6692 100644 --- a/docs/version-specific/supported-software/a/ANIcalculator.md +++ b/docs/version-specific/supported-software/a/ANIcalculator.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/10.3.0`` ``1.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANSYS.md b/docs/version-specific/supported-software/a/ANSYS.md index adf448c12..689544814 100644 --- a/docs/version-specific/supported-software/a/ANSYS.md +++ b/docs/version-specific/supported-software/a/ANSYS.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``15.0`` | ``system`` ``2022R2`` | ``system`` ``2023R1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANSYS_CFD.md b/docs/version-specific/supported-software/a/ANSYS_CFD.md index b7610145f..c851457f4 100644 --- a/docs/version-specific/supported-software/a/ANSYS_CFD.md +++ b/docs/version-specific/supported-software/a/ANSYS_CFD.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``16.2`` | ``system`` ``17.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANTIC.md b/docs/version-specific/supported-software/a/ANTIC.md index 4ad3b11e1..3ff178f71 100644 --- a/docs/version-specific/supported-software/a/ANTIC.md +++ b/docs/version-specific/supported-software/a/ANTIC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ANTIC Antic is an algebraic number theory library. @@ -7,3 +11,6 @@ Antic is an algebraic number theory library. version | toolchain --------|---------- ``0.2.5`` | ``gfbf/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANTLR.md b/docs/version-specific/supported-software/a/ANTLR.md index 834ba57c5..51c411514 100644 --- a/docs/version-specific/supported-software/a/ANTLR.md +++ b/docs/version-specific/supported-software/a/ANTLR.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``2.7.7`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.7.7`` | | ``intel/2017b`` ``2.7.7`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ANTs.md b/docs/version-specific/supported-software/a/ANTs.md index 6a94cee26..d4ff403b1 100644 --- a/docs/version-specific/supported-software/a/ANTs.md +++ b/docs/version-specific/supported-software/a/ANTs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ANTs ANTs extracts information from complex datasets that include imaging. ANTs is useful for managing, interpreting and visualizing multidimensional data. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.3.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2.3.5`` | | ``foss/2021a`` ``2.5.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AOCC.md b/docs/version-specific/supported-software/a/AOCC.md index 9c6497ef4..07dd54687 100644 --- a/docs/version-specific/supported-software/a/AOCC.md +++ b/docs/version-specific/supported-software/a/AOCC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AOCC AMD Optimized C/C++ & Fortran compilers (AOCC) based on LLVM 11.0 @@ -18,3 +22,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/11.3.0`` ``4.0.0`` | ``GCCcore/12.2.0`` ``4.0.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AOFlagger.md b/docs/version-specific/supported-software/a/AOFlagger.md index d0e552a37..9b50b4205 100644 --- a/docs/version-specific/supported-software/a/AOFlagger.md +++ b/docs/version-specific/supported-software/a/AOFlagger.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.4.0`` | ``foss/2022a`` ``3.4.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AOMP.md b/docs/version-specific/supported-software/a/AOMP.md index a0ad3a813..b95f3fb73 100644 --- a/docs/version-specific/supported-software/a/AOMP.md +++ b/docs/version-specific/supported-software/a/AOMP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AOMP AMD fork of LLVM, setup for OpenMP offloading to Accelerators @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``13.0-2`` | ``GCCcore/10.2.0`` ``13.0-2`` | ``gcccuda/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/APBS.md b/docs/version-specific/supported-software/a/APBS.md index 0ca06b4ef..3ff839557 100644 --- a/docs/version-specific/supported-software/a/APBS.md +++ b/docs/version-specific/supported-software/a/APBS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ APBS is a software package for modeling biomolecular solvation through solutio version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-linux-static-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/APR-util.md b/docs/version-specific/supported-software/a/APR-util.md index 7b730a2ba..6e2259e70 100644 --- a/docs/version-specific/supported-software/a/APR-util.md +++ b/docs/version-specific/supported-software/a/APR-util.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # APR-util Apache Portable Runtime (APR) util libraries. @@ -16,3 +20,6 @@ version | toolchain ``1.6.1`` | ``GCCcore/9.3.0`` ``1.6.1`` | ``iomkl/2018a`` ``1.6.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/APR.md b/docs/version-specific/supported-software/a/APR.md index 094fec40f..9e7e4595c 100644 --- a/docs/version-specific/supported-software/a/APR.md +++ b/docs/version-specific/supported-software/a/APR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # APR Apache Portable Runtime (APR) libraries. @@ -16,3 +20,6 @@ version | toolchain ``1.7.0`` | ``GCCcore/8.2.0`` ``1.7.0`` | ``GCCcore/9.3.0`` ``1.7.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ARAGORN.md b/docs/version-specific/supported-software/a/ARAGORN.md index 80863ad7c..1b3726a49 100644 --- a/docs/version-specific/supported-software/a/ARAGORN.md +++ b/docs/version-specific/supported-software/a/ARAGORN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ARAGORN a program to detect tRNA genes and tmRNA genes in nucleotide sequences @@ -9,3 +13,6 @@ version | toolchain ``1.2.38`` | ``foss/2016b`` ``1.2.38`` | ``iccifort/2019.5.281`` ``1.2.41`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ARCH.md b/docs/version-specific/supported-software/a/ARCH.md index f51939294..e5415877f 100644 --- a/docs/version-specific/supported-software/a/ARCH.md +++ b/docs/version-specific/supported-software/a/ARCH.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Autoregressive Conditional Heteroskedasticity (ARCH) and other tools for financi version | versionsuffix | toolchain --------|---------------|---------- ``4.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ARGoS.md b/docs/version-specific/supported-software/a/ARGoS.md index 8491d1296..eb74a49ee 100644 --- a/docs/version-specific/supported-software/a/ARGoS.md +++ b/docs/version-specific/supported-software/a/ARGoS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ARGoS A parallel, multi-engine simulator for heterogeneous swarm robotics @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.0-beta53`` | ``-Lua-5.2.4`` | ``foss/2018b`` ``3.0.0-beta59`` | | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ARPACK++.md b/docs/version-specific/supported-software/a/ARPACK++.md index b44886a15..082cce85d 100644 --- a/docs/version-specific/supported-software/a/ARPACK++.md +++ b/docs/version-specific/supported-software/a/ARPACK++.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Arpackpp is a C++ interface to the ARPACK Fortran package, which implements the version | toolchain --------|---------- ``2018.03.26`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ART.md b/docs/version-specific/supported-software/a/ART.md index 913d24527..36d81dea2 100644 --- a/docs/version-specific/supported-software/a/ART.md +++ b/docs/version-specific/supported-software/a/ART.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ART ART is a set of simulation tools to generate synthetic next-generation sequencing reads" @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2016.06.05`` | ``GCCcore/6.4.0`` ``2016.06.05`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ARTS.md b/docs/version-specific/supported-software/a/ARTS.md index eda1b1f8d..34cde5377 100644 --- a/docs/version-specific/supported-software/a/ARTS.md +++ b/docs/version-specific/supported-software/a/ARTS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ARTS is a radiative transfer model for the millimeter and sub-millimeter spectr version | toolchain --------|---------- ``2.2.64`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ARWEN.md b/docs/version-specific/supported-software/a/ARWEN.md index 5f61c0a66..f56829591 100644 --- a/docs/version-specific/supported-software/a/ARWEN.md +++ b/docs/version-specific/supported-software/a/ARWEN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ARWEN ARWEN, tRNA detection in metazoan mitochondrial sequences @@ -7,3 +11,6 @@ ARWEN, tRNA detection in metazoan mitochondrial sequences version | toolchain --------|---------- ``1.2.3`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASAP.md b/docs/version-specific/supported-software/a/ASAP.md index 1ca078433..5ae8d8097 100644 --- a/docs/version-specific/supported-software/a/ASAP.md +++ b/docs/version-specific/supported-software/a/ASAP.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASAP3.md b/docs/version-specific/supported-software/a/ASAP3.md index e0c6cb954..969927974 100644 --- a/docs/version-specific/supported-software/a/ASAP3.md +++ b/docs/version-specific/supported-software/a/ASAP3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ASAP3 ASAP is a calculator for doing large-scale classical molecular dynamics within the Campos Atomic Simulation Environment (ASE). @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``3.13.2`` | | ``foss/2023a`` ``3.13.3`` | | ``foss/2023a`` ``3.13.3`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASCAT.md b/docs/version-specific/supported-software/a/ASCAT.md index abd872d1f..254515b9c 100644 --- a/docs/version-specific/supported-software/a/ASCAT.md +++ b/docs/version-specific/supported-software/a/ASCAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``3.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASE.md b/docs/version-specific/supported-software/a/ASE.md index 45e46dc07..ae15c76e5 100644 --- a/docs/version-specific/supported-software/a/ASE.md +++ b/docs/version-specific/supported-software/a/ASE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ASE ASE is a python package providing an open source Atomic Simulation Environment in the Python scripting language. @@ -60,3 +64,6 @@ version | versionsuffix | toolchain ``3.22.1`` | | ``intel/2021b`` ``3.22.1`` | | ``intel/2022a`` ``3.9.1.4567`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASF-SearchAPI.md b/docs/version-specific/supported-software/a/ASF-SearchAPI.md index cea46c02c..260cd9a80 100644 --- a/docs/version-specific/supported-software/a/ASF-SearchAPI.md +++ b/docs/version-specific/supported-software/a/ASF-SearchAPI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ asf_search is a Python module for performing searches of the ASF catalog. In add version | toolchain --------|---------- ``6.5.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASHS.md b/docs/version-specific/supported-software/a/ASHS.md index 7995c5cc0..41628262a 100644 --- a/docs/version-specific/supported-software/a/ASHS.md +++ b/docs/version-specific/supported-software/a/ASHS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ASHS Automatic Segmentation of Hippocampal Subfields (ASHS) @@ -7,3 +11,6 @@ Automatic Segmentation of Hippocampal Subfields (ASHS) version | toolchain --------|---------- ``rev103_20140612`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ASTRID.md b/docs/version-specific/supported-software/a/ASTRID.md index ec71fc11b..52ee7a986 100644 --- a/docs/version-specific/supported-software/a/ASTRID.md +++ b/docs/version-specific/supported-software/a/ASTRID.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ASTRID ASTRID-2 is a method for estimating species trees from gene trees. @@ -7,3 +11,6 @@ ASTRID-2 is a method for estimating species trees from gene trees. version | toolchain --------|---------- ``2.2.1`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ATAT.md b/docs/version-specific/supported-software/a/ATAT.md index 1250fd19a..fa014fd22 100644 --- a/docs/version-specific/supported-software/a/ATAT.md +++ b/docs/version-specific/supported-software/a/ATAT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ATAT The Alloy-Theoretic Automated Toolkit (ATAT) is a generic name that refers to a collection of alloy theory tools @@ -7,3 +11,6 @@ The Alloy-Theoretic Automated Toolkit (ATAT) is a generic name that refers to a version | toolchain --------|---------- ``3.36`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ATK.md b/docs/version-specific/supported-software/a/ATK.md index fbf5df79a..54609dd79 100644 --- a/docs/version-specific/supported-software/a/ATK.md +++ b/docs/version-specific/supported-software/a/ATK.md @@ -1,3 +1,7 @@ +--- +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. @@ -30,3 +34,6 @@ version | toolchain ``2.38.0`` | ``GCCcore/12.2.0`` ``2.38.0`` | ``GCCcore/12.3.0`` ``2.38.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ATLAS.md b/docs/version-specific/supported-software/a/ATLAS.md index 9765aba37..4f659dd25 100644 --- a/docs/version-specific/supported-software/a/ATLAS.md +++ b/docs/version-specific/supported-software/a/ATLAS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ATLAS (Automatically Tuned Linear Algebra Software) is the application of the A version | versionsuffix | toolchain --------|---------------|---------- ``3.10.2`` | ``-LAPACK-3.6.1`` | ``GCC/5.4.0-2.26`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ATSAS.md b/docs/version-specific/supported-software/a/ATSAS.md index eda6b9a04..0975d7701 100644 --- a/docs/version-specific/supported-software/a/ATSAS.md +++ b/docs/version-specific/supported-software/a/ATSAS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ATSAS ATSAS is a program suite for small-angle scattering data analysis from biological macromolecules. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AUGUSTUS.md b/docs/version-specific/supported-software/a/AUGUSTUS.md index 5979a6372..86894b3cf 100644 --- a/docs/version-specific/supported-software/a/AUGUSTUS.md +++ b/docs/version-specific/supported-software/a/AUGUSTUS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AUGUSTUS AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``3.4.0`` | | ``foss/2021b`` ``3.5.0`` | | ``foss/2022a`` ``3.5.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AUTO-07p.md b/docs/version-specific/supported-software/a/AUTO-07p.md index 675cea1fd..f42e67051 100644 --- a/docs/version-specific/supported-software/a/AUTO-07p.md +++ b/docs/version-specific/supported-software/a/AUTO-07p.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AUTO is a publicly available software for continuation and bifurcation problems version | toolchain --------|---------- ``0.9.3`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Abseil.md b/docs/version-specific/supported-software/a/Abseil.md index 807f9deeb..cd6585097 100644 --- a/docs/version-specific/supported-software/a/Abseil.md +++ b/docs/version-specific/supported-software/a/Abseil.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``20230125.2`` | ``GCCcore/12.2.0`` ``20230125.3`` | ``GCCcore/12.3.0`` ``20240116.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AdapterRemoval.md b/docs/version-specific/supported-software/a/AdapterRemoval.md index 33d7ec9cd..670612774 100644 --- a/docs/version-specific/supported-software/a/AdapterRemoval.md +++ b/docs/version-specific/supported-software/a/AdapterRemoval.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2.3.2`` | ``GCC/10.3.0`` ``2.3.2`` | ``GCC/11.2.0`` ``2.3.3`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Advisor.md b/docs/version-specific/supported-software/a/Advisor.md index 14eb34e1c..b1405922f 100644 --- a/docs/version-specific/supported-software/a/Advisor.md +++ b/docs/version-specific/supported-software/a/Advisor.md @@ -1,3 +1,7 @@ +--- +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 @@ -18,3 +22,6 @@ version | toolchain ``2022.1.0`` | ``system`` ``2023.0.0`` | ``system`` ``2023.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Albacore.md b/docs/version-specific/supported-software/a/Albacore.md index a384061ea..190378996 100644 --- a/docs/version-specific/supported-software/a/Albacore.md +++ b/docs/version-specific/supported-software/a/Albacore.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Albacore Albacore is a software project that provides an entry point to the Oxford Nanopore basecalling algorithms. @@ -7,3 +11,6 @@ Albacore is a software project that provides an entry point to the Oxford Nanopo version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-Python-3.6.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Albumentations.md b/docs/version-specific/supported-software/a/Albumentations.md index 08e867377..027e3f453 100644 --- a/docs/version-specific/supported-software/a/Albumentations.md +++ b/docs/version-specific/supported-software/a/Albumentations.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Albumentations Albumentations is a Python library for fast and flexible image augmentations @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.1.0`` | | ``foss/2021b`` ``1.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.3.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Alfred.md b/docs/version-specific/supported-software/a/Alfred.md index 198662da5..aec991a42 100644 --- a/docs/version-specific/supported-software/a/Alfred.md +++ b/docs/version-specific/supported-software/a/Alfred.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Alfred is an efficient and versatile command-line application that computes mul version | toolchain --------|---------- ``0.2.6`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Allinea.md b/docs/version-specific/supported-software/a/Allinea.md index 17c380c7d..5911ea95d 100644 --- a/docs/version-specific/supported-software/a/Allinea.md +++ b/docs/version-specific/supported-software/a/Allinea.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Allinea The Allinea environment is an essential toolkit for developers and computational scientists looking to get results faster. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Alpha.md b/docs/version-specific/supported-software/a/Alpha.md index 04ebace13..1ecda4776 100644 --- a/docs/version-specific/supported-software/a/Alpha.md +++ b/docs/version-specific/supported-software/a/Alpha.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Alpha Alpha is a tool designed for detailed comparative study of bacteriophage genomes. @@ -7,3 +11,6 @@ Alpha is a tool designed for detailed comparative study of bacteriophage genomes version | versionsuffix | toolchain --------|---------------|---------- ``20200430`` | ``-Python-2.7.16`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AlphaFold.md b/docs/version-specific/supported-software/a/AlphaFold.md index 2e75972be..fd764f188 100644 --- a/docs/version-specific/supported-software/a/AlphaFold.md +++ b/docs/version-specific/supported-software/a/AlphaFold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AlphaFold AlphaFold can predict protein structures with atomic accuracy even where no similar structure is known @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``2.3.1`` | | ``foss/2022a`` ``2.3.4`` | ``-CUDA-11.7.0-ColabFold`` | ``foss/2022a`` ``2.3.4`` | ``-ColabFold`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AlphaPulldown.md b/docs/version-specific/supported-software/a/AlphaPulldown.md index 74cee77d5..998fa7098 100644 --- a/docs/version-specific/supported-software/a/AlphaPulldown.md +++ b/docs/version-specific/supported-software/a/AlphaPulldown.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.30.4`` | ``foss/2020b`` ``0.30.4`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Amara.md b/docs/version-specific/supported-software/a/Amara.md index 6e487b07e..68a742c00 100644 --- a/docs/version-specific/supported-software/a/Amara.md +++ b/docs/version-specific/supported-software/a/Amara.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0.2`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.2.0.2`` | ``-Python-2.7.15`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Amber.md b/docs/version-specific/supported-software/a/Amber.md index 24b324644..540c0f06f 100644 --- a/docs/version-specific/supported-software/a/Amber.md +++ b/docs/version-specific/supported-software/a/Amber.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Amber Amber (originally Assisted Model Building with Energy Refinement) is software for performing molecular dynamics and structure prediction. @@ -30,3 +34,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AmberMini.md b/docs/version-specific/supported-software/a/AmberMini.md index 41b1928b5..f7e3f948f 100644 --- a/docs/version-specific/supported-software/a/AmberMini.md +++ b/docs/version-specific/supported-software/a/AmberMini.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AmberMini A stripped-down set of just antechamber, sqm, and tleap. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``16.16.0`` | ``intel/2017b`` ``16.16.0`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AmberTools.md b/docs/version-specific/supported-software/a/AmberTools.md index 5f8260b9d..1964fa49c 100644 --- a/docs/version-specific/supported-software/a/AmberTools.md +++ b/docs/version-specific/supported-software/a/AmberTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``21`` | | ``intel/2021b`` ``21.12`` | | ``foss/2021b`` ``22.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AmrPlusPlus.md b/docs/version-specific/supported-software/a/AmrPlusPlus.md index 3f3e927a7..ff918ec43 100644 --- a/docs/version-specific/supported-software/a/AmrPlusPlus.md +++ b/docs/version-specific/supported-software/a/AmrPlusPlus.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AmrPlusPlus v2.0 can process the raw data from the sequencer, identify the fragm version | toolchain --------|---------- ``2.0-20200114`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Anaconda2.md b/docs/version-specific/supported-software/a/Anaconda2.md index 5aa69fa13..08f30dd8c 100644 --- a/docs/version-specific/supported-software/a/Anaconda2.md +++ b/docs/version-specific/supported-software/a/Anaconda2.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``5.0.1`` | ``system`` ``5.1.0`` | ``system`` ``5.3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Anaconda3.md b/docs/version-specific/supported-software/a/Anaconda3.md index 505fcee13..b33fcf92f 100644 --- a/docs/version-specific/supported-software/a/Anaconda3.md +++ b/docs/version-specific/supported-software/a/Anaconda3.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | toolchain ``5.0.1`` | ``system`` ``5.1.0`` | ``system`` ``5.3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Annif.md b/docs/version-specific/supported-software/a/Annif.md index efef948c3..0fa50916a 100644 --- a/docs/version-specific/supported-software/a/Annif.md +++ b/docs/version-specific/supported-software/a/Annif.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Annif Annif is a multi-algorithm automated subject indexing tool for libraries, archives and museums. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.40.0`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.40.0`` | ``-Python-3.7.2`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Annocript.md b/docs/version-specific/supported-software/a/Annocript.md index 74ad2f1af..d2fb90828 100644 --- a/docs/version-specific/supported-software/a/Annocript.md +++ b/docs/version-specific/supported-software/a/Annocript.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Annocript is a pipeline for the annotation of de-novo generated transcriptomes. version | toolchain --------|---------- ``2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AptaSUITE.md b/docs/version-specific/supported-software/a/AptaSUITE.md index b97e51f88..7b4acc2ae 100644 --- a/docs/version-specific/supported-software/a/AptaSUITE.md +++ b/docs/version-specific/supported-software/a/AptaSUITE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AptaSUITE A full-featured bioinformatics software collection for the comprehensive analysis of aptamers in HT-SELEX experiments @@ -7,3 +11,6 @@ A full-featured bioinformatics software collection for the comprehensive analys version | versionsuffix | toolchain --------|---------------|---------- ``0.9.4`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Arb.md b/docs/version-specific/supported-software/a/Arb.md index ad53d119f..1ee8899b7 100644 --- a/docs/version-specific/supported-software/a/Arb.md +++ b/docs/version-specific/supported-software/a/Arb.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2.19.0`` | ``GCC/10.3.0`` ``2.22.1`` | ``foss/2021b`` ``2.23.0`` | ``gfbf/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md index 7a45c8cfb..6f49c5607 100644 --- a/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md +++ b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.7.3`` | ``foss/2021b`` ``0.8.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ArchR.md b/docs/version-specific/supported-software/a/ArchR.md index 5b2c9d011..0cdd50cff 100644 --- a/docs/version-specific/supported-software/a/ArchR.md +++ b/docs/version-specific/supported-software/a/ArchR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ArchR ArchR is a full-featured R package for processing and analyzing single-cell ATAC-seq data. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Archive-Zip.md b/docs/version-specific/supported-software/a/Archive-Zip.md index 52b7fd90d..e421b4d8b 100644 --- a/docs/version-specific/supported-software/a/Archive-Zip.md +++ b/docs/version-specific/supported-software/a/Archive-Zip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Archive-Zip Provide an interface to ZIP archive files. @@ -11,3 +15,6 @@ version | toolchain ``1.68`` | ``GCCcore/11.2.0`` ``1.68`` | ``GCCcore/11.3.0`` ``1.68`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AreTomo2.md b/docs/version-specific/supported-software/a/AreTomo2.md index 5a47256f8..5cbd54a37 100644 --- a/docs/version-specific/supported-software/a/AreTomo2.md +++ b/docs/version-specific/supported-software/a/AreTomo2.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ AreTomo2, a multi-GPU accelerated software package that fully automates motion- version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Arlequin.md b/docs/version-specific/supported-software/a/Arlequin.md index 904207b0b..272b77311 100644 --- a/docs/version-specific/supported-software/a/Arlequin.md +++ b/docs/version-specific/supported-software/a/Arlequin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Arlequin Arlequin: An Integrated Software for Population Genetics Data Analysis @@ -7,3 +11,6 @@ Arlequin: An Integrated Software for Population Genetics Data Analysis version | toolchain --------|---------- ``3.5.2.2`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Armadillo.md b/docs/version-specific/supported-software/a/Armadillo.md index 094916798..51100b312 100644 --- a/docs/version-specific/supported-software/a/Armadillo.md +++ b/docs/version-specific/supported-software/a/Armadillo.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``9.880.1`` | | ``foss/2020a`` ``9.900.1`` | | ``foss/2019b`` ``9.900.1`` | | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ArrayFire.md b/docs/version-specific/supported-software/a/ArrayFire.md index 99213b3cf..a71f06d48 100644 --- a/docs/version-specific/supported-software/a/ArrayFire.md +++ b/docs/version-specific/supported-software/a/ArrayFire.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.6.4`` | ``-CUDA-9.2.88`` | ``foss/2018b`` ``3.6.4`` | | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Arriba.md b/docs/version-specific/supported-software/a/Arriba.md index 5b7e280fb..84ca4cd8b 100644 --- a/docs/version-specific/supported-software/a/Arriba.md +++ b/docs/version-specific/supported-software/a/Arriba.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.2.1`` | ``GCC/11.2.0`` ``2.3.0`` | ``GCC/11.2.0`` ``2.4.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Arrow.md b/docs/version-specific/supported-software/a/Arrow.md index 732d6ae5e..9e8c05f4a 100644 --- a/docs/version-specific/supported-software/a/Arrow.md +++ b/docs/version-specific/supported-software/a/Arrow.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Arrow Apache Arrow (incl. PyArrow Python bindings), a cross-language development platform for in-memory data. @@ -26,3 +30,6 @@ version | versionsuffix | toolchain ``8.0.0`` | | ``foss/2021b`` ``8.0.0`` | | ``foss/2022.05`` ``8.0.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Artemis.md b/docs/version-specific/supported-software/a/Artemis.md index 6e2771114..b276ab585 100644 --- a/docs/version-specific/supported-software/a/Artemis.md +++ b/docs/version-specific/supported-software/a/Artemis.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``18.0.2`` | ``-Java-11`` | ``system`` ``18.0.3`` | ``-Java-11`` | ``system`` ``18.2.0`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ArviZ.md b/docs/version-specific/supported-software/a/ArviZ.md index 32eef816f..8c497e0bb 100644 --- a/docs/version-specific/supported-software/a/ArviZ.md +++ b/docs/version-specific/supported-software/a/ArviZ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ArviZ Exploratory analysis of Bayesian models with Python @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.16.1`` | | ``foss/2023a`` ``0.7.0`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Aspera-CLI.md b/docs/version-specific/supported-software/a/Aspera-CLI.md index 847746714..2a0d78a72 100644 --- a/docs/version-specific/supported-software/a/Aspera-CLI.md +++ b/docs/version-specific/supported-software/a/Aspera-CLI.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``3.7.2`` | ``.354.010c3b8`` | ``system`` ``3.9.0`` | ``.1326.6985b21`` | ``system`` ``3.9.6`` | ``.1467.159c5b1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Aspera-Connect.md b/docs/version-specific/supported-software/a/Aspera-Connect.md index 4c9b4c50c..f2d2e5441 100644 --- a/docs/version-specific/supported-software/a/Aspera-Connect.md +++ b/docs/version-specific/supported-software/a/Aspera-Connect.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.6.1`` | ``system`` ``3.9.6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Assimulo.md b/docs/version-specific/supported-software/a/Assimulo.md index 1914b975b..d822dee2f 100644 --- a/docs/version-specific/supported-software/a/Assimulo.md +++ b/docs/version-specific/supported-software/a/Assimulo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Assimulo Assimulo is a simulation package for solving ordinary differential equations. @@ -7,3 +11,6 @@ Assimulo is a simulation package for solving ordinary differential equations. version | versionsuffix | toolchain --------|---------------|---------- ``2.9`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AtomPAW.md b/docs/version-specific/supported-software/a/AtomPAW.md index 85238b8a7..86dc879ae 100644 --- a/docs/version-specific/supported-software/a/AtomPAW.md +++ b/docs/version-specific/supported-software/a/AtomPAW.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.1.0.5`` | ``intel/2018b`` ``4.1.0.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Austin.md b/docs/version-specific/supported-software/a/Austin.md index c58e1bbb1..e7f17b68c 100644 --- a/docs/version-specific/supported-software/a/Austin.md +++ b/docs/version-specific/supported-software/a/Austin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Austin Austin is a Python frame stack sampler for CPython written in pure C. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.2.0`` | ``GCCcore/11.2.0`` ``3.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoDock-GPU.md b/docs/version-specific/supported-software/a/AutoDock-GPU.md index 88611866f..a6eb46079 100644 --- a/docs/version-specific/supported-software/a/AutoDock-GPU.md +++ b/docs/version-specific/supported-software/a/AutoDock-GPU.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoDock-Vina.md b/docs/version-specific/supported-software/a/AutoDock-Vina.md index 469cb1f96..b240152d5 100644 --- a/docs/version-specific/supported-software/a/AutoDock-Vina.md +++ b/docs/version-specific/supported-software/a/AutoDock-Vina.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AutoDock-Vina AutoDock Vina is an open-source program for doing molecular docking. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.1.2`` | ``-linux_x86`` | ``system`` ``1.2.3`` | | ``foss/2021a`` ``1.2.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoDock.md b/docs/version-specific/supported-software/a/AutoDock.md index ddf6fbbbf..4fdf5d607 100644 --- a/docs/version-specific/supported-software/a/AutoDock.md +++ b/docs/version-specific/supported-software/a/AutoDock.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.2.5.1`` | ``GCC/5.2.0`` ``4.2.6`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoDockSuite.md b/docs/version-specific/supported-software/a/AutoDockSuite.md index 3b2ae993c..3556401fb 100644 --- a/docs/version-specific/supported-software/a/AutoDockSuite.md +++ b/docs/version-specific/supported-software/a/AutoDockSuite.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AutoDock is a suite of automated docking tools. It is designed to predict how s version | toolchain --------|---------- ``4.2.6`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoGeneS.md b/docs/version-specific/supported-software/a/AutoGeneS.md index 97ca904b6..f3eb01b97 100644 --- a/docs/version-specific/supported-software/a/AutoGeneS.md +++ b/docs/version-specific/supported-software/a/AutoGeneS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AutoGeneS AutoGeneS automatically extracts informative genes and reveals the cellular heterogeneity of bulk RNA samples. @@ -7,3 +11,6 @@ AutoGeneS automatically extracts informative genes and reveals the cellular hete version | toolchain --------|---------- ``1.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoGrid.md b/docs/version-specific/supported-software/a/AutoGrid.md index 4fc878f55..01d87f2dd 100644 --- a/docs/version-specific/supported-software/a/AutoGrid.md +++ b/docs/version-specific/supported-software/a/AutoGrid.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AutoDock is a suite of automated docking tools. It is designed to predict how version | toolchain --------|---------- ``4.2.5.1`` | ``GCC/5.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/AutoMap.md b/docs/version-specific/supported-software/a/AutoMap.md index c0dc6bc72..67c82d468 100644 --- a/docs/version-specific/supported-software/a/AutoMap.md +++ b/docs/version-specific/supported-software/a/AutoMap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # AutoMap Tool to find regions of homozygosity (ROHs) from sequencing data. @@ -7,3 +11,6 @@ Tool to find regions of homozygosity (ROHs) from sequencing data. version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-20200324`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Autoconf-archive.md b/docs/version-specific/supported-software/a/Autoconf-archive.md index ad774f3ea..c397adb09 100644 --- a/docs/version-specific/supported-software/a/Autoconf-archive.md +++ b/docs/version-specific/supported-software/a/Autoconf-archive.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Autoconf.md b/docs/version-specific/supported-software/a/Autoconf.md index 2c35aefe9..53730ef39 100644 --- a/docs/version-specific/supported-software/a/Autoconf.md +++ b/docs/version-specific/supported-software/a/Autoconf.md @@ -1,3 +1,7 @@ +--- +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. @@ -52,3 +56,6 @@ version | toolchain ``2.71`` | ``GCCcore/13.2.0`` ``2.71`` | ``system`` ``2.72`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Automake.md b/docs/version-specific/supported-software/a/Automake.md index cd27043da..a9d507a85 100644 --- a/docs/version-specific/supported-software/a/Automake.md +++ b/docs/version-specific/supported-software/a/Automake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Automake Automake: GNU Standards-compliant Makefile generator @@ -57,3 +61,6 @@ version | toolchain ``1.16.5`` | ``GCCcore/13.2.0`` ``1.16.5`` | ``GCCcore/13.3.0`` ``1.16.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Autotools.md b/docs/version-specific/supported-software/a/Autotools.md index 309c26c91..747a459d0 100644 --- a/docs/version-specific/supported-software/a/Autotools.md +++ b/docs/version-specific/supported-software/a/Autotools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Autotools This bundle collect the standard GNU build tools: Autoconf, Automake and libtool @@ -52,3 +56,6 @@ version | toolchain ``20220317`` | ``GCCcore/13.2.0`` ``20220317`` | ``system`` ``20231222`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Avogadro2.md b/docs/version-specific/supported-software/a/Avogadro2.md index ec6d517f4..418b5ecae 100644 --- a/docs/version-specific/supported-software/a/Avogadro2.md +++ b/docs/version-specific/supported-software/a/Avogadro2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Avogadro is an advanced molecule editor and visualizer designed for cross-platfo version | versionsuffix | toolchain --------|---------------|---------- ``1.97.0`` | ``-linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/Ax.md b/docs/version-specific/supported-software/a/Ax.md index 6c88585e8..f78c95257 100644 --- a/docs/version-specific/supported-software/a/Ax.md +++ b/docs/version-specific/supported-software/a/Ax.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Ax is an accessible, general-purpose platform for understanding, managing, deplo version | toolchain --------|---------- ``0.3.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/aNCI.md b/docs/version-specific/supported-software/a/aNCI.md index 30ae167b1..c79e3b65c 100644 --- a/docs/version-specific/supported-software/a/aNCI.md +++ b/docs/version-specific/supported-software/a/aNCI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # aNCI Non-covalent interaction (NCI) for MD trajectories @@ -7,3 +11,6 @@ Non-covalent interaction (NCI) for MD trajectories version | toolchain --------|---------- ``2.0`` | ``iccifort/2019.5.281`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/abTEM.md b/docs/version-specific/supported-software/a/abTEM.md index 7e072ce6f..565011b97 100644 --- a/docs/version-specific/supported-software/a/abTEM.md +++ b/docs/version-specific/supported-software/a/abTEM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # abTEM abTEM provides a Python API for running simulations of Transmission Electron Microscopy images. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ack.md b/docs/version-specific/supported-software/a/ack.md index fc837dd43..0f9932424 100644 --- a/docs/version-specific/supported-software/a/ack.md +++ b/docs/version-specific/supported-software/a/ack.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ack ack is a tool like grep, optimized for programmers @@ -9,3 +13,6 @@ version | toolchain ``2.14`` | ``system`` ``3.4.0`` | ``GCCcore/10.2.0`` ``3.5.0`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ada.md b/docs/version-specific/supported-software/a/ada.md index 025864bcd..527ee24f4 100644 --- a/docs/version-specific/supported-software/a/ada.md +++ b/docs/version-specific/supported-software/a/ada.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ada Performs discrete, real, and gentle boost under both exponential and logistic loss on a given data set. @@ -7,3 +11,6 @@ Performs discrete, real, and gentle boost under both exponential and logistic lo version | versionsuffix | toolchain --------|---------------|---------- ``2.0-5`` | ``-R-3.4.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/adjustText.md b/docs/version-specific/supported-software/a/adjustText.md index 4e9a3d6cf..e7cefeed2 100644 --- a/docs/version-specific/supported-software/a/adjustText.md +++ b/docs/version-specific/supported-software/a/adjustText.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # adjustText A small library for automatically adjustment of text position in matplotlib plots to minimize overlaps. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.7.3`` | | ``foss/2023a`` ``0.7.3`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.1.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/affinity.md b/docs/version-specific/supported-software/a/affinity.md index 7ca70a50c..ebd69e124 100644 --- a/docs/version-specific/supported-software/a/affinity.md +++ b/docs/version-specific/supported-software/a/affinity.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20230524`` | ``foss/2022a`` ``20230524`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/aiohttp.md b/docs/version-specific/supported-software/a/aiohttp.md index e9e192e60..94aad4010 100644 --- a/docs/version-specific/supported-software/a/aiohttp.md +++ b/docs/version-specific/supported-software/a/aiohttp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # aiohttp " Async http client/server framework @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``3.8.5`` | | ``GCCcore/12.2.0`` ``3.8.5`` | | ``GCCcore/12.3.0`` ``3.9.5`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/alevin-fry.md b/docs/version-specific/supported-software/a/alevin-fry.md index c1a462f96..87c8d4278 100644 --- a/docs/version-specific/supported-software/a/alevin-fry.md +++ b/docs/version-specific/supported-software/a/alevin-fry.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.4.3`` | ``GCCcore/11.2.0`` ``0.6.0`` | ``GCCcore/10.3.0`` ``0.9.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/alleleCount.md b/docs/version-specific/supported-software/a/alleleCount.md index d9fd83dbd..145474ca2 100644 --- a/docs/version-specific/supported-software/a/alleleCount.md +++ b/docs/version-specific/supported-software/a/alleleCount.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/6.4.0`` ``4.2.1`` | ``GCC/11.3.0`` ``4.3.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/alleleIntegrator.md b/docs/version-specific/supported-software/a/alleleIntegrator.md index 1b34398e5..00cf297de 100644 --- a/docs/version-specific/supported-software/a/alleleIntegrator.md +++ b/docs/version-specific/supported-software/a/alleleIntegrator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # alleleIntegrator R package to generate allele specific counts for scRNA data and use it to identify cancer cells @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.8`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.8.8`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/almosthere.md b/docs/version-specific/supported-software/a/almosthere.md index 0bcb49452..c3fd3c7f3 100644 --- a/docs/version-specific/supported-software/a/almosthere.md +++ b/docs/version-specific/supported-software/a/almosthere.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.0.1`` | ``GCCcore/7.3.0`` ``1.0.10`` | ``GCCcore/9.3.0`` ``2.0.2`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/alsa-lib.md b/docs/version-specific/supported-software/a/alsa-lib.md index a4213ec2b..ad2a1c67f 100644 --- a/docs/version-specific/supported-software/a/alsa-lib.md +++ b/docs/version-specific/supported-software/a/alsa-lib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # alsa-lib The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. @@ -11,3 +15,6 @@ version | toolchain ``1.2.8`` | ``GCCcore/11.2.0`` ``1.2.8`` | ``GCCcore/11.3.0`` ``1.2.9`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/amask.md b/docs/version-specific/supported-software/a/amask.md index 2ecb61ab8..099fdaa24 100644 --- a/docs/version-specific/supported-software/a/amask.md +++ b/docs/version-specific/supported-software/a/amask.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20171106`` | ``foss/2018a`` ``20190404`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/amdahl.md b/docs/version-specific/supported-software/a/amdahl.md index 009d675a2..5b3b8b971 100644 --- a/docs/version-specific/supported-software/a/amdahl.md +++ b/docs/version-specific/supported-software/a/amdahl.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This Python module contains a pseudo-application that can be used as a black box version | toolchain --------|---------- ``0.3.1`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/amplimap.md b/docs/version-specific/supported-software/a/amplimap.md index fcc320d8a..0a164cb19 100644 --- a/docs/version-specific/supported-software/a/amplimap.md +++ b/docs/version-specific/supported-software/a/amplimap.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ amplimap is a command-line tool to automate the processing and analysis of data version | versionsuffix | toolchain --------|---------------|---------- ``0.4.16`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/anadama2.md b/docs/version-specific/supported-software/a/anadama2.md index 2b67ca63e..0b95f6c9c 100644 --- a/docs/version-specific/supported-software/a/anadama2.md +++ b/docs/version-specific/supported-software/a/anadama2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AnADAMA2 is the next generation of AnADAMA (Another Automated Data Analysis Mana version | toolchain --------|---------- ``0.10.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/andi.md b/docs/version-specific/supported-software/a/andi.md index 36e0fc057..253f9a927 100644 --- a/docs/version-specific/supported-software/a/andi.md +++ b/docs/version-specific/supported-software/a/andi.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is the andi program for estimating the evolutionary distance between closel version | toolchain --------|---------- ``0.13`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/angsd.md b/docs/version-specific/supported-software/a/angsd.md index 7466b1de9..61a30127c 100644 --- a/docs/version-specific/supported-software/a/angsd.md +++ b/docs/version-specific/supported-software/a/angsd.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # angsd Program for analysing NGS data. @@ -14,3 +18,6 @@ version | toolchain ``0.935`` | ``GCC/10.2.0`` ``0.940`` | ``GCC/11.2.0`` ``0.940`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/anndata.md b/docs/version-specific/supported-software/a/anndata.md index c59aac755..c8a7a80c5 100644 --- a/docs/version-specific/supported-software/a/anndata.md +++ b/docs/version-specific/supported-software/a/anndata.md @@ -1,3 +1,7 @@ +--- +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 @@ -10,3 +14,6 @@ version | toolchain ``0.8.0`` | ``foss/2022a`` ``0.9.2`` | ``foss/2021a`` ``0.9.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/annovar.md b/docs/version-specific/supported-software/a/annovar.md index 907383cd1..a8ae3b4cd 100644 --- a/docs/version-specific/supported-software/a/annovar.md +++ b/docs/version-specific/supported-software/a/annovar.md @@ -1,3 +1,7 @@ +--- +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). @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/ant.md b/docs/version-specific/supported-software/a/ant.md index ef4428aa2..b7f01641d 100644 --- a/docs/version-specific/supported-software/a/ant.md +++ b/docs/version-specific/supported-software/a/ant.md @@ -1,3 +1,7 @@ +--- +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. @@ -36,3 +40,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/antiSMASH.md b/docs/version-specific/supported-software/a/antiSMASH.md index 4562694fa..e5921ec11 100644 --- a/docs/version-specific/supported-software/a/antiSMASH.md +++ b/docs/version-specific/supported-software/a/antiSMASH.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``5.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``5.2.0`` | | ``foss/2020b`` ``6.0.1`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/anvio.md b/docs/version-specific/supported-software/a/anvio.md index f384a8ba9..229830299 100644 --- a/docs/version-specific/supported-software/a/anvio.md +++ b/docs/version-specific/supported-software/a/anvio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # anvio An analysis and visualization platform for 'omics data. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``8`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/any2fasta.md b/docs/version-specific/supported-software/a/any2fasta.md index 2bf28252f..140464080 100644 --- a/docs/version-specific/supported-software/a/any2fasta.md +++ b/docs/version-specific/supported-software/a/any2fasta.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # any2fasta Convert various sequence formats to FASTA @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/apex.md b/docs/version-specific/supported-software/a/apex.md index 6d009f50b..761755d92 100644 --- a/docs/version-specific/supported-software/a/apex.md +++ b/docs/version-specific/supported-software/a/apex.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # apex A PyTorch Extension: Tools for easy mixed precision and distributed training in Pytorch @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200325`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``20210420`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/arcasHLA.md b/docs/version-specific/supported-software/a/arcasHLA.md index 67a5a15e9..f6338c667 100644 --- a/docs/version-specific/supported-software/a/arcasHLA.md +++ b/docs/version-specific/supported-software/a/arcasHLA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ arcasHLA performs high resolution genotyping for HLA class I and class II genes version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/archspec.md b/docs/version-specific/supported-software/a/archspec.md index 36e0fc82e..ba5196ae9 100644 --- a/docs/version-specific/supported-software/a/archspec.md +++ b/docs/version-specific/supported-software/a/archspec.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # archspec A library for detecting, labeling, and reasoning about microarchitectures @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.2.0`` | | ``GCCcore/12.2.0`` ``0.2.1`` | | ``GCCcore/12.3.0`` ``0.2.2`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/argtable.md b/docs/version-specific/supported-software/a/argtable.md index af90300fe..89703f32a 100644 --- a/docs/version-specific/supported-software/a/argtable.md +++ b/docs/version-specific/supported-software/a/argtable.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # argtable Argtable is an ANSI C library for parsing GNU style command line options with a minimum of fuss. @@ -15,3 +19,6 @@ version | toolchain ``2.13`` | ``foss/2018b`` ``2.13`` | ``intel/2018a`` ``2.13`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/aria2.md b/docs/version-specific/supported-software/a/aria2.md index c4f3b339c..17efba3c7 100644 --- a/docs/version-specific/supported-software/a/aria2.md +++ b/docs/version-specific/supported-software/a/aria2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # aria2 aria2 is a lightweight multi-protocol & multi-source command-line download utility. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.35.0`` | ``GCCcore/10.3.0`` ``1.36.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/arosics.md b/docs/version-specific/supported-software/a/arosics.md index 72bf96616..243c1731a 100644 --- a/docs/version-specific/supported-software/a/arosics.md +++ b/docs/version-specific/supported-software/a/arosics.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AROSICS is a python package to perform automatic subpixel co-registration of two version | toolchain --------|---------- ``1.7.6`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/arpack-ng.md b/docs/version-specific/supported-software/a/arpack-ng.md index 791627a11..a89688d20 100644 --- a/docs/version-specific/supported-software/a/arpack-ng.md +++ b/docs/version-specific/supported-software/a/arpack-ng.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # arpack-ng ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. @@ -31,3 +35,6 @@ version | toolchain ``3.9.0`` | ``foss/2023a`` ``3.9.0`` | ``foss/2023b`` ``3.9.1`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/arrow-R.md b/docs/version-specific/supported-software/a/arrow-R.md index 07f6581c2..c629eb475 100644 --- a/docs/version-specific/supported-software/a/arrow-R.md +++ b/docs/version-specific/supported-software/a/arrow-R.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # arrow-R R interface to the Apache Arrow C++ library @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/artic-ncov2019.md b/docs/version-specific/supported-software/a/artic-ncov2019.md index 693c040c6..bb6f0e809 100644 --- a/docs/version-specific/supported-software/a/artic-ncov2019.md +++ b/docs/version-specific/supported-software/a/artic-ncov2019.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # artic-ncov2019 Initial implementation of an ARTIC bioinformatics platform for nanopore sequencing of nCoV2019 novel coronavirus. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2020.04.13`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2021.06.24`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/assembly-stats.md b/docs/version-specific/supported-software/a/assembly-stats.md index b83aa9ab1..76abec230 100644 --- a/docs/version-specific/supported-software/a/assembly-stats.md +++ b/docs/version-specific/supported-software/a/assembly-stats.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # assembly-stats Get assembly statistics from FASTA and FASTQ files. @@ -7,3 +11,6 @@ Get assembly statistics from FASTA and FASTQ files. version | toolchain --------|---------- ``1.0.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/assimp.md b/docs/version-specific/supported-software/a/assimp.md index 2871ed18d..6d16cd313 100644 --- a/docs/version-specific/supported-software/a/assimp.md +++ b/docs/version-specific/supported-software/a/assimp.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``5.0.1`` | ``GCCcore/8.3.0`` ``5.2.5`` | ``GCCcore/12.3.0`` ``5.3.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/astro-tulips.md b/docs/version-specific/supported-software/a/astro-tulips.md index bc9cf3d4c..ab37724ba 100644 --- a/docs/version-specific/supported-software/a/astro-tulips.md +++ b/docs/version-specific/supported-software/a/astro-tulips.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ tulips creates diagrams of the structure and evolution of stars. It creates plot version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/astropy.md b/docs/version-specific/supported-software/a/astropy.md index 644a06bb9..bca428882 100644 --- a/docs/version-specific/supported-software/a/astropy.md +++ b/docs/version-specific/supported-software/a/astropy.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``5.1.1`` | | ``foss/2022a`` ``5.1.1`` | | ``intel/2022a`` ``5.2.2`` | | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/at-spi2-atk.md b/docs/version-specific/supported-software/a/at-spi2-atk.md index 6d41243cc..5027d53c9 100644 --- a/docs/version-specific/supported-software/a/at-spi2-atk.md +++ b/docs/version-specific/supported-software/a/at-spi2-atk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # at-spi2-atk AT-SPI 2 toolkit bridge @@ -17,3 +21,6 @@ version | toolchain ``2.38.0`` | ``GCCcore/12.2.0`` ``2.38.0`` | ``GCCcore/12.3.0`` ``2.38.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/at-spi2-core.md b/docs/version-specific/supported-software/a/at-spi2-core.md index 53553e437..a13066c0b 100644 --- a/docs/version-specific/supported-software/a/at-spi2-core.md +++ b/docs/version-specific/supported-software/a/at-spi2-core.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # at-spi2-core Assistive Technology Service Provider Interface. @@ -17,3 +21,6 @@ version | toolchain ``2.46.0`` | ``GCCcore/12.2.0`` ``2.49.91`` | ``GCCcore/12.3.0`` ``2.50.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/atomate.md b/docs/version-specific/supported-software/a/atomate.md index 2ac11d364..f2796c7ac 100644 --- a/docs/version-specific/supported-software/a/atomate.md +++ b/docs/version-specific/supported-software/a/atomate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # atomate atomate has implementations of FireWorks workflows for Materials Science. @@ -7,3 +11,6 @@ atomate has implementations of FireWorks workflows for Materials Science. version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/atools.md b/docs/version-specific/supported-software/a/atools.md index fbf012222..891c9f053 100644 --- a/docs/version-specific/supported-software/a/atools.md +++ b/docs/version-specific/supported-software/a/atools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # atools Tools to make using job arrays a lot more convenient. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``1.5.1`` | | ``GCCcore/11.2.0`` ``1.5.1`` | | ``GCCcore/12.3.0`` ``1.5.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/atropos.md b/docs/version-specific/supported-software/a/atropos.md index 7e46a4d90..5f0c9e91d 100644 --- a/docs/version-specific/supported-software/a/atropos.md +++ b/docs/version-specific/supported-software/a/atropos.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # atropos Atropos is tool for specific, sensitive, and speedy trimming of NGS reads. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.21`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.1.32`` | | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/attr.md b/docs/version-specific/supported-software/a/attr.md index 0ff217414..240a280e9 100644 --- a/docs/version-specific/supported-software/a/attr.md +++ b/docs/version-specific/supported-software/a/attr.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # attr Commands for Manipulating Filesystem Extended Attributes @@ -12,3 +16,6 @@ version | toolchain ``2.5.1`` | ``GCCcore/11.2.0`` ``2.5.1`` | ``GCCcore/11.3.0`` ``2.5.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/attrdict.md b/docs/version-specific/supported-software/a/attrdict.md index 859f7fa9b..19c78efc6 100644 --- a/docs/version-specific/supported-software/a/attrdict.md +++ b/docs/version-specific/supported-software/a/attrdict.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AttrDict is a Python library that provides mapping objects that allow their elem version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/attrdict3.md b/docs/version-specific/supported-software/a/attrdict3.md index e81dbb0be..6185e70ae 100644 --- a/docs/version-specific/supported-software/a/attrdict3.md +++ b/docs/version-specific/supported-software/a/attrdict3.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.0.2`` | ``GCCcore/11.2.0`` ``2.0.2`` | ``GCCcore/11.3.0`` ``2.0.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/augur.md b/docs/version-specific/supported-software/a/augur.md index e3bcd90a3..9306e21eb 100644 --- a/docs/version-specific/supported-software/a/augur.md +++ b/docs/version-specific/supported-software/a/augur.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # augur Pipeline components for real-time phylodynamic analysis @@ -7,3 +11,6 @@ Pipeline components for real-time phylodynamic analysis version | versionsuffix | toolchain --------|---------------|---------- ``7.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/autopep8.md b/docs/version-specific/supported-software/a/autopep8.md index 337494a56..5a499851f 100644 --- a/docs/version-specific/supported-software/a/autopep8.md +++ b/docs/version-specific/supported-software/a/autopep8.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # autopep8 A tool that automatically formats Python code to conform to the PEP 8 style guide. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.4.4`` | ``-Python-3.6.4`` | ``intel/2018a`` ``2.0.4`` | | ``foss/2022a`` ``2.2.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/avro-cpp.md b/docs/version-specific/supported-software/a/avro-cpp.md index 90d8711cc..873f77b43 100644 --- a/docs/version-specific/supported-software/a/avro-cpp.md +++ b/docs/version-specific/supported-software/a/avro-cpp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # avro-cpp C++ implementation of Avro data serialization system. @@ -7,3 +11,6 @@ C++ implementation of Avro data serialization system. version | toolchain --------|---------- ``1.11.1`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/awscli.md b/docs/version-specific/supported-software/a/awscli.md index 5690b20b7..fb68cc272 100644 --- a/docs/version-specific/supported-software/a/awscli.md +++ b/docs/version-specific/supported-software/a/awscli.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # awscli Universal Command Line Environment for AWS @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/axel.md b/docs/version-specific/supported-software/a/axel.md index 3a52b8473..c668d1bb9 100644 --- a/docs/version-specific/supported-software/a/axel.md +++ b/docs/version-specific/supported-software/a/axel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # axel Lightweight CLI download accelerator @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.17.9`` | ``GCCcore/8.3.0`` ``2.17.9`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/a/index.md b/docs/version-specific/supported-software/a/index.md index 05c3e6cd1..be0d91b8e 100644 --- a/docs/version-specific/supported-software/a/index.md +++ b/docs/version-specific/supported-software/a/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (a) +[../0/index.md](0) - *a* - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [ABAQUS](ABAQUS.md) * [ABINIT](ABINIT.md) * [ABRA2](ABRA2.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 index 08171fa96..c38706c94 100644 --- a/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md +++ b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This program will automatically tune mixing parameters for BA3-SNPs by implement version | toolchain --------|---------- ``2.1.2`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BAGEL.md b/docs/version-specific/supported-software/b/BAGEL.md index 4a4ffe942..e3bedc58e 100644 --- a/docs/version-specific/supported-software/b/BAGEL.md +++ b/docs/version-specific/supported-software/b/BAGEL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BAGEL BAGEL (Brilliantly Advanced General Electronic-structure Library) is a parallel electronic-structure program. @@ -9,3 +13,6 @@ version | toolchain ``1.1.1`` | ``intel/2016b`` ``1.2.2`` | ``foss/2021a`` ``1.2.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BAMM.md b/docs/version-specific/supported-software/b/BAMM.md index 996205771..24570412a 100644 --- a/docs/version-specific/supported-software/b/BAMM.md +++ b/docs/version-specific/supported-software/b/BAMM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ BAMM is oriented entirely towards detecting and quantifying heterogeneity in evo version | toolchain --------|---------- ``2.5.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BAMSurgeon.md b/docs/version-specific/supported-software/b/BAMSurgeon.md index cf3443e69..472122b14 100644 --- a/docs/version-specific/supported-software/b/BAMSurgeon.md +++ b/docs/version-specific/supported-software/b/BAMSurgeon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BAMSurgeon Tools for adding mutations to existing .bam files, used for testing mutation callers @@ -7,3 +11,6 @@ Tools for adding mutations to existing .bam files, used for testing mutation cal version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BAli-Phy.md b/docs/version-specific/supported-software/b/BAli-Phy.md index 2e417a6b2..94ce1e207 100644 --- a/docs/version-specific/supported-software/b/BAli-Phy.md +++ b/docs/version-specific/supported-software/b/BAli-Phy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BAli-Phy BAli-Phy estimates multiple sequence alignments and evolutionary trees from DNA, amino acid, or codon sequences. @@ -7,3 +11,6 @@ BAli-Phy estimates multiple sequence alignments and evolutionary trees from DNA, version | toolchain --------|---------- ``3.6.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BBMap.md b/docs/version-specific/supported-software/b/BBMap.md index a5286d4be..5a959b85d 100644 --- a/docs/version-specific/supported-software/b/BBMap.md +++ b/docs/version-specific/supported-software/b/BBMap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BBMap BBMap short read aligner, and other bioinformatic tools. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``38.98`` | | ``GCC/11.2.0`` ``39.01`` | | ``GCC/11.3.0`` ``39.01`` | | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BCALM.md b/docs/version-specific/supported-software/b/BCALM.md index c52aa9e71..e2ec46965 100644 --- a/docs/version-specific/supported-software/b/BCALM.md +++ b/docs/version-specific/supported-software/b/BCALM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BCALM de Bruijn graph compaction in low memory @@ -7,3 +11,6 @@ de Bruijn graph compaction in low memory version | toolchain --------|---------- ``2.2.0`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BCEL.md b/docs/version-specific/supported-software/b/BCEL.md index 93e5cada2..d3fe558d8 100644 --- a/docs/version-specific/supported-software/b/BCEL.md +++ b/docs/version-specific/supported-software/b/BCEL.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.2`` | ``-Java-1.8`` | ``system`` ``6.5.0`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BCFtools.md b/docs/version-specific/supported-software/b/BCFtools.md index b7bd118a0..2b623a9f2 100644 --- a/docs/version-specific/supported-software/b/BCFtools.md +++ b/docs/version-specific/supported-software/b/BCFtools.md @@ -1,3 +1,7 @@ +--- +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 @@ -29,3 +33,6 @@ version | toolchain ``1.9`` | ``foss/2018b`` ``1.9`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BDBag.md b/docs/version-specific/supported-software/b/BDBag.md index 6a032b95b..94d073acc 100644 --- a/docs/version-specific/supported-software/b/BDBag.md +++ b/docs/version-specific/supported-software/b/BDBag.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BEDOPS.md b/docs/version-specific/supported-software/b/BEDOPS.md index f5603e0fd..dfe904ce0 100644 --- a/docs/version-specific/supported-software/b/BEDOPS.md +++ b/docs/version-specific/supported-software/b/BEDOPS.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``2.4.32`` | ``intel/2018a`` ``2.4.35`` | ``foss/2018b`` ``2.4.41`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BEDTools.md b/docs/version-specific/supported-software/b/BEDTools.md index 1756d79b6..3d55da098 100644 --- a/docs/version-specific/supported-software/b/BEDTools.md +++ b/docs/version-specific/supported-software/b/BEDTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | toolchain ``2.30.0`` | ``GCC/12.2.0`` ``2.30.0`` | ``iccifort/2020.4.304`` ``2.31.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BEEF.md b/docs/version-specific/supported-software/b/BEEF.md index a62b264d0..7b055f3e9 100644 --- a/docs/version-specific/supported-software/b/BEEF.md +++ b/docs/version-specific/supported-software/b/BEEF.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1.1`` | ``iccifort/2019.5.281`` ``0.1.1`` | ``iccifort/2020.4.304`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BFAST.md b/docs/version-specific/supported-software/b/BFAST.md index eb8072703..0d06a773c 100644 --- a/docs/version-specific/supported-software/b/BFAST.md +++ b/docs/version-specific/supported-software/b/BFAST.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ BFAST facilitates the fast and accurate mapping of short reads to reference sequ version | toolchain --------|---------- ``0.7.0a`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BFC.md b/docs/version-specific/supported-software/b/BFC.md index 5e5b5736f..241da7cf3 100644 --- a/docs/version-specific/supported-software/b/BFC.md +++ b/docs/version-specific/supported-software/b/BFC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ BFC is a standalone high-performance tool for correcting sequencing errors from version | toolchain --------|---------- ``1`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + 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 index 3218c275a..3e71d3984 100644 --- a/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md +++ b/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BGC-Bayesian-genomic-clines Collection of code for Bayesian genomic cline analyses. @@ -7,3 +11,6 @@ Collection of code for Bayesian genomic cline analyses. version | toolchain --------|---------- ``1.03`` | ``gompi/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLACS.md b/docs/version-specific/supported-software/b/BLACS.md index 5b5482420..3fc97db43 100644 --- a/docs/version-specific/supported-software/b/BLACS.md +++ b/docs/version-specific/supported-software/b/BLACS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The BLACS (Basic Linear Algebra Communication Subprograms) project is an ongoin version | toolchain --------|---------- ``1.1`` | ``gmvapich2/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLASR.md b/docs/version-specific/supported-software/b/BLASR.md index 9faab3347..feaa8f7df 100644 --- a/docs/version-specific/supported-software/b/BLASR.md +++ b/docs/version-specific/supported-software/b/BLASR.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.2`` | ``intel/2016b`` ``20170330`` | ``intel/2017a`` ``5.3.3`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLAST+.md b/docs/version-specific/supported-software/b/BLAST+.md index 5f722ce29..822711f8c 100644 --- a/docs/version-specific/supported-software/b/BLAST+.md +++ b/docs/version-specific/supported-software/b/BLAST+.md @@ -1,3 +1,7 @@ +--- +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. @@ -33,3 +37,6 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``gompi/2021b`` ``2.9.0`` | | ``iimpi/2019a`` ``2.9.0`` | | ``iimpi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLAST.md b/docs/version-specific/supported-software/b/BLAST.md index 4003e79f1..ebc50cf6f 100644 --- a/docs/version-specific/supported-software/b/BLAST.md +++ b/docs/version-specific/supported-software/b/BLAST.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.11.0`` | ``-Linux_x86_64`` | ``system`` ``2.2.26`` | ``-Linux_x86_64`` | ``system`` ``2.8.1`` | ``-Linux_x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLAT.md b/docs/version-specific/supported-software/b/BLAT.md index 1b5a12b92..7ead11aa4 100644 --- a/docs/version-specific/supported-software/b/BLAT.md +++ b/docs/version-specific/supported-software/b/BLAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``3.7`` | ``GCC/10.3.0`` ``3.7`` | ``GCC/11.2.0`` ``3.7`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLIS.md b/docs/version-specific/supported-software/b/BLIS.md index c8d6f0f28..ac1849b50 100644 --- a/docs/version-specific/supported-software/b/BLIS.md +++ b/docs/version-specific/supported-software/b/BLIS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BLIS BLIS is a portable software framework for instantiating high-performance BLAS-like dense linear algebra libraries. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-amd`` | ``GCCcore/10.2.0`` ``3.0.1`` | ``-amd`` | ``GCCcore/10.3.0`` ``3.1`` | ``-amd`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BLT.md b/docs/version-specific/supported-software/b/BLT.md index a0fb224db..e3e90c148 100644 --- a/docs/version-specific/supported-software/b/BLT.md +++ b/docs/version-specific/supported-software/b/BLT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BLT BLT is an extension to the Tk toolkit, adding new widgets, geometry managers, and miscellaneous commands. @@ -7,3 +11,6 @@ BLT is an extension to the Tk toolkit, adding new widgets, geometry managers, a version | toolchain --------|---------- ``20181223`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BMTK.md b/docs/version-specific/supported-software/b/BMTK.md index 297aa3c59..84620fdb3 100644 --- a/docs/version-specific/supported-software/b/BMTK.md +++ b/docs/version-specific/supported-software/b/BMTK.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Brain Modeling Toolkit (BMTK) is a python-based software package for buildin version | toolchain --------|---------- ``1.0.8`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BOINC.md b/docs/version-specific/supported-software/b/BOINC.md index e81043609..1ffd4c16e 100644 --- a/docs/version-specific/supported-software/b/BOINC.md +++ b/docs/version-specific/supported-software/b/BOINC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ BOINC is a program that lets you donate your idle computer time to science proje version | versionsuffix | toolchain --------|---------------|---------- ``7.2.42`` | ``-client`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BOPTEST.md b/docs/version-specific/supported-software/b/BOPTEST.md index a3fb17d03..d9828f5d6 100644 --- a/docs/version-specific/supported-software/b/BOPTEST.md +++ b/docs/version-specific/supported-software/b/BOPTEST.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This repository contains code for the Building Optimization Performance Test fra version | toolchain --------|---------- ``0.3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BRAKER.md b/docs/version-specific/supported-software/b/BRAKER.md index 8c942c88c..d7b5d5b07 100644 --- a/docs/version-specific/supported-software/b/BRAKER.md +++ b/docs/version-specific/supported-software/b/BRAKER.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.1.5`` | ``-Python-3.7.4`` | ``intel/2019b`` ``2.1.6`` | | ``foss/2021b`` ``2.1.6`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BRiAl.md b/docs/version-specific/supported-software/b/BRiAl.md index 45033863f..be408d72c 100644 --- a/docs/version-specific/supported-software/b/BRiAl.md +++ b/docs/version-specific/supported-software/b/BRiAl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BRiAl BRiAl is the legacy version of PolyBoRi maintained by sagemath developers. @@ -7,3 +11,6 @@ BRiAl is the legacy version of PolyBoRi maintained by sagemath developers. version | toolchain --------|---------- ``1.2.12`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BSMAPz.md b/docs/version-specific/supported-software/b/BSMAPz.md index 47d388f4a..b3725f9da 100644 --- a/docs/version-specific/supported-software/b/BSMAPz.md +++ b/docs/version-specific/supported-software/b/BSMAPz.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Updated and optimized fork of BSMAP. BSMAPz is a short reads mapping program for version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BSseeker2.md b/docs/version-specific/supported-software/b/BSseeker2.md index a221b9c51..8e2ef6248 100644 --- a/docs/version-specific/supported-software/b/BSseeker2.md +++ b/docs/version-specific/supported-software/b/BSseeker2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BSseeker2 BS-Seeker2 is a seamless and versatile pipeline for accurately and fast mapping the bisulfite-treated reads. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BUFRLIB.md b/docs/version-specific/supported-software/b/BUFRLIB.md index 867522750..11f0089d9 100644 --- a/docs/version-specific/supported-software/b/BUFRLIB.md +++ b/docs/version-specific/supported-software/b/BUFRLIB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NCEP BUFRLIB software to encode or decode BUFR messages. It is not intended to b version | toolchain --------|---------- ``11.3.0.2`` | ``iccifort/2020.1.217`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BUSCO.md b/docs/version-specific/supported-software/b/BUSCO.md index dee3ba93c..3eb155964 100644 --- a/docs/version-specific/supported-software/b/BUSCO.md +++ b/docs/version-specific/supported-software/b/BUSCO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BUSCO BUSCO: assessing genome assembly and annotation completeness with single-copy orthologs @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``5.4.3`` | | ``foss/2021b`` ``5.4.5`` | | ``foss/2022a`` ``5.4.7`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BUStools.md b/docs/version-specific/supported-software/b/BUStools.md index c0c9ff64f..32150b641 100644 --- a/docs/version-specific/supported-software/b/BUStools.md +++ b/docs/version-specific/supported-software/b/BUStools.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.40.0`` | ``GCCcore/9.3.0`` ``0.40.0`` | ``foss/2018b`` ``0.43.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BWA.md b/docs/version-specific/supported-software/b/BWA.md index a8dfd0a25..3dfe1d382 100644 --- a/docs/version-specific/supported-software/b/BWA.md +++ b/docs/version-specific/supported-software/b/BWA.md @@ -1,3 +1,7 @@ +--- +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. @@ -37,3 +41,6 @@ version | toolchain ``0.7.17`` | ``intel/2018a`` ``0.7.17`` | ``intel/2018b`` ``0.7.18`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BWISE.md b/docs/version-specific/supported-software/b/BWISE.md index 65156b78d..eabe2031c 100644 --- a/docs/version-specific/supported-software/b/BWISE.md +++ b/docs/version-specific/supported-software/b/BWISE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BWISE de Bruijn Workflow using Integral information of Short pair End reads @@ -7,3 +11,6 @@ de Bruijn Workflow using Integral information of Short pair End reads version | versionsuffix | toolchain --------|---------------|---------- ``20180820`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md index 79cea3a2e..a5dd10d07 100644 --- a/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md +++ b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A collection of data processing and image analysis tools for data in BXH or XCE version | toolchain --------|---------- ``1.11.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BabelStream.md b/docs/version-specific/supported-software/b/BabelStream.md index 4550e7f3d..7262299d3 100644 --- a/docs/version-specific/supported-software/b/BabelStream.md +++ b/docs/version-specific/supported-software/b/BabelStream.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BabelStream STREAM, for lots of devices written in many programming models @@ -7,3 +11,6 @@ STREAM, for lots of devices written in many programming models version | versionsuffix | toolchain --------|---------------|---------- ``3.4`` | ``-omp`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bader.md b/docs/version-specific/supported-software/b/Bader.md index 72c66fdb5..5056cd7d7 100644 --- a/docs/version-specific/supported-software/b/Bader.md +++ b/docs/version-specific/supported-software/b/Bader.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bader A fast algorithm for doing Bader's analysis on a charge density grid. @@ -10,3 +14,6 @@ version | toolchain ``1.03`` | ``intel/2018b`` ``1.04`` | ``GCC/11.2.0`` ``1.04`` | ``iccifort/2020.4.304`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BamTools.md b/docs/version-specific/supported-software/b/BamTools.md index 81e566a64..6b7713a36 100644 --- a/docs/version-specific/supported-software/b/BamTools.md +++ b/docs/version-specific/supported-software/b/BamTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BamTools BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files. @@ -27,3 +31,6 @@ version | toolchain ``2.5.2`` | ``GCC/11.3.0`` ``2.5.2`` | ``GCC/12.2.0`` ``2.5.2`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BamUtil.md b/docs/version-specific/supported-software/b/BamUtil.md index e8be4cb7c..ac443002e 100644 --- a/docs/version-specific/supported-software/b/BamUtil.md +++ b/docs/version-specific/supported-software/b/BamUtil.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.13`` | ``intel/2016b`` ``1.0.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bambi.md b/docs/version-specific/supported-software/b/Bambi.md index e7f35f558..6efb26e6b 100644 --- a/docs/version-specific/supported-software/b/Bambi.md +++ b/docs/version-specific/supported-software/b/Bambi.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.7.1`` | ``foss/2021b`` ``0.7.1`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bandage.md b/docs/version-specific/supported-software/b/Bandage.md index 8c9afd7ba..3169921c9 100644 --- a/docs/version-specific/supported-software/b/Bandage.md +++ b/docs/version-specific/supported-software/b/Bandage.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bandage Bandage is a program for visualising de novo assembly graphs @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.8.1`` | ``_Ubuntu`` | ``system`` ``0.9.0`` | | ``GCCcore/11.2.0`` ``0.9.0`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bash.md b/docs/version-specific/supported-software/b/Bash.md index 988927bee..324608705 100644 --- a/docs/version-specific/supported-software/b/Bash.md +++ b/docs/version-specific/supported-software/b/Bash.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Bash is an sh-compatible command language interpreter that executes commands version | toolchain --------|---------- ``4.3`` | ``GCC/4.9.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BatMeth2.md b/docs/version-specific/supported-software/b/BatMeth2.md index 588e5eafe..e01b6a5e8 100644 --- a/docs/version-specific/supported-software/b/BatMeth2.md +++ b/docs/version-specific/supported-software/b/BatMeth2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BatMeth2 An Integrated Package for Bisulfite DNA Methylation Data Analysis with Indel-sensitive Mapping. @@ -7,3 +11,6 @@ An Integrated Package for Bisulfite DNA Methylation Data Analysis with Indel-sen version | toolchain --------|---------- ``2.1`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BayeScEnv.md b/docs/version-specific/supported-software/b/BayeScEnv.md index f8ff34114..9fd868fc1 100644 --- a/docs/version-specific/supported-software/b/BayeScEnv.md +++ b/docs/version-specific/supported-software/b/BayeScEnv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BayeScEnv BayeScEnv is a Fst-based, genome-scan method that uses environmental variables to detect local adaptation. @@ -9,3 +13,6 @@ version | toolchain ``1.1`` | ``GCC/8.3.0`` ``1.1`` | ``foss/2016a`` ``1.1`` | ``iccifort/2019.5.281`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BayeScan.md b/docs/version-specific/supported-software/b/BayeScan.md index 1bf1f5be5..299d6d9e6 100644 --- a/docs/version-specific/supported-software/b/BayeScan.md +++ b/docs/version-specific/supported-software/b/BayeScan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BayeScan BayeScan aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. @@ -9,3 +13,6 @@ version | toolchain ``2.1`` | ``foss/2016a`` ``2.1`` | ``foss/2018a`` ``2.1`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BayesAss.md b/docs/version-specific/supported-software/b/BayesAss.md index 96096e94c..1c12aea18 100644 --- a/docs/version-specific/supported-software/b/BayesAss.md +++ b/docs/version-specific/supported-software/b/BayesAss.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BayesAss BayesAss: Bayesian Inference of Recent Migration Using Multilocus Genotypes @@ -7,3 +11,6 @@ BayesAss: Bayesian Inference of Recent Migration Using Multilocus Genotypes version | toolchain --------|---------- ``3.0.4`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BayesAss3-SNPs.md b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md index f2959b748..824c0c0c7 100644 --- a/docs/version-specific/supported-software/b/BayesAss3-SNPs.md +++ b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Modification of BayesAss 3.0.4 to allow handling of large SNP datasets generated version | toolchain --------|---------- ``1.1`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BayesPrism.md b/docs/version-specific/supported-software/b/BayesPrism.md index 4dace8937..93c827071 100644 --- a/docs/version-specific/supported-software/b/BayesPrism.md +++ b/docs/version-specific/supported-software/b/BayesPrism.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Bayesian cell Proportion Reconstruction Inferred using Statistical Marginalizati version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BayesTraits.md b/docs/version-specific/supported-software/b/BayesTraits.md index aecfaa258..481514101 100644 --- a/docs/version-specific/supported-software/b/BayesTraits.md +++ b/docs/version-specific/supported-software/b/BayesTraits.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.0-linux32`` | | ``system`` ``2.0`` | ``-Beta-Linux64`` | ``system`` ``3.0.2`` | ``-Linux`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bazel.md b/docs/version-specific/supported-software/b/Bazel.md index 1b30c63c1..99b8ce4a9 100644 --- a/docs/version-specific/supported-software/b/Bazel.md +++ b/docs/version-specific/supported-software/b/Bazel.md @@ -1,3 +1,7 @@ +--- +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. @@ -38,3 +42,6 @@ version | versionsuffix | toolchain ``6.1.0`` | | ``GCCcore/12.3.0`` ``6.3.1`` | | ``GCCcore/12.2.0`` ``6.3.1`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Beagle.md b/docs/version-specific/supported-software/b/Beagle.md index 6e797ba2b..a36843510 100644 --- a/docs/version-specific/supported-software/b/Beagle.md +++ b/docs/version-specific/supported-software/b/Beagle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Beagle Beagle is a software package for phasing genotypes and for imputing ungenotyped markers. @@ -7,3 +11,6 @@ Beagle is a software package for phasing genotypes and for imputing ungenotyped version | versionsuffix | toolchain --------|---------------|---------- ``5.4.22Jul22.46e`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Beast.md b/docs/version-specific/supported-software/b/Beast.md index 0aa368de1..0481dba04 100644 --- a/docs/version-specific/supported-software/b/Beast.md +++ b/docs/version-specific/supported-software/b/Beast.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``2.6.4`` | ``GCC/10.2.0`` ``2.6.7`` | ``GCC/10.3.0`` ``2.7.3`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BeautifulSoup.md b/docs/version-specific/supported-software/b/BeautifulSoup.md index 4d315f8fb..175b7c43b 100644 --- a/docs/version-specific/supported-software/b/BeautifulSoup.md +++ b/docs/version-specific/supported-software/b/BeautifulSoup.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BeautifulSoup Beautiful Soup is a Python library designed for quick turnaround projects like screen-scraping. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BerkeleyGW.md b/docs/version-specific/supported-software/b/BerkeleyGW.md index 40845cf54..f2ccb3fdb 100644 --- a/docs/version-specific/supported-software/b/BerkeleyGW.md +++ b/docs/version-specific/supported-software/b/BerkeleyGW.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``foss/2022a`` ``3.1.0`` | | ``intel/2022a`` ``4.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BgeeCall.md b/docs/version-specific/supported-software/b/BgeeCall.md index af21fcf49..12745a1a3 100644 --- a/docs/version-specific/supported-software/b/BgeeCall.md +++ b/docs/version-specific/supported-software/b/BgeeCall.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BgeeCall Automatic RNA-Seq present/absent gene expression calls generation @@ -7,3 +11,6 @@ Automatic RNA-Seq present/absent gene expression calls generation version | versionsuffix | toolchain --------|---------------|---------- ``1.16.0`` | ``-R-%(rver)s`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BgeeDB.md b/docs/version-specific/supported-software/b/BgeeDB.md index b8d89c214..0aba79318 100644 --- a/docs/version-specific/supported-software/b/BgeeDB.md +++ b/docs/version-specific/supported-software/b/BgeeDB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BgeeDB Annotation and gene expression data retrieval from Bgee database. TopAnat, an anatomical entities Enrichment Analysis tool for UBERON ontology. @@ -7,3 +11,6 @@ Annotation and gene expression data retrieval from Bgee database. TopAnat, an an version | versionsuffix | toolchain --------|---------------|---------- ``2.26.0`` | ``-R-%(rver)s`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BiG-SCAPE.md b/docs/version-specific/supported-software/b/BiG-SCAPE.md index 0ee3f8fad..6ce23f86e 100644 --- a/docs/version-specific/supported-software/b/BiG-SCAPE.md +++ b/docs/version-specific/supported-software/b/BiG-SCAPE.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.5`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BiasAdjustCXX.md b/docs/version-specific/supported-software/b/BiasAdjustCXX.md index fb6517315..13df56284 100644 --- a/docs/version-specific/supported-software/b/BiasAdjustCXX.md +++ b/docs/version-specific/supported-software/b/BiasAdjustCXX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BiasAdjustCXX BiasAdjustCXX command-line tool for the application of fast and efficient bias corrections in climatic research @@ -7,3 +11,6 @@ BiasAdjustCXX command-line tool for the application of fast and efficient bias c version | toolchain --------|---------- ``1.9.1`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BigDFT.md b/docs/version-specific/supported-software/b/BigDFT.md index 535898fe7..9ec080dd9 100644 --- a/docs/version-specific/supported-software/b/BigDFT.md +++ b/docs/version-specific/supported-software/b/BigDFT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BigDFT BigDFT: electronic structure calculation based on Daubechies wavelets. bigdft-suite is a set of different packages to run bigdft. @@ -7,3 +11,6 @@ BigDFT: electronic structure calculation based on Daubechies wavelets. bigdft-su version | toolchain --------|---------- ``1.9.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BinSanity.md b/docs/version-specific/supported-software/b/BinSanity.md index 96ccd3d6b..af709b54c 100644 --- a/docs/version-specific/supported-software/b/BinSanity.md +++ b/docs/version-specific/supported-software/b/BinSanity.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BinSanity BinSanity contains a suite a scripts designed to cluster contigs generated from metagenomic assembly into putative genomes. @@ -7,3 +11,6 @@ BinSanity contains a suite a scripts designed to cluster contigs generated from version | versionsuffix | toolchain --------|---------------|---------- ``0.3.5`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bio-DB-HTS.md b/docs/version-specific/supported-software/b/Bio-DB-HTS.md index 055e08529..2dc55b330 100644 --- a/docs/version-specific/supported-software/b/Bio-DB-HTS.md +++ b/docs/version-specific/supported-software/b/Bio-DB-HTS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bio-DB-HTS Read files using HTSlib including BAM/CRAM, Tabix and BCF database files @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bio-EUtilities.md b/docs/version-specific/supported-software/b/Bio-EUtilities.md index f643f2e35..47d65ff2c 100644 --- a/docs/version-specific/supported-software/b/Bio-EUtilities.md +++ b/docs/version-specific/supported-software/b/Bio-EUtilities.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bio-EUtilities BioPerl low-level API for retrieving and storing data from NCBI eUtils @@ -7,3 +11,6 @@ BioPerl low-level API for retrieving and storing data from NCBI eUtils version | toolchain --------|---------- ``1.76`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bio-FeatureIO.md b/docs/version-specific/supported-software/b/Bio-FeatureIO.md index 33b0f6cd5..6be8f1816 100644 --- a/docs/version-specific/supported-software/b/Bio-FeatureIO.md +++ b/docs/version-specific/supported-software/b/Bio-FeatureIO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bio-FeatureIO An I/O iterator subsystem for genomic sequence features @@ -7,3 +11,6 @@ An I/O iterator subsystem for genomic sequence features version | toolchain --------|---------- ``1.6.905`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bio-SamTools.md b/docs/version-specific/supported-software/b/Bio-SamTools.md index 115832bfd..360967d20 100644 --- a/docs/version-specific/supported-software/b/Bio-SamTools.md +++ b/docs/version-specific/supported-software/b/Bio-SamTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bio-SamTools This is a Perl interface to the SAMtools sequence alignment interface. @@ -7,3 +11,6 @@ This is a Perl interface to the SAMtools sequence alignment interface. version | versionsuffix | toolchain --------|---------------|---------- ``1.43`` | ``-Perl-5.24.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md index 524db76e0..40c5434ff 100644 --- a/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md +++ b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.7.3`` | ``GCC/11.2.0`` ``1.7.3`` | ``GCC/11.3.0`` ``1.7.3`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BioPP.md b/docs/version-specific/supported-software/b/BioPP.md index 967182f45..fc67aedc5 100644 --- a/docs/version-specific/supported-software/b/BioPP.md +++ b/docs/version-specific/supported-software/b/BioPP.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.4.1`` | ``GCC/8.2.0-2.31.1`` ``2.4.1`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BioPerl.md b/docs/version-specific/supported-software/b/BioPerl.md index f3b77cee0..fc5f53ba0 100644 --- a/docs/version-specific/supported-software/b/BioPerl.md +++ b/docs/version-specific/supported-software/b/BioPerl.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``1.7.8`` | | ``GCCcore/11.3.0`` ``1.7.8`` | | ``GCCcore/12.2.0`` ``1.7.8`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BioServices.md b/docs/version-specific/supported-software/b/BioServices.md index aef3cb95d..1f6ed2529 100644 --- a/docs/version-specific/supported-software/b/BioServices.md +++ b/docs/version-specific/supported-software/b/BioServices.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Bioservices is a Python package that provides access to many Bioinformatices Web version | versionsuffix | toolchain --------|---------------|---------- ``1.7.9`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Biopython.md b/docs/version-specific/supported-software/b/Biopython.md index 79c628426..924e063b4 100644 --- a/docs/version-specific/supported-software/b/Biopython.md +++ b/docs/version-specific/supported-software/b/Biopython.md @@ -1,3 +1,7 @@ +--- +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. @@ -45,3 +49,6 @@ version | versionsuffix | toolchain ``1.79`` | | ``intel/2021b`` ``1.81`` | | ``foss/2022b`` ``1.83`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BirdNET.md b/docs/version-specific/supported-software/b/BirdNET.md index e34e65828..8b605b415 100644 --- a/docs/version-specific/supported-software/b/BirdNET.md +++ b/docs/version-specific/supported-software/b/BirdNET.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ BirdNET is a research platform that aims at recognizing birds by sound at scale. version | versionsuffix | toolchain --------|---------------|---------- ``20201214`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bismark.md b/docs/version-specific/supported-software/b/Bismark.md index 42125bc39..ae1de6e44 100644 --- a/docs/version-specific/supported-software/b/Bismark.md +++ b/docs/version-specific/supported-software/b/Bismark.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bismark A tool to map bisulfite converted sequence reads and determine cytosine methylation states @@ -12,3 +16,6 @@ version | toolchain ``0.23.1`` | ``foss/2021b`` ``0.24.0`` | ``GCC/11.3.0`` ``0.24.1`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bison.md b/docs/version-specific/supported-software/b/Bison.md index be7721119..ca55eca27 100644 --- a/docs/version-specific/supported-software/b/Bison.md +++ b/docs/version-specific/supported-software/b/Bison.md @@ -1,3 +1,7 @@ +--- +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. @@ -85,3 +89,6 @@ version | toolchain ``3.8.2`` | ``GCCcore/14.1.0`` ``3.8.2`` | ``GCCcore/9.5.0`` ``3.8.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Blender.md b/docs/version-specific/supported-software/b/Blender.md index fba4a31aa..3072d3483 100644 --- a/docs/version-specific/supported-software/b/Blender.md +++ b/docs/version-specific/supported-software/b/Blender.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Blitz++.md b/docs/version-specific/supported-software/b/Blitz++.md index c509a2c8b..15e6faf3d 100644 --- a/docs/version-specific/supported-software/b/Blitz++.md +++ b/docs/version-specific/supported-software/b/Blitz++.md @@ -1,3 +1,7 @@ +--- +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 @@ -14,3 +18,6 @@ version | toolchain ``1.0.2`` | ``GCCcore/12.3.0`` ``1.0.2`` | ``GCCcore/13.2.0`` ``1.0.2`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BlobTools.md b/docs/version-specific/supported-software/b/BlobTools.md index 6fa6eb789..f13e03e28 100644 --- a/docs/version-specific/supported-software/b/BlobTools.md +++ b/docs/version-specific/supported-software/b/BlobTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BlobTools A modular command-line solution for visualisation, quality control and taxonomic partitioning of genome datasets. @@ -7,3 +11,6 @@ A modular command-line solution for visualisation, quality control and taxonomi version | versionsuffix | toolchain --------|---------------|---------- ``20180528`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Block.md b/docs/version-specific/supported-software/b/Block.md index ddcd02a65..523089e0e 100644 --- a/docs/version-specific/supported-software/b/Block.md +++ b/docs/version-specific/supported-software/b/Block.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Block Block implements the density matrix renormalization group (DMRG) algorithm for quantum chemistry. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.3-20200525`` | ``foss/2022a`` ``1.5.3-20200525`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Blosc.md b/docs/version-specific/supported-software/b/Blosc.md index 51a68064b..956e6b80f 100644 --- a/docs/version-specific/supported-software/b/Blosc.md +++ b/docs/version-specific/supported-software/b/Blosc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Blosc Blosc, an extremely fast, multi-threaded, meta-compressor library @@ -24,3 +28,6 @@ version | toolchain ``1.21.3`` | ``GCCcore/12.2.0`` ``1.21.5`` | ``GCCcore/12.3.0`` ``1.21.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Blosc2.md b/docs/version-specific/supported-software/b/Blosc2.md index 66cad2912..eb7bb769b 100644 --- a/docs/version-specific/supported-software/b/Blosc2.md +++ b/docs/version-specific/supported-software/b/Blosc2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Blosc2 Blosc, an extremely fast, multi-threaded, meta-compressor library @@ -14,3 +18,6 @@ version | toolchain ``2.6.1`` | ``GCCcore/11.3.0`` ``2.8.0`` | ``GCCcore/12.2.0`` ``2.8.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BoltzTraP.md b/docs/version-specific/supported-software/b/BoltzTraP.md index f69a9628e..582068d0e 100644 --- a/docs/version-specific/supported-software/b/BoltzTraP.md +++ b/docs/version-specific/supported-software/b/BoltzTraP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # BoltzTraP Boltzmann Transport Properties (BoltzTraP) is a program for calculating the semi-classic transport coefficients. @@ -7,3 +11,6 @@ Boltzmann Transport Properties (BoltzTraP) is a program for calculating the semi version | toolchain --------|---------- ``1.2.5`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BoltzTraP2.md b/docs/version-specific/supported-software/b/BoltzTraP2.md index 549cd7a4e..f169110eb 100644 --- a/docs/version-specific/supported-software/b/BoltzTraP2.md +++ b/docs/version-specific/supported-software/b/BoltzTraP2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ BoltzTraP2 provides a numerically stable and efficient method for obtaining anal version | toolchain --------|---------- ``22.12.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bonito.md b/docs/version-specific/supported-software/b/Bonito.md index 8eec76215..931c5adfa 100644 --- a/docs/version-specific/supported-software/b/Bonito.md +++ b/docs/version-specific/supported-software/b/Bonito.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bonito Convolution Basecaller for Oxford Nanopore Reads @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.3.5`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``0.3.8`` | | ``fosscuda/2020b`` ``0.4.0`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bonmin.md b/docs/version-specific/supported-software/b/Bonmin.md index db0e430e1..198158de4 100644 --- a/docs/version-specific/supported-software/b/Bonmin.md +++ b/docs/version-specific/supported-software/b/Bonmin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bonmin Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package for large-scale nonlinear optimization. @@ -7,3 +11,6 @@ Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package f version | toolchain --------|---------- ``1.8.7`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bonnie++.md b/docs/version-specific/supported-software/b/Bonnie++.md index 6e747f5d6..073d2255f 100644 --- a/docs/version-specific/supported-software/b/Bonnie++.md +++ b/docs/version-specific/supported-software/b/Bonnie++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bonnie++ Bonnie++-1.97: Enhanced performance Test of Filesystem I/O @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.97`` | ``foss/2016a`` ``2.00a`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Boost.MPI.md b/docs/version-specific/supported-software/b/Boost.MPI.md index 0f2c11681..0286146d6 100644 --- a/docs/version-specific/supported-software/b/Boost.MPI.md +++ b/docs/version-specific/supported-software/b/Boost.MPI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Boost.MPI Boost provides free peer-reviewed portable C++ source libraries. @@ -12,3 +16,6 @@ version | toolchain ``1.79.0`` | ``gompi/2022b`` ``1.81.0`` | ``gompi/2022b`` ``1.82.0`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Boost.Python-NumPy.md b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md index 531ddc97e..bf3ebe940 100644 --- a/docs/version-specific/supported-software/b/Boost.Python-NumPy.md +++ b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Boost.Python-NumPy Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. @@ -7,3 +11,6 @@ Boost.Python is a C++ library which enables seamless interoperability between C+ version | toolchain --------|---------- ``1.79.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Boost.Python.md b/docs/version-specific/supported-software/b/Boost.Python.md index 342928a9d..12eb5d6df 100644 --- a/docs/version-specific/supported-software/b/Boost.Python.md +++ b/docs/version-specific/supported-software/b/Boost.Python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Boost.Python Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``1.77.0`` | | ``GCC/11.2.0`` ``1.79.0`` | | ``GCC/11.3.0`` ``1.83.0`` | | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Boost.md b/docs/version-specific/supported-software/b/Boost.md index be7bd9754..874d4f19b 100644 --- a/docs/version-specific/supported-software/b/Boost.md +++ b/docs/version-specific/supported-software/b/Boost.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Boost Boost provides free peer-reviewed portable C++ source libraries. @@ -100,3 +104,6 @@ version | versionsuffix | toolchain ``1.82.0`` | | ``GCC/12.3.0`` ``1.83.0`` | | ``GCC/13.2.0`` ``1.85.0`` | | ``GCC/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bottleneck.md b/docs/version-specific/supported-software/b/Bottleneck.md index d7a31268b..1ec63aeb1 100644 --- a/docs/version-specific/supported-software/b/Bottleneck.md +++ b/docs/version-specific/supported-software/b/Bottleneck.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bottleneck Fast NumPy array functions written in C @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.3.6`` | | ``foss/2022a`` ``1.3.7`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bowtie.md b/docs/version-specific/supported-software/b/Bowtie.md index 97accf2bd..3b215c9af 100644 --- a/docs/version-specific/supported-software/b/Bowtie.md +++ b/docs/version-specific/supported-software/b/Bowtie.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bowtie Bowtie is an ultrafast, memory-efficient short read aligner. It aligns short DNA sequences (reads) to the human genome. @@ -28,3 +32,6 @@ version | toolchain ``1.3.1`` | ``GCC/10.3.0`` ``1.3.1`` | ``GCC/11.2.0`` ``1.3.1`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bowtie2.md b/docs/version-specific/supported-software/b/Bowtie2.md index 704035285..8ff567f2b 100644 --- a/docs/version-specific/supported-software/b/Bowtie2.md +++ b/docs/version-specific/supported-software/b/Bowtie2.md @@ -1,3 +1,7 @@ +--- +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. @@ -33,3 +37,6 @@ version | toolchain ``2.5.1`` | ``GCC/10.3.0`` ``2.5.1`` | ``GCC/12.2.0`` ``2.5.1`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bpipe.md b/docs/version-specific/supported-software/b/Bpipe.md index 9a48b429b..c93b65ab2 100644 --- a/docs/version-specific/supported-software/b/Bpipe.md +++ b/docs/version-specific/supported-software/b/Bpipe.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bpipe Bpipe - a tool for running and managing bioinformatics pipelines @@ -7,3 +11,6 @@ Bpipe - a tool for running and managing bioinformatics pipelines version | toolchain --------|---------- ``0.9.9.2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bracken.md b/docs/version-specific/supported-software/b/Bracken.md index 3899cfe39..6d4338ff6 100644 --- a/docs/version-specific/supported-software/b/Bracken.md +++ b/docs/version-specific/supported-software/b/Bracken.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.6.2`` | ``GCCcore/11.2.0`` ``2.7`` | ``GCCcore/11.2.0`` ``2.9`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Braindecode.md b/docs/version-specific/supported-software/b/Braindecode.md index 9b94b08b1..ebc1647e9 100644 --- a/docs/version-specific/supported-software/b/Braindecode.md +++ b/docs/version-specific/supported-software/b/Braindecode.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BreakDancer.md b/docs/version-specific/supported-software/b/BreakDancer.md index a4817d497..3319f0618 100644 --- a/docs/version-specific/supported-software/b/BreakDancer.md +++ b/docs/version-specific/supported-software/b/BreakDancer.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ BreakDancer is a Perl/C++ package that provides genome-wide detection of structu version | toolchain --------|---------- ``1.4.5`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Brotli-python.md b/docs/version-specific/supported-software/b/Brotli-python.md index d1bad5cf4..aec7543b9 100644 --- a/docs/version-specific/supported-software/b/Brotli-python.md +++ b/docs/version-specific/supported-software/b/Brotli-python.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.0.9`` | ``GCCcore/12.2.0`` ``1.0.9`` | ``GCCcore/12.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Brotli.md b/docs/version-specific/supported-software/b/Brotli.md index 3e5025b90..8030924af 100644 --- a/docs/version-specific/supported-software/b/Brotli.md +++ b/docs/version-specific/supported-software/b/Brotli.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``1.0.9`` | ``GCCcore/8.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` ``1.1.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Brunsli.md b/docs/version-specific/supported-software/b/Brunsli.md index 5ba53cca6..5d90e5ec5 100644 --- a/docs/version-specific/supported-software/b/Brunsli.md +++ b/docs/version-specific/supported-software/b/Brunsli.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Brunsli Brunsli is a lossless JPEG repacking library. @@ -11,3 +15,6 @@ version | toolchain ``0.1`` | ``GCCcore/11.3.0`` ``0.1`` | ``GCCcore/12.2.0`` ``0.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bsoft.md b/docs/version-specific/supported-software/b/Bsoft.md index 26bdf603e..65ca6aa1c 100644 --- a/docs/version-specific/supported-software/b/Bsoft.md +++ b/docs/version-specific/supported-software/b/Bsoft.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.2`` | ``foss/2017b`` ``2.0.7`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/BuDDy.md b/docs/version-specific/supported-software/b/BuDDy.md index 9ede06fc9..fa0a7c184 100644 --- a/docs/version-specific/supported-software/b/BuDDy.md +++ b/docs/version-specific/supported-software/b/BuDDy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A Binary Decision Diagram library, with many highly efficient vectorized BDD ope version | toolchain --------|---------- ``2.4`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/Bullet.md b/docs/version-specific/supported-software/b/Bullet.md index ddc4dfb42..0e5c8e986 100644 --- a/docs/version-specific/supported-software/b/Bullet.md +++ b/docs/version-specific/supported-software/b/Bullet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Bullet Bullet professional 3D Game Multiphysics Library provides state of the art collision detection, soft body and rigid body dynamics. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.83.7`` | ``foss/2016a`` ``2.83.7`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/babl.md b/docs/version-specific/supported-software/b/babl.md index dde1c1f7f..2c512b922 100644 --- a/docs/version-specific/supported-software/b/babl.md +++ b/docs/version-specific/supported-software/b/babl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # babl babl is pixel encoding and color space conversion engine in C @@ -7,3 +11,6 @@ babl is pixel encoding and color space conversion engine in C version | toolchain --------|---------- ``0.1.86`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bam-readcount.md b/docs/version-specific/supported-software/b/bam-readcount.md index 771e699ed..d8c4eb7ee 100644 --- a/docs/version-specific/supported-software/b/bam-readcount.md +++ b/docs/version-specific/supported-software/b/bam-readcount.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bam-readcount Count DNA sequence reads in BAM files @@ -10,3 +14,6 @@ version | toolchain ``0.8.0`` | ``GCC/9.3.0`` ``0.8.0`` | ``foss/2018b`` ``1.0.1`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bamFilters.md b/docs/version-specific/supported-software/b/bamFilters.md index c1d5a1052..2a61087d4 100644 --- a/docs/version-specific/supported-software/b/bamFilters.md +++ b/docs/version-specific/supported-software/b/bamFilters.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bamFilters A utility tool to filter alignments from bam files, using identity percent, low complexity and read coverage. @@ -7,3 +11,6 @@ A utility tool to filter alignments from bam files, using identity percent, low version | toolchain --------|---------- ``2022-06-30`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bamtofastq.md b/docs/version-specific/supported-software/b/bamtofastq.md index 27caa321b..c5e0b7c59 100644 --- a/docs/version-specific/supported-software/b/bamtofastq.md +++ b/docs/version-specific/supported-software/b/bamtofastq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bamtofastq Convert 10x BAM files to the original FASTQs compatible with 10x pipelines. @@ -7,3 +11,6 @@ Convert 10x BAM files to the original FASTQs compatible with 10x pipelines. version | toolchain --------|---------- ``1.4.0`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/barrnap.md b/docs/version-specific/supported-software/b/barrnap.md index f3dbca171..ff1a3556e 100644 --- a/docs/version-specific/supported-software/b/barrnap.md +++ b/docs/version-specific/supported-software/b/barrnap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # barrnap Barrnap (BAsic Rapid Ribosomal RNA Predictor) predicts the location of ribosomal RNA genes in genomes. @@ -11,3 +15,6 @@ version | toolchain ``0.9`` | ``gompi/2020b`` ``0.9`` | ``gompi/2021b`` ``0.9`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/basemap.md b/docs/version-specific/supported-software/b/basemap.md index a28eb4716..b6d78508f 100644 --- a/docs/version-specific/supported-software/b/basemap.md +++ b/docs/version-specific/supported-software/b/basemap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # basemap The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``1.2.2`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.3.6`` | | ``foss/2022a`` ``1.3.9`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bases2fastq.md b/docs/version-specific/supported-software/b/bases2fastq.md index ba2948927..8bf02084b 100644 --- a/docs/version-specific/supported-software/b/bases2fastq.md +++ b/docs/version-specific/supported-software/b/bases2fastq.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Bases2Fastq Software demultiplexes sequencing data and converts base calls int version | toolchain --------|---------- ``1.5.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bashplotlib.md b/docs/version-specific/supported-software/b/bashplotlib.md index 2d84a3373..5a9463c87 100644 --- a/docs/version-specific/supported-software/b/bashplotlib.md +++ b/docs/version-specific/supported-software/b/bashplotlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ bashplotlib is a python package and command line tool for making basic plots in version | toolchain --------|---------- ``0.6.5`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bat.md b/docs/version-specific/supported-software/b/bat.md index cdd72e198..54c4a6829 100644 --- a/docs/version-specific/supported-software/b/bat.md +++ b/docs/version-specific/supported-software/b/bat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bat The BAT Python package supports the processing and analysis of Bro data with Pandas, scikit-learn, and Spark @@ -7,3 +11,6 @@ The BAT Python package supports the processing and analysis of Bro data with Pan version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-Python-3.6.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/batchgenerators.md b/docs/version-specific/supported-software/b/batchgenerators.md index 00c50f2c2..70fad50df 100644 --- a/docs/version-specific/supported-software/b/batchgenerators.md +++ b/docs/version-specific/supported-software/b/batchgenerators.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Data augmentation toolkit developed at the Division of Medical Image Computing a version | toolchain --------|---------- ``0.25`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bbFTP.md b/docs/version-specific/supported-software/b/bbFTP.md index 42339388e..bf2f4f90e 100644 --- a/docs/version-specific/supported-software/b/bbFTP.md +++ b/docs/version-specific/supported-software/b/bbFTP.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ version | toolchain ``3.2.1`` | ``GCCcore/9.3.0`` ``3.2.1`` | ``intel/2016a`` ``3.2.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bbcp.md b/docs/version-specific/supported-software/b/bbcp.md index a26a4010e..f141e4946 100644 --- a/docs/version-specific/supported-software/b/bbcp.md +++ b/docs/version-specific/supported-software/b/bbcp.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ BBCP is an alternative to Gridftp when transferring large amounts of data, capa version | versionsuffix | toolchain --------|---------------|---------- ``12.01.30.00.0`` | ``-amd64_linux26`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bc.md b/docs/version-specific/supported-software/b/bc.md index 327173114..083a31fd0 100644 --- a/docs/version-specific/supported-software/b/bc.md +++ b/docs/version-specific/supported-software/b/bc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bc bc is an arbitrary precision numeric processing language. @@ -7,3 +11,6 @@ bc is an arbitrary precision numeric processing language. version | toolchain --------|---------- ``1.06.95`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bcbio-gff.md b/docs/version-specific/supported-software/b/bcbio-gff.md index 7680ba247..e3cdd6b2a 100644 --- a/docs/version-specific/supported-software/b/bcbio-gff.md +++ b/docs/version-specific/supported-software/b/bcbio-gff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bcbio-gff Read and write Generic Feature Format (GFF) with Biopython integration. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.7.0`` | | ``foss/2020b`` ``0.7.0`` | | ``foss/2022a`` ``0.7.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bcgTree.md b/docs/version-specific/supported-software/b/bcgTree.md index 8c7b3049f..157ad1641 100644 --- a/docs/version-specific/supported-software/b/bcgTree.md +++ b/docs/version-specific/supported-software/b/bcgTree.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bcgTree Automatized phylogenetic tree building from bacterial core genomes. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.10`` | ``-Perl-5.26.1`` | ``intel/2018a`` ``1.1.0`` | ``-Perl-5.28.0`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bcl-convert.md b/docs/version-specific/supported-software/b/bcl-convert.md index 002c4f8ce..9d102ecb0 100644 --- a/docs/version-specific/supported-software/b/bcl-convert.md +++ b/docs/version-specific/supported-software/b/bcl-convert.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Illumina BCL Convert v4.0 is a standalone local software app that converts t version | versionsuffix | toolchain --------|---------------|---------- ``4.0.3-2`` | ``el7.x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bcl2fastq2.md b/docs/version-specific/supported-software/b/bcl2fastq2.md index 28bf377ab..f1bd9355b 100644 --- a/docs/version-specific/supported-software/b/bcl2fastq2.md +++ b/docs/version-specific/supported-software/b/bcl2fastq2.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``2.20.0`` | | ``foss/2018b`` ``2.20.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.20.0`` | | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bcolz.md b/docs/version-specific/supported-software/b/bcolz.md index e19935b5f..0ac09c257 100644 --- a/docs/version-specific/supported-software/b/bcolz.md +++ b/docs/version-specific/supported-software/b/bcolz.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bcrypt.md b/docs/version-specific/supported-software/b/bcrypt.md index 05465dc16..58ad958ef 100644 --- a/docs/version-specific/supported-software/b/bcrypt.md +++ b/docs/version-specific/supported-software/b/bcrypt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bcrypt Acceptable password hashing for your software and your servers (but you should really use argon2id or scrypt) @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.0.1`` | ``GCCcore/12.3.0`` ``4.1.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/beagle-lib.md b/docs/version-specific/supported-software/b/beagle-lib.md index 5762a1c26..e46ad7faf 100644 --- a/docs/version-specific/supported-software/b/beagle-lib.md +++ b/docs/version-specific/supported-software/b/beagle-lib.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/behave.md b/docs/version-specific/supported-software/b/behave.md index 2fdcd7f4b..0046f4d25 100644 --- a/docs/version-specific/supported-software/b/behave.md +++ b/docs/version-specific/supported-software/b/behave.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.5`` | ``-Python-2.7.12`` | ``foss/2016b`` ``1.2.6`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bench.md b/docs/version-specific/supported-software/b/bench.md index 455835f55..2d8c70644 100644 --- a/docs/version-specific/supported-software/b/bench.md +++ b/docs/version-specific/supported-software/b/bench.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bench Tools to accurately benchmark and analyze execution times for R expressions. @@ -7,3 +11,6 @@ Tools to accurately benchmark and analyze execution times for R expressions. version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bgen-reader.md b/docs/version-specific/supported-software/b/bgen-reader.md index 3691043d9..4344d3851 100644 --- a/docs/version-specific/supported-software/b/bgen-reader.md +++ b/docs/version-specific/supported-software/b/bgen-reader.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A bgen file format reader. This python package is a wrapper around the bgen libr version | versionsuffix | toolchain --------|---------------|---------- ``3.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bgen.md b/docs/version-specific/supported-software/b/bgen.md index 61a147a2a..b78c73381 100644 --- a/docs/version-specific/supported-software/b/bgen.md +++ b/docs/version-specific/supported-software/b/bgen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bgen A BGEN file format reader. It fully supports the BGEN format specifications 1.2 and 1.3. @@ -9,3 +13,6 @@ version | toolchain ``3.0.2`` | ``GCCcore/7.3.0`` ``3.0.3`` | ``GCCcore/9.3.0`` ``4.1.3`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bibtexparser.md b/docs/version-specific/supported-software/b/bibtexparser.md index b3287611c..19435f2e9 100644 --- a/docs/version-specific/supported-software/b/bibtexparser.md +++ b/docs/version-specific/supported-software/b/bibtexparser.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bibtexparser Bibtex parser in Python 2.7 and 3.x @@ -7,3 +11,6 @@ Bibtex parser in Python 2.7 and 3.x version | toolchain --------|---------- ``1.1.0`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/binutils.md b/docs/version-specific/supported-software/b/binutils.md index 83245f53e..d37b829ad 100644 --- a/docs/version-specific/supported-software/b/binutils.md +++ b/docs/version-specific/supported-software/b/binutils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # binutils binutils: GNU binary utilities @@ -69,3 +73,6 @@ version | toolchain ``2.42`` | ``GCCcore/13.3.0`` ``2.42`` | ``GCCcore/14.1.0`` ``2.42`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bioawk.md b/docs/version-specific/supported-software/b/bioawk.md index 032c1c6c4..9f35adddf 100644 --- a/docs/version-specific/supported-software/b/bioawk.md +++ b/docs/version-specific/supported-software/b/bioawk.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.0`` | ``GCC/10.3.0`` ``1.0`` | ``GCC/11.2.0`` ``1.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/biobakery-workflows.md b/docs/version-specific/supported-software/b/biobakery-workflows.md index 039d884c8..be9df683d 100644 --- a/docs/version-specific/supported-software/b/biobakery-workflows.md +++ b/docs/version-specific/supported-software/b/biobakery-workflows.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ bioBakery workflows is a collection of workflows and tasks for executing common version | toolchain --------|---------- ``3.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/biobambam2.md b/docs/version-specific/supported-software/b/biobambam2.md index 7e9a371f8..a840dc2c0 100644 --- a/docs/version-specific/supported-software/b/biobambam2.md +++ b/docs/version-specific/supported-software/b/biobambam2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # biobambam2 Tools for processing BAM files @@ -9,3 +13,6 @@ version | toolchain ``2.0.185`` | ``GCC/12.3.0`` ``2.0.87`` | ``GCC/11.3.0`` ``2.0.87`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/biogeme.md b/docs/version-specific/supported-software/b/biogeme.md index 7c3e3c14e..f308c0634 100644 --- a/docs/version-specific/supported-software/b/biogeme.md +++ b/docs/version-specific/supported-software/b/biogeme.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``3.2.10`` | ``foss/2022a`` ``3.2.6`` | ``foss/2022a`` ``3.2.8`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/biom-format.md b/docs/version-specific/supported-software/b/biom-format.md index c93b5d5f4..96b5b32a5 100644 --- a/docs/version-specific/supported-software/b/biom-format.md +++ b/docs/version-specific/supported-software/b/biom-format.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.1.14`` | | ``foss/2022a`` ``2.1.15`` | | ``foss/2022b`` ``2.1.15`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/biomart-perl.md b/docs/version-specific/supported-software/b/biomart-perl.md index 932f1075a..963ccf8ea 100644 --- a/docs/version-specific/supported-software/b/biomart-perl.md +++ b/docs/version-specific/supported-software/b/biomart-perl.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The BioMart Perl API allows you to go a step further with BioMart and integrat version | versionsuffix | toolchain --------|---------------|---------- ``0.7_e6db561`` | ``-Perl-5.26.0`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/biscuit.md b/docs/version-specific/supported-software/b/biscuit.md index 01d1ed511..c2e6701b9 100644 --- a/docs/version-specific/supported-software/b/biscuit.md +++ b/docs/version-specific/supported-software/b/biscuit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # biscuit Utilities to help analyze bisulfite-treated sequence data @@ -7,3 +11,6 @@ Utilities to help analyze bisulfite-treated sequence data version | toolchain --------|---------- ``0.1.4`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bitarray.md b/docs/version-specific/supported-software/b/bitarray.md index 3de48d8ca..f12a3cb22 100644 --- a/docs/version-specific/supported-software/b/bitarray.md +++ b/docs/version-specific/supported-software/b/bitarray.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bitarray bitarray provides an object type which efficiently represents an array of booleans @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bitshuffle.md b/docs/version-specific/supported-software/b/bitshuffle.md index ecf2bdf3e..e534cfc9d 100644 --- a/docs/version-specific/supported-software/b/bitshuffle.md +++ b/docs/version-specific/supported-software/b/bitshuffle.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Filter for improving compression of typed binary data. Bitshuffle is an algorith version | toolchain --------|---------- ``0.5.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/blasr_libcpp.md b/docs/version-specific/supported-software/b/blasr_libcpp.md index 1f2a1f2df..260e8d90b 100644 --- a/docs/version-specific/supported-software/b/blasr_libcpp.md +++ b/docs/version-specific/supported-software/b/blasr_libcpp.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Blasr_libcpp is a library used by blasr and other executables such as samtoh5, l version | toolchain --------|---------- ``20170426`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bmtagger.md b/docs/version-specific/supported-software/b/bmtagger.md index 9f18e8edc..839a09b67 100644 --- a/docs/version-specific/supported-software/b/bmtagger.md +++ b/docs/version-specific/supported-software/b/bmtagger.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bmtagger Best Match Tagger for removing human reads from metagenomics datasets @@ -9,3 +13,6 @@ version | toolchain ``3.101`` | ``foss/2018b`` ``3.101`` | ``gompi/2019a`` ``3.101`` | ``gompi/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bnpy.md b/docs/version-specific/supported-software/b/bnpy.md index 3c220970d..58b650801 100644 --- a/docs/version-specific/supported-software/b/bnpy.md +++ b/docs/version-specific/supported-software/b/bnpy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Bayesian nonparametric machine learning for python provides code for training p version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bokeh.md b/docs/version-specific/supported-software/b/bokeh.md index e4129b123..112b4c241 100644 --- a/docs/version-specific/supported-software/b/bokeh.md +++ b/docs/version-specific/supported-software/b/bokeh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bokeh Statistical and novel interactive HTML plots for Python @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``3.2.1`` | | ``foss/2022b`` ``3.2.2`` | | ``foss/2023a`` ``3.4.1`` | | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/boost_histogram.md b/docs/version-specific/supported-software/b/boost_histogram.md index 03aa23c83..94370bcb1 100644 --- a/docs/version-specific/supported-software/b/boost_histogram.md +++ b/docs/version-specific/supported-software/b/boost_histogram.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # boost_histogram Boost-histogram is a Python package providing Python bindings for Boost.Histogram. @@ -7,3 +11,6 @@ Boost-histogram is a Python package providing Python bindings for Boost.Histogra version | toolchain --------|---------- ``1.2.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/boto3.md b/docs/version-specific/supported-software/b/boto3.md index 655a30349..dd2b0523f 100644 --- a/docs/version-specific/supported-software/b/boto3.md +++ b/docs/version-specific/supported-software/b/boto3.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.26.163`` | ``GCCcore/12.2.0`` ``1.26.37`` | ``GCCcore/11.3.0`` ``1.28.70`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bpp.md b/docs/version-specific/supported-software/b/bpp.md index 11929d808..596f8ca4e 100644 --- a/docs/version-specific/supported-software/b/bpp.md +++ b/docs/version-specific/supported-software/b/bpp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bpp The aim of this project is to implement a versatile high-performance version of the BPP software. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.3.8`` | ``GCC/8.3.0`` ``4.4.0`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bpytop.md b/docs/version-specific/supported-software/b/bpytop.md index 12bdc2ed9..77e2243ee 100644 --- a/docs/version-specific/supported-software/b/bpytop.md +++ b/docs/version-specific/supported-software/b/bpytop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bpytop Resource monitor that shows usage and stats for processor, memory, disks, network and processes. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.60`` | ``GCCcore/10.2.0`` ``1.0.67`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/breseq.md b/docs/version-specific/supported-software/b/breseq.md index 895ce1fc8..2b8770245 100644 --- a/docs/version-specific/supported-software/b/breseq.md +++ b/docs/version-specific/supported-software/b/breseq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # breseq breseq is a computational pipeline for the analysis of short-read re-sequencing data @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.35.4`` | ``-R-4.0.0`` | ``foss/2020a`` ``0.36.1`` | | ``foss/2021b`` ``0.38.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bsddb3.md b/docs/version-specific/supported-software/b/bsddb3.md index a0de45660..4a912fd0d 100644 --- a/docs/version-specific/supported-software/b/bsddb3.md +++ b/docs/version-specific/supported-software/b/bsddb3.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``6.2.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` ``6.2.9`` | | ``GCCcore/10.2.0`` ``6.2.9`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/btllib.md b/docs/version-specific/supported-software/b/btllib.md index 2e83ac20c..52c7884cd 100644 --- a/docs/version-specific/supported-software/b/btllib.md +++ b/docs/version-specific/supported-software/b/btllib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # btllib Bioinformatics Technology Lab common code library @@ -7,3 +11,6 @@ Bioinformatics Technology Lab common code library version | toolchain --------|---------- ``1.7.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/build.md b/docs/version-specific/supported-software/b/build.md index b57b23a13..affcbe434 100644 --- a/docs/version-specific/supported-software/b/build.md +++ b/docs/version-specific/supported-software/b/build.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # build A simple, correct Python build frontend. @@ -10,3 +14,6 @@ version | toolchain ``0.10.0`` | ``foss/2022b`` ``1.0.3`` | ``foss/2023a`` ``1.0.3`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/buildenv.md b/docs/version-specific/supported-software/b/buildenv.md index ac6bd8cd6..3a9e9e836 100644 --- a/docs/version-specific/supported-software/b/buildenv.md +++ b/docs/version-specific/supported-software/b/buildenv.md @@ -1,3 +1,7 @@ +--- +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 @@ -42,3 +46,6 @@ version | versionsuffix | toolchain ``default`` | | ``intelcuda/2020a`` ``default`` | | ``intelcuda/2020b`` ``default`` | | ``nvompi/2022.07`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/buildingspy.md b/docs/version-specific/supported-software/b/buildingspy.md index 06822ada3..d45ff4061 100644 --- a/docs/version-specific/supported-software/b/buildingspy.md +++ b/docs/version-specific/supported-software/b/buildingspy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # buildingspy Python modules for automating Modelica simulations and for running unit test for the Buildings library @@ -7,3 +11,6 @@ Python modules for automating Modelica simulations and for running unit test for version | toolchain --------|---------- ``4.0.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bwa-mem2.md b/docs/version-specific/supported-software/b/bwa-mem2.md index 54e48e387..63ddaaa75 100644 --- a/docs/version-specific/supported-software/b/bwa-mem2.md +++ b/docs/version-specific/supported-software/b/bwa-mem2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The tool bwa-mem2 is the next version of the bwa-mem algorithm in bwa. It produc version | toolchain --------|---------- ``2.2.1`` | ``intel-compilers/2023.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bwa-meth.md b/docs/version-specific/supported-software/b/bwa-meth.md index 15b774819..e9081b6a7 100644 --- a/docs/version-specific/supported-software/b/bwa-meth.md +++ b/docs/version-specific/supported-software/b/bwa-meth.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # bwa-meth Fast and accurante alignment of BS-Seq reads. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bwakit.md b/docs/version-specific/supported-software/b/bwakit.md index 071df4cd0..2769d48ba 100644 --- a/docs/version-specific/supported-software/b/bwakit.md +++ b/docs/version-specific/supported-software/b/bwakit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Bwakit is a self-consistent installation-free package of scripts and precompiled version | versionsuffix | toolchain --------|---------------|---------- ``0.7.15`` | ``_x64-linux`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bwidget.md b/docs/version-specific/supported-software/b/bwidget.md index ef8994d97..fa0037e82 100644 --- a/docs/version-specific/supported-software/b/bwidget.md +++ b/docs/version-specific/supported-software/b/bwidget.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.9.14`` | ``GCCcore/9.3.0`` ``1.9.15`` | ``GCCcore/11.2.0`` ``1.9.15`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bx-python.md b/docs/version-specific/supported-software/b/bx-python.md index a0a31930b..e3b5a8ed1 100644 --- a/docs/version-specific/supported-software/b/bx-python.md +++ b/docs/version-specific/supported-software/b/bx-python.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``0.8.8`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.8.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.9.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/byacc.md b/docs/version-specific/supported-software/b/byacc.md index 97daf4dfa..96cb076f6 100644 --- a/docs/version-specific/supported-software/b/byacc.md +++ b/docs/version-specific/supported-software/b/byacc.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``20160606`` | ``foss/2016b`` ``20160606`` | ``intel/2016b`` ``20170709`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/byobu.md b/docs/version-specific/supported-software/b/byobu.md index 5a3583288..93100f1e5 100644 --- a/docs/version-specific/supported-software/b/byobu.md +++ b/docs/version-specific/supported-software/b/byobu.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Byobu is an elegant enhancement of the otherwise functional, plain, practical GN version | toolchain --------|---------- ``5.133`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/bzip2.md b/docs/version-specific/supported-software/b/bzip2.md index 7b9ce0938..2d7e0e889 100644 --- a/docs/version-specific/supported-software/b/bzip2.md +++ b/docs/version-specific/supported-software/b/bzip2.md @@ -1,3 +1,7 @@ +--- +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. @@ -43,3 +47,6 @@ version | toolchain ``1.0.8`` | ``GCCcore/8.3.0`` ``1.0.8`` | ``GCCcore/9.3.0`` ``1.0.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/b/index.md b/docs/version-specific/supported-software/b/index.md index 3b519f677..574febfe2 100644 --- a/docs/version-specific/supported-software/b/index.md +++ b/docs/version-specific/supported-software/b/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (b) +[../0/index.md](0) - [../a/index.md](a) - *b* - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [BA3-SNPS-autotune](BA3-SNPS-autotune.md) * [BabelStream](BabelStream.md) * [babl](babl.md) diff --git a/docs/version-specific/supported-software/c/C3D.md b/docs/version-specific/supported-software/c/C3D.md index 4a98222ad..de9c990f5 100644 --- a/docs/version-specific/supported-software/c/C3D.md +++ b/docs/version-specific/supported-software/c/C3D.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # C3D Convert3D Medical Image Processing Tool @@ -7,3 +11,6 @@ Convert3D Medical Image Processing Tool version | toolchain --------|---------- ``1.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CAFE5.md b/docs/version-specific/supported-software/c/CAFE5.md index ed157d4ad..54dea09ad 100644 --- a/docs/version-specific/supported-software/c/CAFE5.md +++ b/docs/version-specific/supported-software/c/CAFE5.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Software for Computational Analysis of gene Family Evolution The purpose of CAF version | toolchain --------|---------- ``5.0.0`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CAMPARI.md b/docs/version-specific/supported-software/c/CAMPARI.md index e3aba242c..f5faa5562 100644 --- a/docs/version-specific/supported-software/c/CAMPARI.md +++ b/docs/version-specific/supported-software/c/CAMPARI.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.0`` | ``intel/2020b`` ``4.0`` | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CAP3.md b/docs/version-specific/supported-software/c/CAP3.md index bbbc1a978..43c71afbf 100644 --- a/docs/version-specific/supported-software/c/CAP3.md +++ b/docs/version-specific/supported-software/c/CAP3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CAP3 CAP3 assembly program @@ -9,3 +13,6 @@ version | toolchain ``20071221-intel-x86`` | ``system`` ``20071221-intel-x86_64`` | ``system`` ``20071221-opteron`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CASA.md b/docs/version-specific/supported-software/c/CASA.md index 7282ef451..9c8e3a6be 100644 --- a/docs/version-specific/supported-software/c/CASA.md +++ b/docs/version-specific/supported-software/c/CASA.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ CASA, the Common Astronomy Software Applications package, is the primary data pr version | versionsuffix | toolchain --------|---------------|---------- ``6.5.5-21`` | ``-py3.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CASPR.md b/docs/version-specific/supported-software/c/CASPR.md index 12fb84643..207657cd8 100644 --- a/docs/version-specific/supported-software/c/CASPR.md +++ b/docs/version-specific/supported-software/c/CASPR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CASPR Running CASPR is extremely easy and convenient to analyze CRIPR-Cas9 screens using pgRNAs. @@ -7,3 +11,6 @@ Running CASPR is extremely easy and convenient to analyze CRIPR-Cas9 screens usi version | toolchain --------|---------- ``20200730`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CASTEP.md b/docs/version-specific/supported-software/c/CASTEP.md index e5ca0aed8..fc3d885e3 100644 --- a/docs/version-specific/supported-software/c/CASTEP.md +++ b/docs/version-specific/supported-software/c/CASTEP.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``21.1.1`` | ``iomkl/2019b`` ``22.11`` | ``foss/2022a`` ``23.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CAT-BAT.md b/docs/version-specific/supported-software/c/CAT-BAT.md index 5299a8f66..72fe522e0 100644 --- a/docs/version-specific/supported-software/c/CAT-BAT.md +++ b/docs/version-specific/supported-software/c/CAT-BAT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CAT-BAT Tool for taxonomic classification of contigs and metagenome-assembled genomes (MAGs). @@ -7,3 +11,6 @@ Tool for taxonomic classification of contigs and metagenome-assembled genomes (M version | toolchain --------|---------- ``5.2.3`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CAVIAR.md b/docs/version-specific/supported-software/c/CAVIAR.md index 78d201b56..45142a986 100644 --- a/docs/version-specific/supported-software/c/CAVIAR.md +++ b/docs/version-specific/supported-software/c/CAVIAR.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CAusal Variants Identication in Associated Regions. A statistical framework tha version | toolchain --------|---------- ``2.2-20190419`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CBLAS.md b/docs/version-specific/supported-software/c/CBLAS.md index 32d575818..5b02b5f0e 100644 --- a/docs/version-specific/supported-software/c/CBLAS.md +++ b/docs/version-specific/supported-software/c/CBLAS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CBLAS C interface to the BLAS @@ -9,3 +13,6 @@ version | toolchain ``20110120`` | ``foss/2016b`` ``20110120`` | ``intel/2019b`` ``20110120`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CCCL.md b/docs/version-specific/supported-software/c/CCCL.md index fc6b85649..2a90f9f41 100644 --- a/docs/version-specific/supported-software/c/CCCL.md +++ b/docs/version-specific/supported-software/c/CCCL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CCCL CUDA C++ Core Libraries (header only) @@ -7,3 +11,6 @@ CUDA C++ Core Libraries (header only) version | versionsuffix | toolchain --------|---------------|---------- ``2.3.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CCL.md b/docs/version-specific/supported-software/c/CCL.md index 51300c615..f355bf6b6 100644 --- a/docs/version-specific/supported-software/c/CCL.md +++ b/docs/version-specific/supported-software/c/CCL.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.12.2`` | ``GCCcore/11.3.0`` ``1.12.2`` | ``GCCcore/12.3.0`` ``1.12.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CCfits.md b/docs/version-specific/supported-software/c/CCfits.md index 22565f7f0..4cae72657 100644 --- a/docs/version-specific/supported-software/c/CCfits.md +++ b/docs/version-specific/supported-software/c/CCfits.md @@ -1,3 +1,7 @@ +--- +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++. @@ -7,3 +11,6 @@ CCfits is an object oriented interface to the cfitsio library. It is designed to version | toolchain --------|---------- ``2.5`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CD-HIT.md b/docs/version-specific/supported-software/c/CD-HIT.md index 85f9a586a..7917642ee 100644 --- a/docs/version-specific/supported-software/c/CD-HIT.md +++ b/docs/version-specific/supported-software/c/CD-HIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CD-HIT CD-HIT is a very widely used program for clustering and comparing protein or nucleotide sequences. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``4.8.1`` | | ``GCC/9.3.0`` ``4.8.1`` | | ``foss/2018b`` ``4.8.1`` | | ``iccifort/2019.5.281`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CDAT.md b/docs/version-specific/supported-software/c/CDAT.md index a6883fa9e..27e554eec 100644 --- a/docs/version-specific/supported-software/c/CDAT.md +++ b/docs/version-specific/supported-software/c/CDAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CDAT is a powerful and complete front-end to a rich set of visual-data explorat version | versionsuffix | toolchain --------|---------------|---------- ``8.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CDBtools.md b/docs/version-specific/supported-software/c/CDBtools.md index ce9cdd993..e0b16e472 100644 --- a/docs/version-specific/supported-software/c/CDBtools.md +++ b/docs/version-specific/supported-software/c/CDBtools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CDBtools CDB (Constant DataBase) indexing and retrieval tools for FASTA files @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.99`` | ``GCC/10.2.0`` ``0.99`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CDFlib.md b/docs/version-specific/supported-software/c/CDFlib.md index 5db25a3ce..bd0eaef64 100644 --- a/docs/version-specific/supported-software/c/CDFlib.md +++ b/docs/version-specific/supported-software/c/CDFlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ cdflib is a python module to read/write CDF (Common Data Format .cdf) files with version | toolchain --------|---------- ``0.4.9`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CDO.md b/docs/version-specific/supported-software/c/CDO.md index 643a048cd..bc60bfd48 100644 --- a/docs/version-specific/supported-software/c/CDO.md +++ b/docs/version-specific/supported-software/c/CDO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CDO CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data. @@ -23,3 +27,6 @@ version | toolchain ``2.1.1`` | ``gompi/2021a`` ``2.2.2`` | ``gompi/2023a`` ``2.2.2`` | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CENSO.md b/docs/version-specific/supported-software/c/CENSO.md index d67e88487..a0c58eba0 100644 --- a/docs/version-specific/supported-software/c/CENSO.md +++ b/docs/version-specific/supported-software/c/CENSO.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CESM-deps.md b/docs/version-specific/supported-software/c/CESM-deps.md index ba6fc04e8..816dee37c 100644 --- a/docs/version-specific/supported-software/c/CESM-deps.md +++ b/docs/version-specific/supported-software/c/CESM-deps.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2`` | ``foss/2022a`` ``2`` | ``intel/2018b`` ``2`` | ``iomkl/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CFDEMcoupling.md b/docs/version-specific/supported-software/c/CFDEMcoupling.md index 03af38c6a..fc2fe4434 100644 --- a/docs/version-specific/supported-software/c/CFDEMcoupling.md +++ b/docs/version-specific/supported-software/c/CFDEMcoupling.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.8.0`` | ``foss/2018a`` ``3.8.0`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CFITSIO.md b/docs/version-specific/supported-software/c/CFITSIO.md index 27f629a09..e6b619773 100644 --- a/docs/version-specific/supported-software/c/CFITSIO.md +++ b/docs/version-specific/supported-software/c/CFITSIO.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | toolchain ``4.2.0`` | ``GCCcore/12.2.0`` ``4.3.0`` | ``GCCcore/12.3.0`` ``4.3.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CGAL.md b/docs/version-specific/supported-software/c/CGAL.md index 95eac27b7..5f041a8bd 100644 --- a/docs/version-specific/supported-software/c/CGAL.md +++ b/docs/version-specific/supported-software/c/CGAL.md @@ -1,3 +1,7 @@ +--- +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. @@ -40,3 +44,6 @@ version | versionsuffix | toolchain ``5.5.2`` | | ``GCCcore/12.2.0`` ``5.6`` | | ``GCCcore/12.3.0`` ``5.6.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CGNS.md b/docs/version-specific/supported-software/c/CGNS.md index 4aac94849..0e49c4f51 100644 --- a/docs/version-specific/supported-software/c/CGNS.md +++ b/docs/version-specific/supported-software/c/CGNS.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.3.1`` | ``foss/2016b`` ``4.1.0`` | ``intelcuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CGmapTools.md b/docs/version-specific/supported-software/c/CGmapTools.md index 57603ad10..7eaacab4f 100644 --- a/docs/version-specific/supported-software/c/CGmapTools.md +++ b/docs/version-specific/supported-software/c/CGmapTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CGmapTools Command-line Toolset for Bisulfite Sequencing Data Analysis @@ -7,3 +11,6 @@ Command-line Toolset for Bisulfite Sequencing Data Analysis version | toolchain --------|---------- ``0.1.2`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CHASE.md b/docs/version-specific/supported-software/c/CHASE.md index a16cf79f5..b54f55c08 100644 --- a/docs/version-specific/supported-software/c/CHASE.md +++ b/docs/version-specific/supported-software/c/CHASE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CHASE Case-control HAplotype Sharing analyses. Haplotype sharing analyses for genome-wide association studies. @@ -7,3 +11,6 @@ Case-control HAplotype Sharing analyses. Haplotype sharing analyses for genome version | toolchain --------|---------- ``20130626`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CHERAB.md b/docs/version-specific/supported-software/c/CHERAB.md index 182cfd3ed..4e6cb0793 100644 --- a/docs/version-specific/supported-software/c/CHERAB.md +++ b/docs/version-specific/supported-software/c/CHERAB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CHERAB CHERAB is a python library for forward modelling diagnostics based on spectroscopic plasma emission. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``intel/2020b`` ``1.4.0`` | | ``foss/2020b`` ``1.4.0`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CIF2Cell.md b/docs/version-specific/supported-software/c/CIF2Cell.md index b886f0e55..d5362a0c0 100644 --- a/docs/version-specific/supported-software/c/CIF2Cell.md +++ b/docs/version-specific/supported-software/c/CIF2Cell.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CIF2Cell is a tool to generate the geometrical setup for various electronic stru version | versionsuffix | toolchain --------|---------------|---------- ``1.2.10`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CIRCexplorer.md b/docs/version-specific/supported-software/c/CIRCexplorer.md index d60a3cd81..0167f7a50 100644 --- a/docs/version-specific/supported-software/c/CIRCexplorer.md +++ b/docs/version-specific/supported-software/c/CIRCexplorer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CIRCexplorer CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. @@ -7,3 +11,6 @@ CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. version | versionsuffix | toolchain --------|---------------|---------- ``1.1.10`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CIRCexplorer2.md b/docs/version-specific/supported-software/c/CIRCexplorer2.md index 0b224887e..bacb2d104 100644 --- a/docs/version-specific/supported-software/c/CIRCexplorer2.md +++ b/docs/version-specific/supported-software/c/CIRCexplorer2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CIRCexplorer2 CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CIRI-long.md b/docs/version-specific/supported-software/c/CIRI-long.md index 63d2edef9..74062dfdf 100644 --- a/docs/version-specific/supported-software/c/CIRI-long.md +++ b/docs/version-specific/supported-software/c/CIRI-long.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CIRI-long Circular RNA Identification for Long-Reads Nanopore Sequencing Data @@ -7,3 +11,6 @@ Circular RNA Identification for Long-Reads Nanopore Sequencing Data version | toolchain --------|---------- ``1.0.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CIRI.md b/docs/version-specific/supported-software/c/CIRI.md index 24bb6272a..e309e33ad 100644 --- a/docs/version-specific/supported-software/c/CIRI.md +++ b/docs/version-specific/supported-software/c/CIRI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CIRI CircRNA Identifier. A de novo circular RNA identification tool @@ -7,3 +11,6 @@ CircRNA Identifier. A de novo circular RNA identification tool version | versionsuffix | toolchain --------|---------------|---------- ``2.0.6`` | ``-Perl-5.26.0`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CIRIquant.md b/docs/version-specific/supported-software/c/CIRIquant.md index 147aa1036..5c60d7adb 100644 --- a/docs/version-specific/supported-software/c/CIRIquant.md +++ b/docs/version-specific/supported-software/c/CIRIquant.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CIRIquant CIRIquant is a comprehensive analysis pipeline for circRNA detection and quantification in RNA-Seq data @@ -7,3 +11,6 @@ CIRIquant is a comprehensive analysis pipeline for circRNA detection and quantif version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2-20221201`` | ``-Python-2.7.18`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CITE-seq-Count.md b/docs/version-specific/supported-software/c/CITE-seq-Count.md index 54645d3ee..07cbfbef0 100644 --- a/docs/version-specific/supported-software/c/CITE-seq-Count.md +++ b/docs/version-specific/supported-software/c/CITE-seq-Count.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.4.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLAPACK.md b/docs/version-specific/supported-software/c/CLAPACK.md index 818ad7cb6..6304f6f01 100644 --- a/docs/version-specific/supported-software/c/CLAPACK.md +++ b/docs/version-specific/supported-software/c/CLAPACK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CLAPACK C version of LAPACK @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLEAR.md b/docs/version-specific/supported-software/c/CLEAR.md index 7818d0206..87bf17956 100644 --- a/docs/version-specific/supported-software/c/CLEAR.md +++ b/docs/version-specific/supported-software/c/CLEAR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CLEAR Direct comparison of circular and linear RNA expression @@ -7,3 +11,6 @@ Direct comparison of circular and linear RNA expression version | versionsuffix | toolchain --------|---------------|---------- ``20210117`` | ``-Python-2.7.18`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLEASE.md b/docs/version-specific/supported-software/c/CLEASE.md index ab56af247..cf22a4ace 100644 --- a/docs/version-specific/supported-software/c/CLEASE.md +++ b/docs/version-specific/supported-software/c/CLEASE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CLuster Expansion in Atomic Simulation Environment (CLEASE) is a package that au version | toolchain --------|---------- ``0.10.6`` | ``intel/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLHEP.md b/docs/version-specific/supported-software/c/CLHEP.md index a744cecca..53e79bb7c 100644 --- a/docs/version-specific/supported-software/c/CLHEP.md +++ b/docs/version-specific/supported-software/c/CLHEP.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | toolchain ``2.4.5.3`` | ``GCC/11.3.0`` ``2.4.6.2`` | ``GCC/11.3.0`` ``2.4.6.4`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLIP.md b/docs/version-specific/supported-software/c/CLIP.md index d2f00b934..42391f1d2 100644 --- a/docs/version-specific/supported-software/c/CLIP.md +++ b/docs/version-specific/supported-software/c/CLIP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CLIP (Contrastive Language-Image Pre-Training) is a neural network trained on a version | versionsuffix | toolchain --------|---------------|---------- ``20230220`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLISP.md b/docs/version-specific/supported-software/c/CLISP.md index 7e258ef5a..c1f9eb7b5 100644 --- a/docs/version-specific/supported-software/c/CLISP.md +++ b/docs/version-specific/supported-software/c/CLISP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CLISP Common Lisp is a high-level, general-purpose, object-oriented, dynamic, functional programming language. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.49`` | ``GCCcore/6.4.0`` ``2.49`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CLooG.md b/docs/version-specific/supported-software/c/CLooG.md index d4ff6f4d6..172a78645 100644 --- a/docs/version-specific/supported-software/c/CLooG.md +++ b/docs/version-specific/supported-software/c/CLooG.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CLooG is a free software and library to generate code for scanning Z-polyhedra. version | toolchain --------|---------- ``0.18.1`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CMAverse.md b/docs/version-specific/supported-software/c/CMAverse.md index 782eeaf57..bff7fa235 100644 --- a/docs/version-specific/supported-software/c/CMAverse.md +++ b/docs/version-specific/supported-software/c/CMAverse.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The R package CMAverse provides a suite of functions for reproducible causal med version | toolchain --------|---------- ``20220112`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CMSeq.md b/docs/version-specific/supported-software/c/CMSeq.md index d6f38a504..9d715b300 100644 --- a/docs/version-specific/supported-software/c/CMSeq.md +++ b/docs/version-specific/supported-software/c/CMSeq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CMSeq CMSeq is a set of commands to provide an interface to .bam files for coverage and sequence consensus. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.0.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CMake.md b/docs/version-specific/supported-software/c/CMake.md index 0f2be3b7b..556a32745 100644 --- a/docs/version-specific/supported-software/c/CMake.md +++ b/docs/version-specific/supported-software/c/CMake.md @@ -1,3 +1,7 @@ +--- +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. @@ -91,3 +95,6 @@ version | toolchain ``3.9.4`` | ``GCCcore/6.4.0`` ``3.9.5`` | ``GCCcore/6.4.0`` ``3.9.6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CNT-ILP.md b/docs/version-specific/supported-software/c/CNT-ILP.md index aca2fe6cc..f473612fb 100644 --- a/docs/version-specific/supported-software/c/CNT-ILP.md +++ b/docs/version-specific/supported-software/c/CNT-ILP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CNT-ILP Integer Linear Program for the Copy-Number Tree Problem @@ -7,3 +11,6 @@ Integer Linear Program for the Copy-Number Tree Problem version | toolchain --------|---------- ``20171031`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CNVkit.md b/docs/version-specific/supported-software/c/CNVkit.md index 5ed031652..e3d20989d 100644 --- a/docs/version-specific/supported-software/c/CNVkit.md +++ b/docs/version-specific/supported-software/c/CNVkit.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CNVnator.md b/docs/version-specific/supported-software/c/CNVnator.md index c6ce2133c..c9d8391ec 100644 --- a/docs/version-specific/supported-software/c/CNVnator.md +++ b/docs/version-specific/supported-software/c/CNVnator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CNVnator a tool for CNV discovery and genotyping from depth-of-coverage by mapped reads @@ -7,3 +11,6 @@ a tool for CNV discovery and genotyping from depth-of-coverage by mapped reads version | toolchain --------|---------- ``0.3.3`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/COBRApy.md b/docs/version-specific/supported-software/c/COBRApy.md index 588f9968f..a47528fed 100644 --- a/docs/version-specific/supported-software/c/COBRApy.md +++ b/docs/version-specific/supported-software/c/COBRApy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # COBRApy COBRApy is a package for constraint-based modeling of metabolic networks. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.26.0`` | ``foss/2021a`` ``0.29.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CODEX2.md b/docs/version-specific/supported-software/c/CODEX2.md index e459275d0..e9b4cf909 100644 --- a/docs/version-specific/supported-software/c/CODEX2.md +++ b/docs/version-specific/supported-software/c/CODEX2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CODEX2 Full-spectrum copy number variation detection by high-throughput DNA sequencing @@ -7,3 +11,6 @@ Full-spectrum copy number variation detection by high-throughput DNA sequencing version | versionsuffix | toolchain --------|---------------|---------- ``20180227`` | ``-R-3.4.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/COMEBin.md b/docs/version-specific/supported-software/c/COMEBin.md index c401909b8..6e1d37286 100644 --- a/docs/version-specific/supported-software/c/COMEBin.md +++ b/docs/version-specific/supported-software/c/COMEBin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # COMEBin Effective binning of metagenomic contigs using COntrastive Multi-viEw representation learning @@ -7,3 +11,6 @@ Effective binning of metagenomic contigs using COntrastive Multi-viEw representa version | toolchain --------|---------- ``1.0.3-20240310`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/COMSOL.md b/docs/version-specific/supported-software/c/COMSOL.md index df225ba79..092689e69 100644 --- a/docs/version-specific/supported-software/c/COMSOL.md +++ b/docs/version-specific/supported-software/c/COMSOL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.4.0.225`` | ``system`` ``6.2.0.290`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CONCOCT.md b/docs/version-specific/supported-software/c/CONCOCT.md index 6e4e5e2a9..4464dd981 100644 --- a/docs/version-specific/supported-software/c/CONCOCT.md +++ b/docs/version-specific/supported-software/c/CONCOCT.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CONN.md b/docs/version-specific/supported-software/c/CONN.md index e6324e16f..bb8e648ab 100644 --- a/docs/version-specific/supported-software/c/CONN.md +++ b/docs/version-specific/supported-software/c/CONN.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CONN is an open-source Matlab/SPM-based cross-platform software for the computa version | versionsuffix | toolchain --------|---------------|---------- ``21a`` | ``-MATLAB-2021a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CP2K.md b/docs/version-specific/supported-software/c/CP2K.md index eb168bdae..59b1337b1 100644 --- a/docs/version-specific/supported-software/c/CP2K.md +++ b/docs/version-specific/supported-software/c/CP2K.md @@ -1,3 +1,7 @@ +--- +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. @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``8.2`` | | ``foss/2021a`` ``8.2`` | | ``intel/2021a`` ``9.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CPB.md b/docs/version-specific/supported-software/c/CPB.md index c37e13566..c33d0fed3 100644 --- a/docs/version-specific/supported-software/c/CPB.md +++ b/docs/version-specific/supported-software/c/CPB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CPB is a novel two-step Pearson correlation based biclustering approach to mine version | versionsuffix | toolchain --------|---------------|---------- ``11-4-2011`` | ``-Python-2.7.13`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CPC2.md b/docs/version-specific/supported-software/c/CPC2.md index 7cdc7844b..3046c1dc2 100644 --- a/docs/version-specific/supported-software/c/CPC2.md +++ b/docs/version-specific/supported-software/c/CPC2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CPC2 a fast and accurate coding potential calculator based on sequence intrinsic features @@ -7,3 +11,6 @@ a fast and accurate coding potential calculator based on sequence intrinsic feat version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CPLEX.md b/docs/version-specific/supported-software/c/CPLEX.md index 3ead5bf7f..0dc7d785a 100644 --- a/docs/version-specific/supported-software/c/CPLEX.md +++ b/docs/version-specific/supported-software/c/CPLEX.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``12.9`` | | ``GCCcore/8.2.0`` ``22.1.1`` | | ``GCCcore/11.2.0`` ``22.1.1`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CPMD.md b/docs/version-specific/supported-software/c/CPMD.md index b4ab389c0..fb0dfbf35 100644 --- a/docs/version-specific/supported-software/c/CPMD.md +++ b/docs/version-specific/supported-software/c/CPMD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CPMD The CPMD code is a parallelized plane wave / pseudopotential implementation of DFT, particularly designed for ab-initio molecular dynamics. @@ -7,3 +11,6 @@ The CPMD code is a parallelized plane wave / pseudopotential implementation of D version | toolchain --------|---------- ``4.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CPPE.md b/docs/version-specific/supported-software/c/CPPE.md index 68aaebf79..3c0271eb5 100644 --- a/docs/version-specific/supported-software/c/CPPE.md +++ b/docs/version-specific/supported-software/c/CPPE.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.3.1`` | ``GCC/11.3.0`` ``0.3.1`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CREST.md b/docs/version-specific/supported-software/c/CREST.md index cb46c5dac..3d477637c 100644 --- a/docs/version-specific/supported-software/c/CREST.md +++ b/docs/version-specific/supported-software/c/CREST.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.12`` | ``intel/2022a`` ``20240319`` | ``gfbf/2023a`` ``3.0.1`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CRF++.md b/docs/version-specific/supported-software/c/CRF++.md index 5a245f81f..485058dc6 100644 --- a/docs/version-specific/supported-software/c/CRF++.md +++ b/docs/version-specific/supported-software/c/CRF++.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.58`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``0.58`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CRISPR-DAV.md b/docs/version-specific/supported-software/c/CRISPR-DAV.md index 6d93c444e..6f80447bd 100644 --- a/docs/version-specific/supported-software/c/CRISPR-DAV.md +++ b/docs/version-specific/supported-software/c/CRISPR-DAV.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CRISPR-DAV is a pipeline to analyze amplicon-based NGS data of CRISPR clones in version | toolchain --------|---------- ``2.3.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CRISPResso2.md b/docs/version-specific/supported-software/c/CRISPResso2.md index 505a67f78..d402a4349 100644 --- a/docs/version-specific/supported-software/c/CRISPResso2.md +++ b/docs/version-specific/supported-software/c/CRISPResso2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CRISPResso2 CRISPResso2 is a software pipeline designed to enable rapid and intuitive interpretation of genome editing experiments. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CRPropa.md b/docs/version-specific/supported-software/c/CRPropa.md index 44f3ced76..a5de77c32 100644 --- a/docs/version-specific/supported-software/c/CRPropa.md +++ b/docs/version-specific/supported-software/c/CRPropa.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` ``3.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CSB.md b/docs/version-specific/supported-software/c/CSB.md index 791926a57..91d64337e 100644 --- a/docs/version-specific/supported-software/c/CSB.md +++ b/docs/version-specific/supported-software/c/CSB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Computational Structural Biology Toolbox CSB is a python library and application version | toolchain --------|---------- ``1.2.5`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CSBDeep.md b/docs/version-specific/supported-software/c/CSBDeep.md index 4ef72a5ba..df72f82ed 100644 --- a/docs/version-specific/supported-software/c/CSBDeep.md +++ b/docs/version-specific/supported-software/c/CSBDeep.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CSBDeep CSBDeep is a toolbox for Content-aware Image Restoration (CARE). @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.4.1`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` ``0.7.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.7.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CSBLAST.md b/docs/version-specific/supported-software/c/CSBLAST.md index b287a2b54..c5ae286a6 100644 --- a/docs/version-specific/supported-software/c/CSBLAST.md +++ b/docs/version-specific/supported-software/c/CSBLAST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CSBLAST Context-specific extension of BLAST that significantly improves sensitivity and alignment quality. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.3`` | ``GCCcore/8.3.0`` ``2.2.4`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CTPL.md b/docs/version-specific/supported-software/c/CTPL.md index 7e4a2a657..f9c2f51f6 100644 --- a/docs/version-specific/supported-software/c/CTPL.md +++ b/docs/version-specific/supported-software/c/CTPL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CTPL Modern and efficient C++ Thread Pool Library @@ -7,3 +11,6 @@ Modern and efficient C++ Thread Pool Library version | toolchain --------|---------- ``0.0.2`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUDA-Samples.md b/docs/version-specific/supported-software/c/CUDA-Samples.md index 9dd637103..31b47e0fd 100644 --- a/docs/version-specific/supported-software/c/CUDA-Samples.md +++ b/docs/version-specific/supported-software/c/CUDA-Samples.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CUDA-Samples Samples for CUDA Developers which demonstrates features in CUDA Toolkit @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUDA.md b/docs/version-specific/supported-software/c/CUDA.md index 68abe262f..fc1eb7ef2 100644 --- a/docs/version-specific/supported-software/c/CUDA.md +++ b/docs/version-specific/supported-software/c/CUDA.md @@ -1,3 +1,7 @@ +--- +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. @@ -58,3 +62,6 @@ version | toolchain ``9.2.88`` | ``GCC/6.4.0-2.28`` ``9.2.88`` | ``GCC/7.3.0-2.30`` ``9.2.88`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUDAcompat.md b/docs/version-specific/supported-software/c/CUDAcompat.md index 1dbe2d812..2ef81f366 100644 --- a/docs/version-specific/supported-software/c/CUDAcompat.md +++ b/docs/version-specific/supported-software/c/CUDAcompat.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``11.7`` | ``-515.65.01`` | ``system`` ``11.7`` | | ``system`` ``11`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUDAcore.md b/docs/version-specific/supported-software/c/CUDAcore.md index d89b6c5f8..d82a90ebe 100644 --- a/docs/version-specific/supported-software/c/CUDAcore.md +++ b/docs/version-specific/supported-software/c/CUDAcore.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``11.3.0`` | ``system`` ``11.4.0`` | ``system`` ``11.5.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUDD.md b/docs/version-specific/supported-software/c/CUDD.md index 84e2ac307..b2f84eacf 100644 --- a/docs/version-specific/supported-software/c/CUDD.md +++ b/docs/version-specific/supported-software/c/CUDD.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ The CUDD package is a package written in C for the manipulation of decision dia version | toolchain --------|---------- ``3.0.0`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUTLASS.md b/docs/version-specific/supported-software/c/CUTLASS.md index 46f5b50b8..1f6ec88c0 100644 --- a/docs/version-specific/supported-software/c/CUTLASS.md +++ b/docs/version-specific/supported-software/c/CUTLASS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CUTLASS is a collection of CUDA C++ template abstractions for implementing high- version | versionsuffix | toolchain --------|---------------|---------- ``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CUnit.md b/docs/version-specific/supported-software/c/CUnit.md index 1527306a4..186c53e59 100644 --- a/docs/version-specific/supported-software/c/CUnit.md +++ b/docs/version-specific/supported-software/c/CUnit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CUnit Automated testing framework for C. @@ -10,3 +14,6 @@ version | toolchain ``2.1-3`` | ``GCCcore/11.3.0`` ``2.1-3`` | ``GCCcore/12.3.0`` ``2.1-3`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CVX.md b/docs/version-specific/supported-software/c/CVX.md index 16bcafbcd..a9399eab9 100644 --- a/docs/version-specific/supported-software/c/CVX.md +++ b/docs/version-specific/supported-software/c/CVX.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CVX is a Matlab-based modeling system for convex optimization. CVX turns Matlab version | versionsuffix | toolchain --------|---------------|---------- ``2.2`` | ``-MATLAB-2023a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CVXOPT.md b/docs/version-specific/supported-software/c/CVXOPT.md index 3b2f536f6..8cff7bae8 100644 --- a/docs/version-specific/supported-software/c/CVXOPT.md +++ b/docs/version-specific/supported-software/c/CVXOPT.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``1.2.6`` | | ``foss/2020b`` ``1.2.6`` | | ``foss/2021a`` ``1.3.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CVXPY.md b/docs/version-specific/supported-software/c/CVXPY.md index 23f05f5fa..9d809f4e5 100644 --- a/docs/version-specific/supported-software/c/CVXPY.md +++ b/docs/version-specific/supported-software/c/CVXPY.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.0.28`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.3.0`` | | ``foss/2022a`` ``1.4.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CVglasso.md b/docs/version-specific/supported-software/c/CVglasso.md index 33b980485..a1df68bf1 100644 --- a/docs/version-specific/supported-software/c/CVglasso.md +++ b/docs/version-specific/supported-software/c/CVglasso.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CVglasso is an R package that estimates a lasso-penalized precision matrix via version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CWIPI.md b/docs/version-specific/supported-software/c/CWIPI.md index 6f2e84e97..3dd5be543 100644 --- a/docs/version-specific/supported-software/c/CWIPI.md +++ b/docs/version-specific/supported-software/c/CWIPI.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.12.0`` | ``gompi/2021a`` ``0.12.0`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CaDiCaL.md b/docs/version-specific/supported-software/c/CaDiCaL.md index 96a324dca..2564e8949 100644 --- a/docs/version-specific/supported-software/c/CaDiCaL.md +++ b/docs/version-specific/supported-software/c/CaDiCaL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CaDiCaL is a simplified satisfiability solver. The original goal of the developm version | toolchain --------|---------- ``1.3.0`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CaSpER.md b/docs/version-specific/supported-software/c/CaSpER.md index 1edad9142..1f412acc4 100644 --- a/docs/version-specific/supported-software/c/CaSpER.md +++ b/docs/version-specific/supported-software/c/CaSpER.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CaSpER is a signal processing approach for identification, visualization, and in version | toolchain --------|---------- ``2.0`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CaVEMan.md b/docs/version-specific/supported-software/c/CaVEMan.md index c6d84a85b..4be4d401e 100644 --- a/docs/version-specific/supported-software/c/CaVEMan.md +++ b/docs/version-specific/supported-software/c/CaVEMan.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ SNV expectation maximisation based mutation calling algorithm aimed at detecti version | toolchain --------|---------- ``1.13.2`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Caffe.md b/docs/version-specific/supported-software/c/Caffe.md index 52104c588..ea342df97 100644 --- a/docs/version-specific/supported-software/c/Caffe.md +++ b/docs/version-specific/supported-software/c/Caffe.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Calcam.md b/docs/version-specific/supported-software/c/Calcam.md index 7bdf030f3..a2598be09 100644 --- a/docs/version-specific/supported-software/c/Calcam.md +++ b/docs/version-specific/supported-software/c/Calcam.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.1.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md index 90b2a0a0d..88457a5c1 100644 --- a/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md +++ b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CalculiX-CrunchiX A Free Software Three-Dimensional Structural Finite Element Program @@ -9,3 +13,6 @@ version | toolchain ``2.20`` | ``foss/2021a`` ``2.20`` | ``foss/2022b`` ``2.20`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Calendrical.md b/docs/version-specific/supported-software/c/Calendrical.md index e19932b76..59a0f2347 100644 --- a/docs/version-specific/supported-software/c/Calendrical.md +++ b/docs/version-specific/supported-software/c/Calendrical.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Calendrical Calendrical module is for calendrical calculations. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Calib.md b/docs/version-specific/supported-software/c/Calib.md index bda70e022..563bcf526 100644 --- a/docs/version-specific/supported-software/c/Calib.md +++ b/docs/version-specific/supported-software/c/Calib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Calib clusters paired-end reads using their barcodes and sequences. Calib is sui version | toolchain --------|---------- ``0.3.4`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cantera.md b/docs/version-specific/supported-software/c/Cantera.md index ba5088c3b..c408004d8 100644 --- a/docs/version-specific/supported-software/c/Cantera.md +++ b/docs/version-specific/supported-software/c/Cantera.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cantera Chemical kinetics, thermodynamics, and transport tool suite @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``2.4.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.6.0`` | | ``foss/2022a`` ``3.0.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Canvas.md b/docs/version-specific/supported-software/c/Canvas.md index d091a5b29..149a661b0 100644 --- a/docs/version-specific/supported-software/c/Canvas.md +++ b/docs/version-specific/supported-software/c/Canvas.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Canvas Copy number variant (CNV) calling from DNA sequencing data @@ -7,3 +11,6 @@ Copy number variant (CNV) calling from DNA sequencing data version | toolchain --------|---------- ``1.39.0.1598`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CapnProto.md b/docs/version-specific/supported-software/c/CapnProto.md index b72e31f7e..8adb622a2 100644 --- a/docs/version-specific/supported-software/c/CapnProto.md +++ b/docs/version-specific/supported-software/c/CapnProto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CapnProto Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. @@ -16,3 +20,6 @@ version | toolchain ``0.9.1`` | ``GCCcore/11.2.0`` ``1.0.1`` | ``GCCcore/12.3.0`` ``1.0.1.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cargo.md b/docs/version-specific/supported-software/c/Cargo.md index 1e53ff86d..5b90103e9 100644 --- a/docs/version-specific/supported-software/c/Cargo.md +++ b/docs/version-specific/supported-software/c/Cargo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cargo The Rust package manager @@ -7,3 +11,6 @@ The Rust package manager version | toolchain --------|---------- ``0.13.0`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Carma.md b/docs/version-specific/supported-software/c/Carma.md index 96165a00c..c3c506196 100644 --- a/docs/version-specific/supported-software/c/Carma.md +++ b/docs/version-specific/supported-software/c/Carma.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Carma Carma - A molecular dynamics analysis program @@ -7,3 +11,6 @@ Carma - A molecular dynamics analysis program version | toolchain --------|---------- ``2.01`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cartopy.md b/docs/version-specific/supported-software/c/Cartopy.md index ce4f5ecf6..a62920fab 100644 --- a/docs/version-specific/supported-software/c/Cartopy.md +++ b/docs/version-specific/supported-software/c/Cartopy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cartopy Cartopy is a Python package designed to make drawing maps for data analysis and visualisation easy. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``0.20.3`` | | ``foss/2021b`` ``0.20.3`` | | ``foss/2022a`` ``0.22.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Casanovo.md b/docs/version-specific/supported-software/c/Casanovo.md index 61dfb1bf3..65f6e0f65 100644 --- a/docs/version-specific/supported-software/c/Casanovo.md +++ b/docs/version-specific/supported-software/c/Casanovo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Casanovo De Novo Mass Spectrometry Peptide Sequencing with a Transformer Model @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``3.3.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cassiopeia.md b/docs/version-specific/supported-software/c/Cassiopeia.md index 1478dc914..d9e613234 100644 --- a/docs/version-specific/supported-software/c/Cassiopeia.md +++ b/docs/version-specific/supported-software/c/Cassiopeia.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cassiopeia A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction. @@ -7,3 +11,6 @@ A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction. version | toolchain --------|---------- ``2.0.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CastXML.md b/docs/version-specific/supported-software/c/CastXML.md index 76c1c9c94..84dc8ab67 100644 --- a/docs/version-specific/supported-software/c/CastXML.md +++ b/docs/version-specific/supported-software/c/CastXML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CastXML CastXML is a C-family abstract syntax tree XML output tool. @@ -9,3 +13,6 @@ version | toolchain ``0.4.3`` | ``GCCcore/8.3.0`` ``20160617`` | ``foss/2016a`` ``20180806`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CatBoost.md b/docs/version-specific/supported-software/c/CatBoost.md index 007c63285..2b31fb5dd 100644 --- a/docs/version-specific/supported-software/c/CatBoost.md +++ b/docs/version-specific/supported-software/c/CatBoost.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CatBoost CatBoost is a high-performance open source library for gradient boosting on decision trees @@ -7,3 +11,6 @@ CatBoost is a high-performance open source library for gradient boosting on deci version | toolchain --------|---------- ``1.2`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CatLearn.md b/docs/version-specific/supported-software/c/CatLearn.md index 610628052..acb45773c 100644 --- a/docs/version-specific/supported-software/c/CatLearn.md +++ b/docs/version-specific/supported-software/c/CatLearn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CatLearn An environment for atomistic machine learning in Python for applications in catalysis @@ -7,3 +11,6 @@ An environment for atomistic machine learning in Python for applications in cata version | toolchain --------|---------- ``0.6.2`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CatMAP.md b/docs/version-specific/supported-software/c/CatMAP.md index 88d7541fd..e2083d767 100644 --- a/docs/version-specific/supported-software/c/CatMAP.md +++ b/docs/version-specific/supported-software/c/CatMAP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CatMAP Catalyst Micro-kinetic Analysis Package for automated creation of micro-kinetic models used in catalyst screening. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170927`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20220519`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Catch2.md b/docs/version-specific/supported-software/c/Catch2.md index 3c2b4649e..63aa3045f 100644 --- a/docs/version-specific/supported-software/c/Catch2.md +++ b/docs/version-specific/supported-software/c/Catch2.md @@ -1,3 +1,7 @@ +--- +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) @@ -13,3 +17,6 @@ version | toolchain ``2.13.9`` | ``GCCcore/13.2.0`` ``2.13.9`` | ``system`` ``2.9.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cbc.md b/docs/version-specific/supported-software/c/Cbc.md index aa83137cf..1a8627362 100644 --- a/docs/version-specific/supported-software/c/Cbc.md +++ b/docs/version-specific/supported-software/c/Cbc.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.10.5`` | ``foss/2020b`` ``2.10.5`` | ``foss/2021a`` ``2.10.5`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellBender.md b/docs/version-specific/supported-software/c/CellBender.md index 88cd347a5..0e53ee209 100644 --- a/docs/version-specific/supported-software/c/CellBender.md +++ b/docs/version-specific/supported-software/c/CellBender.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CellBender CellBender is a software package for eliminating technical artifacts from high-throughput single-cell RNA sequencing (scRNA-seq) data @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.2.2`` | | ``foss/2022a`` ``0.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``0.3.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellChat.md b/docs/version-specific/supported-software/c/CellChat.md index e959ec8cc..d0216b1a1 100644 --- a/docs/version-specific/supported-software/c/CellChat.md +++ b/docs/version-specific/supported-software/c/CellChat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CellChat " R toolkit for inference, visualization and analysis of cell-cell communication from single-cell data @@ -7,3 +11,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellMix.md b/docs/version-specific/supported-software/c/CellMix.md index 4eb4a1fd0..d9d1d0f8f 100644 --- a/docs/version-specific/supported-software/c/CellMix.md +++ b/docs/version-specific/supported-software/c/CellMix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CellMix A Comprehensive Toolbox for Gene Expression Deconvolution @@ -7,3 +11,6 @@ A Comprehensive Toolbox for Gene Expression Deconvolution version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellOracle.md b/docs/version-specific/supported-software/c/CellOracle.md index 15a95837d..93c123491 100644 --- a/docs/version-specific/supported-software/c/CellOracle.md +++ b/docs/version-specific/supported-software/c/CellOracle.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CellOracle is a Python library for in silico gene perturbation analyses using si version | toolchain --------|---------- ``0.12.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellRanger-ARC.md b/docs/version-specific/supported-software/c/CellRanger-ARC.md index 640441deb..6e1597508 100644 --- a/docs/version-specific/supported-software/c/CellRanger-ARC.md +++ b/docs/version-specific/supported-software/c/CellRanger-ARC.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.0.0`` | ``system`` ``2.0.1`` | ``system`` ``2.0.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellRanger-ATAC.md b/docs/version-specific/supported-software/c/CellRanger-ATAC.md index 5b8baa577..d72c2bae9 100644 --- a/docs/version-specific/supported-software/c/CellRanger-ATAC.md +++ b/docs/version-specific/supported-software/c/CellRanger-ATAC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CellRanger-ATAC Cell Ranger ATAC is a set of analysis pipelines that process Chromium Single Cell ATAC data. @@ -9,3 +13,6 @@ version | toolchain ``1.2.0`` | ``system`` ``2.0.0`` | ``system`` ``2.1.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellRanger.md b/docs/version-specific/supported-software/c/CellRanger.md index 600c5639d..8e8d8fa29 100644 --- a/docs/version-specific/supported-software/c/CellRanger.md +++ b/docs/version-specific/supported-software/c/CellRanger.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | toolchain ``7.2.0`` | ``system`` ``8.0.0`` | ``system`` ``8.0.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellRank.md b/docs/version-specific/supported-software/c/CellRank.md index f02a42bda..f9a01d41b 100644 --- a/docs/version-specific/supported-software/c/CellRank.md +++ b/docs/version-specific/supported-software/c/CellRank.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.4.0`` | ``foss/2021a`` ``2.0.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CellTypist.md b/docs/version-specific/supported-software/c/CellTypist.md index fc093a6ef..5b3a35cda 100644 --- a/docs/version-specific/supported-software/c/CellTypist.md +++ b/docs/version-specific/supported-software/c/CellTypist.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CellTypist A tool for semi-automatic cell type annotation @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2021b`` ``1.6.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cellpose.md b/docs/version-specific/supported-software/c/Cellpose.md index 41175f6ed..42228682c 100644 --- a/docs/version-specific/supported-software/c/Cellpose.md +++ b/docs/version-specific/supported-software/c/Cellpose.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cellpose a generalist algorithm for cellular segmentation @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.6.5`` | | ``fosscuda/2020b`` ``2.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.2.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Centrifuge.md b/docs/version-specific/supported-software/c/Centrifuge.md index a27d72b51..4aafef85f 100644 --- a/docs/version-specific/supported-software/c/Centrifuge.md +++ b/docs/version-specific/supported-software/c/Centrifuge.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Centrifuge Classifier for metagenomic sequences @@ -11,3 +15,6 @@ version | toolchain ``1.0.4-beta`` | ``gompi/2020a`` ``1.0.4`` | ``gompi/2020b`` ``1.0.4`` | ``gompi/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cereal.md b/docs/version-specific/supported-software/c/Cereal.md index 46c921102..e4c75504e 100644 --- a/docs/version-specific/supported-software/c/Cereal.md +++ b/docs/version-specific/supported-software/c/Cereal.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.3.0`` | ``system`` ``1.3.2`` | ``GCCcore/12.2.0`` ``1.3.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cgl.md b/docs/version-specific/supported-software/c/Cgl.md index 2b9323ebe..c50963a9d 100644 --- a/docs/version-specific/supported-software/c/Cgl.md +++ b/docs/version-specific/supported-software/c/Cgl.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``0.60.3`` | ``foss/2021a`` ``0.60.7`` | ``foss/2022b`` ``0.60.8`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ChIPseeker.md b/docs/version-specific/supported-software/c/ChIPseeker.md index 370634715..decf39e12 100644 --- a/docs/version-specific/supported-software/c/ChIPseeker.md +++ b/docs/version-specific/supported-software/c/ChIPseeker.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This package implements functions to retrieve the nearest genes around the peak, version | versionsuffix | toolchain --------|---------------|---------- ``1.32.1`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CharLS.md b/docs/version-specific/supported-software/c/CharLS.md index 09118fc0a..0c68b722c 100644 --- a/docs/version-specific/supported-software/c/CharLS.md +++ b/docs/version-specific/supported-software/c/CharLS.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``2.4.1`` | ``GCCcore/11.3.0`` ``2.4.2`` | ``GCCcore/12.2.0`` ``2.4.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CheMPS2.md b/docs/version-specific/supported-software/c/CheMPS2.md index 7c55cb2c0..0961f0b7a 100644 --- a/docs/version-specific/supported-software/c/CheMPS2.md +++ b/docs/version-specific/supported-software/c/CheMPS2.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``1.8.9`` | ``intel/2018b`` ``1.8.9`` | ``intel/2019a`` ``1.8.9`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Check.md b/docs/version-specific/supported-software/c/Check.md index 3fab45c20..fde808781 100644 --- a/docs/version-specific/supported-software/c/Check.md +++ b/docs/version-specific/supported-software/c/Check.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``0.15.2`` | ``GCCcore/12.3.0`` ``0.15.2`` | ``GCCcore/13.2.0`` ``0.15.2`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CheckM-Database.md b/docs/version-specific/supported-software/c/CheckM-Database.md index db61507b7..c699dcd1d 100644 --- a/docs/version-specific/supported-software/c/CheckM-Database.md +++ b/docs/version-specific/supported-software/c/CheckM-Database.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CheckM provides a set of tools for assessing the quality of genomes recovered fr version | toolchain --------|---------- ``2015_01_16`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CheckM.md b/docs/version-specific/supported-software/c/CheckM.md index 6654a77b3..cdb1d645e 100644 --- a/docs/version-specific/supported-software/c/CheckM.md +++ b/docs/version-specific/supported-software/c/CheckM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CheckM CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``1.1.3`` | | ``foss/2021b`` ``1.1.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``1.2.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CheckM2.md b/docs/version-specific/supported-software/c/CheckM2.md index 8b588fc9f..ca6faf0ac 100644 --- a/docs/version-specific/supported-software/c/CheckM2.md +++ b/docs/version-specific/supported-software/c/CheckM2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CheckM2 Assessing the quality of metagenome-derived genome bins using machine learning @@ -7,3 +11,6 @@ Assessing the quality of metagenome-derived genome bins using machine learning version | toolchain --------|---------- ``1.0.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cheetah.md b/docs/version-specific/supported-software/c/Cheetah.md index cc39dc3ad..deb3802b5 100644 --- a/docs/version-specific/supported-software/c/Cheetah.md +++ b/docs/version-specific/supported-software/c/Cheetah.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cheetah Cheetah is an open source template engine and code generation tool. @@ -7,3 +11,6 @@ Cheetah is an open source template engine and code generation tool. version | versionsuffix | toolchain --------|---------------|---------- ``2.4.4`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Chemaxon-Marvin.md b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md index f05d3515a..8e45e36e2 100644 --- a/docs/version-specific/supported-software/c/Chemaxon-Marvin.md +++ b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``21.14`` | ``system`` ``23.9`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ChimPipe.md b/docs/version-specific/supported-software/c/ChimPipe.md index f99bf1eb8..988b7f556 100644 --- a/docs/version-specific/supported-software/c/ChimPipe.md +++ b/docs/version-specific/supported-software/c/ChimPipe.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.5`` | ``-Python-2.7.12`` | ``foss/2016b`` ``0.9.5`` | | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Chimera.md b/docs/version-specific/supported-software/c/Chimera.md index f92a8aa5d..41501a4a1 100644 --- a/docs/version-specific/supported-software/c/Chimera.md +++ b/docs/version-specific/supported-software/c/Chimera.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.10`` | ``-linux_x86_64`` | ``system`` ``1.16`` | ``-linux_x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Chromaprint.md b/docs/version-specific/supported-software/c/Chromaprint.md index fdc9a1b96..99d1537db 100644 --- a/docs/version-specific/supported-software/c/Chromaprint.md +++ b/docs/version-specific/supported-software/c/Chromaprint.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Chromaprint is the core component of the AcoustID project. It's a client-side li version | toolchain --------|---------- ``1.4.3`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Circlator.md b/docs/version-specific/supported-software/c/Circlator.md index 0d4159137..7e19f11a1 100644 --- a/docs/version-specific/supported-software/c/Circlator.md +++ b/docs/version-specific/supported-software/c/Circlator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Circlator A tool to circularize genome assemblies.s @@ -7,3 +11,6 @@ A tool to circularize genome assemblies.s version | toolchain --------|---------- ``1.5.5`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Circos.md b/docs/version-specific/supported-software/c/Circos.md index ca22e8024..76caeeab8 100644 --- a/docs/version-specific/supported-software/c/Circos.md +++ b/docs/version-specific/supported-software/c/Circos.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Circuitscape.md b/docs/version-specific/supported-software/c/Circuitscape.md index b40a2303a..e0547b5c1 100644 --- a/docs/version-specific/supported-software/c/Circuitscape.md +++ b/docs/version-specific/supported-software/c/Circuitscape.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Circuitscape Algorithms from circuit theory to predict connectivity in heterogeneous landscapes @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.12.3`` | ``-Julia-1.7.2`` | ``system`` ``5.12.3`` | ``-Julia-1.9.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clair3.md b/docs/version-specific/supported-software/c/Clair3.md index 0107810a3..64d8a6cdc 100644 --- a/docs/version-specific/supported-software/c/Clair3.md +++ b/docs/version-specific/supported-software/c/Clair3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Clair3 is a germline small variant caller for long-reads. Clair3 makes the best version | toolchain --------|---------- ``1.0.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clang-AOMP.md b/docs/version-specific/supported-software/c/Clang-AOMP.md index 493898d36..2f7504d86 100644 --- a/docs/version-specific/supported-software/c/Clang-AOMP.md +++ b/docs/version-specific/supported-software/c/Clang-AOMP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AOMP is an open source Clang/LLVM based compiler with added support for the Open version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clang-Python-bindings.md b/docs/version-specific/supported-software/c/Clang-Python-bindings.md index 93358948b..d66446c57 100644 --- a/docs/version-specific/supported-software/c/Clang-Python-bindings.md +++ b/docs/version-specific/supported-software/c/Clang-Python-bindings.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Clang-Python-bindings Python bindings for libclang @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clang.md b/docs/version-specific/supported-software/c/Clang.md index bc5909d5f..a0b4823fe 100644 --- a/docs/version-specific/supported-software/c/Clang.md +++ b/docs/version-specific/supported-software/c/Clang.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Clang C, C++, Objective-C compiler, based on LLVM. Does not include C++ standard library -- use libstdc++ from GCC. @@ -49,3 +53,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clarabel.rs.md b/docs/version-specific/supported-software/c/Clarabel.rs.md index 4ed0035aa..90ffe3043 100644 --- a/docs/version-specific/supported-software/c/Clarabel.rs.md +++ b/docs/version-specific/supported-software/c/Clarabel.rs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Clarabel.rs Interior-point solver for convex conic optimisation problems in Rust. @@ -7,3 +11,6 @@ Interior-point solver for convex conic optimisation problems in Rust. version | toolchain --------|---------- ``0.7.1`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CliMetLab.md b/docs/version-specific/supported-software/c/CliMetLab.md index b6597de75..ab9841f74 100644 --- a/docs/version-specific/supported-software/c/CliMetLab.md +++ b/docs/version-specific/supported-software/c/CliMetLab.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CliMetLab is a Python package aiming at simplifying access to climate and meteor version | toolchain --------|---------- ``0.12.6`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ClonalFrameML.md b/docs/version-specific/supported-software/c/ClonalFrameML.md index 8ccde425f..0def3e70b 100644 --- a/docs/version-specific/supported-software/c/ClonalFrameML.md +++ b/docs/version-specific/supported-software/c/ClonalFrameML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ClonalFrameML Efficient Inference of Recombination in Whole Bacterial Genomes @@ -7,3 +11,6 @@ Efficient Inference of Recombination in Whole Bacterial Genomes version | toolchain --------|---------- ``1.11`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CloudCompare.md b/docs/version-specific/supported-software/c/CloudCompare.md index 507f370b9..bc67b1ba5 100644 --- a/docs/version-specific/supported-software/c/CloudCompare.md +++ b/docs/version-specific/supported-software/c/CloudCompare.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CloudCompare 3D point cloud and mesh processing software @@ -7,3 +11,6 @@ version | toolchain --------|---------- ``2.12.4`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clp.md b/docs/version-specific/supported-software/c/Clp.md index 4de40e950..3029a3147 100644 --- a/docs/version-specific/supported-software/c/Clp.md +++ b/docs/version-specific/supported-software/c/Clp.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.17.7`` | ``foss/2021b`` ``1.17.8`` | ``foss/2022b`` ``1.17.9`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Clustal-Omega.md b/docs/version-specific/supported-software/c/Clustal-Omega.md index c31e76a1a..3faefa4b6 100644 --- a/docs/version-specific/supported-software/c/Clustal-Omega.md +++ b/docs/version-specific/supported-software/c/Clustal-Omega.md @@ -1,3 +1,7 @@ +--- +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 @@ -15,3 +19,6 @@ version | toolchain ``1.2.4`` | ``intel/2018a`` ``1.2.4`` | ``intel/2018b`` ``1.2.4`` | ``intel-compilers/2021.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ClustalW2.md b/docs/version-specific/supported-software/c/ClustalW2.md index 126d6a427..3c6c1f11b 100644 --- a/docs/version-specific/supported-software/c/ClustalW2.md +++ b/docs/version-specific/supported-software/c/ClustalW2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ClustalW2 ClustalW2 is a general purpose multiple sequence alignment program for DNA or proteins. @@ -16,3 +20,6 @@ version | toolchain ``2.1`` | ``intel/2017b`` ``2.1`` | ``intel/2018b`` ``2.1`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cluster-Buster.md b/docs/version-specific/supported-software/c/Cluster-Buster.md index 088e69531..a27f8b617 100644 --- a/docs/version-specific/supported-software/c/Cluster-Buster.md +++ b/docs/version-specific/supported-software/c/Cluster-Buster.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cluster-Buster Cluster-Buster: Finding dense clusters of motifs in DNA sequences @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20160106`` | ``intel/2016a`` ``20200507`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ClusterShell.md b/docs/version-specific/supported-software/c/ClusterShell.md index 3f8e7e5ea..de8d8fb71 100644 --- a/docs/version-specific/supported-software/c/ClusterShell.md +++ b/docs/version-specific/supported-software/c/ClusterShell.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ClusterShell is an event-driven open source Python library, designed to run loca version | toolchain --------|---------- ``1.7.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CmdStanR.md b/docs/version-specific/supported-software/c/CmdStanR.md index 337d169b9..e4a6ca293 100644 --- a/docs/version-specific/supported-software/c/CmdStanR.md +++ b/docs/version-specific/supported-software/c/CmdStanR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CmdStanR CmdStanR is a lightweight interface to Stan for R users @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Co-phylog.md b/docs/version-specific/supported-software/c/Co-phylog.md index 4e2f95bb8..b9445e6e6 100644 --- a/docs/version-specific/supported-software/c/Co-phylog.md +++ b/docs/version-specific/supported-software/c/Co-phylog.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Co-phylog: an assembly-free phylogenomic approach for closely related organisms version | toolchain --------|---------- ``20201012`` | ``GCC/7.3.0-2.30`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CoCoALib.md b/docs/version-specific/supported-software/c/CoCoALib.md index 9e40fae7e..352a346fc 100644 --- a/docs/version-specific/supported-software/c/CoCoALib.md +++ b/docs/version-specific/supported-software/c/CoCoALib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CoCoALib CoCoALib is a free GPL3 C++ library for doing Computations in Commutative Algebra. @@ -10,3 +14,6 @@ version | toolchain ``0.99700`` | ``GCC/8.3.0`` ``0.99818`` | ``GCC/11.3.0`` ``0.99850`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CoSymLib.md b/docs/version-specific/supported-software/c/CoSymLib.md index fe1b1a572..5cd759b43 100644 --- a/docs/version-specific/supported-software/c/CoSymLib.md +++ b/docs/version-specific/supported-software/c/CoSymLib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cosymlib is a python library for computing continuous symmetry & shape measures version | toolchain --------|---------- ``0.10.9`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CodAn.md b/docs/version-specific/supported-software/c/CodAn.md index e529e0b4a..db89ca7a0 100644 --- a/docs/version-specific/supported-software/c/CodAn.md +++ b/docs/version-specific/supported-software/c/CodAn.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CodAn (Coding sequence Annotator) is a computational tool designed to characteri version | toolchain --------|---------- ``1.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CodingQuarry.md b/docs/version-specific/supported-software/c/CodingQuarry.md index 5c8a4eba8..a57fb5616 100644 --- a/docs/version-specific/supported-software/c/CodingQuarry.md +++ b/docs/version-specific/supported-software/c/CodingQuarry.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CodingQuarry Highly accurate hidden Markov model gene prediction in fungal genomes using RNA-seq transcripts @@ -7,3 +11,6 @@ Highly accurate hidden Markov model gene prediction in fungal genomes using RNA- version | toolchain --------|---------- ``2.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cogent.md b/docs/version-specific/supported-software/c/Cogent.md index c205f5613..f92a64497 100644 --- a/docs/version-specific/supported-software/c/Cogent.md +++ b/docs/version-specific/supported-software/c/Cogent.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cogent is a tool for reconstructing the coding genome using high-quality full-le version | toolchain --------|---------- ``8.0.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Coin.md b/docs/version-specific/supported-software/c/Coin.md index e2a43c602..9dbce7e39 100644 --- a/docs/version-specific/supported-software/c/Coin.md +++ b/docs/version-specific/supported-software/c/Coin.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.0.0`` | ``GCC/10.3.0`` ``4.0.0`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CoinUtils.md b/docs/version-specific/supported-software/c/CoinUtils.md index 135a68747..c04780fa1 100644 --- a/docs/version-specific/supported-software/c/CoinUtils.md +++ b/docs/version-specific/supported-software/c/CoinUtils.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2.11.4`` | ``GCCcore/10.2.0`` ``2.11.6`` | ``GCC/11.2.0`` ``2.11.9`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ColabFold.md b/docs/version-specific/supported-software/c/ColabFold.md index ea5ed43f6..7df2aef7d 100644 --- a/docs/version-specific/supported-software/c/ColabFold.md +++ b/docs/version-specific/supported-software/c/ColabFold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ColabFold Making protein folding accessible to all. Predict proteins structures both in google colab and on your machine. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.5.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Commet.md b/docs/version-specific/supported-software/c/Commet.md index da43227fe..6902a9253 100644 --- a/docs/version-specific/supported-software/c/Commet.md +++ b/docs/version-specific/supported-software/c/Commet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Commet COMMET ("COmpare Multiple METagenomes") provides a global similarity overview between all datasets of a large metagenomic project. @@ -7,3 +11,6 @@ COMMET ("COmpare Multiple METagenomes") provides a global similarity overview be version | versionsuffix | toolchain --------|---------------|---------- ``20150415`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CompareM.md b/docs/version-specific/supported-software/c/CompareM.md index f68b1afa5..75f046a77 100644 --- a/docs/version-specific/supported-software/c/CompareM.md +++ b/docs/version-specific/supported-software/c/CompareM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CompareM A toolbox for comparative genomics. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.23`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.1.2`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Compass.md b/docs/version-specific/supported-software/c/Compass.md index 18f02d5b6..6a43be889 100644 --- a/docs/version-specific/supported-software/c/Compass.md +++ b/docs/version-specific/supported-software/c/Compass.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Compass In-Silico Modeling of Metabolic Heterogeneity using Single-Cell Transcriptomes. @@ -7,3 +11,6 @@ In-Silico Modeling of Metabolic Heterogeneity using Single-Cell Transcriptomes. version | toolchain --------|---------- ``2024.04`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md index 748433a80..16c4d9102 100644 --- a/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md +++ b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Compress-Raw-Zlib Low-Level Interface to zlib or zlib-ng compression library @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.202`` | ``GCCcore/11.3.0`` ``2.202`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Con3F.md b/docs/version-specific/supported-software/c/Con3F.md index 703f11327..a3dc6bcf4 100644 --- a/docs/version-specific/supported-software/c/Con3F.md +++ b/docs/version-specific/supported-software/c/Con3F.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Con3F Con3F is a Python package to read, manipulate and convert force field files @@ -7,3 +11,6 @@ Con3F is a Python package to read, manipulate and convert force field files version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20190329`` | ``-Python-3.7.2`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Concorde.md b/docs/version-specific/supported-software/c/Concorde.md index 5e522a4e3..195f1e356 100644 --- a/docs/version-specific/supported-software/c/Concorde.md +++ b/docs/version-specific/supported-software/c/Concorde.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Concorde Concorde is a computer code for the symmetric traveling salesman problem (TSP) and some related network optimization problems @@ -7,3 +11,6 @@ Concorde is a computer code for the symmetric traveling salesman problem (TSP) version | toolchain --------|---------- ``20031219`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md index 8866b5a92..cde1c2b23 100644 --- a/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md +++ b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ConcurrentVersionsSystem CVS is a version control system, an important component of Source Configuration Management (SCM). @@ -10,3 +14,6 @@ version | toolchain ``1.11.23`` | ``GCCcore/11.2.0`` ``1.11.23`` | ``GCCcore/4.9.3`` ``1.11.23`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ConnectomeWorkbench.md b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md index 2d7a6907a..ad51470e6 100644 --- a/docs/version-specific/supported-software/c/ConnectomeWorkbench.md +++ b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.3.2`` | | ``intel/2017b`` ``1.4.2`` | ``-rh_linux64`` | ``system`` ``1.5.0`` | | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Control-FREEC.md b/docs/version-specific/supported-software/c/Control-FREEC.md index 3096c82fb..acecd0f6c 100644 --- a/docs/version-specific/supported-software/c/Control-FREEC.md +++ b/docs/version-specific/supported-software/c/Control-FREEC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Control-FREEC Copy number and genotype annotation from whole genome and whole exome sequencing data. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CoordgenLibs.md b/docs/version-specific/supported-software/c/CoordgenLibs.md index 7f26819d1..43b334390 100644 --- a/docs/version-specific/supported-software/c/CoordgenLibs.md +++ b/docs/version-specific/supported-software/c/CoordgenLibs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CoordgenLibs Schrodinger-developed 2D Coordinate Generation @@ -13,3 +17,6 @@ version | toolchain ``3.0.1`` | ``gompi/2022a`` ``3.0.1`` | ``iimpi/2020a`` ``3.0.2`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Coot.md b/docs/version-specific/supported-software/c/Coot.md index e7a12ab68..ca488938f 100644 --- a/docs/version-specific/supported-software/c/Coot.md +++ b/docs/version-specific/supported-software/c/Coot.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Coot Coot is for macromolecular model building, model completion and validation, particularly suitable for protein modelling using X-ray data. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CopyKAT.md b/docs/version-specific/supported-software/c/CopyKAT.md index 432fdd263..0a24b3f9d 100644 --- a/docs/version-specific/supported-software/c/CopyKAT.md +++ b/docs/version-specific/supported-software/c/CopyKAT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CopyKAT CopyKAT: Inference of genomic copy number and subclonal structure of human tumors from high-throughput single cell RNAseq data @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.1.0`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Coreutils.md b/docs/version-specific/supported-software/c/Coreutils.md index ef773bf5c..ade19ae24 100644 --- a/docs/version-specific/supported-software/c/Coreutils.md +++ b/docs/version-specific/supported-software/c/Coreutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``9.0`` | ``GCCcore/11.2.0`` ``9.1`` | ``GCCcore/11.3.0`` ``9.1`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CppHeaderParser.md b/docs/version-specific/supported-software/c/CppHeaderParser.md index 68b5022af..94b2842d0 100644 --- a/docs/version-specific/supported-software/c/CppHeaderParser.md +++ b/docs/version-specific/supported-software/c/CppHeaderParser.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CppHeaderParser is a pure python module that will parse C++ header files and gen version | toolchain --------|---------- ``2.7.4`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CppUnit.md b/docs/version-specific/supported-software/c/CppUnit.md index 4a15214ac..b59db7a75 100644 --- a/docs/version-specific/supported-software/c/CppUnit.md +++ b/docs/version-specific/supported-software/c/CppUnit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CppUnit CppUnit is the C++ port of the famous JUnit framework for unit testing. @@ -16,3 +20,6 @@ version | toolchain ``1.15.1`` | ``GCCcore/12.3.0`` ``1.15.1`` | ``GCCcore/8.3.0`` ``1.15.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrayCCE.md b/docs/version-specific/supported-software/c/CrayCCE.md index a206d2777..e130a7548 100644 --- a/docs/version-specific/supported-software/c/CrayCCE.md +++ b/docs/version-specific/supported-software/c/CrayCCE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CrayCCE Toolchain using Cray compiler wrapper, using PrgEnv-cray (PE release: June 2019). @@ -7,3 +11,6 @@ Toolchain using Cray compiler wrapper, using PrgEnv-cray (PE release: June 2019) version | toolchain --------|---------- ``19.06`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrayGNU.md b/docs/version-specific/supported-software/c/CrayGNU.md index 23307dc2b..e13cbac40 100644 --- a/docs/version-specific/supported-software/c/CrayGNU.md +++ b/docs/version-specific/supported-software/c/CrayGNU.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CrayGNU Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June 2019). @@ -7,3 +11,6 @@ Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June version | toolchain --------|---------- ``19.06`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrayIntel.md b/docs/version-specific/supported-software/c/CrayIntel.md index 6c51d88a4..fe2b12f3b 100644 --- a/docs/version-specific/supported-software/c/CrayIntel.md +++ b/docs/version-specific/supported-software/c/CrayIntel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CrayIntel Toolchain using Cray compiler wrapper, using PrgEnv-intel (PE release: June 2019). @@ -7,3 +11,6 @@ Toolchain using Cray compiler wrapper, using PrgEnv-intel (PE release: June 2019 version | toolchain --------|---------- ``19.06`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrayPGI.md b/docs/version-specific/supported-software/c/CrayPGI.md index 6f544bee9..295858154 100644 --- a/docs/version-specific/supported-software/c/CrayPGI.md +++ b/docs/version-specific/supported-software/c/CrayPGI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CrayPGI Toolchain using Cray compiler wrapper, PrgEnv-pgi compiler (PE release: June 2019). @@ -7,3 +11,6 @@ Toolchain using Cray compiler wrapper, PrgEnv-pgi compiler (PE release: June 201 version | toolchain --------|---------- ``19.06`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrossMap.md b/docs/version-specific/supported-software/c/CrossMap.md index 1f1a155fd..bb6fd7b36 100644 --- a/docs/version-specific/supported-software/c/CrossMap.md +++ b/docs/version-specific/supported-software/c/CrossMap.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CrossMap is a program for genome coordinates conversion between different assem version | versionsuffix | toolchain --------|---------------|---------- ``0.3.9`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrossTalkZ.md b/docs/version-specific/supported-software/c/CrossTalkZ.md index b18f62652..a56c34689 100644 --- a/docs/version-specific/supported-software/c/CrossTalkZ.md +++ b/docs/version-specific/supported-software/c/CrossTalkZ.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ CrossTalkZ is a statistical method and software to assess the significance of cr version | toolchain --------|---------- ``1.4`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Crumble.md b/docs/version-specific/supported-software/c/Crumble.md index f55936106..566153379 100644 --- a/docs/version-specific/supported-software/c/Crumble.md +++ b/docs/version-specific/supported-software/c/Crumble.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Crumble Exploration of controlled loss of quality values for compressing CRAM files @@ -7,3 +11,6 @@ Exploration of controlled loss of quality values for compressing CRAM files version | toolchain --------|---------- ``0.8.3`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CryptoMiniSat.md b/docs/version-specific/supported-software/c/CryptoMiniSat.md index 05dcc052c..53c37c014 100644 --- a/docs/version-specific/supported-software/c/CryptoMiniSat.md +++ b/docs/version-specific/supported-software/c/CryptoMiniSat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CryptoMiniSat CryptoMiniSat is an advanced SAT solver @@ -7,3 +11,6 @@ CryptoMiniSat is an advanced SAT solver version | versionsuffix | toolchain --------|---------------|---------- ``5.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CrystFEL.md b/docs/version-specific/supported-software/c/CrystFEL.md index 38bc81b50..640482eb3 100644 --- a/docs/version-specific/supported-software/c/CrystFEL.md +++ b/docs/version-specific/supported-software/c/CrystFEL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.8.0`` | ``foss/2019a`` ``0.8.0`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CuCLARK.md b/docs/version-specific/supported-software/c/CuCLARK.md index 2a6338fef..75faa2cf0 100644 --- a/docs/version-specific/supported-software/c/CuCLARK.md +++ b/docs/version-specific/supported-software/c/CuCLARK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CuCLARK Metagenomic classifier for CUDA-enabled GPUs @@ -7,3 +11,6 @@ Metagenomic classifier for CUDA-enabled GPUs version | toolchain --------|---------- ``1.1`` | ``fosscuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CuPy.md b/docs/version-specific/supported-software/c/CuPy.md index af4f96d00..7662a7e5d 100644 --- a/docs/version-specific/supported-software/c/CuPy.md +++ b/docs/version-specific/supported-software/c/CuPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # CuPy CuPy is an open-source array library accelerated with NVIDIA CUDA. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``13.0.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``8.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``8.5.0`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cube.md b/docs/version-specific/supported-software/c/Cube.md index eab9da5d0..29907a377 100644 --- a/docs/version-specific/supported-software/c/Cube.md +++ b/docs/version-specific/supported-software/c/Cube.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cube, which is used as performance report explorer for Scalasca and Score-P, is version | toolchain --------|---------- ``4.3.4`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CubeGUI.md b/docs/version-specific/supported-software/c/CubeGUI.md index cb3083a02..f8b15bf92 100644 --- a/docs/version-specific/supported-software/c/CubeGUI.md +++ b/docs/version-specific/supported-software/c/CubeGUI.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``4.6`` | ``GCCcore/10.2.0`` ``4.6`` | ``GCCcore/10.3.0`` ``4.8`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CubeLib.md b/docs/version-specific/supported-software/c/CubeLib.md index f2ff80f1b..8ade9a582 100644 --- a/docs/version-specific/supported-software/c/CubeLib.md +++ b/docs/version-specific/supported-software/c/CubeLib.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``4.8.1`` | ``GCCcore/12.3.0`` ``4.8.2`` | ``GCCcore/12.2.0`` ``4.8.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/CubeWriter.md b/docs/version-specific/supported-software/c/CubeWriter.md index 73daa36c6..5f704e657 100644 --- a/docs/version-specific/supported-software/c/CubeWriter.md +++ b/docs/version-specific/supported-software/c/CubeWriter.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``4.8.1`` | ``GCCcore/12.3.0`` ``4.8.2`` | ``GCCcore/12.2.0`` ``4.8.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cufflinks.md b/docs/version-specific/supported-software/c/Cufflinks.md index f3221b29b..2da76e428 100644 --- a/docs/version-specific/supported-software/c/Cufflinks.md +++ b/docs/version-specific/supported-software/c/Cufflinks.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Cufflinks Transcript assembly, differential expression, and differential regulation for RNA-Seq @@ -15,3 +19,6 @@ version | toolchain ``20190706`` | ``GCC/10.2.0`` ``20190706`` | ``GCC/11.2.0`` ``20190706`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cython.md b/docs/version-specific/supported-software/c/Cython.md index c103fcb1f..9c983d308 100644 --- a/docs/version-specific/supported-software/c/Cython.md +++ b/docs/version-specific/supported-software/c/Cython.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``3.0.8`` | | ``GCCcore/12.2.0`` ``3.0.8`` | | ``GCCcore/12.3.0`` ``3.0a5`` | | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/Cytoscape.md b/docs/version-specific/supported-software/c/Cytoscape.md index ad487e716..9a5af8648 100644 --- a/docs/version-specific/supported-software/c/Cytoscape.md +++ b/docs/version-specific/supported-software/c/Cytoscape.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cytoscape is an open source software platform for visualizing complex networks version | versionsuffix | toolchain --------|---------------|---------- ``3.9.1`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/c-ares.md b/docs/version-specific/supported-software/c/c-ares.md index 02f873952..6a4587749 100644 --- a/docs/version-specific/supported-software/c/c-ares.md +++ b/docs/version-specific/supported-software/c/c-ares.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # c-ares c-ares is a C library for asynchronous DNS requests (including name resolves) @@ -12,3 +16,6 @@ version | toolchain ``1.18.1`` | ``GCCcore/11.3.0`` ``1.19.1`` | ``GCCcore/12.3.0`` ``1.27.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cDNA_Cupcake.md b/docs/version-specific/supported-software/c/cDNA_Cupcake.md index 46590d78e..cc4bf3672 100644 --- a/docs/version-specific/supported-software/c/cDNA_Cupcake.md +++ b/docs/version-specific/supported-software/c/cDNA_Cupcake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cDNA_Cupcake cDNA_Cupcake is a miscellaneous collection of Python and R scripts used for analyzing sequencing data. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cURL.md b/docs/version-specific/supported-software/c/cURL.md index 878f0ac18..b168f31dd 100644 --- a/docs/version-specific/supported-software/c/cURL.md +++ b/docs/version-specific/supported-software/c/cURL.md @@ -1,3 +1,7 @@ +--- +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. @@ -43,3 +47,6 @@ version | toolchain ``8.0.1`` | ``GCCcore/13.1.0`` ``8.3.0`` | ``GCCcore/13.2.0`` ``8.7.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cadaver.md b/docs/version-specific/supported-software/c/cadaver.md index 3b5de1b5d..5ec3805e0 100644 --- a/docs/version-specific/supported-software/c/cadaver.md +++ b/docs/version-specific/supported-software/c/cadaver.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cadaver cadaver is a command-line WebDAV client for Unix. @@ -7,3 +11,6 @@ cadaver is a command-line WebDAV client for Unix. version | toolchain --------|---------- ``0.23.3`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cairo.md b/docs/version-specific/supported-software/c/cairo.md index 8ccbd0601..31ad4833c 100644 --- a/docs/version-specific/supported-software/c/cairo.md +++ b/docs/version-specific/supported-software/c/cairo.md @@ -1,3 +1,7 @@ +--- +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 @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``1.17.4`` | | ``GCCcore/12.2.0`` ``1.17.8`` | | ``GCCcore/12.3.0`` ``1.18.0`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cairomm.md b/docs/version-specific/supported-software/c/cairomm.md index e15534ee3..1a5a66f20 100644 --- a/docs/version-specific/supported-software/c/cairomm.md +++ b/docs/version-specific/supported-software/c/cairomm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cairomm The Cairomm package provides a C++ interface to Cairo. @@ -9,3 +13,6 @@ version | toolchain ``1.12.2`` | ``GCCcore/6.4.0`` ``1.12.2`` | ``GCCcore/7.3.0`` ``1.16.2`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/canu.md b/docs/version-specific/supported-software/c/canu.md index 6b33b6c33..5dd06d801 100644 --- a/docs/version-specific/supported-software/c/canu.md +++ b/docs/version-specific/supported-software/c/canu.md @@ -1,3 +1,7 @@ +--- +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 @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``2.2`` | | ``GCCcore/10.3.0`` ``2.2`` | | ``GCCcore/11.2.0`` ``2.2`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/captum.md b/docs/version-specific/supported-software/c/captum.md index be039038b..ee20a282e 100644 --- a/docs/version-specific/supported-software/c/captum.md +++ b/docs/version-specific/supported-software/c/captum.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/carputils.md b/docs/version-specific/supported-software/c/carputils.md index ca3c9578b..302e6dcad 100644 --- a/docs/version-specific/supported-software/c/carputils.md +++ b/docs/version-specific/supported-software/c/carputils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # carputils carputils is a Python framework for generating and running openCARP examples. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200915`` | ``-Python-3.8.2`` | ``foss/2020a`` ``20210513`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/casacore.md b/docs/version-specific/supported-software/c/casacore.md index 715f943fb..b360f83be 100644 --- a/docs/version-specific/supported-software/c/casacore.md +++ b/docs/version-specific/supported-software/c/casacore.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.4.0`` | ``foss/2021b`` ``3.5.0`` | ``foss/2022a`` ``3.5.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/castor.md b/docs/version-specific/supported-software/c/castor.md index 2b14b8475..1dc981ad5 100644 --- a/docs/version-specific/supported-software/c/castor.md +++ b/docs/version-specific/supported-software/c/castor.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Efficient phylogenetic analyses on massive phylogenies comprising up to millions version | toolchain --------|---------- ``1.7.11`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/category_encoders.md b/docs/version-specific/supported-software/c/category_encoders.md index dc4a63e7c..8a3039c43 100644 --- a/docs/version-specific/supported-software/c/category_encoders.md +++ b/docs/version-specific/supported-software/c/category_encoders.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # category_encoders A set of scikit-learn-style transformers for encoding categorical variables into numeric by means of different techniques. @@ -7,3 +11,6 @@ A set of scikit-learn-style transformers for encoding categorical variables into version | toolchain --------|---------- ``2.4.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/causallift.md b/docs/version-specific/supported-software/c/causallift.md index 9805d3e62..581b8de6c 100644 --- a/docs/version-specific/supported-software/c/causallift.md +++ b/docs/version-specific/supported-software/c/causallift.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # causallift CausalLift: Python package for Uplift Modeling in real-world business; applicable for both A/B testing and observational data @@ -7,3 +11,6 @@ CausalLift: Python package for Uplift Modeling in real-world business; applicabl version | versionsuffix | toolchain --------|---------------|---------- ``1.0.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/causalml.md b/docs/version-specific/supported-software/c/causalml.md index 6f1bf14c3..aab63ff48 100644 --- a/docs/version-specific/supported-software/c/causalml.md +++ b/docs/version-specific/supported-software/c/causalml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # causalml Causal ML: A Python Package for Uplift Modeling and Causal Inference with ML @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0-20180610`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.8.0-20200909`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ccache.md b/docs/version-specific/supported-software/c/ccache.md index 99721355d..27aa353ab 100644 --- a/docs/version-specific/supported-software/c/ccache.md +++ b/docs/version-specific/supported-software/c/ccache.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ccache ccache-3.1.9: Cache for C/C++ compilers @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``4.9`` | | ``GCCcore/12.2.0`` ``4.9`` | | ``GCCcore/12.3.0`` ``4.9`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cclib.md b/docs/version-specific/supported-software/c/cclib.md index 234cfdc6e..154b9c0b9 100644 --- a/docs/version-specific/supported-software/c/cclib.md +++ b/docs/version-specific/supported-software/c/cclib.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.6.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``1.7.2`` | | ``foss/2021b`` ``1.8`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cctbx-base.md b/docs/version-specific/supported-software/c/cctbx-base.md index 3f691e2b2..e9015b262 100644 --- a/docs/version-specific/supported-software/c/cctbx-base.md +++ b/docs/version-specific/supported-software/c/cctbx-base.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2020.8`` | ``foss/2020b`` ``2020.8`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cctools.md b/docs/version-specific/supported-software/c/cctools.md index 38754d83c..a20a4dc9e 100644 --- a/docs/version-specific/supported-software/c/cctools.md +++ b/docs/version-specific/supported-software/c/cctools.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Cooperating Computing Tools (CCTools) help you to design and deploy scalabl version | toolchain --------|---------- ``7.0.22`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cdbfasta.md b/docs/version-specific/supported-software/c/cdbfasta.md index 139698bcd..d63d7fe51 100644 --- a/docs/version-specific/supported-software/c/cdbfasta.md +++ b/docs/version-specific/supported-software/c/cdbfasta.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cdbfasta Fasta file indexing and retrival tool @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cddlib.md b/docs/version-specific/supported-software/c/cddlib.md index c6ba6d553..7c58dbd56 100644 --- a/docs/version-specific/supported-software/c/cddlib.md +++ b/docs/version-specific/supported-software/c/cddlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cddlib An efficient implementation of the Double Description Method @@ -10,3 +14,6 @@ version | toolchain ``0.94j`` | ``GCCcore/8.3.0`` ``0.94m`` | ``GCCcore/11.3.0`` ``0.94m`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cdo-bindings.md b/docs/version-specific/supported-software/c/cdo-bindings.md index 7510cbc1e..8a54d382d 100644 --- a/docs/version-specific/supported-software/c/cdo-bindings.md +++ b/docs/version-specific/supported-software/c/cdo-bindings.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cdo-bindings Python interface to CDO. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.7`` | ``foss/2021b`` ``1.6.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cdsapi.md b/docs/version-specific/supported-software/c/cdsapi.md index 061875c2b..be2b4194a 100644 --- a/docs/version-specific/supported-software/c/cdsapi.md +++ b/docs/version-specific/supported-software/c/cdsapi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cdsapi Climate Data Store API @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.1.4`` | | ``foss/2019a`` ``0.3.0`` | | ``GCCcore/9.3.0`` ``0.5.1`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cell2location.md b/docs/version-specific/supported-software/c/cell2location.md index 4b9329eb3..ef5f97027 100644 --- a/docs/version-specific/supported-software/c/cell2location.md +++ b/docs/version-specific/supported-software/c/cell2location.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cell2location Comprehensive mapping of tissue cell architecture via integrated single cell and spatial transcriptomics (cell2location model) @@ -7,3 +11,6 @@ Comprehensive mapping of tissue cell architecture via integrated single cell an version | toolchain --------|---------- ``0.05-alpha`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/centerline.md b/docs/version-specific/supported-software/c/centerline.md index ea743f3ad..5376e4429 100644 --- a/docs/version-specific/supported-software/c/centerline.md +++ b/docs/version-specific/supported-software/c/centerline.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Roads, rivers and similar linear structures are often represented by long and co version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cffi.md b/docs/version-specific/supported-software/c/cffi.md index b524f1810..837835862 100644 --- a/docs/version-specific/supported-software/c/cffi.md +++ b/docs/version-specific/supported-software/c/cffi.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.15.1`` | ``GCCcore/12.3.0`` ``1.15.1`` | ``GCCcore/13.2.0`` ``1.16.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cftime.md b/docs/version-specific/supported-software/c/cftime.md index cc952332c..8360d7682 100644 --- a/docs/version-specific/supported-software/c/cftime.md +++ b/docs/version-specific/supported-software/c/cftime.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cftime Time-handling functionality from netcdf4-python @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cget.md b/docs/version-specific/supported-software/c/cget.md index 9d46baa78..1d1080ad0 100644 --- a/docs/version-specific/supported-software/c/cget.md +++ b/docs/version-specific/supported-software/c/cget.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cget Cmake package retrieval. This can be used to download and install cmake packages @@ -7,3 +11,6 @@ Cmake package retrieval. This can be used to download and install cmake packages version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/charm-gems.md b/docs/version-specific/supported-software/c/charm-gems.md index d54a09b9c..683868a57 100644 --- a/docs/version-specific/supported-software/c/charm-gems.md +++ b/docs/version-specific/supported-software/c/charm-gems.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This repository contains the gems C++ code and python bindings used in Freesurf version | toolchain --------|---------- ``1.3.3`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/chemprop.md b/docs/version-specific/supported-software/c/chemprop.md index 8c9d43b56..1d3e19b2a 100644 --- a/docs/version-specific/supported-software/c/chemprop.md +++ b/docs/version-specific/supported-software/c/chemprop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # chemprop Message Passing Neural Networks for Molecule Property Prediction @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.5.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/chewBBACA.md b/docs/version-specific/supported-software/c/chewBBACA.md index 6936f6a99..961c22fc3 100644 --- a/docs/version-specific/supported-software/c/chewBBACA.md +++ b/docs/version-specific/supported-software/c/chewBBACA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ chewBBACA stands for "BSR-Based Allele Calling Algorithm". chewBBACA is a compre version | versionsuffix | toolchain --------|---------------|---------- ``2.5.5`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/chi2comb.md b/docs/version-specific/supported-software/c/chi2comb.md index eeea221a1..5adf3cfdb 100644 --- a/docs/version-specific/supported-software/c/chi2comb.md +++ b/docs/version-specific/supported-software/c/chi2comb.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cumulative density function of linear combinations of independent chi-square ran version | toolchain --------|---------- ``0.0.3`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/chromVARmotifs.md b/docs/version-specific/supported-software/c/chromVARmotifs.md index b29d0359f..d7ad727fd 100644 --- a/docs/version-specific/supported-software/c/chromVARmotifs.md +++ b/docs/version-specific/supported-software/c/chromVARmotifs.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The goal of chromVARmotifs is to make it easy to use several different motif col version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cicero.md b/docs/version-specific/supported-software/c/cicero.md index 5455dbaad..37fcee4c1 100644 --- a/docs/version-specific/supported-software/c/cicero.md +++ b/docs/version-specific/supported-software/c/cicero.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cicero Cicero is an R package that provides tools for analyzing single-cell chromatin accessibility experiments. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.4.11`` | ``-R-4.0.3-Monocle3`` | ``foss/2020b`` ``1.3.8`` | ``-R-4.2.1-Monocle3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cimfomfa.md b/docs/version-specific/supported-software/c/cimfomfa.md index 95c790d37..2796e8eea 100644 --- a/docs/version-specific/supported-software/c/cimfomfa.md +++ b/docs/version-specific/supported-software/c/cimfomfa.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``22.273`` | ``GCCcore/11.2.0`` ``22.273`` | ``GCCcore/11.3.0`` ``22.273`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cisTEM.md b/docs/version-specific/supported-software/c/cisTEM.md index 25f5b6dba..02bffb00d 100644 --- a/docs/version-specific/supported-software/c/cisTEM.md +++ b/docs/version-specific/supported-software/c/cisTEM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ cisTEM is user-friendly software to process cryo-EM images of macromolecular com version | toolchain --------|---------- ``1.0.0-beta`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cliquer.md b/docs/version-specific/supported-software/c/cliquer.md index 4a152b1b5..a27901ebc 100644 --- a/docs/version-specific/supported-software/c/cliquer.md +++ b/docs/version-specific/supported-software/c/cliquer.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.21`` | ``GCCcore/11.3.0`` ``1.21`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cmocean.md b/docs/version-specific/supported-software/c/cmocean.md index 1ce4e3098..e0e980d2e 100644 --- a/docs/version-specific/supported-software/c/cmocean.md +++ b/docs/version-specific/supported-software/c/cmocean.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This package contains colormaps for commonly-used oceanographic variables. Most version | toolchain --------|---------- ``2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cmph.md b/docs/version-specific/supported-software/c/cmph.md index fba471b5b..264ffb1b2 100644 --- a/docs/version-specific/supported-software/c/cmph.md +++ b/docs/version-specific/supported-software/c/cmph.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cmph is a free minimal perfect hash C library, providing several algorithms in t version | toolchain --------|---------- ``2.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/code-cli.md b/docs/version-specific/supported-software/c/code-cli.md index 250ba00a7..25ebe737c 100644 --- a/docs/version-specific/supported-software/c/code-cli.md +++ b/docs/version-specific/supported-software/c/code-cli.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Visual Studio Code is a lightweight but powerful source code editor which r version | versionsuffix | toolchain --------|---------------|---------- ``1.85.1`` | ``-x64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/code-server.md b/docs/version-specific/supported-software/c/code-server.md index 757325f7e..bd119ed4d 100644 --- a/docs/version-specific/supported-software/c/code-server.md +++ b/docs/version-specific/supported-software/c/code-server.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # code-server Run VS Code on any machine anywhere and access it in the browser. @@ -12,3 +16,6 @@ version | toolchain ``4.22.1`` | ``system`` ``4.89.1`` | ``system`` ``4.9.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/colossalai.md b/docs/version-specific/supported-software/c/colossalai.md index c54cb6657..8a6ea0bfc 100644 --- a/docs/version-specific/supported-software/c/colossalai.md +++ b/docs/version-specific/supported-software/c/colossalai.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # colossalai Colossal-AI: A Unified Deep Learning System for Big Model Era @@ -7,3 +11,6 @@ Colossal-AI: A Unified Deep Learning System for Big Model Era version | versionsuffix | toolchain --------|---------------|---------- ``0.1.8`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/conan.md b/docs/version-specific/supported-software/c/conan.md index 9e94845c8..c723d6d20 100644 --- a/docs/version-specific/supported-software/c/conan.md +++ b/docs/version-specific/supported-software/c/conan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # conan Decentralized, open-source (MIT), C/C++ package manager. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.58.0`` | ``GCCcore/11.3.0`` ``1.60.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/configparser.md b/docs/version-specific/supported-software/c/configparser.md index 13ace09c6..93f918fec 100644 --- a/docs/version-specific/supported-software/c/configparser.md +++ b/docs/version-specific/supported-software/c/configparser.md @@ -1,3 +1,7 @@ +--- +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 @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/configurable-http-proxy.md b/docs/version-specific/supported-software/c/configurable-http-proxy.md index e1da10040..4be955397 100644 --- a/docs/version-specific/supported-software/c/configurable-http-proxy.md +++ b/docs/version-specific/supported-software/c/configurable-http-proxy.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``4.5.5`` | | ``GCCcore/12.2.0`` ``4.5.6`` | | ``GCCcore/12.3.0`` ``4.6.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/connected-components-3d.md b/docs/version-specific/supported-software/c/connected-components-3d.md index afe040a06..6d325c22b 100644 --- a/docs/version-specific/supported-software/c/connected-components-3d.md +++ b/docs/version-specific/supported-software/c/connected-components-3d.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ cc3d is an implementation of connected components in three dimensions using a 26 version | toolchain --------|---------- ``3.12.1`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/contextily.md b/docs/version-specific/supported-software/c/contextily.md index 72cf53f24..a7b1c36b4 100644 --- a/docs/version-specific/supported-software/c/contextily.md +++ b/docs/version-specific/supported-software/c/contextily.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ contextily is a small Python 3 package to retrieve tile maps from the internet. version | toolchain --------|---------- ``1.5.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cooler.md b/docs/version-specific/supported-software/c/cooler.md index 5988d4ebb..b8c8363a7 100644 --- a/docs/version-specific/supported-software/c/cooler.md +++ b/docs/version-specific/supported-software/c/cooler.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cooler is a support library for a storage format, also called cooler, used to st version | toolchain --------|---------- ``0.9.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/core-counter.md b/docs/version-specific/supported-software/c/core-counter.md index b42baa5c8..5d9ebf76a 100644 --- a/docs/version-specific/supported-software/c/core-counter.md +++ b/docs/version-specific/supported-software/c/core-counter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # core-counter Tool to check available cores and OMP threads @@ -7,3 +11,6 @@ Tool to check available cores and OMP threads version | toolchain --------|---------- ``1.1.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/corner.md b/docs/version-specific/supported-software/c/corner.md index 1015b48ab..8c7c508bf 100644 --- a/docs/version-specific/supported-software/c/corner.md +++ b/docs/version-specific/supported-software/c/corner.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # corner Make some beautiful corner plots. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/coverage.md b/docs/version-specific/supported-software/c/coverage.md index f46c04d30..5a1866bac 100644 --- a/docs/version-specific/supported-software/c/coverage.md +++ b/docs/version-specific/supported-software/c/coverage.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``7.2.3`` | | ``GCCcore/12.3.0`` ``7.2.7`` | | ``GCCcore/11.3.0`` ``7.4.4`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cowsay.md b/docs/version-specific/supported-software/c/cowsay.md index 4508e3ebf..f02ed3e59 100644 --- a/docs/version-specific/supported-software/c/cowsay.md +++ b/docs/version-specific/supported-software/c/cowsay.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cowsay Configurable talking characters in ASCII art @@ -7,3 +11,6 @@ Configurable talking characters in ASCII art version | toolchain --------|---------- ``3.04`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cpio.md b/docs/version-specific/supported-software/c/cpio.md index 4de58cb0d..101d7907d 100644 --- a/docs/version-specific/supported-software/c/cpio.md +++ b/docs/version-specific/supported-software/c/cpio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cpio The cpio package contains tools for archiving. @@ -11,3 +15,6 @@ version | toolchain ``2.15`` | ``GCCcore/12.3.0`` ``2.15`` | ``GCCcore/13.2.0`` ``2.15`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cppy.md b/docs/version-specific/supported-software/c/cppy.md index 465aa5aa2..20fef7787 100644 --- a/docs/version-specific/supported-software/c/cppy.md +++ b/docs/version-specific/supported-software/c/cppy.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.2.1`` | ``GCCcore/12.2.0`` ``1.2.1`` | ``GCCcore/12.3.0`` ``1.2.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cppyy.md b/docs/version-specific/supported-software/c/cppyy.md index a48928d21..f623b3bea 100644 --- a/docs/version-specific/supported-software/c/cppyy.md +++ b/docs/version-specific/supported-software/c/cppyy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cppyy cppyy is an automatic, run-time, Python-C++ bindings generator, for calling C++ from Python and Python from C++. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``GCCcore/11.3.0`` ``3.1.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cppzmq.md b/docs/version-specific/supported-software/c/cppzmq.md index b0ff35cf4..fe13ea23c 100644 --- a/docs/version-specific/supported-software/c/cppzmq.md +++ b/docs/version-specific/supported-software/c/cppzmq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cppzmq cppzmq is a C++ binding for libzmq. @@ -7,3 +11,6 @@ cppzmq is a C++ binding for libzmq. version | toolchain --------|---------- ``4.9.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cpu_features.md b/docs/version-specific/supported-software/c/cpu_features.md index 8734d978c..1e2f0563b 100644 --- a/docs/version-specific/supported-software/c/cpu_features.md +++ b/docs/version-specific/supported-software/c/cpu_features.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cpu_features A cross-platform C library to retrieve CPU features (such as available instructions) at runtime. @@ -7,3 +11,6 @@ A cross-platform C library to retrieve CPU features (such as available instructi version | toolchain --------|---------- ``0.6.0`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cram.md b/docs/version-specific/supported-software/c/cram.md index 374b825c6..e5e140def 100644 --- a/docs/version-specific/supported-software/c/cram.md +++ b/docs/version-specific/supported-software/c/cram.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cram Cram is a functional testing framework for command line applications. @@ -7,3 +11,6 @@ Cram is a functional testing framework for command line applications. version | toolchain --------|---------- ``0.7`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cramtools.md b/docs/version-specific/supported-software/c/cramtools.md index 82d6ba6a9..064278ad9 100644 --- a/docs/version-specific/supported-software/c/cramtools.md +++ b/docs/version-specific/supported-software/c/cramtools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-Java-1.7.0_80`` | ``system`` ``3.0`` | ``-Java-1.7.0_80`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/crb-blast.md b/docs/version-specific/supported-software/c/crb-blast.md index 0e33275c1..3f4225a35 100644 --- a/docs/version-specific/supported-software/c/crb-blast.md +++ b/docs/version-specific/supported-software/c/crb-blast.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.6.9`` | | ``gompi/2021a`` ``0.6.9`` | | ``gompi/2021b`` ``0.6.9`` | | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cromwell.md b/docs/version-specific/supported-software/c/cromwell.md index 8f3d967b7..19b02d467 100644 --- a/docs/version-specific/supported-software/c/cromwell.md +++ b/docs/version-specific/supported-software/c/cromwell.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cromwell Cromwell is a Workflow Management System geared towards scientific workflows. @@ -7,3 +11,6 @@ Cromwell is a Workflow Management System geared towards scientific workflows. version | versionsuffix | toolchain --------|---------------|---------- ``56`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/crossguid.md b/docs/version-specific/supported-software/c/crossguid.md index 80980ca7d..d67151525 100644 --- a/docs/version-specific/supported-software/c/crossguid.md +++ b/docs/version-specific/supported-software/c/crossguid.md @@ -1,3 +1,7 @@ +--- +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: @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20190529`` | ``GCCcore/11.2.0`` ``20190529`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cryoCARE.md b/docs/version-specific/supported-software/c/cryoCARE.md index 10bc0cafb..a868de99c 100644 --- a/docs/version-specific/supported-software/c/cryoCARE.md +++ b/docs/version-specific/supported-software/c/cryoCARE.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cryoDRGN.md b/docs/version-specific/supported-software/c/cryoDRGN.md index c35b67c08..2b7ab4045 100644 --- a/docs/version-specific/supported-software/c/cryoDRGN.md +++ b/docs/version-specific/supported-software/c/cryoDRGN.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cryptography.md b/docs/version-specific/supported-software/c/cryptography.md index abe3ac060..e671552c8 100644 --- a/docs/version-specific/supported-software/c/cryptography.md +++ b/docs/version-specific/supported-software/c/cryptography.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cryptography cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``41.0.1`` | ``GCCcore/12.3.0`` ``41.0.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cscope.md b/docs/version-specific/supported-software/c/cscope.md index 5eb53145d..c478a7329 100644 --- a/docs/version-specific/supported-software/c/cscope.md +++ b/docs/version-specific/supported-software/c/cscope.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cscope Cscope is a developer's tool for browsing source code. @@ -7,3 +11,6 @@ Cscope is a developer's tool for browsing source code. version | toolchain --------|---------- ``15.9`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/csvkit.md b/docs/version-specific/supported-software/c/csvkit.md index 3e43e7fd6..c5e92bee8 100644 --- a/docs/version-specific/supported-software/c/csvkit.md +++ b/docs/version-specific/supported-software/c/csvkit.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ctags.md b/docs/version-specific/supported-software/c/ctags.md index 994621009..5ec7220e7 100644 --- a/docs/version-specific/supported-software/c/ctags.md +++ b/docs/version-specific/supported-software/c/ctags.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Ctags generates an index (or tag) file of language objects found in source files version | toolchain --------|---------- ``5.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ctffind.md b/docs/version-specific/supported-software/c/ctffind.md index 412e75f49..878d0f801 100644 --- a/docs/version-specific/supported-software/c/ctffind.md +++ b/docs/version-specific/supported-software/c/ctffind.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ctffind Program for finding CTFs of electron micrographs. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``4.1.14`` | | ``foss/2023a`` ``4.1.14`` | | ``fosscuda/2019b`` ``4.1.14`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/ctffind5.md b/docs/version-specific/supported-software/c/ctffind5.md index 814cdd6bf..92e5b2d03 100644 --- a/docs/version-specific/supported-software/c/ctffind5.md +++ b/docs/version-specific/supported-software/c/ctffind5.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ctffind5 Program for finding CTFs of electron micrographs. @@ -7,3 +11,6 @@ Program for finding CTFs of electron micrographs. version | toolchain --------|---------- ``5.0.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cuDNN.md b/docs/version-specific/supported-software/c/cuDNN.md index 523d37134..7c7d3106e 100644 --- a/docs/version-specific/supported-software/c/cuDNN.md +++ b/docs/version-specific/supported-software/c/cuDNN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cuDNN The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cuSPARSELt.md b/docs/version-specific/supported-software/c/cuSPARSELt.md index abfada078..2113794d7 100644 --- a/docs/version-specific/supported-software/c/cuSPARSELt.md +++ b/docs/version-specific/supported-software/c/cuSPARSELt.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0.3`` | ``-CUDA-11.4.1`` | ``system`` ``0.6.0.6`` | ``-CUDA-12.1.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cuTENSOR.md b/docs/version-specific/supported-software/c/cuTENSOR.md index 432b24ae8..86775394a 100644 --- a/docs/version-specific/supported-software/c/cuTENSOR.md +++ b/docs/version-specific/supported-software/c/cuTENSOR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cuTENSOR The cuTENSOR Library is a GPU-accelerated tensor linear algebra library providing tensor contraction, reduction and elementwise operations. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/currentNe.md b/docs/version-specific/supported-software/c/currentNe.md index 2c3fbf946..8cde0d8cc 100644 --- a/docs/version-specific/supported-software/c/currentNe.md +++ b/docs/version-specific/supported-software/c/currentNe.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # currentNe Estimation of current effective population using artificial neural networks. @@ -7,3 +11,6 @@ Estimation of current effective population using artificial neural networks. version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/custodian.md b/docs/version-specific/supported-software/c/custodian.md index 4ead77e04..eb0ca5a43 100644 --- a/docs/version-specific/supported-software/c/custodian.md +++ b/docs/version-specific/supported-software/c/custodian.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # custodian A simple JIT job management framework in Python. @@ -7,3 +11,6 @@ A simple JIT job management framework in Python. version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cutadapt.md b/docs/version-specific/supported-software/c/cutadapt.md index 4c9d05d7b..857691370 100644 --- a/docs/version-specific/supported-software/c/cutadapt.md +++ b/docs/version-specific/supported-software/c/cutadapt.md @@ -1,3 +1,7 @@ +--- +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. @@ -35,3 +39,6 @@ version | versionsuffix | toolchain ``3.5`` | | ``GCCcore/11.2.0`` ``4.2`` | | ``GCCcore/11.3.0`` ``4.4`` | | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cuteSV.md b/docs/version-specific/supported-software/c/cuteSV.md index 6c912a724..cf7da57d3 100644 --- a/docs/version-specific/supported-software/c/cuteSV.md +++ b/docs/version-specific/supported-software/c/cuteSV.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ cuteSV uses tailored methods to collect the signatures of various types of SVs version | toolchain --------|---------- ``2.0.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cwltool.md b/docs/version-specific/supported-software/c/cwltool.md index e42f2d671..bd1f38c7c 100644 --- a/docs/version-specific/supported-software/c/cwltool.md +++ b/docs/version-specific/supported-software/c/cwltool.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cwltool Common workflow language (CWL) reference implementation. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.1.20221008225030`` | ``foss/2021a`` ``3.1.20221018083734`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cxxopts.md b/docs/version-specific/supported-software/c/cxxopts.md index 8b0d0092c..82c66066c 100644 --- a/docs/version-specific/supported-software/c/cxxopts.md +++ b/docs/version-specific/supported-software/c/cxxopts.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cxxopts cxxopts is a lightweight C++ command line option parser @@ -7,3 +11,6 @@ cxxopts is a lightweight C++ command line option parser version | toolchain --------|---------- ``3.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cysignals.md b/docs/version-specific/supported-software/c/cysignals.md index 8e7c181ba..b4701a244 100644 --- a/docs/version-specific/supported-software/c/cysignals.md +++ b/docs/version-specific/supported-software/c/cysignals.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cysignals The cysignals package provides mechanisms to handle interrupts (and other signals and errors) in Cython code. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.10.2`` | ``-Python-3.6.3`` | ``intel/2017b`` ``1.11.2`` | | ``GCCcore/11.3.0`` ``1.11.4`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cython-blis.md b/docs/version-specific/supported-software/c/cython-blis.md index f45f4970d..664304d97 100644 --- a/docs/version-specific/supported-software/c/cython-blis.md +++ b/docs/version-specific/supported-software/c/cython-blis.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Fast BLAS-like operations from Python and Cython, without the tears. Provides th version | toolchain --------|---------- ``0.9.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cytoolz.md b/docs/version-specific/supported-software/c/cytoolz.md index c90ed7fa9..f0ae3fcca 100644 --- a/docs/version-specific/supported-software/c/cytoolz.md +++ b/docs/version-specific/supported-software/c/cytoolz.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cytoolz Cython implementation of the toolz package, which provides high performance utility functions for iterables, functions, and dictionaries. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.10.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``0.10.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cytosim.md b/docs/version-specific/supported-software/c/cytosim.md index c9362e00a..703a76c52 100644 --- a/docs/version-specific/supported-software/c/cytosim.md +++ b/docs/version-specific/supported-software/c/cytosim.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cytosim Cytosim is a cytoskeleton simulation engine written in C++ working on Mac OS, GNU/Linux and Windows (with Cygwin). @@ -7,3 +11,6 @@ Cytosim is a cytoskeleton simulation engine written in C++ working on Mac OS, G version | versionsuffix | toolchain --------|---------------|---------- ``20190117`` | ``-mkl`` | ``gomkl/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/cyvcf2.md b/docs/version-specific/supported-software/c/cyvcf2.md index 63502e664..654e15858 100644 --- a/docs/version-specific/supported-software/c/cyvcf2.md +++ b/docs/version-specific/supported-software/c/cyvcf2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # cyvcf2 cython + htslib == fast VCF and BCF processing @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.10.10`` | ``-Python-3.6.6`` | ``foss/2018b`` ``0.11.5`` | | ``foss/2019a`` ``0.11.5`` | | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/c/index.md b/docs/version-specific/supported-software/c/index.md index 4ad1bc86b..e1d8a9140 100644 --- a/docs/version-specific/supported-software/c/index.md +++ b/docs/version-specific/supported-software/c/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (c) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - *c* - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [c-ares](c-ares.md) * [C3D](C3D.md) * [cadaver](cadaver.md) diff --git a/docs/version-specific/supported-software/d/DALI.md b/docs/version-specific/supported-software/d/DALI.md index 8bac18135..56537d8e3 100644 --- a/docs/version-specific/supported-software/d/DALI.md +++ b/docs/version-specific/supported-software/d/DALI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DALI R-package for the analysis of single-cell TCR/BCR data in the Seurat ecosystem @@ -7,3 +11,6 @@ R-package for the analysis of single-cell TCR/BCR data in the Seurat ecosystem version | versionsuffix | toolchain --------|---------------|---------- ``2.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DANPOS2.md b/docs/version-specific/supported-software/d/DANPOS2.md index faf363da3..90b548629 100644 --- a/docs/version-specific/supported-software/d/DANPOS2.md +++ b/docs/version-specific/supported-software/d/DANPOS2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DANPOS2 A toolkit for Dynamic Analysis of Nucleosome and Protein Occupancy by Sequencing, version 2 @@ -7,3 +11,6 @@ A toolkit for Dynamic Analysis of Nucleosome and Protein Occupancy by Sequencing version | versionsuffix | toolchain --------|---------------|---------- ``2.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DAS_Tool.md b/docs/version-specific/supported-software/d/DAS_Tool.md index 7dee75867..e51dd5734 100644 --- a/docs/version-specific/supported-software/d/DAS_Tool.md +++ b/docs/version-specific/supported-software/d/DAS_Tool.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DB.md b/docs/version-specific/supported-software/d/DB.md index f0cc85867..2698852c7 100644 --- a/docs/version-specific/supported-software/d/DB.md +++ b/docs/version-specific/supported-software/d/DB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DB Berkeley DB enables the development of custom data management solutions, without the overhead traditionally associated with such custom projects. @@ -24,3 +28,6 @@ version | toolchain ``6.2.23`` | ``foss/2016a`` ``6.2.32`` | ``GCCcore/6.4.0`` ``6.2.32`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DBCSR.md b/docs/version-specific/supported-software/d/DBCSR.md index f24cd6a45..c02b6c91b 100644 --- a/docs/version-specific/supported-software/d/DBCSR.md +++ b/docs/version-specific/supported-software/d/DBCSR.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DBCSR stands for Distributed Blocked Compressed Sparse Row. DBCSR is a library d version | toolchain --------|---------- ``2.5.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DBD-mysql.md b/docs/version-specific/supported-software/d/DBD-mysql.md index 720d06899..25a86cce5 100644 --- a/docs/version-specific/supported-software/d/DBD-mysql.md +++ b/docs/version-specific/supported-software/d/DBD-mysql.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DBD-mysql Perl binding for MySQL @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``4.050`` | | ``GCC/11.3.0`` ``4.050`` | | ``GCC/12.2.0`` ``4.050`` | ``-Perl-5.28.1`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DBG2OLC.md b/docs/version-specific/supported-software/d/DBG2OLC.md index 6d8fc87fc..71176941a 100644 --- a/docs/version-specific/supported-software/d/DBG2OLC.md +++ b/docs/version-specific/supported-software/d/DBG2OLC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DBG2OLC DBG2OLC:Efficient Assembly of Large Genomes Using Long Erroneous Reads of the Third Generation Sequencing Technologies @@ -11,3 +15,6 @@ version | toolchain ``20180221`` | ``GCC/6.4.0-2.28`` ``20180221`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``20200724`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DB_File.md b/docs/version-specific/supported-software/d/DB_File.md index 7eda9af97..705e77389 100644 --- a/docs/version-specific/supported-software/d/DB_File.md +++ b/docs/version-specific/supported-software/d/DB_File.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DB_File Perl5 access to Berkeley DB version 1.x. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``1.857`` | | ``GCCcore/11.2.0`` ``1.858`` | | ``GCCcore/11.3.0`` ``1.859`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DBus.md b/docs/version-specific/supported-software/d/DBus.md index a7a8132d2..dec0a7dd8 100644 --- a/docs/version-specific/supported-software/d/DBus.md +++ b/docs/version-specific/supported-software/d/DBus.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``1.15.2`` | ``GCCcore/12.2.0`` ``1.15.4`` | ``GCCcore/12.3.0`` ``1.15.8`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DCMTK.md b/docs/version-specific/supported-software/d/DCMTK.md index 34ae677bc..3be746173 100644 --- a/docs/version-specific/supported-software/d/DCMTK.md +++ b/docs/version-specific/supported-software/d/DCMTK.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``3.6.6`` | ``GCCcore/10.3.0`` ``3.6.6`` | ``GCCcore/11.2.0`` ``3.6.7`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DEICODE.md b/docs/version-specific/supported-software/d/DEICODE.md index 0d8fcd974..8338fc82f 100644 --- a/docs/version-specific/supported-software/d/DEICODE.md +++ b/docs/version-specific/supported-software/d/DEICODE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DEICODE is a form of Aitchison Distance that is robust to high levels of sparsit version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DETONATE.md b/docs/version-specific/supported-software/d/DETONATE.md index f7f924cc4..514678f3e 100644 --- a/docs/version-specific/supported-software/d/DETONATE.md +++ b/docs/version-specific/supported-software/d/DETONATE.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.11`` | ``GCC/12.3.0`` ``1.11`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DFA.md b/docs/version-specific/supported-software/d/DFA.md index 03cbf4f9d..84804834d 100644 --- a/docs/version-specific/supported-software/d/DFA.md +++ b/docs/version-specific/supported-software/d/DFA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DFA Python library for modeling DFAs, Moore Machines, and Transition Systems. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.4`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``2.1.2`` | | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DFT-D3.md b/docs/version-specific/supported-software/d/DFT-D3.md index 59098ef7f..96a24c9d5 100644 --- a/docs/version-specific/supported-software/d/DFT-D3.md +++ b/docs/version-specific/supported-software/d/DFT-D3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DFT-D3 DFT-D3 implements a dispersion correction for density functionals, Hartree-Fock and semi-empirical quantum chemical methods. @@ -12,3 +16,6 @@ version | toolchain ``3.2.0`` | ``intel-compilers/2021.2.0`` ``3.2.0`` | ``intel-compilers/2021.4.0`` ``3.2.0`` | ``intel-compilers/2022.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DFT-D4.md b/docs/version-specific/supported-software/d/DFT-D4.md index 73178fdea..958465626 100644 --- a/docs/version-specific/supported-software/d/DFT-D4.md +++ b/docs/version-specific/supported-software/d/DFT-D4.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DFT-D4 Generally Applicable Atomic-Charge Dependent London Dispersion Correction. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``3.6.0`` | | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DFTB+.md b/docs/version-specific/supported-software/d/DFTB+.md index 97c581246..d7cf80c5e 100644 --- a/docs/version-specific/supported-software/d/DFTB+.md +++ b/docs/version-specific/supported-software/d/DFTB+.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``19.1`` | ``-Python-2.7.16-mpi`` | ``foss/2019b`` ``19.1`` | ``-Python-2.7.16`` | ``foss/2019b`` ``21.1`` | | ``intel/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DGL.md b/docs/version-specific/supported-software/d/DGL.md index 05162c95f..3e40a3d2d 100644 --- a/docs/version-specific/supported-software/d/DGL.md +++ b/docs/version-specific/supported-software/d/DGL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DIA-NN.md b/docs/version-specific/supported-software/d/DIA-NN.md index 3cd2e3abd..3cd8b58ac 100644 --- a/docs/version-specific/supported-software/d/DIA-NN.md +++ b/docs/version-specific/supported-software/d/DIA-NN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DIA-NN DIA-NN is a universal software for data-independent acquisition (DIA) proteomics data processing. @@ -7,3 +11,6 @@ DIA-NN is a universal software for data-independent acquisition (DIA) proteomic version | toolchain --------|---------- ``1.8.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DIAL.md b/docs/version-specific/supported-software/d/DIAL.md index c0ca7db89..bfad96161 100644 --- a/docs/version-specific/supported-software/d/DIAL.md +++ b/docs/version-specific/supported-software/d/DIAL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DIAL (De novo Identification of Alleles) is a collection of programs to automat version | toolchain --------|---------- ``2011.06.06`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DIALOGUE.md b/docs/version-specific/supported-software/d/DIALOGUE.md index 628c464b8..d02a091e7 100644 --- a/docs/version-specific/supported-software/d/DIALOGUE.md +++ b/docs/version-specific/supported-software/d/DIALOGUE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DIALOGUE is a dimensionality reduction method that uses cross-cell-type associat version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20230228`` | ``-R-4.2.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DIAMOND.md b/docs/version-specific/supported-software/d/DIAMOND.md index 59392c96f..6116ec5e0 100644 --- a/docs/version-specific/supported-software/d/DIAMOND.md +++ b/docs/version-specific/supported-software/d/DIAMOND.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DIAMOND Accelerated BLAST compatible local sequence aligner @@ -25,3 +29,6 @@ version | toolchain ``2.1.8`` | ``GCC/12.2.0`` ``2.1.8`` | ``GCC/12.3.0`` ``2.1.9`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DIRAC.md b/docs/version-specific/supported-software/d/DIRAC.md index ecf6db7db..cc17d69b7 100644 --- a/docs/version-specific/supported-software/d/DIRAC.md +++ b/docs/version-specific/supported-software/d/DIRAC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DIRAC DIRAC: Program for Atomic and Molecular Direct Iterative Relativistic All-electron Calculations @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``23.0`` | | ``intel/2022b`` ``23.0`` | ``-int64`` | ``intel/2023a`` ``23.0`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DLPack.md b/docs/version-specific/supported-software/d/DLPack.md index ec9d76d64..ba45e49d6 100644 --- a/docs/version-specific/supported-software/d/DLPack.md +++ b/docs/version-specific/supported-software/d/DLPack.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DLPack DLPack is a stable in-memory data structure for an ndarray system to interact with a variety of frameworks. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.3`` | ``GCC/10.3.0`` ``0.8`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DL_POLY_4.md b/docs/version-specific/supported-software/d/DL_POLY_4.md index fc276a7f2..8cc00b210 100644 --- a/docs/version-specific/supported-software/d/DL_POLY_4.md +++ b/docs/version-specific/supported-software/d/DL_POLY_4.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DL_POLY_4 DL_POLY is a general purpose classical molecular dynamics (MD) simulation software @@ -10,3 +14,6 @@ version | toolchain ``5.0.0`` | ``intel/2020b`` ``5.1.0`` | ``foss/2022b`` ``5.1.0`` | ``intel/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DL_POLY_Classic.md b/docs/version-specific/supported-software/d/DL_POLY_Classic.md index d6cea0397..21611bdf2 100644 --- a/docs/version-specific/supported-software/d/DL_POLY_Classic.md +++ b/docs/version-specific/supported-software/d/DL_POLY_Classic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DL_POLY_Classic DL_POLY Classic is a general purpose (parallel and serial) molecular dynamics simulation package. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.10`` | | ``intel/2019b`` ``1.9`` | ``-PLUMED-2.2.3`` | ``intel/2016b`` ``1.9`` | | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DMCfun.md b/docs/version-specific/supported-software/d/DMCfun.md index 24288fb09..5e45cfa0a 100644 --- a/docs/version-specific/supported-software/d/DMCfun.md +++ b/docs/version-specific/supported-software/d/DMCfun.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DMCfun Diffusion Model of Conflict (DMC) in Reaction Time Tasks @@ -7,3 +11,6 @@ Diffusion Model of Conflict (DMC) in Reaction Time Tasks version | versionsuffix | toolchain --------|---------------|---------- ``1.3.0`` | ``-R-3.6.2`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DMLC-Core.md b/docs/version-specific/supported-software/d/DMLC-Core.md index 6bb3b740a..5bab0d2dd 100644 --- a/docs/version-specific/supported-software/d/DMLC-Core.md +++ b/docs/version-specific/supported-software/d/DMLC-Core.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.5`` | ``GCC/10.3.0`` ``0.5`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DMTCP.md b/docs/version-specific/supported-software/d/DMTCP.md index 95b61a077..2b0b82dc1 100644 --- a/docs/version-specific/supported-software/d/DMTCP.md +++ b/docs/version-specific/supported-software/d/DMTCP.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``2.6.0`` | ``GCCcore/8.2.0`` ``2.6.0`` | ``GCCcore/9.3.0`` ``3.0.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DOLFIN.md b/docs/version-specific/supported-software/d/DOLFIN.md index 7102bab43..d0d3c3223 100644 --- a/docs/version-specific/supported-software/d/DOLFIN.md +++ b/docs/version-specific/supported-software/d/DOLFIN.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.1.0.post1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DP3.md b/docs/version-specific/supported-software/d/DP3.md index 336e7227e..a4d5b8ef6 100644 --- a/docs/version-specific/supported-software/d/DP3.md +++ b/docs/version-specific/supported-software/d/DP3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DP3 DP3: streaming processing pipeline for radio interferometric data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.0`` | ``foss/2022a`` ``6.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DRAGMAP.md b/docs/version-specific/supported-software/d/DRAGMAP.md index 134bd4dce..ee4e1418b 100644 --- a/docs/version-specific/supported-software/d/DRAGMAP.md +++ b/docs/version-specific/supported-software/d/DRAGMAP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DRAGMAP Dragmap is the Dragen mapper/aligner Open Source Software. @@ -7,3 +11,6 @@ Dragmap is the Dragen mapper/aligner Open Source Software. version | toolchain --------|---------- ``1.3.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DROP.md b/docs/version-specific/supported-software/d/DROP.md index 77539b13b..33dfc9886 100644 --- a/docs/version-specific/supported-software/d/DROP.md +++ b/docs/version-specific/supported-software/d/DROP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DROP Pipeline to find aberrant events in RNA-Seq data, useful for diagnosis of rare disorders @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DSA.md b/docs/version-specific/supported-software/d/DSA.md index 38bee8065..f46b38ad6 100644 --- a/docs/version-specific/supported-software/d/DSA.md +++ b/docs/version-specific/supported-software/d/DSA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DSA Digital Sorting Algorithm @@ -7,3 +11,6 @@ Digital Sorting Algorithm version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DSRC.md b/docs/version-specific/supported-software/d/DSRC.md index 4a08cb984..324f67183 100644 --- a/docs/version-specific/supported-software/d/DSRC.md +++ b/docs/version-specific/supported-software/d/DSRC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DNA Sequence Reads Compression is an application designed for compression of dat version | versionsuffix | toolchain --------|---------------|---------- ``2.0rc`` | ``-linux-64-bit`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DUBStepR.md b/docs/version-specific/supported-software/d/DUBStepR.md index 6b0047079..d2c7ad9a2 100644 --- a/docs/version-specific/supported-software/d/DUBStepR.md +++ b/docs/version-specific/supported-software/d/DUBStepR.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DUBStepR (Determining the Underlying Basis using Step-wise Regression) is a feat version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-R-4.1.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Dakota.md b/docs/version-specific/supported-software/d/Dakota.md index c5fbce71a..9cc06f0cf 100644 --- a/docs/version-specific/supported-software/d/Dakota.md +++ b/docs/version-specific/supported-software/d/Dakota.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Dakota project delivers both state-of-the-art research and robust, usable s version | toolchain --------|---------- ``6.16.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DaliLite.md b/docs/version-specific/supported-software/d/DaliLite.md index ff1c191a3..158c8902d 100644 --- a/docs/version-specific/supported-software/d/DaliLite.md +++ b/docs/version-specific/supported-software/d/DaliLite.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DaliLite is a light version of the software run by the Dali server. The web serv version | toolchain --------|---------- ``4.1`` | ``gompi/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Dalton.md b/docs/version-specific/supported-software/d/Dalton.md index c18085afe..8bcf06949 100644 --- a/docs/version-specific/supported-software/d/Dalton.md +++ b/docs/version-specific/supported-software/d/Dalton.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2016`` | ``-i8`` | ``intel/2017b`` ``2020.0`` | | ``foss/2021a`` ``2020.1`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeMixT.md b/docs/version-specific/supported-software/d/DeMixT.md index 09ae15cdb..3bd126cd7 100644 --- a/docs/version-specific/supported-software/d/DeMixT.md +++ b/docs/version-specific/supported-software/d/DeMixT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Cell type-specific deconvolution of heterogeneous tumor samples with two or thre version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeconICA.md b/docs/version-specific/supported-software/d/DeconICA.md index 8824f6d10..b5da87658 100644 --- a/docs/version-specific/supported-software/d/DeconICA.md +++ b/docs/version-specific/supported-software/d/DeconICA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Deconvolution of transcriptome through Immune Component Analysis (DeconICA) is a version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeepLabCut.md b/docs/version-specific/supported-software/d/DeepLabCut.md index e972c6b46..7e635e5f1 100644 --- a/docs/version-specific/supported-software/d/DeepLabCut.md +++ b/docs/version-specific/supported-software/d/DeepLabCut.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DeepLabCut Markerless tracking of user-defined features with deep learning @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeepLoc.md b/docs/version-specific/supported-software/d/DeepLoc.md index fab2a1f26..0d2f9c5fd 100644 --- a/docs/version-specific/supported-software/d/DeepLoc.md +++ b/docs/version-specific/supported-software/d/DeepLoc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DeepLoc DeepLoc 2.0 predicts the subcellular localization(s) of eukaryotic proteins @@ -7,3 +11,6 @@ DeepLoc 2.0 predicts the subcellular localization(s) of eukaryotic proteins version | toolchain --------|---------- ``2.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeepMod2.md b/docs/version-specific/supported-software/d/DeepMod2.md index 3d727947d..fe9c69699 100644 --- a/docs/version-specific/supported-software/d/DeepMod2.md +++ b/docs/version-specific/supported-software/d/DeepMod2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DeepMod2 DeepMod2 is a computational tool for detecting DNA methylation and modifications from Oxford Nanopore reads. @@ -7,3 +11,6 @@ DeepMod2 is a computational tool for detecting DNA methylation and modifications version | toolchain --------|---------- ``0.0.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeepSurv.md b/docs/version-specific/supported-software/d/DeepSurv.md index 04681a0f8..ff6c3d636 100644 --- a/docs/version-specific/supported-software/d/DeepSurv.md +++ b/docs/version-specific/supported-software/d/DeepSurv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DeepSurv DeepSurv is a deep learning approach to survival analysis. @@ -7,3 +11,6 @@ DeepSurv is a deep learning approach to survival analysis. version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0-20180922`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Delft3D.md b/docs/version-specific/supported-software/d/Delft3D.md index 74670d3a2..9db86c5e2 100644 --- a/docs/version-specific/supported-software/d/Delft3D.md +++ b/docs/version-specific/supported-software/d/Delft3D.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Delft3D Simulation of multi-dimensional hydrodynamic flows and transport phenomena, including sediments. Delft3D-FLOW is part of Delft3D 4. @@ -7,3 +11,6 @@ Simulation of multi-dimensional hydrodynamic flows and transport phenomena, incl version | versionsuffix | toolchain --------|---------------|---------- ``4.04.01`` | ``-FLOW`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Delly.md b/docs/version-specific/supported-software/d/Delly.md index 209eeeee5..7c0e89f11 100644 --- a/docs/version-specific/supported-software/d/Delly.md +++ b/docs/version-specific/supported-software/d/Delly.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.8.7`` | | ``gompi/2020b`` ``1.1.5`` | | ``GCC/11.3.0`` ``1.1.6`` | | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DeltaLake.md b/docs/version-specific/supported-software/d/DeltaLake.md index 2ec362ddc..c6f75f2e4 100644 --- a/docs/version-specific/supported-software/d/DeltaLake.md +++ b/docs/version-specific/supported-software/d/DeltaLake.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Native Delta Lake Python binding based on delta-rs with Pandas integration. The version | toolchain --------|---------- ``0.15.1`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Demystify.md b/docs/version-specific/supported-software/d/Demystify.md index ac01edfbd..5485ec939 100644 --- a/docs/version-specific/supported-software/d/Demystify.md +++ b/docs/version-specific/supported-software/d/Demystify.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Demystify is a tool which allows puzzles to be expressed in a high-level constra version | toolchain --------|---------- ``0.0.17`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DendroPy.md b/docs/version-specific/supported-software/d/DendroPy.md index 3a30dd83b..c3623b00b 100644 --- a/docs/version-specific/supported-software/d/DendroPy.md +++ b/docs/version-specific/supported-software/d/DendroPy.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``4.5.2`` | | ``GCCcore/11.3.0`` ``4.5.2`` | | ``GCCcore/12.2.0`` ``4.6.1`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DensPart.md b/docs/version-specific/supported-software/d/DensPart.md index cbe6d3509..6f82dafda 100644 --- a/docs/version-specific/supported-software/d/DensPart.md +++ b/docs/version-specific/supported-software/d/DensPart.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DensPart Atoms-in-molecules density partitioning schemes based on stockholder recipe @@ -7,3 +11,6 @@ Atoms-in-molecules density partitioning schemes based on stockholder recipe version | toolchain --------|---------- ``20220603`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Deprecated.md b/docs/version-specific/supported-software/d/Deprecated.md index 33c28444e..28a6428d1 100644 --- a/docs/version-specific/supported-software/d/Deprecated.md +++ b/docs/version-specific/supported-software/d/Deprecated.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Deprecated If you need to mark a function or a method as deprecated, you can use the @deprecated decorator. @@ -9,3 +13,6 @@ version | toolchain ``1.2.13`` | ``foss/2021a`` ``1.2.13`` | ``foss/2022a`` ``1.2.14`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Detectron2.md b/docs/version-specific/supported-software/d/Detectron2.md index df8268b64..7103a83a3 100644 --- a/docs/version-specific/supported-software/d/Detectron2.md +++ b/docs/version-specific/supported-software/d/Detectron2.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.6`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Devito.md b/docs/version-specific/supported-software/d/Devito.md index 62da8a7d2..e3091fc54 100644 --- a/docs/version-specific/supported-software/d/Devito.md +++ b/docs/version-specific/supported-software/d/Devito.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Devito is a domain-specific Language (DSL) and code generation framework for pe version | versionsuffix | toolchain --------|---------------|---------- ``4.6.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DiCE-ML.md b/docs/version-specific/supported-software/d/DiCE-ML.md index 698620678..91459ee7b 100644 --- a/docs/version-specific/supported-software/d/DiCE-ML.md +++ b/docs/version-specific/supported-software/d/DiCE-ML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DiCE-ML Diverse Counterfactual Explanations (DiCE) for ML @@ -7,3 +11,6 @@ Diverse Counterfactual Explanations (DiCE) for ML version | toolchain --------|---------- ``0.9`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Dice.md b/docs/version-specific/supported-software/d/Dice.md index 37ea075bf..a27b6039c 100644 --- a/docs/version-specific/supported-software/d/Dice.md +++ b/docs/version-specific/supported-software/d/Dice.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20221025`` | ``foss/2022a`` ``20240101`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DicomBrowser.md b/docs/version-specific/supported-software/d/DicomBrowser.md index e5fb8a07d..863da237d 100644 --- a/docs/version-specific/supported-software/d/DicomBrowser.md +++ b/docs/version-specific/supported-software/d/DicomBrowser.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DicomBrowser DicomBrowser is an application for inspecting and modifying DICOM metadata in many files at once. @@ -7,3 +11,6 @@ DicomBrowser is an application for inspecting and modifying DICOM metadata in ma version | versionsuffix | toolchain --------|---------------|---------- ``1.7.0b5`` | ``-Java-1.7.0_80`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DiffBind.md b/docs/version-specific/supported-software/d/DiffBind.md index 857fbc569..89495c06f 100644 --- a/docs/version-specific/supported-software/d/DiffBind.md +++ b/docs/version-specific/supported-software/d/DiffBind.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Compute differentially bound sites from multiple ChIP-seq experiments using aff version | versionsuffix | toolchain --------|---------------|---------- ``3.6.5`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Diffutils.md b/docs/version-specific/supported-software/d/Diffutils.md index 580a93af1..e2c2cf997 100644 --- a/docs/version-specific/supported-software/d/Diffutils.md +++ b/docs/version-specific/supported-software/d/Diffutils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Diffutils Diffutils: GNU diff utilities - find the differences between files @@ -7,3 +11,6 @@ Diffutils: GNU diff utilities - find the differences between files version | toolchain --------|---------- ``3.3`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DistributedStream.md b/docs/version-specific/supported-software/d/DistributedStream.md index 5588c1a32..4c43006fb 100644 --- a/docs/version-specific/supported-software/d/DistributedStream.md +++ b/docs/version-specific/supported-software/d/DistributedStream.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A MPI distributed stream benchmark, useful to identifying nodes with poor memory version | toolchain --------|---------- ``1.0`` | ``gompi/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DjVuLibre.md b/docs/version-specific/supported-software/d/DjVuLibre.md index 517040b07..407d9766b 100644 --- a/docs/version-specific/supported-software/d/DjVuLibre.md +++ b/docs/version-specific/supported-software/d/DjVuLibre.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DjVuLibre DjVuLibre is an open source (GPL'ed) implementation of DjVu, including viewers, browser plugins, decoders, simple encoders, and utilities. @@ -7,3 +11,6 @@ DjVuLibre is an open source (GPL'ed) implementation of DjVu, including viewers, version | toolchain --------|---------- ``3.5.28`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Doris.md b/docs/version-specific/supported-software/d/Doris.md index da906bde6..b08bcaa24 100644 --- a/docs/version-specific/supported-software/d/Doris.md +++ b/docs/version-specific/supported-software/d/Doris.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Doris Delft object-oriented radar interferometric software @@ -10,3 +14,6 @@ version | toolchain ``4.04beta4`` | ``foss/2018a`` ``4.04beta4`` | ``intel/2017a`` ``4.06beta2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DosageConvertor.md b/docs/version-specific/supported-software/d/DosageConvertor.md index 5a06090fa..d86e60c93 100644 --- a/docs/version-specific/supported-software/d/DosageConvertor.md +++ b/docs/version-specific/supported-software/d/DosageConvertor.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DosageConvertor is a C++ tool to convert dosage files (in VCF format) from Minim version | toolchain --------|---------- ``1.0.4`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DoubletFinder.md b/docs/version-specific/supported-software/d/DoubletFinder.md index 65c298b09..9100ab91c 100644 --- a/docs/version-specific/supported-software/d/DoubletFinder.md +++ b/docs/version-specific/supported-software/d/DoubletFinder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DoubletFinder R package for detecting doublets in single-cell RNA sequencing data @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Doxygen.md b/docs/version-specific/supported-software/d/Doxygen.md index f9ee5d3f7..41e8dc76a 100644 --- a/docs/version-specific/supported-software/d/Doxygen.md +++ b/docs/version-specific/supported-software/d/Doxygen.md @@ -1,3 +1,7 @@ +--- +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. @@ -34,3 +38,6 @@ version | toolchain ``1.9.5`` | ``GCCcore/12.2.0`` ``1.9.7`` | ``GCCcore/12.3.0`` ``1.9.8`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Drake.md b/docs/version-specific/supported-software/d/Drake.md index 53dae00f1..5e0875978 100644 --- a/docs/version-specific/supported-software/d/Drake.md +++ b/docs/version-specific/supported-software/d/Drake.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Drake is a simple-to-use, extensible, text-based data workflow tool that organiz version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/Dsuite.md b/docs/version-specific/supported-software/d/Dsuite.md index f25ba5974..8005c4afa 100644 --- a/docs/version-specific/supported-software/d/Dsuite.md +++ b/docs/version-specific/supported-software/d/Dsuite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Dsuite Fast calculation of the ABBA-BABA statistics across many populations/species @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DualSPHysics.md b/docs/version-specific/supported-software/d/DualSPHysics.md index 4d6d6e238..815606d14 100644 --- a/docs/version-specific/supported-software/d/DualSPHysics.md +++ b/docs/version-specific/supported-software/d/DualSPHysics.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.0.175`` | ``-CUDA-%(cudaver)s`` | ``GCC/11.2.0`` ``5.0.175`` | | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/DyMat.md b/docs/version-specific/supported-software/d/DyMat.md index 36acabb2e..b9b535cce 100644 --- a/docs/version-specific/supported-software/d/DyMat.md +++ b/docs/version-specific/supported-software/d/DyMat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # DyMat Read and process result files from Dymola and OpenModelica with Python. @@ -7,3 +11,6 @@ Read and process result files from Dymola and OpenModelica with Python. version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-2020-12-12`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dRep.md b/docs/version-specific/supported-software/d/dRep.md index 5d677903e..bc5a69c5b 100644 --- a/docs/version-specific/supported-software/d/dRep.md +++ b/docs/version-specific/supported-software/d/dRep.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``foss/2021a`` ``3.4.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dSFMT.md b/docs/version-specific/supported-software/d/dSFMT.md index d12383be9..6b34e6ef6 100644 --- a/docs/version-specific/supported-software/d/dSFMT.md +++ b/docs/version-specific/supported-software/d/dSFMT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dSFMT Double precision SIMD-oriented Fast Mersenne Twister. @@ -7,3 +11,6 @@ Double precision SIMD-oriented Fast Mersenne Twister. version | toolchain --------|---------- ``2.2.5`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dadi.md b/docs/version-specific/supported-software/d/dadi.md index 855fcf677..f7c4ff387 100644 --- a/docs/version-specific/supported-software/d/dadi.md +++ b/docs/version-specific/supported-software/d/dadi.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.0`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dagitty.md b/docs/version-specific/supported-software/d/dagitty.md index ff447cee4..602f5107c 100644 --- a/docs/version-specific/supported-software/d/dagitty.md +++ b/docs/version-specific/supported-software/d/dagitty.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A port of the web-based software 'DAGitty', available at , f version | versionsuffix | toolchain --------|---------------|---------- ``0.2-2`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/damageproto.md b/docs/version-specific/supported-software/d/damageproto.md index 36cf6d9f8..fcf73ceaa 100644 --- a/docs/version-specific/supported-software/d/damageproto.md +++ b/docs/version-specific/supported-software/d/damageproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # damageproto X protocol and ancillary headers for xinerama @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2016a`` ``1.2.1`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dammit.md b/docs/version-specific/supported-software/d/dammit.md index 05073bd86..a29795a97 100644 --- a/docs/version-specific/supported-software/d/dammit.md +++ b/docs/version-specific/supported-software/d/dammit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ dammit is a simple de novo transcriptome annotator. It was born out of the obse version | versionsuffix | toolchain --------|---------------|---------- ``0.3.2`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dask-labextension.md b/docs/version-specific/supported-software/d/dask-labextension.md index 9dd501baf..1604e67fe 100644 --- a/docs/version-specific/supported-software/d/dask-labextension.md +++ b/docs/version-specific/supported-software/d/dask-labextension.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``6.0.0`` | ``foss/2022a`` ``7.0.0`` | ``foss/2023a`` ``7.0.0`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dask.md b/docs/version-specific/supported-software/d/dask.md index 1d61b3d3c..7228145f9 100644 --- a/docs/version-specific/supported-software/d/dask.md +++ b/docs/version-specific/supported-software/d/dask.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dask Dask provides multi-core execution on larger-than-memory datasets using blocked algorithms and task scheduling. @@ -46,3 +50,6 @@ version | versionsuffix | toolchain ``2023.7.1`` | | ``foss/2022b`` ``2023.9.2`` | | ``foss/2023a`` ``2024.5.1`` | | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/datalad.md b/docs/version-specific/supported-software/d/datalad.md index 7a87f50b5..88fd3327b 100644 --- a/docs/version-specific/supported-software/d/datalad.md +++ b/docs/version-specific/supported-software/d/datalad.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.18.4`` | ``GCCcore/12.2.0`` ``0.19.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/datamash.md b/docs/version-specific/supported-software/d/datamash.md index 721ffe593..08e442f76 100644 --- a/docs/version-specific/supported-software/d/datamash.md +++ b/docs/version-specific/supported-software/d/datamash.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # datamash GNU datamash performs basic numeric, textual and statistical operations on input data files @@ -11,3 +15,6 @@ version | toolchain ``1.5`` | ``GCCcore/7.3.0`` ``1.5`` | ``GCCcore/8.3.0`` ``1.8`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/davix.md b/docs/version-specific/supported-software/d/davix.md index a3a934762..7e2302a00 100644 --- a/docs/version-specific/supported-software/d/davix.md +++ b/docs/version-specific/supported-software/d/davix.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.6.6`` | ``intel/2017a`` ``0.7.5`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dbus-glib.md b/docs/version-specific/supported-software/d/dbus-glib.md index cd77f012f..cbc962fa2 100644 --- a/docs/version-specific/supported-software/d/dbus-glib.md +++ b/docs/version-specific/supported-software/d/dbus-glib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dbus-glib D-Bus is a message bus system, a simple way for applications to talk to one another. @@ -17,3 +21,6 @@ version | toolchain ``0.112`` | ``GCCcore/10.3.0`` ``0.112`` | ``GCCcore/11.2.0`` ``0.112`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dclone.md b/docs/version-specific/supported-software/d/dclone.md index 4cc90b355..2b1c87aed 100644 --- a/docs/version-specific/supported-software/d/dclone.md +++ b/docs/version-specific/supported-software/d/dclone.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Low level functions for implementing maximum likelihood estimating procedures fo version | versionsuffix | toolchain --------|---------------|---------- ``2.3-0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dcm2niix.md b/docs/version-specific/supported-software/d/dcm2niix.md index 4a389f6a5..970c828f3 100644 --- a/docs/version-specific/supported-software/d/dcm2niix.md +++ b/docs/version-specific/supported-software/d/dcm2niix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dcm2niix dcm2niix is a designed program to convert neuroimaging data from the DICOM format to the NIfTI format. @@ -15,3 +19,6 @@ version | toolchain ``1.0.20211006`` | ``GCCcore/10.3.0`` ``1.0.20220720`` | ``GCCcore/11.3.0`` ``1.0.20230411`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dd.md b/docs/version-specific/supported-software/d/dd.md index cb05a213a..3aa1b687e 100644 --- a/docs/version-specific/supported-software/d/dd.md +++ b/docs/version-specific/supported-software/d/dd.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ dd is a package for working with binary decision diagrams that includes both a p version | versionsuffix | toolchain --------|---------------|---------- ``0.5.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deal.II.md b/docs/version-specific/supported-software/d/deal.II.md index e21aebf4c..a4ccc6dbd 100644 --- a/docs/version-specific/supported-software/d/deal.II.md +++ b/docs/version-specific/supported-software/d/deal.II.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``9.1.1`` | ``intel/2019a`` ``9.3.3`` | ``foss/2021a`` ``9.5.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deap.md b/docs/version-specific/supported-software/d/deap.md index fe10370e4..071d4897e 100644 --- a/docs/version-specific/supported-software/d/deap.md +++ b/docs/version-specific/supported-software/d/deap.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DEAP is a novel evolutionary computation framework for rapid prototyping and tes version | versionsuffix | toolchain --------|---------------|---------- ``0.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/decona.md b/docs/version-specific/supported-software/d/decona.md index 073ff77af..7813606a2 100644 --- a/docs/version-specific/supported-software/d/decona.md +++ b/docs/version-specific/supported-software/d/decona.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # decona fastq to polished sequenses: pipeline suitable for mixed samples and long (Nanopore) reads @@ -7,3 +11,6 @@ fastq to polished sequenses: pipeline suitable for mixed samples and long (Nanop version | versionsuffix | toolchain --------|---------------|---------- ``0.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deconf.md b/docs/version-specific/supported-software/d/deconf.md index bd792b90f..d016fd5c9 100644 --- a/docs/version-specific/supported-software/d/deconf.md +++ b/docs/version-specific/supported-software/d/deconf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # deconf decomposition (deconfounding) of OMICS datasets in heterogeneous tissues @@ -7,3 +11,6 @@ decomposition (deconfounding) of OMICS datasets in heterogeneous tissues version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deepTools.md b/docs/version-specific/supported-software/d/deepTools.md index 44dc8d5e4..f66d2d1cc 100644 --- a/docs/version-specific/supported-software/d/deepTools.md +++ b/docs/version-specific/supported-software/d/deepTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``foss/2021a`` ``3.5.1`` | | ``foss/2021b`` ``3.5.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deepdiff.md b/docs/version-specific/supported-software/d/deepdiff.md index 3aa83b1fe..0ec22b5b9 100644 --- a/docs/version-specific/supported-software/d/deepdiff.md +++ b/docs/version-specific/supported-software/d/deepdiff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # deepdiff DeepDiff: Deep Difference of dictionaries, iterables and almost any other object recursively. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``5.8.1`` | | ``GCCcore/11.3.0`` ``6.7.1`` | | ``GCCcore/12.2.0`` ``6.7.1`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deepfold.md b/docs/version-specific/supported-software/d/deepfold.md index 1c356929e..fd6cd9c32 100644 --- a/docs/version-specific/supported-software/d/deepfold.md +++ b/docs/version-specific/supported-software/d/deepfold.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ This package provides an implementation of DeepFold, a trainable, Transformer-ba version | versionsuffix | toolchain --------|---------------|---------- ``20240308`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/deepmedic.md b/docs/version-specific/supported-software/d/deepmedic.md index c86a07a84..fdc96f4cb 100644 --- a/docs/version-specific/supported-software/d/deepmedic.md +++ b/docs/version-specific/supported-software/d/deepmedic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # deepmedic Efficient Multi-Scale 3D Convolutional Neural Network for Segmentation of 3D Medical Scans. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.8.2`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/denseweight.md b/docs/version-specific/supported-software/d/denseweight.md index e6d9b2467..1a19de48c 100644 --- a/docs/version-specific/supported-software/d/denseweight.md +++ b/docs/version-specific/supported-software/d/denseweight.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1.2`` | ``foss/2022a`` ``0.1.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/desktop-file-utils.md b/docs/version-specific/supported-software/d/desktop-file-utils.md index 90d9b2011..0e8190966 100644 --- a/docs/version-specific/supported-software/d/desktop-file-utils.md +++ b/docs/version-specific/supported-software/d/desktop-file-utils.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ desktop-file-utils contains a few command line utilities for working with deskto version | toolchain --------|---------- ``0.27`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/destiny.md b/docs/version-specific/supported-software/d/destiny.md index 5828ddb4a..74c66f5fc 100644 --- a/docs/version-specific/supported-software/d/destiny.md +++ b/docs/version-specific/supported-software/d/destiny.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # destiny R packages to create and plot diffusion maps. @@ -7,3 +11,6 @@ R packages to create and plot diffusion maps. version | versionsuffix | toolchain --------|---------------|---------- ``2.5.6`` | ``-R-3.4.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/devbio-napari.md b/docs/version-specific/supported-software/d/devbio-napari.md index c2c5efa45..29763aa99 100644 --- a/docs/version-specific/supported-software/d/devbio-napari.md +++ b/docs/version-specific/supported-software/d/devbio-napari.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # devbio-napari A bundle of napari plugins useful for 3D+t image processing and analysis for studying developmental biology. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.10.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.10.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dftd3-lib.md b/docs/version-specific/supported-software/d/dftd3-lib.md index b302ec51c..cd6cffa0c 100644 --- a/docs/version-specific/supported-software/d/dftd3-lib.md +++ b/docs/version-specific/supported-software/d/dftd3-lib.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.9`` | ``GCC/8.3.0`` ``0.9`` | ``intel-compilers/2021.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dftd4.md b/docs/version-specific/supported-software/d/dftd4.md index bb75c03c4..21866cbf4 100644 --- a/docs/version-specific/supported-software/d/dftd4.md +++ b/docs/version-specific/supported-software/d/dftd4.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dftd4 Generally Applicable Atomic-Charge Dependent London Dispersion Correction. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.4.0`` | ``gfbf/2022b`` ``3.4.0`` | ``iimkl/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dialog.md b/docs/version-specific/supported-software/d/dialog.md index bfbc28a26..767eaefcc 100644 --- a/docs/version-specific/supported-software/d/dialog.md +++ b/docs/version-specific/supported-software/d/dialog.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dialog A utility for creating TTY dialog boxes @@ -7,3 +11,6 @@ A utility for creating TTY dialog boxes version | toolchain --------|---------- ``1.3-20231002`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dicom2nifti.md b/docs/version-specific/supported-software/d/dicom2nifti.md index 5e8d8d31c..2c03848b0 100644 --- a/docs/version-specific/supported-software/d/dicom2nifti.md +++ b/docs/version-specific/supported-software/d/dicom2nifti.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dicom2nifti Python library for converting dicom files to nifti @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.2.12`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.3.0`` | | ``foss/2020b`` ``2.3.0`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dijitso.md b/docs/version-specific/supported-software/d/dijitso.md index c0d3623ae..70a7c72f6 100644 --- a/docs/version-specific/supported-software/d/dijitso.md +++ b/docs/version-specific/supported-software/d/dijitso.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dijitso dijitso is a Python module for distributed just-in-time shared library building. @@ -7,3 +11,6 @@ dijitso is a Python module for distributed just-in-time shared library building. version | versionsuffix | toolchain --------|---------------|---------- ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dill.md b/docs/version-specific/supported-software/d/dill.md index 5b0803f8e..a9d2f5b1c 100644 --- a/docs/version-specific/supported-software/d/dill.md +++ b/docs/version-specific/supported-software/d/dill.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``0.3.6`` | ``GCCcore/11.3.0`` ``0.3.7`` | ``GCCcore/12.2.0`` ``0.3.7`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/distributed.md b/docs/version-specific/supported-software/d/distributed.md index 39fb1ff01..aa47bb6b2 100644 --- a/docs/version-specific/supported-software/d/distributed.md +++ b/docs/version-specific/supported-software/d/distributed.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dlb.md b/docs/version-specific/supported-software/d/dlb.md index 7aa1d7fdb..9c29043fe 100644 --- a/docs/version-specific/supported-software/d/dlb.md +++ b/docs/version-specific/supported-software/d/dlb.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``3.3.1`` | ``iimpi/2022a`` ``3.4`` | ``gompi/2023b`` ``3.4`` | ``iimpi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dlib.md b/docs/version-specific/supported-software/d/dlib.md index 047d9563b..5bd89b506 100644 --- a/docs/version-specific/supported-software/d/dlib.md +++ b/docs/version-specific/supported-software/d/dlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``19.22`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``19.22`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dm-haiku.md b/docs/version-specific/supported-software/d/dm-haiku.md index a06378619..18e705194 100644 --- a/docs/version-specific/supported-software/d/dm-haiku.md +++ b/docs/version-specific/supported-software/d/dm-haiku.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dm-reverb.md b/docs/version-specific/supported-software/d/dm-reverb.md index 889df94b4..6191902d8 100644 --- a/docs/version-specific/supported-software/d/dm-reverb.md +++ b/docs/version-specific/supported-software/d/dm-reverb.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.2.0`` | ``foss/2020b`` ``0.7.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dm-tree.md b/docs/version-specific/supported-software/d/dm-tree.md index 3624677be..cb9aee877 100644 --- a/docs/version-specific/supported-software/d/dm-tree.md +++ b/docs/version-specific/supported-software/d/dm-tree.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``0.1.6`` | ``GCCcore/11.2.0`` ``0.1.8`` | ``GCCcore/11.3.0`` ``0.1.8`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dominate.md b/docs/version-specific/supported-software/d/dominate.md index d0768e613..0503088f3 100644 --- a/docs/version-specific/supported-software/d/dominate.md +++ b/docs/version-specific/supported-software/d/dominate.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Dominate is a Python library for creating and manipulating HTML documents using version | toolchain --------|---------- ``2.8.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dorado.md b/docs/version-specific/supported-software/d/dorado.md index b6021b77e..6331576d2 100644 --- a/docs/version-specific/supported-software/d/dorado.md +++ b/docs/version-specific/supported-software/d/dorado.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dorado Dorado is a high-performance, easy-to-use, open source basecaller for Oxford Nanopore reads. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md index 33c692b6e..f10036bd7 100644 --- a/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md +++ b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dotNET-Core-Runtime .NET is a free, cross-platform, open source developer platform for building many different types of applications. @@ -9,3 +13,6 @@ version | toolchain ``2.0.7`` | ``GCCcore/6.4.0`` ``5.0.17`` | ``GCCcore/10.3.0`` ``6.0.1`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dotNET-Core.md b/docs/version-specific/supported-software/d/dotNET-Core.md index c9be1ff3a..75f839cb5 100644 --- a/docs/version-specific/supported-software/d/dotNET-Core.md +++ b/docs/version-specific/supported-software/d/dotNET-Core.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``6.0`` | ``system`` ``8.0.203`` | ``system`` ``8.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dotNET-SDK.md b/docs/version-specific/supported-software/d/dotNET-SDK.md index fe62e9298..ece55be71 100644 --- a/docs/version-specific/supported-software/d/dotNET-SDK.md +++ b/docs/version-specific/supported-software/d/dotNET-SDK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dotNET-SDK .NET is a free, cross-platform, open source developer platform for building many different types of applications. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.300`` | ``-linux-x64`` | ``system`` ``6.0.101`` | ``-linux-x64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/double-conversion.md b/docs/version-specific/supported-software/d/double-conversion.md index 4af796ad5..b831741d1 100644 --- a/docs/version-specific/supported-software/d/double-conversion.md +++ b/docs/version-specific/supported-software/d/double-conversion.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # double-conversion Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. @@ -17,3 +21,6 @@ version | toolchain ``3.2.1`` | ``GCCcore/12.2.0`` ``3.3.0`` | ``GCCcore/12.3.0`` ``3.3.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/drmaa-python.md b/docs/version-specific/supported-software/d/drmaa-python.md index 09d3dbb2c..2ae793a2e 100644 --- a/docs/version-specific/supported-software/d/drmaa-python.md +++ b/docs/version-specific/supported-software/d/drmaa-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # drmaa-python Distributed Resource Management Application API (DRMAA) bindings for Python. @@ -7,3 +11,6 @@ Distributed Resource Management Application API (DRMAA) bindings for Python. version | versionsuffix | toolchain --------|---------------|---------- ``0.7.9`` | ``-slurm`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dropEst.md b/docs/version-specific/supported-software/d/dropEst.md index d4e166512..b15ed1e71 100644 --- a/docs/version-specific/supported-software/d/dropEst.md +++ b/docs/version-specific/supported-software/d/dropEst.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dropEst Pipeline for initial analysis of droplet-based single-cell RNA-seq data @@ -7,3 +11,6 @@ Pipeline for initial analysis of droplet-based single-cell RNA-seq data version | versionsuffix | toolchain --------|---------------|---------- ``0.7.1`` | ``-R-3.4.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dtcmp.md b/docs/version-specific/supported-software/d/dtcmp.md index 73e4f6025..301a173fc 100644 --- a/docs/version-specific/supported-software/d/dtcmp.md +++ b/docs/version-specific/supported-software/d/dtcmp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dtcmp Datatype Compare (DTCMP) Library for sorting and ranking distributed data using MPI @@ -13,3 +17,6 @@ version | toolchain ``1.1.2`` | ``gompi/2020b`` ``1.1.4`` | ``gompi/2022a`` ``1.1.4`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dtcwt.md b/docs/version-specific/supported-software/d/dtcwt.md index 9320f0051..2b71c01ca 100644 --- a/docs/version-specific/supported-software/d/dtcwt.md +++ b/docs/version-specific/supported-software/d/dtcwt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dtcwt Dual-Tree Complex Wavelet Transform library for Python @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.12.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dune-core.md b/docs/version-specific/supported-software/d/dune-core.md index db05dbb4d..f90a7bc14 100644 --- a/docs/version-specific/supported-software/d/dune-core.md +++ b/docs/version-specific/supported-software/d/dune-core.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Dune core modules build the stable basis of Dune. They follow a consistent version | toolchain --------|---------- ``2.8.0.post1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dune-fem.md b/docs/version-specific/supported-software/d/dune-fem.md index 9482bfeb5..a381c1eb0 100644 --- a/docs/version-specific/supported-software/d/dune-fem.md +++ b/docs/version-specific/supported-software/d/dune-fem.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DUNE-FEM is a discretization module based on DUNE containing all the building bl version | toolchain --------|---------- ``2.8.0.6`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/duplex-tools.md b/docs/version-specific/supported-software/d/duplex-tools.md index 44b368a05..8e400cefb 100644 --- a/docs/version-specific/supported-software/d/duplex-tools.md +++ b/docs/version-specific/supported-software/d/duplex-tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.3.1`` | ``foss/2022a`` ``0.3.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dx-toolkit.md b/docs/version-specific/supported-software/d/dx-toolkit.md index db02b9cc2..441e655ff 100644 --- a/docs/version-specific/supported-software/d/dx-toolkit.md +++ b/docs/version-specific/supported-software/d/dx-toolkit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The DNAnexus Platform SDK - also called dx-toolkit - includes the dx command-lin version | toolchain --------|---------- ``0.350.1`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dxpy.md b/docs/version-specific/supported-software/d/dxpy.md index d2f6cec44..61b9d280c 100644 --- a/docs/version-specific/supported-software/d/dxpy.md +++ b/docs/version-specific/supported-software/d/dxpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dxpy DNAnexus Platform API bindings for Python @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.266.1`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.345.0`` | | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/dynesty.md b/docs/version-specific/supported-software/d/dynesty.md index 78d1bfaac..0dd87eb3a 100644 --- a/docs/version-specific/supported-software/d/dynesty.md +++ b/docs/version-specific/supported-software/d/dynesty.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # dynesty dynesty is a Pure Python, MIT-licensed Dynamic Nested Sampling package for estimating Bayesian posteriors and evidences. @@ -7,3 +11,6 @@ dynesty is a Pure Python, MIT-licensed Dynamic Nested Sampling package for estim version | toolchain --------|---------- ``2.1.3`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/d/index.md b/docs/version-specific/supported-software/d/index.md index f28d681ad..48050e8e9 100644 --- a/docs/version-specific/supported-software/d/index.md +++ b/docs/version-specific/supported-software/d/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (d) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - *d* - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [dadi](dadi.md) * [dagitty](dagitty.md) * [Dakota](Dakota.md) diff --git a/docs/version-specific/supported-software/e/E-ANTIC.md b/docs/version-specific/supported-software/e/E-ANTIC.md index b6d7038ba..d1e247860 100644 --- a/docs/version-specific/supported-software/e/E-ANTIC.md +++ b/docs/version-specific/supported-software/e/E-ANTIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``0.1.5`` | ``GCC/8.3.0`` ``1.3.0`` | ``gfbf/2022a`` ``2.0.2`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ECL.md b/docs/version-specific/supported-software/e/ECL.md index a27cebf56..a5729ac80 100644 --- a/docs/version-specific/supported-software/e/ECL.md +++ b/docs/version-specific/supported-software/e/ECL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``23.9.9`` | ``GCCcore/11.3.0`` ``24.5.10`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ED2.md b/docs/version-specific/supported-software/e/ED2.md index 4f039f774..6ccb26756 100644 --- a/docs/version-specific/supported-software/e/ED2.md +++ b/docs/version-specific/supported-software/e/ED2.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170201`` | ``-serial`` | ``intel/2017a`` ``20170201`` | | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EDirect.md b/docs/version-specific/supported-software/e/EDirect.md index 50cbcaa39..d3286b749 100644 --- a/docs/version-specific/supported-software/e/EDirect.md +++ b/docs/version-specific/supported-software/e/EDirect.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``19.7.20230531`` | ``GCCcore/10.3.0`` ``20.5.20231006`` | ``GCCcore/12.2.0`` ``20.5.20231006`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EGTtools.md b/docs/version-specific/supported-software/e/EGTtools.md index a71aa08da..f9b1ecfc9 100644 --- a/docs/version-specific/supported-software/e/EGTtools.md +++ b/docs/version-specific/supported-software/e/EGTtools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1.10.dev2`` | ``foss/2021b`` ``0.1.11`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EIGENSOFT.md b/docs/version-specific/supported-software/e/EIGENSOFT.md index 76999839a..d91868761 100644 --- a/docs/version-specific/supported-software/e/EIGENSOFT.md +++ b/docs/version-specific/supported-software/e/EIGENSOFT.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``7.2.1`` | ``foss/2020b`` ``7.2.1`` | ``foss/2021a`` ``7.2.1`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ELFIO.md b/docs/version-specific/supported-software/e/ELFIO.md index f6ae53414..8282216e2 100644 --- a/docs/version-specific/supported-software/e/ELFIO.md +++ b/docs/version-specific/supported-software/e/ELFIO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ELFIO ELFIO is a header-only C++ library intended for reading and generating files in the ELF binary format. @@ -7,3 +11,6 @@ ELFIO is a header-only C++ library intended for reading and generating files in version | toolchain --------|---------- ``3.9`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ELPA.md b/docs/version-specific/supported-software/e/ELPA.md index 3504940ff..5d2bd7fe4 100644 --- a/docs/version-specific/supported-software/e/ELPA.md +++ b/docs/version-specific/supported-software/e/ELPA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ELPA Eigenvalue SoLvers for Petaflop-Applications . @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``2023.05.001`` | | ``intel/2023a`` ``2023.11.001`` | | ``foss/2023b`` ``2023.11.001`` | | ``intel/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ELPH.md b/docs/version-specific/supported-software/e/ELPH.md index fd9dd8127..5003ab6ca 100644 --- a/docs/version-specific/supported-software/e/ELPH.md +++ b/docs/version-specific/supported-software/e/ELPH.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ ELPH is a general-purpose Gibbs sampler for finding motifs in a set of DNA or version | toolchain --------|---------- ``1.0.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ELSI-RCI.md b/docs/version-specific/supported-software/e/ELSI-RCI.md index 497d0df5f..9c8addb27 100644 --- a/docs/version-specific/supported-software/e/ELSI-RCI.md +++ b/docs/version-specific/supported-software/e/ELSI-RCI.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``0.1.0`` | ``intel/2020b`` ``0.1.0`` | ``intel-compilers/2021.2.0`` ``0.1.0`` | ``intel-compilers/2021.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ELSI.md b/docs/version-specific/supported-software/e/ELSI.md index 7a5bc8fb4..788a2d860 100644 --- a/docs/version-specific/supported-software/e/ELSI.md +++ b/docs/version-specific/supported-software/e/ELSI.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``2.6.4`` | ``-PEXSI`` | ``intel/2020b`` ``2.7.1`` | ``-PEXSI`` | ``foss/2021a`` ``2.7.1`` | ``-PEXSI`` | ``intel/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EMAN2.md b/docs/version-specific/supported-software/e/EMAN2.md index fcdf5d48f..f8285b857 100644 --- a/docs/version-specific/supported-software/e/EMAN2.md +++ b/docs/version-specific/supported-software/e/EMAN2.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-2.7.15`` | ``foss/2019a`` ``2.3`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` ``2.3`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EMBOSS.md b/docs/version-specific/supported-software/e/EMBOSS.md index 676b88ead..063140fa3 100644 --- a/docs/version-specific/supported-software/e/EMBOSS.md +++ b/docs/version-specific/supported-software/e/EMBOSS.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``6.6.0`` | ``-X11-20170314`` | ``intel/2017a`` ``6.6.0`` | | ``intel/2017a`` ``6.6.0`` | | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EMU.md b/docs/version-specific/supported-software/e/EMU.md index 830b33471..c771d0bb1 100644 --- a/docs/version-specific/supported-software/e/EMU.md +++ b/docs/version-specific/supported-software/e/EMU.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ EMU infers population structure in the presence of missingness and works for bot version | versionsuffix | toolchain --------|---------------|---------- ``0.66`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EPD.md b/docs/version-specific/supported-software/e/EPD.md index 9237fc54a..424c2021f 100644 --- a/docs/version-specific/supported-software/e/EPD.md +++ b/docs/version-specific/supported-software/e/EPD.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Enthought Python Distribution provides scientists with a comprehensive set o version | toolchain --------|---------- ``7.3-2-rh5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EPIC.md b/docs/version-specific/supported-software/e/EPIC.md index 7212bc60a..9659496cd 100644 --- a/docs/version-specific/supported-software/e/EPIC.md +++ b/docs/version-specific/supported-software/e/EPIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Package implementing EPIC method to estimate the proportion of immune, stromal, version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ESL-Bundle.md b/docs/version-specific/supported-software/e/ESL-Bundle.md index 30447826e..104e62344 100644 --- a/docs/version-specific/supported-software/e/ESL-Bundle.md +++ b/docs/version-specific/supported-software/e/ESL-Bundle.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.6.1`` | ``foss/2020b`` ``0.6.1`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ESM-2.md b/docs/version-specific/supported-software/e/ESM-2.md index c3a96f74d..c6cd3ea49 100644 --- a/docs/version-specific/supported-software/e/ESM-2.md +++ b/docs/version-specific/supported-software/e/ESM-2.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.0.0`` | | ``foss/2021a`` ``2.0.0`` | | ``foss/2022b`` ``2.0.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ESMF.md b/docs/version-specific/supported-software/e/ESMF.md index d6eb20ef0..9bbdd3873 100644 --- a/docs/version-specific/supported-software/e/ESMF.md +++ b/docs/version-specific/supported-software/e/ESMF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ESMF The Earth System Modeling Framework (ESMF) is software for building and coupling weather, climate, and related models. @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``8.3.0`` | | ``foss/2022a`` ``8.3.0`` | | ``intel/2022a`` ``8.4.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ESMPy.md b/docs/version-specific/supported-software/e/ESMPy.md index a1fef9276..a9472c4f1 100644 --- a/docs/version-specific/supported-software/e/ESMPy.md +++ b/docs/version-specific/supported-software/e/ESMPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ESMPy Earth System Modeling Framework (ESMF) Python Interface @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ESMValTool.md b/docs/version-specific/supported-software/e/ESMValTool.md index 80b4523ef..eef467718 100644 --- a/docs/version-specific/supported-software/e/ESMValTool.md +++ b/docs/version-specific/supported-software/e/ESMValTool.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Earth System Model eValuation Tool (ESMValTool) is a community diagnostics version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ESPResSo.md b/docs/version-specific/supported-software/e/ESPResSo.md index bb0a2a330..2f2c583fc 100644 --- a/docs/version-specific/supported-software/e/ESPResSo.md +++ b/docs/version-specific/supported-software/e/ESPResSo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ESPResSo A software package for performing and analyzing scientific Molecular Dynamics simulations. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``4.2.1`` | | ``foss/2022a`` ``4.2.1`` | | ``foss/2023a`` ``4.2.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ETE.md b/docs/version-specific/supported-software/e/ETE.md index a0ec47dc4..758d29c6c 100644 --- a/docs/version-specific/supported-software/e/ETE.md +++ b/docs/version-specific/supported-software/e/ETE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ETE A Python framework for the analysis and visualization of trees @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``3.1.2`` | | ``foss/2021b`` ``3.1.3`` | | ``foss/2022b`` ``3.1.3`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ETSF_IO.md b/docs/version-specific/supported-software/e/ETSF_IO.md index b8753c1a4..cdb56107d 100644 --- a/docs/version-specific/supported-software/e/ETSF_IO.md +++ b/docs/version-specific/supported-software/e/ETSF_IO.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.0.4`` | ``intel/2017b`` ``1.0.4`` | ``intel/2018a`` ``1.0.4`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EUKulele.md b/docs/version-specific/supported-software/e/EUKulele.md index 897a7db01..e69e3d277 100644 --- a/docs/version-specific/supported-software/e/EUKulele.md +++ b/docs/version-specific/supported-software/e/EUKulele.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EUKulele Formalizing environmental eukaryotic taxonomic assignment @@ -7,3 +11,6 @@ Formalizing environmental eukaryotic taxonomic assignment version | toolchain --------|---------- ``2.0.6`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EVcouplings.md b/docs/version-specific/supported-software/e/EVcouplings.md index ffa7f533f..ea403cdee 100644 --- a/docs/version-specific/supported-software/e/EVcouplings.md +++ b/docs/version-specific/supported-software/e/EVcouplings.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EVcouplings Predict protein structure, function and mutations using evolutionary sequence covariation. @@ -7,3 +11,6 @@ Predict protein structure, function and mutations using evolutionary sequence co version | toolchain --------|---------- ``0.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EZC3D.md b/docs/version-specific/supported-software/e/EZC3D.md index 3d020e029..406026a34 100644 --- a/docs/version-specific/supported-software/e/EZC3D.md +++ b/docs/version-specific/supported-software/e/EZC3D.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ EZC3D is an easy to use reader, modifier and writer for C3D format files. It is version | toolchain --------|---------- ``1.5.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EasyBuild.md b/docs/version-specific/supported-software/e/EasyBuild.md index 47cd9bb77..9aecf747a 100644 --- a/docs/version-specific/supported-software/e/EasyBuild.md +++ b/docs/version-specific/supported-software/e/EasyBuild.md @@ -1,3 +1,7 @@ +--- +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. @@ -107,3 +111,6 @@ version | toolchain ``4.8.2`` | ``system`` ``4.9.0`` | ``system`` ``4.9.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EasyMocap.md b/docs/version-specific/supported-software/e/EasyMocap.md index b0ee8479c..2acd20821 100644 --- a/docs/version-specific/supported-software/e/EasyMocap.md +++ b/docs/version-specific/supported-software/e/EasyMocap.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EasyQC.md b/docs/version-specific/supported-software/e/EasyQC.md index db2fb8e6a..7a22ae97a 100644 --- a/docs/version-specific/supported-software/e/EasyQC.md +++ b/docs/version-specific/supported-software/e/EasyQC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ EasyQC is an R-package that provides advanced functionality to (1) perform file version | versionsuffix | toolchain --------|---------------|---------- ``9.2`` | ``-R-3.3.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EggLib.md b/docs/version-specific/supported-software/e/EggLib.md index a14089b08..bf110abb6 100644 --- a/docs/version-specific/supported-software/e/EggLib.md +++ b/docs/version-specific/supported-software/e/EggLib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EggLib EggLib is a C++/Python library and program package for evolutionary genetics and genomics. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.1.10`` | ``intel/2016a`` ``3.3.0`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Eigen.md b/docs/version-specific/supported-software/e/Eigen.md index 866c94648..c7bdd42b1 100644 --- a/docs/version-specific/supported-software/e/Eigen.md +++ b/docs/version-specific/supported-software/e/Eigen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Eigen Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. @@ -37,3 +41,6 @@ version | toolchain ``3.4.0`` | ``GCCcore/12.3.0`` ``3.4.0`` | ``GCCcore/13.2.0`` ``3.4.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EigenExa.md b/docs/version-specific/supported-software/e/EigenExa.md index 58372193d..13ade5a8c 100644 --- a/docs/version-specific/supported-software/e/EigenExa.md +++ b/docs/version-specific/supported-software/e/EigenExa.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EigenExa EigenExa, a part of KMATHLIB, is a high performance eigen-solver. @@ -7,3 +11,6 @@ EigenExa, a part of KMATHLIB, is a high performance eigen-solver. version | toolchain --------|---------- ``2.11`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Elk.md b/docs/version-specific/supported-software/e/Elk.md index 179490050..cfcd8c586 100644 --- a/docs/version-specific/supported-software/e/Elk.md +++ b/docs/version-specific/supported-software/e/Elk.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``7.0.12`` | ``foss/2020b`` ``7.2.42`` | ``foss/2021a`` ``8.5.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Elmer.md b/docs/version-specific/supported-software/e/Elmer.md index 583635af1..9e59f1dda 100644 --- a/docs/version-specific/supported-software/e/Elmer.md +++ b/docs/version-specific/supported-software/e/Elmer.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Elmer is an open source multiphysical simulation software mainly developed by C version | toolchain --------|---------- ``9.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Emacs.md b/docs/version-specific/supported-software/e/Emacs.md index 5c3cf443b..db3dfae40 100644 --- a/docs/version-specific/supported-software/e/Emacs.md +++ b/docs/version-specific/supported-software/e/Emacs.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``27.2`` | | ``GCCcore/11.2.0`` ``28.1`` | | ``GCCcore/10.2.0`` ``28.2`` | | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Embree.md b/docs/version-specific/supported-software/e/Embree.md index de59f05bd..aa6182ae0 100644 --- a/docs/version-specific/supported-software/e/Embree.md +++ b/docs/version-specific/supported-software/e/Embree.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Embree High Performance Ray Tracing Kernels @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.13.4`` | ``system`` ``3.4.0`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EnergyPlus.md b/docs/version-specific/supported-software/e/EnergyPlus.md index d97fc74c3..a0ca3570a 100644 --- a/docs/version-specific/supported-software/e/EnergyPlus.md +++ b/docs/version-specific/supported-software/e/EnergyPlus.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ EnergyPlus is a whole building energy simulation program that engineers, archite version | toolchain --------|---------- ``23.2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md index 1c7170889..c36cbf4da 100644 --- a/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md +++ b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EnsEMBLCoreAPI The Ensembl Core Perl API and SQL schema @@ -7,3 +11,6 @@ The Ensembl Core Perl API and SQL schema version | versionsuffix | toolchain --------|---------------|---------- ``96.0-r20190601`` | ``-Perl-5.28.1`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EpiSCORE.md b/docs/version-specific/supported-software/e/EpiSCORE.md index afaaf8030..54ce7fea3 100644 --- a/docs/version-specific/supported-software/e/EpiSCORE.md +++ b/docs/version-specific/supported-software/e/EpiSCORE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EpiSCORE Epigenetic cell-type deconvolution from Single-Cell Omic Reference profiles @@ -7,3 +11,6 @@ Epigenetic cell-type deconvolution from Single-Cell Omic Reference profiles version | versionsuffix | toolchain --------|---------------|---------- ``0.9.5-20220621`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EricScript.md b/docs/version-specific/supported-software/e/EricScript.md index c9030ebac..3a7459054 100644 --- a/docs/version-specific/supported-software/e/EricScript.md +++ b/docs/version-specific/supported-software/e/EricScript.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # EricScript EricScript is a computational framework for the discovery of gene fusions in paired end RNA-seq data. @@ -7,3 +11,6 @@ EricScript is a computational framework for the discovery of gene fusions in pai version | versionsuffix | toolchain --------|---------------|---------- ``0.5.5`` | ``-R-3.4.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Essentia.md b/docs/version-specific/supported-software/e/Essentia.md index 68ac9a586..31116642c 100644 --- a/docs/version-specific/supported-software/e/Essentia.md +++ b/docs/version-specific/supported-software/e/Essentia.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Essentia Open-source library and tools for audio and music analysis, description and synthesis @@ -7,3 +11,6 @@ Open-source library and tools for audio and music analysis, description and synt version | versionsuffix | toolchain --------|---------------|---------- ``2.1_beta5`` | ``-Python-2.7.15`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Evcxr-REPL.md b/docs/version-specific/supported-software/e/Evcxr-REPL.md index 84225b2c7..2a9084def 100644 --- a/docs/version-specific/supported-software/e/Evcxr-REPL.md +++ b/docs/version-specific/supported-software/e/Evcxr-REPL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Evcxr-REPL A Rust REPL (Read-Eval-Print loop) built using the evcxr evaluation context. @@ -7,3 +11,6 @@ A Rust REPL (Read-Eval-Print loop) built using the evcxr evaluation context. version | versionsuffix | toolchain --------|---------------|---------- ``0.14.2`` | ``-Rust-1.65.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EveryBeam.md b/docs/version-specific/supported-software/e/EveryBeam.md index 856eb1aae..261cf7dc0 100644 --- a/docs/version-specific/supported-software/e/EveryBeam.md +++ b/docs/version-specific/supported-software/e/EveryBeam.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` ``0.5.2`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/EvidentialGene.md b/docs/version-specific/supported-software/e/EvidentialGene.md index eb3f8ded5..bff5cce20 100644 --- a/docs/version-specific/supported-software/e/EvidentialGene.md +++ b/docs/version-specific/supported-software/e/EvidentialGene.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.01.01`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``2022.01.14`` | | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ExaBayes.md b/docs/version-specific/supported-software/e/ExaBayes.md index 624f622a3..81a5baea2 100644 --- a/docs/version-specific/supported-software/e/ExaBayes.md +++ b/docs/version-specific/supported-software/e/ExaBayes.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ ExaBayes is a software package for Bayesian tree inference. It is particularly version | toolchain --------|---------- ``1.5`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ExaML.md b/docs/version-specific/supported-software/e/ExaML.md index 7da6767fd..d11f9426e 100644 --- a/docs/version-specific/supported-software/e/ExaML.md +++ b/docs/version-specific/supported-software/e/ExaML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ExaML Exascale Maximum Likelihood (ExaML) code for phylogenetic inference using MPI @@ -7,3 +11,6 @@ Exascale Maximum Likelihood (ExaML) code for phylogenetic inference using MPI version | versionsuffix | toolchain --------|---------------|---------- ``3.0.22`` | ``-hybrid-avx`` | ``gompi/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md index 21ddb2e28..52eb60f4a 100644 --- a/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md +++ b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Excel::Writer::XLSX module can be used to create an Excel file in the 2007+ version | toolchain --------|---------- ``1.09`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ExifTool.md b/docs/version-specific/supported-software/e/ExifTool.md index 956f5fb5d..66bc7bb16 100644 --- a/docs/version-specific/supported-software/e/ExifTool.md +++ b/docs/version-specific/supported-software/e/ExifTool.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ExifTool Perl module (Image::ExifTool) and program (exiftool) to read EXIF information from images @@ -7,3 +11,6 @@ Perl module (Image::ExifTool) and program (exiftool) to read EXIF information f version | toolchain --------|---------- ``12.00`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Exonerate.md b/docs/version-specific/supported-software/e/Exonerate.md index 2d13682d7..c1584cfa2 100644 --- a/docs/version-specific/supported-software/e/Exonerate.md +++ b/docs/version-specific/supported-software/e/Exonerate.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ExpressBetaDiversity.md b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md index ae9572830..e43f6485a 100644 --- a/docs/version-specific/supported-software/e/ExpressBetaDiversity.md +++ b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ExpressBetaDiversity Taxon- and phylogenetic-based beta diversity measures. @@ -7,3 +11,6 @@ Taxon- and phylogenetic-based beta diversity measures. version | toolchain --------|---------- ``1.0.10`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/Extrae.md b/docs/version-specific/supported-software/e/Extrae.md index 597b13c41..f56e86382 100644 --- a/docs/version-specific/supported-software/e/Extrae.md +++ b/docs/version-specific/supported-software/e/Extrae.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``3.8.0`` | ``gompi/2020b`` ``3.8.3`` | ``gompi/2021a`` ``4.0.4`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ExtremeLy.md b/docs/version-specific/supported-software/e/ExtremeLy.md index 5fdf7c1e7..3f117a09a 100644 --- a/docs/version-specific/supported-software/e/ExtremeLy.md +++ b/docs/version-specific/supported-software/e/ExtremeLy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ExtremeLy A python package for Extreme Value Analysis. @@ -7,3 +11,6 @@ A python package for Extreme Value Analysis. version | toolchain --------|---------- ``2.3.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/e3nn.md b/docs/version-specific/supported-software/e/e3nn.md index a4a869c25..ff4e7cb8e 100644 --- a/docs/version-specific/supported-software/e/e3nn.md +++ b/docs/version-specific/supported-software/e/e3nn.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eQuilibrator.md b/docs/version-specific/supported-software/e/eQuilibrator.md index 241a600fa..85b5d8f00 100644 --- a/docs/version-specific/supported-software/e/eQuilibrator.md +++ b/docs/version-specific/supported-software/e/eQuilibrator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # eQuilibrator Calculation of standard thermodynamic potentials of biochemical reactions. @@ -7,3 +11,6 @@ Calculation of standard thermodynamic potentials of biochemical reactions. version | toolchain --------|---------- ``0.4.7`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eSpeak-NG.md b/docs/version-specific/supported-software/e/eSpeak-NG.md index dc8a40c3b..ce624183e 100644 --- a/docs/version-specific/supported-software/e/eSpeak-NG.md +++ b/docs/version-specific/supported-software/e/eSpeak-NG.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.50`` | ``gompi/2020a`` ``1.51`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eXpress.md b/docs/version-specific/supported-software/e/eXpress.md index 0bc9542e6..09ae27bec 100644 --- a/docs/version-specific/supported-software/e/eXpress.md +++ b/docs/version-specific/supported-software/e/eXpress.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # eXpress Streaming quantification for high-throughput sequencing @@ -7,3 +11,6 @@ Streaming quantification for high-throughput sequencing version | toolchain --------|---------- ``1.5.1`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ea-utils.md b/docs/version-specific/supported-software/e/ea-utils.md index d862f07fa..baddcf341 100644 --- a/docs/version-specific/supported-software/e/ea-utils.md +++ b/docs/version-specific/supported-software/e/ea-utils.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.04.807`` | ``foss/2016a`` ``1.04.807`` | ``foss/2016b`` ``1.04.807`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/earthengine-api.md b/docs/version-specific/supported-software/e/earthengine-api.md index d386a7f4a..412c118c3 100644 --- a/docs/version-specific/supported-software/e/earthengine-api.md +++ b/docs/version-specific/supported-software/e/earthengine-api.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # earthengine-api Python and JavaScript bindings for calling the Earth Engine API @@ -7,3 +11,6 @@ Python and JavaScript bindings for calling the Earth Engine API version | versionsuffix | toolchain --------|---------------|---------- ``0.1.143`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/easel.md b/docs/version-specific/supported-software/e/easel.md index 9890700e0..fee45e4ed 100644 --- a/docs/version-specific/supported-software/e/easel.md +++ b/docs/version-specific/supported-software/e/easel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # easel Easel supports computational analysis of biological sequences using probabilistic models. @@ -7,3 +11,6 @@ Easel supports computational analysis of biological sequences using probabilisti version | toolchain --------|---------- ``0.48`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ebGSEA.md b/docs/version-specific/supported-software/e/ebGSEA.md index c92a9fb9c..dfe74ac69 100644 --- a/docs/version-specific/supported-software/e/ebGSEA.md +++ b/docs/version-specific/supported-software/e/ebGSEA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gene Set Enrichment Analysis is one of the most common tasks in the analysis of version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ecBuild.md b/docs/version-specific/supported-software/e/ecBuild.md index 4f65546d1..7773eb370 100644 --- a/docs/version-specific/supported-software/e/ecBuild.md +++ b/docs/version-specific/supported-software/e/ecBuild.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.7.0`` | ``system`` ``3.8.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ecCodes.md b/docs/version-specific/supported-software/e/ecCodes.md index aee20d331..3a529e78f 100644 --- a/docs/version-specific/supported-software/e/ecCodes.md +++ b/docs/version-specific/supported-software/e/ecCodes.md @@ -1,3 +1,7 @@ +--- +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). @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``2.8.2`` | | ``intel/2018a`` ``2.9.2`` | | ``intel/2018b`` ``2.9.2`` | | ``iomkl/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ecFlow.md b/docs/version-specific/supported-software/e/ecFlow.md index 7930695b6..4867da0a4 100644 --- a/docs/version-specific/supported-software/e/ecFlow.md +++ b/docs/version-specific/supported-software/e/ecFlow.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ecFlow is a client/server workflow package that enables users to run a large nu version | toolchain --------|---------- ``5.7.0`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eccodes-python.md b/docs/version-specific/supported-software/e/eccodes-python.md index cd8dba9bf..1c3cc172c 100644 --- a/docs/version-specific/supported-software/e/eccodes-python.md +++ b/docs/version-specific/supported-software/e/eccodes-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # eccodes-python Python 3 interface to decode and encode GRIB and BUFR files via the ECMWF ecCodes library. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eclib.md b/docs/version-specific/supported-software/e/eclib.md index ad7b7edf7..59e587120 100644 --- a/docs/version-specific/supported-software/e/eclib.md +++ b/docs/version-specific/supported-software/e/eclib.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20230424`` | ``GCC/11.3.0`` ``20240408`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/edlib.md b/docs/version-specific/supported-software/e/edlib.md index 51ff02d91..f3b32ee77 100644 --- a/docs/version-specific/supported-software/e/edlib.md +++ b/docs/version-specific/supported-software/e/edlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # edlib Lightweight, super fast library for sequence alignment using edit (Levenshtein) distance. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``1.3.9`` | | ``GCC/11.3.0`` ``1.3.9`` | | ``GCC/12.2.0`` ``1.3.9`` | | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eggnog-mapper.md b/docs/version-specific/supported-software/e/eggnog-mapper.md index c57495ab2..7219a8d62 100644 --- a/docs/version-specific/supported-software/e/eggnog-mapper.md +++ b/docs/version-specific/supported-software/e/eggnog-mapper.md @@ -1,3 +1,7 @@ +--- +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 @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.1.4`` | | ``foss/2020b`` ``2.1.7`` | | ``foss/2021b`` ``2.1.9`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eht-imaging.md b/docs/version-specific/supported-software/e/eht-imaging.md index c3123dbe8..0a1dafd5b 100644 --- a/docs/version-specific/supported-software/e/eht-imaging.md +++ b/docs/version-specific/supported-software/e/eht-imaging.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # eht-imaging Python modules for simulating and manipulating VLBI data and producing images with regularized maximum likelihood methods. @@ -7,3 +11,6 @@ Python modules for simulating and manipulating VLBI data and producing images wi version | toolchain --------|---------- ``1.2.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/einops.md b/docs/version-specific/supported-software/e/einops.md index 461283f4e..d835d048f 100644 --- a/docs/version-specific/supported-software/e/einops.md +++ b/docs/version-specific/supported-software/e/einops.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # einops Flexible and powerful tensor operations for readable and reliable code. Supports numpy, pytorch, tensorflow, jax, and others. @@ -10,3 +14,6 @@ version | toolchain ``0.4.1`` | ``GCCcore/10.3.0`` ``0.4.1`` | ``GCCcore/11.3.0`` ``0.7.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/elastix.md b/docs/version-specific/supported-software/e/elastix.md index 6c4019853..8269c06af 100644 --- a/docs/version-specific/supported-software/e/elastix.md +++ b/docs/version-specific/supported-software/e/elastix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # elastix elastix: a toolbox for rigid and nonrigid registration of images. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.9.0`` | | ``foss/2018a`` ``5.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/elbencho.md b/docs/version-specific/supported-software/e/elbencho.md index 16c1f77b7..5cad4285c 100644 --- a/docs/version-specific/supported-software/e/elbencho.md +++ b/docs/version-specific/supported-software/e/elbencho.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # elbencho A distributed storage benchmark for files, objects & blocks with support for GPUs @@ -7,3 +11,6 @@ A distributed storage benchmark for files, objects & blocks with support for GPU version | toolchain --------|---------- ``2.0-3`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/elfutils.md b/docs/version-specific/supported-software/e/elfutils.md index 70cc3eb19..79ddf5c58 100644 --- a/docs/version-specific/supported-software/e/elfutils.md +++ b/docs/version-specific/supported-software/e/elfutils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # elfutils The elfutils project provides libraries and tools for ELF files and DWARF data. @@ -16,3 +20,6 @@ version | toolchain ``0.189`` | ``GCCcore/12.2.0`` ``0.189`` | ``GCCcore/12.3.0`` ``0.190`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/elprep.md b/docs/version-specific/supported-software/e/elprep.md index 1f2bf8dd5..98f0bbf0a 100644 --- a/docs/version-specific/supported-software/e/elprep.md +++ b/docs/version-specific/supported-software/e/elprep.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ elPrep is a high-performance tool for analyzing .sam/.bam files (up to and inclu version | toolchain --------|---------- ``5.1.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/emcee.md b/docs/version-specific/supported-software/e/emcee.md index dfad4d607..e61f14a8e 100644 --- a/docs/version-specific/supported-software/e/emcee.md +++ b/docs/version-specific/supported-software/e/emcee.md @@ -1,3 +1,7 @@ +--- +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! @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``3.1.4`` | | ``foss/2021b`` ``3.1.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/enaBrowserTool.md b/docs/version-specific/supported-software/e/enaBrowserTool.md index 1ad19fa5a..8a20ed5c2 100644 --- a/docs/version-specific/supported-software/e/enaBrowserTool.md +++ b/docs/version-specific/supported-software/e/enaBrowserTool.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.4`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``1.6`` | | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/enchant-2.md b/docs/version-specific/supported-software/e/enchant-2.md index 862ee224e..b4c3022a6 100644 --- a/docs/version-specific/supported-software/e/enchant-2.md +++ b/docs/version-specific/supported-software/e/enchant-2.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/11.2.0`` ``2.3.3`` | ``GCCcore/11.3.0`` ``2.6.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/enchant.md b/docs/version-specific/supported-software/e/enchant.md index 0bdcb5301..576c0841e 100644 --- a/docs/version-specific/supported-software/e/enchant.md +++ b/docs/version-specific/supported-software/e/enchant.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Enchant is a library (and command-line program) that wraps a number of different version | toolchain --------|---------- ``1.6.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/ensmallen.md b/docs/version-specific/supported-software/e/ensmallen.md index 06cc9ce1a..278567fd8 100644 --- a/docs/version-specific/supported-software/e/ensmallen.md +++ b/docs/version-specific/supported-software/e/ensmallen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ensmallen ensmallen is a high-quality C++ library for non-linear numerical optimization @@ -7,3 +11,6 @@ ensmallen is a high-quality C++ library for non-linear numerical optimization version | toolchain --------|---------- ``2.21.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/entrypoints.md b/docs/version-specific/supported-software/e/entrypoints.md index cf1fa10b6..e30780bcf 100644 --- a/docs/version-specific/supported-software/e/entrypoints.md +++ b/docs/version-specific/supported-software/e/entrypoints.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # entrypoints Entry points are a way for Python packages to advertise objects with some common interface. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/epct.md b/docs/version-specific/supported-software/e/epct.md index 5fa9d0287..c43b12a6b 100644 --- a/docs/version-specific/supported-software/e/epct.md +++ b/docs/version-specific/supported-software/e/epct.md @@ -1,3 +1,7 @@ +--- +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.). @@ -7,3 +11,6 @@ This is the epct (EUMETSAT Product Customisation Toolbox) Python package for the version | toolchain --------|---------- ``3.2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/epiScanpy.md b/docs/version-specific/supported-software/e/epiScanpy.md index b444063ae..b2f369ae9 100644 --- a/docs/version-specific/supported-software/e/epiScanpy.md +++ b/docs/version-specific/supported-software/e/epiScanpy.md @@ -1,3 +1,7 @@ +--- +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]. @@ -9,3 +13,6 @@ version | toolchain ``0.3.1`` | ``foss/2021a`` ``0.4.0`` | ``foss/2022a`` ``0.4.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/eudev.md b/docs/version-specific/supported-software/e/eudev.md index b5931bc65..05716c747 100644 --- a/docs/version-specific/supported-software/e/eudev.md +++ b/docs/version-specific/supported-software/e/eudev.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``3.1.5`` | ``intel/2016a`` ``3.2`` | ``GCCcore/4.9.3`` ``3.2.2`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/evince.md b/docs/version-specific/supported-software/e/evince.md index 70ad5c9af..1837cffda 100644 --- a/docs/version-specific/supported-software/e/evince.md +++ b/docs/version-specific/supported-software/e/evince.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Evince is a document viewer for multiple document formats. The goal of evince i version | toolchain --------|---------- ``45.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/evmix.md b/docs/version-specific/supported-software/e/evmix.md index 2573c9025..22f9856cf 100644 --- a/docs/version-specific/supported-software/e/evmix.md +++ b/docs/version-specific/supported-software/e/evmix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # evmix evmix: Extreme Value Mixture Modelling, Threshold Estimation and Boundary Corrected Kernel Density Estimation @@ -7,3 +11,6 @@ evmix: Extreme Value Mixture Modelling, Threshold Estimation and Boundary Corre version | versionsuffix | toolchain --------|---------------|---------- ``2.6`` | ``-R-3.3.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/exiv2.md b/docs/version-specific/supported-software/e/exiv2.md index d601974b9..64321d7c1 100644 --- a/docs/version-specific/supported-software/e/exiv2.md +++ b/docs/version-specific/supported-software/e/exiv2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # exiv2 Exiv2 is a Cross-platform C++ library and a command line utility to manage image metadata. @@ -9,3 +13,6 @@ version | toolchain ``0.27.4`` | ``GCCcore/10.3.0`` ``0.27.5`` | ``GCCcore/11.2.0`` ``0.28.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/expat.md b/docs/version-specific/supported-software/e/expat.md index 1c2155aca..fbae7e5a6 100644 --- a/docs/version-specific/supported-software/e/expat.md +++ b/docs/version-specific/supported-software/e/expat.md @@ -1,3 +1,7 @@ +--- +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) @@ -34,3 +38,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/13.2.0`` ``2.6.2`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/expect.md b/docs/version-specific/supported-software/e/expect.md index 244a2f83b..4c23464bf 100644 --- a/docs/version-specific/supported-software/e/expect.md +++ b/docs/version-specific/supported-software/e/expect.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.45.4`` | ``GCCcore/7.3.0`` ``5.45.4`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/expecttest.md b/docs/version-specific/supported-software/e/expecttest.md index aaec0952e..96bf39498 100644 --- a/docs/version-specific/supported-software/e/expecttest.md +++ b/docs/version-specific/supported-software/e/expecttest.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.1.3`` | ``GCCcore/12.2.0`` ``0.1.5`` | ``GCCcore/12.3.0`` ``0.2.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/e/index.md b/docs/version-specific/supported-software/e/index.md index a09ee42ed..08a54444a 100644 --- a/docs/version-specific/supported-software/e/index.md +++ b/docs/version-specific/supported-software/e/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (e) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - *e* - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [E-ANTIC](E-ANTIC.md) * [e3nn](e3nn.md) * [ea-utils](ea-utils.md) diff --git a/docs/version-specific/supported-software/f/FACE.md b/docs/version-specific/supported-software/f/FACE.md index cea357a34..356200d3d 100644 --- a/docs/version-specific/supported-software/f/FACE.md +++ b/docs/version-specific/supported-software/f/FACE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FACE A Fortran Ansi Colors (and Styles) Environment. A KISS pure Fortran Library for easy colorize (and stylize) strings. @@ -7,3 +11,6 @@ A Fortran Ansi Colors (and Styles) Environment. A KISS pure Fortran Library for version | toolchain --------|---------- ``1.1.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FALCON.md b/docs/version-specific/supported-software/f/FALCON.md index 756230f73..81f0cc363 100644 --- a/docs/version-specific/supported-software/f/FALCON.md +++ b/docs/version-specific/supported-software/f/FALCON.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FALCON Falcon: a set of tools for fast aligning long reads for consensus and assembly @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.8`` | | ``intel/2017b`` ``1.8.8`` | ``-Python-2.7.16`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FANN.md b/docs/version-specific/supported-software/f/FANN.md index 746c962dd..07140dff0 100644 --- a/docs/version-specific/supported-software/f/FANN.md +++ b/docs/version-specific/supported-software/f/FANN.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``GCCcore/6.4.0`` ``2.2.0`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FASTA.md b/docs/version-specific/supported-software/f/FASTA.md index 5da222f46..cc82cf439 100644 --- a/docs/version-specific/supported-software/f/FASTA.md +++ b/docs/version-specific/supported-software/f/FASTA.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``36.3.5e`` | ``foss/2016b`` ``36.3.8i`` | ``GCC/11.2.0`` ``36.3.8i`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FASTX-Toolkit.md b/docs/version-specific/supported-software/f/FASTX-Toolkit.md index 4f255c96e..0103de190 100644 --- a/docs/version-specific/supported-software/f/FASTX-Toolkit.md +++ b/docs/version-specific/supported-software/f/FASTX-Toolkit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FASTX-Toolkit The FASTX-Toolkit is a collection of command line tools for Short-Reads FASTA/FASTQ files preprocessing. @@ -14,3 +18,6 @@ version | toolchain ``0.0.14`` | ``foss/2016a`` ``0.0.14`` | ``foss/2016b`` ``0.0.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FBPIC.md b/docs/version-specific/supported-software/f/FBPIC.md index ce08860da..08676def8 100644 --- a/docs/version-specific/supported-software/f/FBPIC.md +++ b/docs/version-specific/supported-software/f/FBPIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ FBPIC (Fourier-Bessel Particle-In-Cell) is a Particle-In-Cell (PIC) code for rel version | toolchain --------|---------- ``0.20.3`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FCC.md b/docs/version-specific/supported-software/f/FCC.md index 0ea3103d3..4cec2d5df 100644 --- a/docs/version-specific/supported-software/f/FCC.md +++ b/docs/version-specific/supported-software/f/FCC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FCC Fujitsu Compiler based compiler toolchain. @@ -7,3 +11,6 @@ Fujitsu Compiler based compiler toolchain. version | toolchain --------|---------- ``4.5.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FCM.md b/docs/version-specific/supported-software/f/FCM.md index 618301fe8..3bb1d18f2 100644 --- a/docs/version-specific/supported-software/f/FCM.md +++ b/docs/version-specific/supported-software/f/FCM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FCM FCM is a set of tools for managing and building source code. @@ -7,3 +11,6 @@ FCM is a set of tools for managing and building source code. version | toolchain --------|---------- ``2.3.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FDMNES.md b/docs/version-specific/supported-software/f/FDMNES.md index cfad01f35..c99b528c6 100644 --- a/docs/version-specific/supported-software/f/FDMNES.md +++ b/docs/version-specific/supported-software/f/FDMNES.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ X-ray spectroscopies are techniques which probe the electronic and structural pr version | toolchain --------|---------- ``2024-02-29`` | ``gomkl/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FDS.md b/docs/version-specific/supported-software/f/FDS.md index e122317ff..2297d8906 100644 --- a/docs/version-specific/supported-software/f/FDS.md +++ b/docs/version-specific/supported-software/f/FDS.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``6.7.7`` | | ``intel/2021b`` ``6.7.9`` | | ``intel/2022a`` ``6.8.0`` | | ``intel/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FDTD_Solutions.md b/docs/version-specific/supported-software/f/FDTD_Solutions.md index 0dedd58ef..8958d76f9 100644 --- a/docs/version-specific/supported-software/f/FDTD_Solutions.md +++ b/docs/version-specific/supported-software/f/FDTD_Solutions.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FDTD_Solutions High performance FDTD-method Maxwell solver for the design, analysis and optimization of nanophotonic devices, processes and materials. @@ -10,3 +14,6 @@ version | toolchain ``8.16.982`` | ``system`` ``8.20.1731`` | ``system`` ``8.6.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FEniCS.md b/docs/version-specific/supported-software/f/FEniCS.md index b1822987d..bcc70902f 100644 --- a/docs/version-specific/supported-software/f/FEniCS.md +++ b/docs/version-specific/supported-software/f/FEniCS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FEniCS FEniCS is a computing platform for solving partial differential equations (PDEs). @@ -7,3 +11,6 @@ FEniCS is a computing platform for solving partial differential equations (PDEs) version | versionsuffix | toolchain --------|---------------|---------- ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FFAVES.md b/docs/version-specific/supported-software/f/FFAVES.md index 1274b34c1..42d4e04c2 100644 --- a/docs/version-specific/supported-software/f/FFAVES.md +++ b/docs/version-specific/supported-software/f/FFAVES.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Functional Feature Amplification Via Entropy Sorting (FFAVES). Use FFAVES to amp version | toolchain --------|---------- ``2022.11.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FFC.md b/docs/version-specific/supported-software/f/FFC.md index 442e7e321..5c2710f0c 100644 --- a/docs/version-specific/supported-software/f/FFC.md +++ b/docs/version-specific/supported-software/f/FFC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FFC The FEniCS Form Compiler (FFC) is a compiler for finite element variational forms. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FFLAS-FFPACK.md b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md index 8d3ef3eca..751301e36 100644 --- a/docs/version-specific/supported-software/f/FFLAS-FFPACK.md +++ b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FFLAS-FFPACK Finite Field Linear Algebra Subroutines / Package @@ -9,3 +13,6 @@ version | toolchain ``2.2.0`` | ``foss/2016a`` ``2.5.0`` | ``gfbf/2022a`` ``2.5.0`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FFTW.MPI.md b/docs/version-specific/supported-software/f/FFTW.MPI.md index 1a9f70938..a03fbd3d0 100644 --- a/docs/version-specific/supported-software/f/FFTW.MPI.md +++ b/docs/version-specific/supported-software/f/FFTW.MPI.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``3.3.10`` | ``gompi/2023b`` ``3.3.10`` | ``gompi/2024.05`` ``3.3.10`` | ``nvompi/2022.07`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FFTW.md b/docs/version-specific/supported-software/f/FFTW.md index 7f4708a92..f1f44ed04 100644 --- a/docs/version-specific/supported-software/f/FFTW.md +++ b/docs/version-specific/supported-software/f/FFTW.md @@ -1,3 +1,7 @@ +--- +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. @@ -78,3 +82,6 @@ version | versionsuffix | toolchain ``3.3.8`` | | ``iompi/2020b`` ``3.3.9`` | | ``gompi/2021a`` ``3.3.9`` | | ``intel/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FFmpeg.md b/docs/version-specific/supported-software/f/FFmpeg.md index ae4851e96..fe70ba8c2 100644 --- a/docs/version-specific/supported-software/f/FFmpeg.md +++ b/docs/version-specific/supported-software/f/FFmpeg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FFmpeg A complete, cross-platform solution to record, convert and stream audio and video. @@ -41,3 +45,6 @@ version | toolchain ``5.1.2`` | ``GCCcore/12.2.0`` ``6.0`` | ``GCCcore/12.3.0`` ``6.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FGSL.md b/docs/version-specific/supported-software/f/FGSL.md index e25db98d7..0b94ef375 100644 --- a/docs/version-specific/supported-software/f/FGSL.md +++ b/docs/version-specific/supported-software/f/FGSL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FGSL FGSL: A Fortran interface to the GNU Scientific Library @@ -7,3 +11,6 @@ FGSL: A Fortran interface to the GNU Scientific Library version | toolchain --------|---------- ``1.1.0`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FHI-aims.md b/docs/version-specific/supported-software/f/FHI-aims.md index dd480bbba..e12b4e8a9 100644 --- a/docs/version-specific/supported-software/f/FHI-aims.md +++ b/docs/version-specific/supported-software/f/FHI-aims.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``200112_2`` | ``intel/2019b`` ``221103`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FIAT.md b/docs/version-specific/supported-software/f/FIAT.md index 48663d874..5e03373a9 100644 --- a/docs/version-specific/supported-software/f/FIAT.md +++ b/docs/version-specific/supported-software/f/FIAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FIGARO.md b/docs/version-specific/supported-software/f/FIGARO.md index 323670b51..191c04639 100644 --- a/docs/version-specific/supported-software/f/FIGARO.md +++ b/docs/version-specific/supported-software/f/FIGARO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FIGARO FIGARO: An efficient and objective tool for optimizing microbiome rRNA gene trimming parameters. @@ -7,3 +11,6 @@ FIGARO: An efficient and objective tool for optimizing microbiome rRNA gene trim version | toolchain --------|---------- ``1.1.2`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FIRESTARTER.md b/docs/version-specific/supported-software/f/FIRESTARTER.md index 8446a3fbf..699d8d57b 100644 --- a/docs/version-specific/supported-software/f/FIRESTARTER.md +++ b/docs/version-specific/supported-software/f/FIRESTARTER.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``gcccuda/2020a`` ``2.0`` | ``gcccuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FIX.md b/docs/version-specific/supported-software/f/FIX.md index a006e6e9e..558a58eee 100644 --- a/docs/version-specific/supported-software/f/FIX.md +++ b/docs/version-specific/supported-software/f/FIX.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ FIX attempts to auto-classify ICA components into "good" vs "bad" components, so version | versionsuffix | toolchain --------|---------------|---------- ``1.06.12`` | ``-Octave-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FIt-SNE.md b/docs/version-specific/supported-software/f/FIt-SNE.md index 7c72fe89e..b206e8dad 100644 --- a/docs/version-specific/supported-software/f/FIt-SNE.md +++ b/docs/version-specific/supported-software/f/FIt-SNE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ t-distributed stochastic neighbor embedding (t-SNE) is widely used for visualiz version | toolchain --------|---------- ``1.1.0`` | ``gompi/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLAC.md b/docs/version-specific/supported-software/f/FLAC.md index 4d9f64bf2..93b567524 100644 --- a/docs/version-specific/supported-software/f/FLAC.md +++ b/docs/version-specific/supported-software/f/FLAC.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.3.4`` | ``GCCcore/11.3.0`` ``1.4.2`` | ``GCCcore/12.2.0`` ``1.4.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLAIR.md b/docs/version-specific/supported-software/f/FLAIR.md index 529c4e955..7e54f9975 100644 --- a/docs/version-specific/supported-software/f/FLAIR.md +++ b/docs/version-specific/supported-software/f/FLAIR.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.5.1-20200630`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLANN.md b/docs/version-specific/supported-software/f/FLANN.md index 99cf886aa..3cce3cfc9 100644 --- a/docs/version-specific/supported-software/f/FLANN.md +++ b/docs/version-specific/supported-software/f/FLANN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FLANN FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLASH.md b/docs/version-specific/supported-software/f/FLASH.md index d8e04b1a1..f43373b56 100644 --- a/docs/version-specific/supported-software/f/FLASH.md +++ b/docs/version-specific/supported-software/f/FLASH.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``2.2.00`` | ``GCCcore/12.2.0`` ``2.2.00`` | ``foss/2018b`` ``2.2.00`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLEUR.md b/docs/version-specific/supported-software/f/FLEUR.md index 85e145df5..e01fb23ae 100644 --- a/docs/version-specific/supported-software/f/FLEUR.md +++ b/docs/version-specific/supported-software/f/FLEUR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FLEUR FLEUR is a feature-full, freely available FLAPW (full potential linearized augmented planewave) code, based on density-functional theory. @@ -7,3 +11,6 @@ FLEUR is a feature-full, freely available FLAPW (full potential linearized augme version | toolchain --------|---------- ``0.26e`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLINT.md b/docs/version-specific/supported-software/f/FLINT.md index faa2b3d15..0cd20eda8 100644 --- a/docs/version-specific/supported-software/f/FLINT.md +++ b/docs/version-specific/supported-software/f/FLINT.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``2.9.0`` | ``gfbf/2022a`` ``2.9.0`` | ``gfbf/2022b`` ``3.1.1`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLTK.md b/docs/version-specific/supported-software/f/FLTK.md index 2fe81a752..982ee5c56 100644 --- a/docs/version-specific/supported-software/f/FLTK.md +++ b/docs/version-specific/supported-software/f/FLTK.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | toolchain ``1.3.8`` | ``GCCcore/12.2.0`` ``1.3.8`` | ``GCCcore/12.3.0`` ``1.3.9`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FLUENT.md b/docs/version-specific/supported-software/f/FLUENT.md index 9e3b73b30..6d313e398 100644 --- a/docs/version-specific/supported-software/f/FLUENT.md +++ b/docs/version-specific/supported-software/f/FLUENT.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``2019R3`` | ``system`` ``2021R1`` | ``system`` ``2021R2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FMILibrary.md b/docs/version-specific/supported-software/f/FMILibrary.md index 404de597d..a2ec24bfe 100644 --- a/docs/version-specific/supported-software/f/FMILibrary.md +++ b/docs/version-specific/supported-software/f/FMILibrary.md @@ -1,3 +1,7 @@ +--- +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/ @@ -7,3 +11,6 @@ FMI library is intended as a foundation for applications interfacing FMUs (Func version | toolchain --------|---------- ``2.0.3`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FMM3D.md b/docs/version-specific/supported-software/f/FMM3D.md index 9edfc4a9b..a402da2cc 100644 --- a/docs/version-specific/supported-software/f/FMM3D.md +++ b/docs/version-specific/supported-software/f/FMM3D.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2023a`` ``20211018`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FMPy.md b/docs/version-specific/supported-software/f/FMPy.md index 9e4423f74..c186e9826 100644 --- a/docs/version-specific/supported-software/f/FMPy.md +++ b/docs/version-specific/supported-software/f/FMPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FMPy FMPy is a free Python library to simulate Functional Mock-up Units (FMUs). @@ -7,3 +11,6 @@ FMPy is a free Python library to simulate Functional Mock-up Units (FMUs). version | toolchain --------|---------- ``0.3.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FMRIprep.md b/docs/version-specific/supported-software/f/FMRIprep.md index 350375dea..52f4f86f3 100644 --- a/docs/version-specific/supported-software/f/FMRIprep.md +++ b/docs/version-specific/supported-software/f/FMRIprep.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.8`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.4.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FMS.md b/docs/version-specific/supported-software/f/FMS.md index 09993347e..519cdd0db 100644 --- a/docs/version-specific/supported-software/f/FMS.md +++ b/docs/version-specific/supported-software/f/FMS.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2022.02`` | ``gompi/2022a`` ``2022.02`` | ``iimpi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FORD.md b/docs/version-specific/supported-software/f/FORD.md index 35eb106ee..7d7e9ea98 100644 --- a/docs/version-specific/supported-software/f/FORD.md +++ b/docs/version-specific/supported-software/f/FORD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FORD FORD is an automatic documentation generator for modern Fortran programs @@ -9,3 +13,6 @@ version | toolchain ``6.1.1`` | ``GCCcore/10.2.0`` ``6.1.15`` | ``GCCcore/11.3.0`` ``6.1.6`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FOX-Toolkit.md b/docs/version-specific/supported-software/f/FOX-Toolkit.md index fe5e7f142..e030605c7 100644 --- a/docs/version-specific/supported-software/f/FOX-Toolkit.md +++ b/docs/version-specific/supported-software/f/FOX-Toolkit.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.6.57`` | ``GCCcore/11.2.0`` ``1.6.57`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FPM.md b/docs/version-specific/supported-software/f/FPM.md index 607c6cad0..b44b952d8 100644 --- a/docs/version-specific/supported-software/f/FPM.md +++ b/docs/version-specific/supported-software/f/FPM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FPM Effing package management! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.15.1`` | | ``GCCcore/12.2.0`` ``1.3.3`` | ``-Ruby-2.1.6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FRANz.md b/docs/version-specific/supported-software/f/FRANz.md index e47bea3c3..c096429d0 100644 --- a/docs/version-specific/supported-software/f/FRANz.md +++ b/docs/version-specific/supported-software/f/FRANz.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FRANz A fast and flexible parentage inference program for natural populations. @@ -7,3 +11,6 @@ A fast and flexible parentage inference program for natural populations. version | toolchain --------|---------- ``2.0.0`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FRUIT.md b/docs/version-specific/supported-software/f/FRUIT.md index 6da087966..9b823f8fa 100644 --- a/docs/version-specific/supported-software/f/FRUIT.md +++ b/docs/version-specific/supported-software/f/FRUIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FRUIT FORTRAN Unit Test Framework (FRUIT) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FRUIT_processor.md b/docs/version-specific/supported-software/f/FRUIT_processor.md index 63ffa80e6..b45f9f2bb 100644 --- a/docs/version-specific/supported-software/f/FRUIT_processor.md +++ b/docs/version-specific/supported-software/f/FRUIT_processor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FRUIT_processor FORTRAN Unit Test Framework (FRUIT) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FSL.md b/docs/version-specific/supported-software/f/FSL.md index c29edf046..a5dfdd1a8 100644 --- a/docs/version-specific/supported-software/f/FSL.md +++ b/docs/version-specific/supported-software/f/FSL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FSL FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``6.0.3`` | ``-Python-3.7.4`` | ``foss/2019b`` ``6.0.4`` | ``-Python-3.7.4`` | ``foss/2019b`` ``6.0.5.1`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FSLeyes.md b/docs/version-specific/supported-software/f/FSLeyes.md index e47f62b8b..2ded4e98d 100644 --- a/docs/version-specific/supported-software/f/FSLeyes.md +++ b/docs/version-specific/supported-software/f/FSLeyes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FSLeyes FSLeyes is the FSL image viewer. @@ -7,3 +11,6 @@ FSLeyes is the FSL image viewer. version | versionsuffix | toolchain --------|---------------|---------- ``0.15.0`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FSON.md b/docs/version-specific/supported-software/f/FSON.md index a70e851d6..ca402b483 100644 --- a/docs/version-specific/supported-software/f/FSON.md +++ b/docs/version-specific/supported-software/f/FSON.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FSON Fortran 95 JSON Parser @@ -7,3 +11,6 @@ Fortran 95 JSON Parser version | toolchain --------|---------- ``1.0.5`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FTGL.md b/docs/version-specific/supported-software/f/FTGL.md index a7927e7ed..319b2121e 100644 --- a/docs/version-specific/supported-software/f/FTGL.md +++ b/docs/version-specific/supported-software/f/FTGL.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2.1.3-rc5`` | ``fosscuda/2018b`` ``2.1.3-rc5`` | ``intel/2017b`` ``2.4.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FUNWAVE-TVD.md b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md index f41c7ae9c..e0eebf72c 100644 --- a/docs/version-specific/supported-software/f/FUNWAVE-TVD.md +++ b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1-20170525`` | ``-no-storm`` | ``intel/2017a`` ``3.1-20170525`` | | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FUSE.md b/docs/version-specific/supported-software/f/FUSE.md index c629fadc9..d14196fe7 100644 --- a/docs/version-specific/supported-software/f/FUSE.md +++ b/docs/version-specific/supported-software/f/FUSE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FUSE The reference implementation of the Linux FUSE (Filesystem in Userspace) interface @@ -10,3 +14,6 @@ version | toolchain ``3.14.1`` | ``GCCcore/12.2.0`` ``3.2.6`` | ``intel/2018a`` ``3.4.1`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FabIO.md b/docs/version-specific/supported-software/f/FabIO.md index 9617af149..0d0b25ff4 100644 --- a/docs/version-specific/supported-software/f/FabIO.md +++ b/docs/version-specific/supported-software/f/FabIO.md @@ -1,3 +1,7 @@ +--- +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). @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.11.0`` | | ``foss/2020b`` ``0.11.0`` | | ``fosscuda/2020b`` ``0.14.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Faber.md b/docs/version-specific/supported-software/f/Faber.md index 4f11521ac..ce14e7b9d 100644 --- a/docs/version-specific/supported-software/f/Faber.md +++ b/docs/version-specific/supported-software/f/Faber.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Faber started as a clone of Boost.Build, to experiment with a new Python fronte version | toolchain --------|---------- ``0.3`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Faiss.md b/docs/version-specific/supported-software/f/Faiss.md index 51772b04d..dd81069fb 100644 --- a/docs/version-specific/supported-software/f/Faiss.md +++ b/docs/version-specific/supported-software/f/Faiss.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Faiss is a library for efficient similarity search and clustering of dense vect version | versionsuffix | toolchain --------|---------------|---------- ``1.7.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastANI.md b/docs/version-specific/supported-software/f/FastANI.md index a094772c5..75274cf50 100644 --- a/docs/version-specific/supported-software/f/FastANI.md +++ b/docs/version-specific/supported-software/f/FastANI.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``1.33`` | ``iccifort/2020.4.304`` ``1.33`` | ``intel-compilers/2021.4.0`` ``1.34`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastFold.md b/docs/version-specific/supported-software/f/FastFold.md index cd6d7a693..57469fcad 100644 --- a/docs/version-specific/supported-software/f/FastFold.md +++ b/docs/version-specific/supported-software/f/FastFold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FastFold Optimizing Protein Structure Prediction Model Training and Inference on GPU Clusters @@ -7,3 +11,6 @@ Optimizing Protein Structure Prediction Model Training and Inference on GPU Clus version | versionsuffix | toolchain --------|---------------|---------- ``20220729`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastME.md b/docs/version-specific/supported-software/f/FastME.md index 9bf9c3625..413a9f6aa 100644 --- a/docs/version-specific/supported-software/f/FastME.md +++ b/docs/version-specific/supported-software/f/FastME.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FastME FastME: a comprehensive, accurate and fast distance-based phylogeny inference program. @@ -13,3 +17,6 @@ version | toolchain ``2.1.6.1`` | ``intel/2018a`` ``2.1.6.1`` | ``intel/2018b`` ``2.1.6.3`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastQC.md b/docs/version-specific/supported-software/f/FastQC.md index 841493960..0d472725e 100644 --- a/docs/version-specific/supported-software/f/FastQC.md +++ b/docs/version-specific/supported-software/f/FastQC.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``0.11.9`` | ``-Java-1.8`` | ``system`` ``0.11.9`` | ``-Java-11`` | ``system`` ``0.12.1`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastQTL.md b/docs/version-specific/supported-software/f/FastQTL.md index f359d0efe..eb8780f51 100644 --- a/docs/version-specific/supported-software/f/FastQTL.md +++ b/docs/version-specific/supported-software/f/FastQTL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FastQTL FastQTL is a QTL mapper @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.184`` | ``GCC/11.2.0`` ``2.184`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastQ_Screen.md b/docs/version-specific/supported-software/f/FastQ_Screen.md index 1401a1374..c8ebe1220 100644 --- a/docs/version-specific/supported-software/f/FastQ_Screen.md +++ b/docs/version-specific/supported-software/f/FastQ_Screen.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastRFS.md b/docs/version-specific/supported-software/f/FastRFS.md index 02570300f..86fe9c344 100644 --- a/docs/version-specific/supported-software/f/FastRFS.md +++ b/docs/version-specific/supported-software/f/FastRFS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FastRFS Fast Robinson Foulds Supertrees @@ -7,3 +11,6 @@ Fast Robinson Foulds Supertrees version | toolchain --------|---------- ``1.0-20190613`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastTree.md b/docs/version-specific/supported-software/f/FastTree.md index dcda5bb6e..1fde0ff1b 100644 --- a/docs/version-specific/supported-software/f/FastTree.md +++ b/docs/version-specific/supported-software/f/FastTree.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``2.1.11`` | ``GCCcore/8.2.0`` ``2.1.11`` | ``GCCcore/8.3.0`` ``2.1.11`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastViromeExplorer.md b/docs/version-specific/supported-software/f/FastViromeExplorer.md index 34853bd8b..572161bfa 100644 --- a/docs/version-specific/supported-software/f/FastViromeExplorer.md +++ b/docs/version-specific/supported-software/f/FastViromeExplorer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FastViromeExplorer Identify the viruses/phages and their abundance in the viral metagenomics data. @@ -7,3 +11,6 @@ Identify the viruses/phages and their abundance in the viral metagenomics data. version | toolchain --------|---------- ``20180422`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FastaIndex.md b/docs/version-specific/supported-software/f/FastaIndex.md index 9525b15f3..8cfc86183 100644 --- a/docs/version-specific/supported-software/f/FastaIndex.md +++ b/docs/version-specific/supported-software/f/FastaIndex.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FastaIndex FastA index (.fai) handler compatible with samtools faidx @@ -7,3 +11,6 @@ FastA index (.fai) handler compatible with samtools faidx version | versionsuffix | toolchain --------|---------------|---------- ``0.11rc7`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Fastaq.md b/docs/version-specific/supported-software/f/Fastaq.md index 6e5154f1a..55f2c504b 100644 --- a/docs/version-specific/supported-software/f/Fastaq.md +++ b/docs/version-specific/supported-software/f/Fastaq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Fastaq Python3 scripts to manipulate FASTA and FASTQ files. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.17.0`` | ``GCC/10.3.0`` ``3.17.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Ferret.md b/docs/version-specific/supported-software/f/Ferret.md index 764b99c26..4e23a5891 100644 --- a/docs/version-specific/supported-software/f/Ferret.md +++ b/docs/version-specific/supported-software/f/Ferret.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``7.3`` | ``intel/2017b`` ``7.5.0`` | ``foss/2019b`` ``7.6.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FigureGen.md b/docs/version-specific/supported-software/f/FigureGen.md index f2fc43d74..cf516882b 100644 --- a/docs/version-specific/supported-software/f/FigureGen.md +++ b/docs/version-specific/supported-software/f/FigureGen.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ FigureGen is a Fortran program that creates images for ADCIRC files. It reads me version | toolchain --------|---------- ``51-20190516`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Fiji.md b/docs/version-specific/supported-software/f/Fiji.md index 98de049a7..8bdb9decb 100644 --- a/docs/version-specific/supported-software/f/Fiji.md +++ b/docs/version-specific/supported-software/f/Fiji.md @@ -1,3 +1,7 @@ +--- +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 @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``20170530`` | | ``system`` ``20191119-2057`` | | ``system`` ``20201104-1356`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Filtlong.md b/docs/version-specific/supported-software/f/Filtlong.md index 98c32908f..e73b42ed3 100644 --- a/docs/version-specific/supported-software/f/Filtlong.md +++ b/docs/version-specific/supported-software/f/Filtlong.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ version | toolchain ``0.2.0`` | ``GCC/10.2.0`` ``0.2.0`` | ``foss/2016b`` ``0.2.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Fiona.md b/docs/version-specific/supported-software/f/Fiona.md index 04182ca35..1ac838e18 100644 --- a/docs/version-specific/supported-software/f/Fiona.md +++ b/docs/version-specific/supported-software/f/Fiona.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``1.8.21`` | | ``foss/2022a`` ``1.9.2`` | | ``foss/2022b`` ``1.9.5`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FireWorks.md b/docs/version-specific/supported-software/f/FireWorks.md index cadf1f996..201ac4e23 100644 --- a/docs/version-specific/supported-software/f/FireWorks.md +++ b/docs/version-specific/supported-software/f/FireWorks.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FireWorks FireWorks helps run calculation workflows, with a centralized workflow server controlling many worker nodes. @@ -7,3 +11,6 @@ FireWorks helps run calculation workflows, with a centralized workflow server c version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Firefox.md b/docs/version-specific/supported-software/f/Firefox.md index f577156d4..837543801 100644 --- a/docs/version-specific/supported-software/f/Firefox.md +++ b/docs/version-specific/supported-software/f/Firefox.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Firefox is a free, open source Web browser for Windows, Linux and Mac OS X. It i version | toolchain --------|---------- ``44.0.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Flask.md b/docs/version-specific/supported-software/f/Flask.md index 8e66e9863..44c163816 100644 --- a/docs/version-specific/supported-software/f/Flask.md +++ b/docs/version-specific/supported-software/f/Flask.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``2.2.3`` | | ``GCCcore/12.2.0`` ``2.3.3`` | | ``GCCcore/12.3.0`` ``3.0.0`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Flexbar.md b/docs/version-specific/supported-software/f/Flexbar.md index ee0d2dfe0..9bf692fbd 100644 --- a/docs/version-specific/supported-software/f/Flexbar.md +++ b/docs/version-specific/supported-software/f/Flexbar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Flexbar The program Flexbar preprocesses high-throughput sequencing data efficiently @@ -7,3 +11,6 @@ The program Flexbar preprocesses high-throughput sequencing data efficiently version | toolchain --------|---------- ``3.5.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FlexiBLAS.md b/docs/version-specific/supported-software/f/FlexiBLAS.md index 51ad38036..03c789d64 100644 --- a/docs/version-specific/supported-software/f/FlexiBLAS.md +++ b/docs/version-specific/supported-software/f/FlexiBLAS.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``3.3.1`` | ``GCC/12.3.0`` ``3.3.1`` | ``GCC/13.2.0`` ``3.4.4`` | ``GCC/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FlexiDot.md b/docs/version-specific/supported-software/f/FlexiDot.md index 98f8b9d87..9d32dffa2 100644 --- a/docs/version-specific/supported-software/f/FlexiDot.md +++ b/docs/version-specific/supported-software/f/FlexiDot.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FlexiDot Highly customizable, ambiguity-aware dotplots for visual sequence analyses @@ -7,3 +11,6 @@ Highly customizable, ambiguity-aware dotplots for visual sequence analyses version | versionsuffix | toolchain --------|---------------|---------- ``1.06`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Flink.md b/docs/version-specific/supported-software/f/Flink.md index 43df49a3a..33c6c16fb 100644 --- a/docs/version-specific/supported-software/f/Flink.md +++ b/docs/version-specific/supported-software/f/Flink.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Apache Flink is a framework and distributed processing engine for stateful compu version | versionsuffix | toolchain --------|---------------|---------- ``1.11.2`` | ``-bin-scala_2.11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Flye.md b/docs/version-specific/supported-software/f/Flye.md index a0f9f36fc..adba496ba 100644 --- a/docs/version-specific/supported-software/f/Flye.md +++ b/docs/version-specific/supported-software/f/Flye.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``2.9.2`` | | ``GCC/11.3.0`` ``2.9.3`` | | ``GCC/10.3.0`` ``2.9.3`` | | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FoBiS.md b/docs/version-specific/supported-software/f/FoBiS.md index 465ccfe1d..d4a38ab83 100644 --- a/docs/version-specific/supported-software/f/FoBiS.md +++ b/docs/version-specific/supported-software/f/FoBiS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FoBiS A Fortran Building System for automatic building modern Fortran projects @@ -7,3 +11,6 @@ A Fortran Building System for automatic building modern Fortran projects version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FoX.md b/docs/version-specific/supported-software/f/FoX.md index a27e178a1..b1e82ecf1 100644 --- a/docs/version-specific/supported-software/f/FoX.md +++ b/docs/version-specific/supported-software/f/FoX.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``4.1.2`` | ``GCC/9.3.0`` ``4.1.2`` | ``intel/2017b`` ``4.1.2`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FoldX.md b/docs/version-specific/supported-software/f/FoldX.md index 16d0b24c8..9ba8e0b43 100644 --- a/docs/version-specific/supported-software/f/FoldX.md +++ b/docs/version-specific/supported-software/f/FoldX.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``3.0-beta5.1`` | ``system`` ``3.0-beta6.1`` | ``system`` ``3.0-beta6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FragGeneScan.md b/docs/version-specific/supported-software/f/FragGeneScan.md index 03d129d1e..9fe7da30d 100644 --- a/docs/version-specific/supported-software/f/FragGeneScan.md +++ b/docs/version-specific/supported-software/f/FragGeneScan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FragGeneScan FragGeneScan is an application for finding (fragmented) genes in short reads. @@ -12,3 +16,6 @@ version | toolchain ``1.31`` | ``GCCcore/11.3.0`` ``1.31`` | ``GCCcore/8.2.0`` ``1.31`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FragPipe.md b/docs/version-specific/supported-software/f/FragPipe.md index f6c47ac11..9d3269618 100644 --- a/docs/version-specific/supported-software/f/FragPipe.md +++ b/docs/version-specific/supported-software/f/FragPipe.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ FragPipe is a Java Graphical User Interface (GUI) for a suite of computational version | versionsuffix | toolchain --------|---------------|---------- ``20.0`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeBarcodes.md b/docs/version-specific/supported-software/f/FreeBarcodes.md index 029672841..4564abe72 100644 --- a/docs/version-specific/supported-software/f/FreeBarcodes.md +++ b/docs/version-specific/supported-software/f/FreeBarcodes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FreeBarcodes A package for the generation and decoding of FREE divergence error-correcting DNA barcodes @@ -7,3 +11,6 @@ A package for the generation and decoding of FREE divergence error-correcting DN version | toolchain --------|---------- ``3.0.a5`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeFEM.md b/docs/version-specific/supported-software/f/FreeFEM.md index a7704c383..c1b0c9d55 100644 --- a/docs/version-specific/supported-software/f/FreeFEM.md +++ b/docs/version-specific/supported-software/f/FreeFEM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FreeFEM FreeFEM offers a fast interpolation algorithm and a language for the manipulation of data on multiple meshes. @@ -7,3 +11,6 @@ FreeFEM offers a fast interpolation algorithm and a language for the manipulatio version | versionsuffix | toolchain --------|---------------|---------- ``4.5`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeFem++.md b/docs/version-specific/supported-software/f/FreeFem++.md index db1c920d7..b1e3c1f38 100644 --- a/docs/version-specific/supported-software/f/FreeFem++.md +++ b/docs/version-specific/supported-software/f/FreeFem++.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``3.58`` | ``-downloaded-deps`` | ``foss/2017b`` ``3.60`` | ``-downloaded-deps`` | ``intel/2018a`` ``3.61-1`` | ``-downloaded-deps`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeImage.md b/docs/version-specific/supported-software/f/FreeImage.md index d917f61a4..35674571f 100644 --- a/docs/version-specific/supported-software/f/FreeImage.md +++ b/docs/version-specific/supported-software/f/FreeImage.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``3.18.0`` | ``GCCcore/7.3.0`` ``3.18.0`` | ``GCCcore/8.3.0`` ``3.18.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeSASA.md b/docs/version-specific/supported-software/f/FreeSASA.md index 66348dede..99fbe4130 100644 --- a/docs/version-specific/supported-software/f/FreeSASA.md +++ b/docs/version-specific/supported-software/f/FreeSASA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FreeSASA FreeSASA is a command line tool, C-library and Python module for calculating solvent accessible surface areas (SASA). @@ -7,3 +11,6 @@ FreeSASA is a command line tool, C-library and Python module for calculating sol version | toolchain --------|---------- ``2.0.3`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeSurfer.md b/docs/version-specific/supported-software/f/FreeSurfer.md index dcfbc762c..40bdfa739 100644 --- a/docs/version-specific/supported-software/f/FreeSurfer.md +++ b/docs/version-specific/supported-software/f/FreeSurfer.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``7.4.1`` | ``-centos8_x86_64`` | ``system`` ``7.4.1`` | ``-ubuntu20_amd64`` | ``system`` ``7.4.1`` | ``-ubuntu22_amd64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeTDS.md b/docs/version-specific/supported-software/f/FreeTDS.md index 0c0c20506..f3500fdea 100644 --- a/docs/version-specific/supported-software/f/FreeTDS.md +++ b/docs/version-specific/supported-software/f/FreeTDS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ FreeTDS is a set of libraries for Unix and Linux that allows your programs to n version | toolchain --------|---------- ``1.3.3`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FreeXL.md b/docs/version-specific/supported-software/f/FreeXL.md index 723633b68..1733c3e2a 100644 --- a/docs/version-specific/supported-software/f/FreeXL.md +++ b/docs/version-specific/supported-software/f/FreeXL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FreeXL FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. @@ -13,3 +17,6 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.2.0`` ``1.0.5`` | ``GCCcore/8.3.0`` ``1.0.6`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FriBidi.md b/docs/version-specific/supported-software/f/FriBidi.md index 4a3c49d02..7d2aaa448 100644 --- a/docs/version-specific/supported-software/f/FriBidi.md +++ b/docs/version-specific/supported-software/f/FriBidi.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.2.0`` ``1.0.5`` | ``GCCcore/8.3.0`` ``1.0.9`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FuSeq.md b/docs/version-specific/supported-software/f/FuSeq.md index 6facf4e82..3a4d51eca 100644 --- a/docs/version-specific/supported-software/f/FuSeq.md +++ b/docs/version-specific/supported-software/f/FuSeq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FuSeq FuSeq is a novel method to discover fusion genes from paired-end RNA sequencing data. @@ -7,3 +11,6 @@ FuSeq is a novel method to discover fusion genes from paired-end RNA sequencing version | toolchain --------|---------- ``1.1.2`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/Fujitsu.md b/docs/version-specific/supported-software/f/Fujitsu.md index a7cce8844..da3caf880 100644 --- a/docs/version-specific/supported-software/f/Fujitsu.md +++ b/docs/version-specific/supported-software/f/Fujitsu.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Fujitsu Toolchain using Fujitsu compilers and libraries. @@ -7,3 +11,6 @@ Toolchain using Fujitsu compilers and libraries. version | toolchain --------|---------- ``21.05`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FunGAP.md b/docs/version-specific/supported-software/f/FunGAP.md index f2fb6aa7b..03395ca6d 100644 --- a/docs/version-specific/supported-software/f/FunGAP.md +++ b/docs/version-specific/supported-software/f/FunGAP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # FunGAP Fungal Genome Annotation Pipeline using evidence-based gene model evaluation. @@ -7,3 +11,6 @@ Fungal Genome Annotation Pipeline using evidence-based gene model evaluation. version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/FusionCatcher.md b/docs/version-specific/supported-software/f/FusionCatcher.md index 90d58140a..5f5a0b8dc 100644 --- a/docs/version-specific/supported-software/f/FusionCatcher.md +++ b/docs/version-specific/supported-software/f/FusionCatcher.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.20`` | ``-Python-2.7.16`` | ``foss/2019b`` ``1.30`` | ``-Python-2.7.16`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/f90cache.md b/docs/version-specific/supported-software/f/f90cache.md index 08b13ee96..acd53f170 100644 --- a/docs/version-specific/supported-software/f/f90cache.md +++ b/docs/version-specific/supported-software/f/f90cache.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ f90cache is a compiler cache. It acts as a caching pre-processor to Fortran comp version | toolchain --------|---------- ``0.96`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/f90nml.md b/docs/version-specific/supported-software/f/f90nml.md index 8da84cf70..4233dd307 100644 --- a/docs/version-specific/supported-software/f/f90nml.md +++ b/docs/version-specific/supported-software/f/f90nml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # f90nml A Python module and command line tool for parsing Fortran namelist files @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.4.4`` | ``GCCcore/12.2.0`` ``1.4.4`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/f90wrap.md b/docs/version-specific/supported-software/f/f90wrap.md index 264288269..b8e7c4783 100644 --- a/docs/version-specific/supported-software/f/f90wrap.md +++ b/docs/version-specific/supported-software/f/f90wrap.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.2.11`` | ``foss/2022a`` ``0.2.13`` | ``foss/2023a`` ``0.2.8`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/faceswap.md b/docs/version-specific/supported-software/f/faceswap.md index ff53ba39c..46bcaf17c 100644 --- a/docs/version-specific/supported-software/f/faceswap.md +++ b/docs/version-specific/supported-software/f/faceswap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # faceswap Faceswap is a tool that utilizes deep learning to recognize and swap faces in pictures and videos. @@ -7,3 +11,6 @@ Faceswap is a tool that utilizes deep learning to recognize and swap faces in pi version | versionsuffix | toolchain --------|---------------|---------- ``20180212`` | ``-Python-3.6.3`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fast5.md b/docs/version-specific/supported-software/f/fast5.md index 1fbb9c31d..d616f47c2 100644 --- a/docs/version-specific/supported-software/f/fast5.md +++ b/docs/version-specific/supported-software/f/fast5.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fast5 A lightweight C++ library for accessing Oxford Nanopore Technologies sequencing data. @@ -7,3 +11,6 @@ A lightweight C++ library for accessing Oxford Nanopore Technologies sequencing version | toolchain --------|---------- ``0.6.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastPHASE.md b/docs/version-specific/supported-software/f/fastPHASE.md index 7dd21a08b..126283084 100644 --- a/docs/version-specific/supported-software/f/fastPHASE.md +++ b/docs/version-specific/supported-software/f/fastPHASE.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ fastPHASE: software for haplotype reconstruction, and estimating missing genoty version | toolchain --------|---------- ``1.4.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastStructure.md b/docs/version-specific/supported-software/f/fastStructure.md index 8944d53f2..dbd2b9a21 100644 --- a/docs/version-specific/supported-software/f/fastStructure.md +++ b/docs/version-specific/supported-software/f/fastStructure.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` ``1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fasta-reader.md b/docs/version-specific/supported-software/f/fasta-reader.md index 88308364f..2f1d59dad 100644 --- a/docs/version-specific/supported-software/f/fasta-reader.md +++ b/docs/version-specific/supported-software/f/fasta-reader.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fasta-reader FASTA file reader @@ -7,3 +11,6 @@ FASTA file reader version | toolchain --------|---------- ``3.0.2`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastahack.md b/docs/version-specific/supported-software/f/fastahack.md index f6b05cbc8..43216578a 100644 --- a/docs/version-specific/supported-software/f/fastahack.md +++ b/docs/version-specific/supported-software/f/fastahack.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fastahack Utilities for indexing and sequence extraction from FASTA files. @@ -12,3 +16,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/11.3.0`` ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastai.md b/docs/version-specific/supported-software/f/fastai.md index df3600ef8..c23bb5384 100644 --- a/docs/version-specific/supported-software/f/fastai.md +++ b/docs/version-specific/supported-software/f/fastai.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fastai The fastai deep learning library. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.7.10`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.7.10`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastjet-contrib.md b/docs/version-specific/supported-software/f/fastjet-contrib.md index 214da1462..9a7b576d5 100644 --- a/docs/version-specific/supported-software/f/fastjet-contrib.md +++ b/docs/version-specific/supported-software/f/fastjet-contrib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fastjet-contrib 3rd party extensions of FastJet @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.049`` | ``gompi/2022a`` ``1.053`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastjet.md b/docs/version-specific/supported-software/f/fastjet.md index 7a8ff5fd4..dc98df478 100644 --- a/docs/version-specific/supported-software/f/fastjet.md +++ b/docs/version-specific/supported-software/f/fastjet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fastjet A software package for jet finding in pp and e+e- collisions @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.4.0`` | ``gompi/2022a`` ``3.4.2`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastml.md b/docs/version-specific/supported-software/f/fastml.md index 798a28cac..de8ebc930 100644 --- a/docs/version-specific/supported-software/f/fastml.md +++ b/docs/version-specific/supported-software/f/fastml.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Maximum likelihood reconstruction of ancestral amino-acid sequences. A branch-an version | toolchain --------|---------- ``2.3`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastp.md b/docs/version-specific/supported-software/f/fastp.md index cad968d05..a7bb64b46 100644 --- a/docs/version-specific/supported-software/f/fastp.md +++ b/docs/version-specific/supported-software/f/fastp.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``0.23.2`` | ``GCC/11.3.0`` ``0.23.4`` | ``GCC/12.2.0`` ``0.23.4`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastparquet.md b/docs/version-specific/supported-software/f/fastparquet.md index 4483a41f2..b28d14efa 100644 --- a/docs/version-specific/supported-software/f/fastparquet.md +++ b/docs/version-specific/supported-software/f/fastparquet.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.7.2`` | ``foss/2021a`` ``0.8.0`` | ``foss/2021b`` ``2023.4.0`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastq-pair.md b/docs/version-specific/supported-software/f/fastq-pair.md index 4bd79117c..1acd12764 100644 --- a/docs/version-specific/supported-software/f/fastq-pair.md +++ b/docs/version-specific/supported-software/f/fastq-pair.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fastq-pair Match up paired end fastq files quickly and efficiently. @@ -7,3 +11,6 @@ Match up paired end fastq files quickly and efficiently. version | toolchain --------|---------- ``1.0`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastq-tools.md b/docs/version-specific/supported-software/f/fastq-tools.md index 38167a9c8..ae730fb12 100644 --- a/docs/version-specific/supported-software/f/fastq-tools.md +++ b/docs/version-specific/supported-software/f/fastq-tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``0.8`` | ``foss/2018b`` ``0.8.3`` | ``GCC/10.3.0`` ``0.8.3`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastqsplitter.md b/docs/version-specific/supported-software/f/fastqsplitter.md index bf00a9bc1..06e86bc75 100644 --- a/docs/version-specific/supported-software/f/fastqsplitter.md +++ b/docs/version-specific/supported-software/f/fastqsplitter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fastqsplitter Splits fastq files evenly. @@ -7,3 +11,6 @@ Splits fastq files evenly. version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fastqz.md b/docs/version-specific/supported-software/f/fastqz.md index 975581e22..8490f1688 100644 --- a/docs/version-specific/supported-software/f/fastqz.md +++ b/docs/version-specific/supported-software/f/fastqz.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ fastqz is a compressor for FASTQ files. FASTQ is the output of DNA sequencing ma version | toolchain --------|---------- ``1.5`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fatslim.md b/docs/version-specific/supported-software/f/fatslim.md index 6d5b16094..3fbebb9a1 100644 --- a/docs/version-specific/supported-software/f/fatslim.md +++ b/docs/version-specific/supported-software/f/fatslim.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ FATSLiM stands for “Fast Analysis Toolbox for Simulations of Lipid Membranes version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fbm.md b/docs/version-specific/supported-software/f/fbm.md index 19fbf97a3..2dbbe848a 100644 --- a/docs/version-specific/supported-software/f/fbm.md +++ b/docs/version-specific/supported-software/f/fbm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fbm Exact methods for simulating fractional Brownian motion and fractional Gaussian noise in Python @@ -7,3 +11,6 @@ Exact methods for simulating fractional Brownian motion and fractional Gaussian version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fdict.md b/docs/version-specific/supported-software/f/fdict.md index 7a58c7a51..55c9f4e4e 100644 --- a/docs/version-specific/supported-software/f/fdict.md +++ b/docs/version-specific/supported-software/f/fdict.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fdict A variable and dictionary in pure fortran for retaining any data-type and a fast hash-table dictionary. @@ -12,3 +16,6 @@ version | toolchain ``0.8.0`` | ``iccifort/2020.4.304`` ``0.8.0`` | ``intel-compilers/2021.2.0`` ``0.8.0`` | ``intel-compilers/2021.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fdstools.md b/docs/version-specific/supported-software/f/fdstools.md index 4428e2d33..3e27d3e47 100644 --- a/docs/version-specific/supported-software/f/fdstools.md +++ b/docs/version-specific/supported-software/f/fdstools.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Forensic DNA Sequencing Tools Tools for characterisation and filtering of PCR st version | versionsuffix | toolchain --------|---------------|---------- ``20160322`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/feh.md b/docs/version-specific/supported-software/f/feh.md index b027e15f4..434cfcd13 100644 --- a/docs/version-specific/supported-software/f/feh.md +++ b/docs/version-specific/supported-software/f/feh.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ feh is an X11 image viewer aimed mostly at console users. Unlike most other view version | toolchain --------|---------- ``2.26`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fermi-lite.md b/docs/version-specific/supported-software/f/fermi-lite.md index 6a6141239..74dd8db25 100644 --- a/docs/version-specific/supported-software/f/fermi-lite.md +++ b/docs/version-specific/supported-software/f/fermi-lite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fermi-lite Standalone C library for assembling Illumina short reads in small regions. @@ -11,3 +15,6 @@ version | toolchain ``20190320`` | ``GCCcore/11.2.0`` ``20190320`` | ``GCCcore/12.3.0`` ``20190320`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/festival.md b/docs/version-specific/supported-software/f/festival.md index a2f823b5e..5ff2dc8f1 100644 --- a/docs/version-specific/supported-software/f/festival.md +++ b/docs/version-specific/supported-software/f/festival.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fetchMG.md b/docs/version-specific/supported-software/f/fetchMG.md index fcfa1c267..8f1d0c9f6 100644 --- a/docs/version-specific/supported-software/f/fetchMG.md +++ b/docs/version-specific/supported-software/f/fetchMG.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/8.3.0`` ``1.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/ffmpi.md b/docs/version-specific/supported-software/f/ffmpi.md index 50676b93a..8eaa2ecd8 100644 --- a/docs/version-specific/supported-software/f/ffmpi.md +++ b/docs/version-specific/supported-software/f/ffmpi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ffmpi Fujitsu Compiler based compiler toolchain, including Fujitsu MPI for MPI support. @@ -7,3 +11,6 @@ Fujitsu Compiler based compiler toolchain, including Fujitsu MPI for MPI support version | toolchain --------|---------- ``4.5.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/ffnet.md b/docs/version-specific/supported-software/f/ffnet.md index 0f65435bd..ebf499e2f 100644 --- a/docs/version-specific/supported-software/f/ffnet.md +++ b/docs/version-specific/supported-software/f/ffnet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ffnet Feed-forward neural network solution for python @@ -7,3 +11,6 @@ Feed-forward neural network solution for python version | versionsuffix | toolchain --------|---------------|---------- ``0.8.3`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/ffnvcodec.md b/docs/version-specific/supported-software/f/ffnvcodec.md index c77a892bc..d99b83907 100644 --- a/docs/version-specific/supported-software/f/ffnvcodec.md +++ b/docs/version-specific/supported-software/f/ffnvcodec.md @@ -1,3 +1,7 @@ +--- +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). @@ -9,3 +13,6 @@ version | toolchain ``11.1.5.2`` | ``system`` ``12.0.16.0`` | ``system`` ``12.1.14.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fftlib.md b/docs/version-specific/supported-software/f/fftlib.md index a22443a33..0f5860a39 100644 --- a/docs/version-specific/supported-software/f/fftlib.md +++ b/docs/version-specific/supported-software/f/fftlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20170628`` | ``gompi/2020b`` ``20170628`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fgbio.md b/docs/version-specific/supported-software/f/fgbio.md index 23017e189..f03418e21 100644 --- a/docs/version-specific/supported-software/f/fgbio.md +++ b/docs/version-specific/supported-software/f/fgbio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fgbio A set of tools to analyze genomic data with a focus on Next Generation Sequencing. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.0`` | | ``system`` ``2.2.1`` | ``-Java-8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/file.md b/docs/version-specific/supported-software/f/file.md index bac703458..b3dc8baa2 100644 --- a/docs/version-specific/supported-software/f/file.md +++ b/docs/version-specific/supported-software/f/file.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``5.43`` | ``GCCcore/11.3.0`` ``5.43`` | ``GCCcore/12.2.0`` ``5.43`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/filevercmp.md b/docs/version-specific/supported-software/f/filevercmp.md index 66db11da2..8a23fe791 100644 --- a/docs/version-specific/supported-software/f/filevercmp.md +++ b/docs/version-specific/supported-software/f/filevercmp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # filevercmp filevercmp function as in sort --version-sort. @@ -12,3 +16,6 @@ version | toolchain ``20191210`` | ``GCCcore/11.2.0`` ``20191210`` | ``GCCcore/11.3.0`` ``20191210`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/find_circ.md b/docs/version-specific/supported-software/f/find_circ.md index fb7ef7942..0499bf0c9 100644 --- a/docs/version-specific/supported-software/f/find_circ.md +++ b/docs/version-specific/supported-software/f/find_circ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # find_circ circRNA detection from RNA-seq reads @@ -7,3 +11,6 @@ circRNA detection from RNA-seq reads version | versionsuffix | toolchain --------|---------------|---------- ``1.2-20170228`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/finder.md b/docs/version-specific/supported-software/f/finder.md index 5752134c4..62c747eb9 100644 --- a/docs/version-specific/supported-software/f/finder.md +++ b/docs/version-specific/supported-software/f/finder.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ finder is a gene annotator pipeline which automates the process of downloading s version | toolchain --------|---------- ``1.1.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/findhap.md b/docs/version-specific/supported-software/f/findhap.md index ee724037b..8b2df0d72 100644 --- a/docs/version-specific/supported-software/f/findhap.md +++ b/docs/version-specific/supported-software/f/findhap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # findhap Find haplotypes and impute genotypes using multiple chip sets and sequence data @@ -7,3 +11,6 @@ Find haplotypes and impute genotypes using multiple chip sets and sequence data version | toolchain --------|---------- ``4`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/findutils.md b/docs/version-specific/supported-software/f/findutils.md index c7f6377a3..4cd8631cd 100644 --- a/docs/version-specific/supported-software/f/findutils.md +++ b/docs/version-specific/supported-software/f/findutils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # findutils findutils: The GNU find, locate, updatedb, and xargs utilities @@ -7,3 +11,6 @@ findutils: The GNU find, locate, updatedb, and xargs utilities version | toolchain --------|---------- ``4.4.2`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fineRADstructure.md b/docs/version-specific/supported-software/f/fineRADstructure.md index 688fac4fd..bf99ac7c4 100644 --- a/docs/version-specific/supported-software/f/fineRADstructure.md +++ b/docs/version-specific/supported-software/f/fineRADstructure.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fineRADstructure A package for population structure inference from RAD-seq data @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20180709`` | ``intel/2018a`` ``20210514`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fineSTRUCTURE.md b/docs/version-specific/supported-software/f/fineSTRUCTURE.md index a90a2cf6b..848e66ee0 100644 --- a/docs/version-specific/supported-software/f/fineSTRUCTURE.md +++ b/docs/version-specific/supported-software/f/fineSTRUCTURE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fineSTRUCTURE fineSTRUCTURE is a fast and powerful algorithm for identifying population structure using dense sequencing data. @@ -7,3 +11,6 @@ fineSTRUCTURE is a fast and powerful algorithm for identifying population struct version | toolchain --------|---------- ``2.1.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fio.md b/docs/version-specific/supported-software/f/fio.md index 25742449b..1916c9ac1 100644 --- a/docs/version-specific/supported-software/f/fio.md +++ b/docs/version-specific/supported-software/f/fio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fio Flexible I/O tester @@ -10,3 +14,6 @@ version | toolchain ``3.32`` | ``GCCcore/11.3.0`` ``3.34`` | ``GCCcore/12.2.0`` ``3.36`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fixesproto.md b/docs/version-specific/supported-software/f/fixesproto.md index f402c1a69..d7c777af0 100644 --- a/docs/version-specific/supported-software/f/fixesproto.md +++ b/docs/version-specific/supported-software/f/fixesproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fixesproto X.org FixesProto protocol headers. @@ -9,3 +13,6 @@ version | toolchain ``5.0`` | ``foss/2016a`` ``5.0`` | ``gimkl/2.11.5`` ``5.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flair-NLP.md b/docs/version-specific/supported-software/f/flair-NLP.md index 2461fadf3..101ff9e00 100644 --- a/docs/version-specific/supported-software/f/flair-NLP.md +++ b/docs/version-specific/supported-software/f/flair-NLP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # flair-NLP A very simple framework for state-of-the-art NLP @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.11.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.11.3`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flatbuffers-python.md b/docs/version-specific/supported-software/f/flatbuffers-python.md index b382aa919..6f78c7339 100644 --- a/docs/version-specific/supported-software/f/flatbuffers-python.md +++ b/docs/version-specific/supported-software/f/flatbuffers-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # flatbuffers-python Python Flatbuffers runtime library. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.0`` | | ``GCCcore/11.3.0`` ``23.1.4`` | | ``GCCcore/12.2.0`` ``23.5.26`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flatbuffers.md b/docs/version-specific/supported-software/f/flatbuffers.md index 9401cbf06..723ac6947 100644 --- a/docs/version-specific/supported-software/f/flatbuffers.md +++ b/docs/version-specific/supported-software/f/flatbuffers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # flatbuffers FlatBuffers: Memory Efficient Serialization Library @@ -16,3 +20,6 @@ version | toolchain ``23.1.4`` | ``GCCcore/12.2.0`` ``23.5.26`` | ``GCCcore/12.3.0`` ``23.5.26`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flex.md b/docs/version-specific/supported-software/f/flex.md index 3cd905989..c4e11ff89 100644 --- a/docs/version-specific/supported-software/f/flex.md +++ b/docs/version-specific/supported-software/f/flex.md @@ -1,3 +1,7 @@ +--- +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. @@ -80,3 +84,6 @@ version | toolchain ``2.6.4`` | ``GCCcore/9.5.0`` ``2.6.4`` | ``GCCcore/system`` ``2.6.4`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flit.md b/docs/version-specific/supported-software/f/flit.md index fc03e6871..36bd761ab 100644 --- a/docs/version-specific/supported-software/f/flit.md +++ b/docs/version-specific/supported-software/f/flit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # flit A simple packaging tool for simple packages. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.9.0`` | ``GCCcore/12.3.0`` ``3.9.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flook.md b/docs/version-specific/supported-software/f/flook.md index 87d6d8f2b..08a3c3700 100644 --- a/docs/version-specific/supported-software/f/flook.md +++ b/docs/version-specific/supported-software/f/flook.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # flook The fortran-Lua-hook library. @@ -13,3 +17,6 @@ version | toolchain ``0.8.1`` | ``iccifort/2020.4.304`` ``0.8.1`` | ``intel-compilers/2021.2.0`` ``0.8.1`` | ``intel-compilers/2021.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/flowFDA.md b/docs/version-specific/supported-software/f/flowFDA.md index 765675f1e..d41ca542d 100644 --- a/docs/version-specific/supported-software/f/flowFDA.md +++ b/docs/version-specific/supported-software/f/flowFDA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # flowFDA R package for analysing flow cytometry experiments with model based clustering, functional principal component analysis @@ -7,3 +11,6 @@ R package for analysing flow cytometry experiments with model based clustering, version | versionsuffix | toolchain --------|---------------|---------- ``0.99-20220602`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fmt.md b/docs/version-specific/supported-software/f/fmt.md index b02959997..4be6321cb 100644 --- a/docs/version-specific/supported-software/f/fmt.md +++ b/docs/version-specific/supported-software/f/fmt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fmt fmt (formerly cppformat) is an open-source formatting library. @@ -21,3 +25,6 @@ version | toolchain ``8.1.1`` | ``GCCcore/11.2.0`` ``9.1.0`` | ``GCCcore/11.3.0`` ``9.1.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fontconfig.md b/docs/version-specific/supported-software/f/fontconfig.md index 34b611795..bee1f2137 100644 --- a/docs/version-specific/supported-software/f/fontconfig.md +++ b/docs/version-specific/supported-software/f/fontconfig.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fontconfig Fontconfig is a library designed to provide system-wide font configuration, customization and application access. @@ -31,3 +35,6 @@ version | versionsuffix | toolchain ``2.14.2`` | | ``GCCcore/12.3.0`` ``2.14.2`` | | ``GCCcore/13.2.0`` ``2.15.0`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fontsproto.md b/docs/version-specific/supported-software/f/fontsproto.md index bf4e10f9c..7835fd625 100644 --- a/docs/version-specific/supported-software/f/fontsproto.md +++ b/docs/version-specific/supported-software/f/fontsproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fontsproto X11 font extension wire protocol @@ -9,3 +13,6 @@ version | toolchain ``2.1.3`` | ``foss/2016a`` ``2.1.3`` | ``gimkl/2.11.5`` ``2.1.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/forbear.md b/docs/version-specific/supported-software/f/forbear.md index beafbde27..b7ba4da8f 100644 --- a/docs/version-specific/supported-software/f/forbear.md +++ b/docs/version-specific/supported-software/f/forbear.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # forbear A Fortran Library for building and running fancy progress bar @@ -7,3 +11,6 @@ A Fortran Library for building and running fancy progress bar version | toolchain --------|---------- ``1.2.0`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/foss.md b/docs/version-specific/supported-software/f/foss.md index 5081ab9bb..414597707 100644 --- a/docs/version-specific/supported-software/f/foss.md +++ b/docs/version-specific/supported-software/f/foss.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | toolchain ``2023a`` | ``system`` ``2023b`` | ``system`` ``2024.05`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fosscuda.md b/docs/version-specific/supported-software/f/fosscuda.md index 289539a2c..3193e1024 100644 --- a/docs/version-specific/supported-software/f/fosscuda.md +++ b/docs/version-specific/supported-software/f/fosscuda.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2019b`` | ``system`` ``2020a`` | ``system`` ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fplll.md b/docs/version-specific/supported-software/f/fplll.md index b36b0b6a4..fc817e2cd 100644 --- a/docs/version-specific/supported-software/f/fplll.md +++ b/docs/version-specific/supported-software/f/fplll.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ fplll contains implementations of several lattice algorithms. The implementatio version | toolchain --------|---------- ``5.4.5`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fpocket.md b/docs/version-specific/supported-software/f/fpocket.md index eba998e24..883c65b8d 100644 --- a/docs/version-specific/supported-software/f/fpocket.md +++ b/docs/version-specific/supported-software/f/fpocket.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The fpocket suite of programs is a very fast open source protein pocket detectio version | toolchain --------|---------- ``3.1.4.2`` | ``gompi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fpylll.md b/docs/version-specific/supported-software/f/fpylll.md index 0c775296b..732bf92ec 100644 --- a/docs/version-specific/supported-software/f/fpylll.md +++ b/docs/version-specific/supported-software/f/fpylll.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fpylll A Python wrapper for fplll. @@ -7,3 +11,6 @@ A Python wrapper for fplll. version | toolchain --------|---------- ``0.5.9`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fqtrim.md b/docs/version-specific/supported-software/f/fqtrim.md index 39b6da77b..91ddfd383 100644 --- a/docs/version-specific/supported-software/f/fqtrim.md +++ b/docs/version-specific/supported-software/f/fqtrim.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.9.4`` | ``intel/2016b`` ``0.9.5`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fqzcomp.md b/docs/version-specific/supported-software/f/fqzcomp.md index 9885d8560..9f91f99e1 100644 --- a/docs/version-specific/supported-software/f/fqzcomp.md +++ b/docs/version-specific/supported-software/f/fqzcomp.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Fqzcomp is a basic fastq compressor, designed primarily for high performance. D version | toolchain --------|---------- ``4.6`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/freebayes.md b/docs/version-specific/supported-software/f/freebayes.md index 4b2978e3a..e50f45184 100644 --- a/docs/version-specific/supported-software/f/freebayes.md +++ b/docs/version-specific/supported-software/f/freebayes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # freebayes Bayesian haplotype-based genetic polymorphism discovery and genotyping. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/freeglut.md b/docs/version-specific/supported-software/f/freeglut.md index a5db24d87..e9907b23c 100644 --- a/docs/version-specific/supported-software/f/freeglut.md +++ b/docs/version-specific/supported-software/f/freeglut.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # freeglut freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``3.2.2`` | | ``GCCcore/11.3.0`` ``3.4.0`` | | ``GCCcore/12.2.0`` ``3.4.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/freetype-py.md b/docs/version-specific/supported-software/f/freetype-py.md index f68fe0bbd..518623017 100644 --- a/docs/version-specific/supported-software/f/freetype-py.md +++ b/docs/version-specific/supported-software/f/freetype-py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # freetype-py Python binding for the freetype library @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``2.4.0`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/freetype.md b/docs/version-specific/supported-software/f/freetype.md index b867a7790..84a073163 100644 --- a/docs/version-specific/supported-software/f/freetype.md +++ b/docs/version-specific/supported-software/f/freetype.md @@ -1,3 +1,7 @@ +--- +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. @@ -37,3 +41,6 @@ version | versionsuffix | toolchain ``2.9`` | | ``GCCcore/6.4.0`` ``2.9.1`` | | ``GCCcore/7.3.0`` ``2.9.1`` | | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/freud-analysis.md b/docs/version-specific/supported-software/f/freud-analysis.md index 97d735fd5..e3f8f2298 100644 --- a/docs/version-specific/supported-software/f/freud-analysis.md +++ b/docs/version-specific/supported-software/f/freud-analysis.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The freud Python library provides a simple, flexible, powerful set of tools for version | toolchain --------|---------- ``2.6.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fsom.md b/docs/version-specific/supported-software/f/fsom.md index 07e1e3f81..b2c1b501b 100644 --- a/docs/version-specific/supported-software/f/fsom.md +++ b/docs/version-specific/supported-software/f/fsom.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fsom A tiny C library for managing SOM (Self-Organizing Maps) neural networks. @@ -12,3 +16,6 @@ version | toolchain ``20141119`` | ``GCCcore/9.3.0`` ``20151117`` | ``GCCcore/11.3.0`` ``20151117`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/ftfy.md b/docs/version-specific/supported-software/f/ftfy.md index 91bc92a2f..2df652068 100644 --- a/docs/version-specific/supported-software/f/ftfy.md +++ b/docs/version-specific/supported-software/f/ftfy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ftfy (fixes text for you) fixes Unicode that’s broken in various ways. The goa version | toolchain --------|---------- ``6.1.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fugue.md b/docs/version-specific/supported-software/f/fugue.md index 798a891cc..2efa0d3e4 100644 --- a/docs/version-specific/supported-software/f/fugue.md +++ b/docs/version-specific/supported-software/f/fugue.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Fugue is a unified interface for distributed computing that lets users execute P version | toolchain --------|---------- ``0.8.7`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fullrmc.md b/docs/version-specific/supported-software/f/fullrmc.md index 3d8dc7142..ea0e940b8 100644 --- a/docs/version-specific/supported-software/f/fullrmc.md +++ b/docs/version-specific/supported-software/f/fullrmc.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Reverse Monte Carlo (RMC) is probably best known for its applications in conden version | versionsuffix | toolchain --------|---------------|---------- ``3.2.0`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fumi_tools.md b/docs/version-specific/supported-software/f/fumi_tools.md index 8145133c7..0db0ebeaa 100644 --- a/docs/version-specific/supported-software/f/fumi_tools.md +++ b/docs/version-specific/supported-software/f/fumi_tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/funannotate.md b/docs/version-specific/supported-software/f/funannotate.md index 33c96aece..116ea8478 100644 --- a/docs/version-specific/supported-software/f/funannotate.md +++ b/docs/version-specific/supported-software/f/funannotate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # funannotate funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes) @@ -7,3 +11,6 @@ funannotate is a pipeline for genome annotation (built specifically for fungi, b version | toolchain --------|---------- ``1.8.13`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/futhark.md b/docs/version-specific/supported-software/f/futhark.md index 97632f33f..5d9732ac3 100644 --- a/docs/version-specific/supported-software/f/futhark.md +++ b/docs/version-specific/supported-software/f/futhark.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Futhark is a small programming language designed to be compiled to efficient par version | toolchain --------|---------- ``0.19.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/futile.md b/docs/version-specific/supported-software/f/futile.md index 9823386da..c4fd36af2 100644 --- a/docs/version-specific/supported-software/f/futile.md +++ b/docs/version-specific/supported-software/f/futile.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.8.3`` | ``intel/2020b`` ``1.8.3`` | ``intel/2021a`` ``1.8.3`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/future.md b/docs/version-specific/supported-software/f/future.md index 0807ad29c..d48b5d27b 100644 --- a/docs/version-specific/supported-software/f/future.md +++ b/docs/version-specific/supported-software/f/future.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # future python-future is the missing compatibility layer between Python 2 and Python 3. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/fxtract.md b/docs/version-specific/supported-software/f/fxtract.md index 7050e6410..82a54244e 100644 --- a/docs/version-specific/supported-software/f/fxtract.md +++ b/docs/version-specific/supported-software/f/fxtract.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # fxtract Extract sequences from a fastx (fasta or fastq) file given a subsequence. @@ -7,3 +11,6 @@ Extract sequences from a fastx (fasta or fastq) file given a subsequence. version | toolchain --------|---------- ``2.3`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/f/index.md b/docs/version-specific/supported-software/f/index.md index 840d152bb..92e7b5b60 100644 --- a/docs/version-specific/supported-software/f/index.md +++ b/docs/version-specific/supported-software/f/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (f) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - *f* - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [f90cache](f90cache.md) * [f90nml](f90nml.md) * [f90wrap](f90wrap.md) diff --git a/docs/version-specific/supported-software/g/G-PhoCS.md b/docs/version-specific/supported-software/g/G-PhoCS.md index f62e4aaa7..258279758 100644 --- a/docs/version-specific/supported-software/g/G-PhoCS.md +++ b/docs/version-specific/supported-software/g/G-PhoCS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ G-PhoCS is a software package for inferring ancestral population sizes, populati version | toolchain --------|---------- ``1.2.3`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GAMESS-US.md b/docs/version-specific/supported-software/g/GAMESS-US.md index e5e48ea43..45bfc2c5e 100644 --- a/docs/version-specific/supported-software/g/GAMESS-US.md +++ b/docs/version-specific/supported-software/g/GAMESS-US.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GAMESS-US The General Atomic and Molecular Electronic Structure System (GAMESS) is a general ab initio quantum chemistry package. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``20220930-R2`` | | ``gompi/2022a`` ``20230930-R2`` | | ``gompi/2022a`` ``20230930-R2`` | | ``intel-compilers/2022.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GAPPadder.md b/docs/version-specific/supported-software/g/GAPPadder.md index 94525c304..5e4c0e0b4 100644 --- a/docs/version-specific/supported-software/g/GAPPadder.md +++ b/docs/version-specific/supported-software/g/GAPPadder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GAPPadder GAPPadder is tool for closing gaps on draft genomes with short sequencing data @@ -7,3 +11,6 @@ GAPPadder is tool for closing gaps on draft genomes with short sequencing data version | versionsuffix | toolchain --------|---------------|---------- ``20170601`` | ``-Python-2.7.18`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GARLI.md b/docs/version-specific/supported-software/g/GARLI.md index 5e2a96344..fb8baa906 100644 --- a/docs/version-specific/supported-software/g/GARLI.md +++ b/docs/version-specific/supported-software/g/GARLI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GARLI, Genetic Algorithm for Rapid Likelihood Inference is a program for infer version | toolchain --------|---------- ``2.01`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GAT.md b/docs/version-specific/supported-software/g/GAT.md index 610f2d820..af8110be5 100644 --- a/docs/version-specific/supported-software/g/GAT.md +++ b/docs/version-specific/supported-software/g/GAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Genomic Association Tester (GAT) is a tool for computing the significance of version | versionsuffix | toolchain --------|---------------|---------- ``1.2.2`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GATB-Core.md b/docs/version-specific/supported-software/g/GATB-Core.md index 0494dd900..ea4df1b72 100644 --- a/docs/version-specific/supported-software/g/GATB-Core.md +++ b/docs/version-specific/supported-software/g/GATB-Core.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ GATB-Core is a high-performance and low memory footprint C++ library that provid version | toolchain --------|---------- ``1.4.2`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GATE.md b/docs/version-specific/supported-software/g/GATE.md index 05a18b883..9d80d1cc1 100644 --- a/docs/version-specific/supported-software/g/GATE.md +++ b/docs/version-specific/supported-software/g/GATE.md @@ -1,3 +1,7 @@ +--- +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 @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``9.1`` | | ``foss/2021b`` ``9.2`` | | ``foss/2021b`` ``9.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GATK.md b/docs/version-specific/supported-software/g/GATK.md index 649a800c9..c1e07a329 100644 --- a/docs/version-specific/supported-software/g/GATK.md +++ b/docs/version-specific/supported-software/g/GATK.md @@ -1,3 +1,7 @@ +--- +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. @@ -49,3 +53,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GBprocesS.md b/docs/version-specific/supported-software/g/GBprocesS.md index c5fcb8f33..532e18633 100644 --- a/docs/version-specific/supported-software/g/GBprocesS.md +++ b/docs/version-specific/supported-software/g/GBprocesS.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``4.0.0.post1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GC3Pie.md b/docs/version-specific/supported-software/g/GC3Pie.md index 8016cc505..5db93510a 100644 --- a/docs/version-specific/supported-software/g/GC3Pie.md +++ b/docs/version-specific/supported-software/g/GC3Pie.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GC3Pie GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution environments. @@ -9,3 +13,6 @@ version | toolchain ``2.4.2`` | ``system`` ``2.5.0`` | ``system`` ``2.5.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GCC.md b/docs/version-specific/supported-software/g/GCC.md index 252750eb3..150a1bea8 100644 --- a/docs/version-specific/supported-software/g/GCC.md +++ b/docs/version-specific/supported-software/g/GCC.md @@ -1,3 +1,7 @@ +--- +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,...). @@ -75,3 +79,6 @@ version | versionsuffix | toolchain ``9.5.0`` | | ``system`` ``system`` | ``-2.29`` | ``system`` ``system`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GCCcore.md b/docs/version-specific/supported-software/g/GCCcore.md index 49b216300..fe0e664e3 100644 --- a/docs/version-specific/supported-software/g/GCCcore.md +++ b/docs/version-specific/supported-software/g/GCCcore.md @@ -1,3 +1,7 @@ +--- +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,...). @@ -45,3 +49,6 @@ version | toolchain ``9.4.0`` | ``system`` ``9.5.0`` | ``system`` ``system`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GCTA.md b/docs/version-specific/supported-software/g/GCTA.md index 59dfe2fc7..814063f5e 100644 --- a/docs/version-specific/supported-software/g/GCTA.md +++ b/docs/version-specific/supported-software/g/GCTA.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | toolchain ``1.94.0beta`` | ``gfbf/2022a`` ``1.94.1`` | ``gfbf/2022a`` ``1.94.1`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GConf.md b/docs/version-specific/supported-software/g/GConf.md index 068c222b2..0887c560f 100644 --- a/docs/version-specific/supported-software/g/GConf.md +++ b/docs/version-specific/supported-software/g/GConf.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``3.2.6`` | ``intel/2016b`` ``3.2.6`` | ``intel/2017a`` ``3.2.6`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GD.md b/docs/version-specific/supported-software/g/GD.md index b4073e0b0..00d6cd169 100644 --- a/docs/version-specific/supported-software/g/GD.md +++ b/docs/version-specific/supported-software/g/GD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GD GD.pm - Interface to Gd Graphics Library @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2.71`` | | ``GCCcore/9.3.0`` ``2.73`` | | ``GCCcore/10.3.0`` ``2.75`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GDAL.md b/docs/version-specific/supported-software/g/GDAL.md index 04b3d6e76..54d554ac7 100644 --- a/docs/version-specific/supported-software/g/GDAL.md +++ b/docs/version-specific/supported-software/g/GDAL.md @@ -1,3 +1,7 @@ +--- +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. @@ -53,3 +57,6 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``foss/2022a`` ``3.6.2`` | | ``foss/2022b`` ``3.7.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GDB.md b/docs/version-specific/supported-software/g/GDB.md index 19fc2a578..81cec6429 100644 --- a/docs/version-specific/supported-software/g/GDB.md +++ b/docs/version-specific/supported-software/g/GDB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GDB The GNU Project Debugger @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GDCHART.md b/docs/version-specific/supported-software/g/GDCHART.md index 1f47495a4..658faa9cf 100644 --- a/docs/version-specific/supported-software/g/GDCHART.md +++ b/docs/version-specific/supported-software/g/GDCHART.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GDCHART Easy to use C API, high performance library to create charts and graphs in PNG, GIF and WBMP format. @@ -7,3 +11,6 @@ Easy to use C API, high performance library to create charts and graphs in PNG, version | toolchain --------|---------- ``0.11.5dev`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GDCM.md b/docs/version-specific/supported-software/g/GDCM.md index 4ac2cd11a..553d97208 100644 --- a/docs/version-specific/supported-software/g/GDCM.md +++ b/docs/version-specific/supported-software/g/GDCM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GDCM Grassroots DICOM: Cross-platform DICOM implementation @@ -14,3 +18,6 @@ version | toolchain ``3.0.5`` | ``GCCcore/8.3.0`` ``3.0.8`` | ``GCCcore/10.2.0`` ``3.0.8`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GDGraph.md b/docs/version-specific/supported-software/g/GDGraph.md index eee1e4a8b..8fab6ccba 100644 --- a/docs/version-specific/supported-software/g/GDGraph.md +++ b/docs/version-specific/supported-software/g/GDGraph.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GDGraph GDGraph is a Perl package to generate charts @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GDRCopy.md b/docs/version-specific/supported-software/g/GDRCopy.md index 0fe2a3ea9..ad5f65298 100644 --- a/docs/version-specific/supported-software/g/GDRCopy.md +++ b/docs/version-specific/supported-software/g/GDRCopy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GDRCopy A low-latency GPU memory copy library based on NVIDIA GPUDirect RDMA technology. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``2.3.1`` | | ``GCCcore/12.3.0`` ``2.4`` | | ``GCCcore/13.2.0`` ``2.4.1`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GEGL.md b/docs/version-specific/supported-software/g/GEGL.md index 37d80fbcd..0e032ee75 100644 --- a/docs/version-specific/supported-software/g/GEGL.md +++ b/docs/version-specific/supported-software/g/GEGL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GEGL (Generic Graphics Library) is a data flow based image processing framework, version | toolchain --------|---------- ``0.4.30`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GEM-library.md b/docs/version-specific/supported-software/g/GEM-library.md index c04a6bc09..cf51d92ca 100644 --- a/docs/version-specific/supported-software/g/GEM-library.md +++ b/docs/version-specific/supported-software/g/GEM-library.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Next-generation sequencing platforms (Illumina/Solexa, ABI/SOLiD, etc.) call f version | versionsuffix | toolchain --------|---------------|---------- ``20130406-045632`` | ``_pre-release-3_Linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GEM.md b/docs/version-specific/supported-software/g/GEM.md index 0a2c0f94e..e6790e060 100644 --- a/docs/version-specific/supported-software/g/GEM.md +++ b/docs/version-specific/supported-software/g/GEM.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.1`` | ``foss/2022a`` ``1.5.1`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GEMMA.md b/docs/version-specific/supported-software/g/GEMMA.md index c3530753d..405fc2303 100644 --- a/docs/version-specific/supported-software/g/GEMMA.md +++ b/docs/version-specific/supported-software/g/GEMMA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GEMMA Genome-wide Efficient Mixed Model Association @@ -12,3 +16,6 @@ version | toolchain ``0.98.5`` | ``foss/2020a`` ``0.98.5`` | ``foss/2021b`` ``0.98.5`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GEOS.md b/docs/version-specific/supported-software/g/GEOS.md index fa2059b28..c5df6e7f0 100644 --- a/docs/version-specific/supported-software/g/GEOS.md +++ b/docs/version-specific/supported-software/g/GEOS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GEOS GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS) @@ -43,3 +47,6 @@ version | versionsuffix | toolchain ``3.9.1`` | | ``GCC/11.2.0`` ``3.9.1`` | | ``iccifort/2020.4.304`` ``3.9.1`` | | ``intel-compilers/2021.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GETORB.md b/docs/version-specific/supported-software/g/GETORB.md index cf2aff41c..aa304f4ab 100644 --- a/docs/version-specific/supported-software/g/GETORB.md +++ b/docs/version-specific/supported-software/g/GETORB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GETORB GETORB software package contains programs to handle the orbital data records (ODRs) @@ -7,3 +11,6 @@ GETORB software package contains programs to handle the orbital data records (OD version | toolchain --------|---------- ``2.3.2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GFF3-toolkit.md b/docs/version-specific/supported-software/g/GFF3-toolkit.md index 71dcf5f68..8bffe73f0 100644 --- a/docs/version-specific/supported-software/g/GFF3-toolkit.md +++ b/docs/version-specific/supported-software/g/GFF3-toolkit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GFF3-toolkit Python programs for processing GFF3 files @@ -7,3 +11,6 @@ Python programs for processing GFF3 files version | toolchain --------|---------- ``2.1.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GFOLD.md b/docs/version-specific/supported-software/g/GFOLD.md index 39a4210f5..6ef5609bc 100644 --- a/docs/version-specific/supported-software/g/GFOLD.md +++ b/docs/version-specific/supported-software/g/GFOLD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GFOLD Generalized fold change for ranking differentially expressed genes from RNA-seq data @@ -7,3 +11,6 @@ Generalized fold change for ranking differentially expressed genes from RNA-seq version | toolchain --------|---------- ``1.1.4`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GHC.md b/docs/version-specific/supported-software/g/GHC.md index 728a5278f..c8b69d4dc 100644 --- a/docs/version-specific/supported-software/g/GHC.md +++ b/docs/version-specific/supported-software/g/GHC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GHC The Glorious/Glasgow Haskell Compiler @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``8.6.5`` | ``-x86_64`` | ``system`` ``9.2.2`` | ``-x86_64`` | ``system`` ``9.4.6`` | ``-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GI-DocGen.md b/docs/version-specific/supported-software/g/GI-DocGen.md index 4b943986e..67f3e2f0f 100644 --- a/docs/version-specific/supported-software/g/GI-DocGen.md +++ b/docs/version-specific/supported-software/g/GI-DocGen.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GI-DocGen is a document generator for GObject-based libraries. GObject is the ba version | toolchain --------|---------- ``2023.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GIMIC.md b/docs/version-specific/supported-software/g/GIMIC.md index 853aa960f..98b303f29 100644 --- a/docs/version-specific/supported-software/g/GIMIC.md +++ b/docs/version-specific/supported-software/g/GIMIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.1`` | | ``foss/2022a`` ``2018.04.20`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GIMP.md b/docs/version-specific/supported-software/g/GIMP.md index 07c7f833c..53c08799e 100644 --- a/docs/version-specific/supported-software/g/GIMP.md +++ b/docs/version-specific/supported-software/g/GIMP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GIMP GIMP is a cross-platform image editor available for GNU/Linux, OS X, Windows and more operating systems. @@ -7,3 +11,6 @@ GIMP is a cross-platform image editor available for GNU/Linux, OS X, Windows and version | toolchain --------|---------- ``2.10.24`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GIMPS.md b/docs/version-specific/supported-software/g/GIMPS.md index fc0a6efad..430218a19 100644 --- a/docs/version-specific/supported-software/g/GIMPS.md +++ b/docs/version-specific/supported-software/g/GIMPS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GIMPS GIMPS: Great Internet Mersenne Prime Search; it can be useful for limited stress testing of nodes, in user space @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``p95v279`` | ``GCC/4.8.2`` ``p95v279.linux64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GKeyll.md b/docs/version-specific/supported-software/g/GKeyll.md index e2a08f436..470ff179a 100644 --- a/docs/version-specific/supported-software/g/GKeyll.md +++ b/docs/version-specific/supported-software/g/GKeyll.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gkeyll v2.0 (pronounced as in the book “The Strange Case of Dr. Jekyll and Mr version | versionsuffix | toolchain --------|---------------|---------- ``20220803`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GKlib-METIS.md b/docs/version-specific/supported-software/g/GKlib-METIS.md index fcd3d72d7..76b581780 100644 --- a/docs/version-specific/supported-software/g/GKlib-METIS.md +++ b/docs/version-specific/supported-software/g/GKlib-METIS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GKlib-METIS A library of various helper routines and frameworks used by many of the lab's software @@ -7,3 +11,6 @@ A library of various helper routines and frameworks used by many of the lab's s version | toolchain --------|---------- ``5.1.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GL2PS.md b/docs/version-specific/supported-software/g/GL2PS.md index 3176f5c9a..286fd26ba 100644 --- a/docs/version-specific/supported-software/g/GL2PS.md +++ b/docs/version-specific/supported-software/g/GL2PS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GL2PS GL2PS: an OpenGL to PostScript printing library @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``1.4.2`` | | ``GCCcore/12.2.0`` ``1.4.2`` | | ``GCCcore/12.3.0`` ``1.4.2`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLFW.md b/docs/version-specific/supported-software/g/GLFW.md index ae4c7abbe..9c6d8c6f8 100644 --- a/docs/version-specific/supported-software/g/GLFW.md +++ b/docs/version-specific/supported-software/g/GLFW.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GLFW GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop @@ -14,3 +18,6 @@ version | toolchain ``3.3.8`` | ``GCCcore/11.3.0`` ``3.4`` | ``GCCcore/12.2.0`` ``3.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLI.md b/docs/version-specific/supported-software/g/GLI.md index 9ab5d360f..925abc3a2 100644 --- a/docs/version-specific/supported-software/g/GLI.md +++ b/docs/version-specific/supported-software/g/GLI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GLI Graphics Language Interpreter @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.5.31`` | ``GCCcore/10.2.0`` ``4.5.31`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLIMMER.md b/docs/version-specific/supported-software/g/GLIMMER.md index 80bd9189e..0914d6000 100644 --- a/docs/version-specific/supported-software/g/GLIMMER.md +++ b/docs/version-specific/supported-software/g/GLIMMER.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GLIMMER Glimmer is a system for finding genes in microbial DNA, especially the genomes of bacteria, archaea, and viruses. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.02b`` | ``foss/2016b`` ``3.02b`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLIMPSE.md b/docs/version-specific/supported-software/g/GLIMPSE.md index d297c53a2..c6ae113ed 100644 --- a/docs/version-specific/supported-software/g/GLIMPSE.md +++ b/docs/version-specific/supported-software/g/GLIMPSE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GLIMPSE GLIMPSE2 is a set of tools for phasing and imputation for low-coverage sequencing datasets @@ -9,3 +13,6 @@ version | toolchain ``2.0.0`` | ``GCC/10.3.0`` ``2.0.0`` | ``GCC/11.3.0`` ``2.0.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLM-AED.md b/docs/version-specific/supported-software/g/GLM-AED.md index 4a6e8bfe1..ef8eb7788 100644 --- a/docs/version-specific/supported-software/g/GLM-AED.md +++ b/docs/version-specific/supported-software/g/GLM-AED.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The General Lake Model (GLM) is a water balance and one-dimensional vertical str version | toolchain --------|---------- ``3.3.0a5`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLM.md b/docs/version-specific/supported-software/g/GLM.md index 000b82f2f..e2744c6e6 100644 --- a/docs/version-specific/supported-software/g/GLM.md +++ b/docs/version-specific/supported-software/g/GLM.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``0.9.9.8`` | ``GCCcore/12.2.0`` ``0.9.9.8`` | ``GCCcore/12.3.0`` ``0.9.9.8`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLPK.md b/docs/version-specific/supported-software/g/GLPK.md index 866ef1d39..3a572b7e3 100644 --- a/docs/version-specific/supported-software/g/GLPK.md +++ b/docs/version-specific/supported-software/g/GLPK.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | toolchain ``5.0`` | ``GCCcore/12.2.0`` ``5.0`` | ``GCCcore/12.3.0`` ``5.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLib.md b/docs/version-specific/supported-software/g/GLib.md index dc0699fce..c91e0c9c9 100644 --- a/docs/version-specific/supported-software/g/GLib.md +++ b/docs/version-specific/supported-software/g/GLib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GLib GLib is one of the base libraries of the GTK+ project @@ -32,3 +36,6 @@ version | toolchain ``2.75.0`` | ``GCCcore/12.2.0`` ``2.77.1`` | ``GCCcore/12.3.0`` ``2.78.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GLibmm.md b/docs/version-specific/supported-software/g/GLibmm.md index 6d7327629..bb453c679 100644 --- a/docs/version-specific/supported-software/g/GLibmm.md +++ b/docs/version-specific/supported-software/g/GLibmm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GLibmm C++ bindings for Glib @@ -10,3 +14,6 @@ version | toolchain ``2.49.7`` | ``GCCcore/8.2.0`` ``2.49.7`` | ``GCCcore/8.3.0`` ``2.66.4`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GMAP-GSNAP.md b/docs/version-specific/supported-software/g/GMAP-GSNAP.md index f4a7287cd..840e3f7ef 100644 --- a/docs/version-specific/supported-software/g/GMAP-GSNAP.md +++ b/docs/version-specific/supported-software/g/GMAP-GSNAP.md @@ -1,3 +1,7 @@ +--- +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 @@ -17,3 +21,6 @@ version | toolchain ``2023-02-17`` | ``GCC/11.3.0`` ``2023-04-20`` | ``GCC/10.3.0`` ``2023-04-20`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GMP-ECM.md b/docs/version-specific/supported-software/g/GMP-ECM.md index 197cce569..cba080146 100644 --- a/docs/version-specific/supported-software/g/GMP-ECM.md +++ b/docs/version-specific/supported-software/g/GMP-ECM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GMP-ECM Yet another implementation of the Elliptic Curve Method. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``7.0.5`` | ``GCCcore/11.3.0`` ``7.0.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GMP.md b/docs/version-specific/supported-software/g/GMP.md index 5110d4b76..7b31a4a0d 100644 --- a/docs/version-specific/supported-software/g/GMP.md +++ b/docs/version-specific/supported-software/g/GMP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GMP GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. @@ -41,3 +45,6 @@ version | toolchain ``6.2.1`` | ``GCCcore/12.3.0`` ``6.3.0`` | ``GCCcore/13.2.0`` ``6.3.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GMT.md b/docs/version-specific/supported-software/g/GMT.md index 1257f3749..2ce7a9be8 100644 --- a/docs/version-specific/supported-software/g/GMT.md +++ b/docs/version-specific/supported-software/g/GMT.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``5.4.5`` | ``foss/2019a`` ``6.2.0`` | ``foss/2019b`` ``6.2.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GNU.md b/docs/version-specific/supported-software/g/GNU.md index ec3bdc544..7bdd9ac68 100644 --- a/docs/version-specific/supported-software/g/GNU.md +++ b/docs/version-specific/supported-software/g/GNU.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GNU Compiler-only toolchain with GCC and binutils. @@ -9,3 +13,6 @@ version | toolchain ``4.9.2-2.25`` | ``system`` ``4.9.3-2.25`` | ``system`` ``5.1.0-2.25`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GOATOOLS.md b/docs/version-specific/supported-software/g/GOATOOLS.md index d47842618..743faf8bd 100644 --- a/docs/version-specific/supported-software/g/GOATOOLS.md +++ b/docs/version-specific/supported-software/g/GOATOOLS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GOATOOLS A Python library for Gene Ontology analyses @@ -10,3 +14,6 @@ version | toolchain ``1.3.1`` | ``foss/2021b`` ``1.3.1`` | ``foss/2022a`` ``1.4.5`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GOBNILP.md b/docs/version-specific/supported-software/g/GOBNILP.md index 690e11c5f..90f6a9034 100644 --- a/docs/version-specific/supported-software/g/GOBNILP.md +++ b/docs/version-specific/supported-software/g/GOBNILP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GOBNILP (Globally Optimal Bayesian Network learning using Integer Linear Program version | toolchain --------|---------- ``1.6.3`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GObject-Introspection.md b/docs/version-specific/supported-software/g/GObject-Introspection.md index 66a7d539b..089587ef2 100644 --- a/docs/version-specific/supported-software/g/GObject-Introspection.md +++ b/docs/version-specific/supported-software/g/GObject-Introspection.md @@ -1,3 +1,7 @@ +--- +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. @@ -33,3 +37,6 @@ version | versionsuffix | toolchain ``1.74.0`` | | ``GCCcore/12.2.0`` ``1.76.1`` | | ``GCCcore/12.3.0`` ``1.78.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GP2C.md b/docs/version-specific/supported-software/g/GP2C.md index c39206d4b..1f6ccf6de 100644 --- a/docs/version-specific/supported-software/g/GP2C.md +++ b/docs/version-specific/supported-software/g/GP2C.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The gp2c compiler is a package for translating GP routines into the C programmin version | toolchain --------|---------- ``0.0.9pl5`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GPAW-setups.md b/docs/version-specific/supported-software/g/GPAW-setups.md index d0bfe9301..8bad4c161 100644 --- a/docs/version-specific/supported-software/g/GPAW-setups.md +++ b/docs/version-specific/supported-software/g/GPAW-setups.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``0.9.20000`` | ``system`` ``0.9.9672`` | ``system`` ``24.1.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GPAW.md b/docs/version-specific/supported-software/g/GPAW.md index fce061ec0..ca0faf292 100644 --- a/docs/version-specific/supported-software/g/GPAW.md +++ b/docs/version-specific/supported-software/g/GPAW.md @@ -1,3 +1,7 @@ +--- +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. @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``24.1.0`` | | ``foss/2023a`` ``24.1.0`` | | ``intel/2022a`` ``24.1.0`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GPy.md b/docs/version-specific/supported-software/g/GPy.md index 415810a8a..f05447db2 100644 --- a/docs/version-specific/supported-software/g/GPy.md +++ b/docs/version-specific/supported-software/g/GPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GPy GPy is a Gaussian Process (GP) framework written in Python @@ -7,3 +11,6 @@ GPy is a Gaussian Process (GP) framework written in Python version | toolchain --------|---------- ``1.10.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GPyOpt.md b/docs/version-specific/supported-software/g/GPyOpt.md index f6bac0271..1b3dd1faf 100644 --- a/docs/version-specific/supported-software/g/GPyOpt.md +++ b/docs/version-specific/supported-software/g/GPyOpt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GPyOpt GPyOpt is a Python open-source library for Bayesian Optimization @@ -7,3 +11,6 @@ GPyOpt is a Python open-source library for Bayesian Optimization version | toolchain --------|---------- ``1.2.6`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GPyTorch.md b/docs/version-specific/supported-software/g/GPyTorch.md index a17572fde..9e1ae0cc4 100644 --- a/docs/version-specific/supported-software/g/GPyTorch.md +++ b/docs/version-specific/supported-software/g/GPyTorch.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GPyTorch GPyTorch is a Gaussian process library implemented using PyTorch. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GRASP-suite.md b/docs/version-specific/supported-software/g/GRASP-suite.md index 397b86615..0fec62cfe 100644 --- a/docs/version-specific/supported-software/g/GRASP-suite.md +++ b/docs/version-specific/supported-software/g/GRASP-suite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GRASP-suite GRASP-suite is a collection of tools and tutorials to perform and analyse ancestral sequence reconstruction. @@ -7,3 +11,6 @@ GRASP-suite is a collection of tools and tutorials to perform and analyse ances version | versionsuffix | toolchain --------|---------------|---------- ``2023-05-09`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GRASP.md b/docs/version-specific/supported-software/g/GRASP.md index d858de2ce..30ad23a76 100644 --- a/docs/version-specific/supported-software/g/GRASP.md +++ b/docs/version-specific/supported-software/g/GRASP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The General Relativistic Atomic Structure Package (GRASP) is a set of Fortran 9 version | toolchain --------|---------- ``2018`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GRASS.md b/docs/version-specific/supported-software/g/GRASS.md index 36673cacc..9f1f886fe 100644 --- a/docs/version-specific/supported-software/g/GRASS.md +++ b/docs/version-specific/supported-software/g/GRASS.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GRIDSS.md b/docs/version-specific/supported-software/g/GRIDSS.md index ed0929008..623fd7acc 100644 --- a/docs/version-specific/supported-software/g/GRIDSS.md +++ b/docs/version-specific/supported-software/g/GRIDSS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GRIDSS is a module software suite containing tools useful for the detection of g version | versionsuffix | toolchain --------|---------------|---------- ``2.13.2`` | ``-Java-11`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GRIT.md b/docs/version-specific/supported-software/g/GRIT.md index 98f55c049..ad9bc5dc2 100644 --- a/docs/version-specific/supported-software/g/GRIT.md +++ b/docs/version-specific/supported-software/g/GRIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GRIT GRIT - A tool for the integrative analysis of RNA-seq type assays @@ -7,3 +11,6 @@ GRIT - A tool for the integrative analysis of RNA-seq type assays version | versionsuffix | toolchain --------|---------------|---------- ``2.0.5`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GRNBoost.md b/docs/version-specific/supported-software/g/GRNBoost.md index 42783e599..be484addf 100644 --- a/docs/version-specific/supported-software/g/GRNBoost.md +++ b/docs/version-specific/supported-software/g/GRNBoost.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GRNBoost XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. @@ -7,3 +11,6 @@ XGBoost is an optimized distributed gradient boosting library designed to be hig version | versionsuffix | toolchain --------|---------------|---------- ``20171009`` | ``-Java-1.8.0_152`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GROMACS.md b/docs/version-specific/supported-software/g/GROMACS.md index 8c2641f2a..af7873731 100644 --- a/docs/version-specific/supported-software/g/GROMACS.md +++ b/docs/version-specific/supported-software/g/GROMACS.md @@ -1,3 +1,7 @@ +--- +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. @@ -74,3 +78,6 @@ version | versionsuffix | toolchain ``5.1.2`` | ``-hybrid`` | ``intel/2016a`` ``5.1.4`` | ``-hybrid`` | ``foss/2016b`` ``5.1.4`` | ``-mt`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GSD.md b/docs/version-specific/supported-software/g/GSD.md index 4f0925dab..5aefed391 100644 --- a/docs/version-specific/supported-software/g/GSD.md +++ b/docs/version-specific/supported-software/g/GSD.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The GSD file format is the native file format for HOOMD-blue. GSD files store tr version | toolchain --------|---------- ``3.2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GSEA.md b/docs/version-specific/supported-software/g/GSEA.md index 15c0dde8d..732848448 100644 --- a/docs/version-specific/supported-software/g/GSEA.md +++ b/docs/version-specific/supported-software/g/GSEA.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines w version | toolchain --------|---------- ``4.0.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GSL.md b/docs/version-specific/supported-software/g/GSL.md index 80f561234..00aa24c1b 100644 --- a/docs/version-specific/supported-software/g/GSL.md +++ b/docs/version-specific/supported-software/g/GSL.md @@ -1,3 +1,7 @@ +--- +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. @@ -40,3 +44,6 @@ version | toolchain ``2.7`` | ``intel-compilers/2021.2.0`` ``2.7`` | ``intel-compilers/2021.4.0`` ``2.7`` | ``intel-compilers/2022.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GST-plugins-bad.md b/docs/version-specific/supported-software/g/GST-plugins-bad.md index b828c2807..57d2be767 100644 --- a/docs/version-specific/supported-software/g/GST-plugins-bad.md +++ b/docs/version-specific/supported-software/g/GST-plugins-bad.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.20.2`` | ``GCC/11.3.0`` ``1.22.5`` | ``GCC/12.2.0`` ``1.22.5`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GST-plugins-base.md b/docs/version-specific/supported-software/g/GST-plugins-base.md index 03ca23886..a85cea6cc 100644 --- a/docs/version-specific/supported-software/g/GST-plugins-base.md +++ b/docs/version-specific/supported-software/g/GST-plugins-base.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | toolchain ``1.22.5`` | ``GCC/12.3.0`` ``1.6.4`` | ``foss/2016a`` ``1.8.3`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GStreamer.md b/docs/version-specific/supported-software/g/GStreamer.md index 8f000f3ed..0c7cb2710 100644 --- a/docs/version-specific/supported-software/g/GStreamer.md +++ b/docs/version-specific/supported-software/g/GStreamer.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``1.22.5`` | ``GCC/12.3.0`` ``1.6.4`` | ``foss/2016a`` ``1.8.3`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTDB-Tk.md b/docs/version-specific/supported-software/g/GTDB-Tk.md index 2776561ff..55c2c1797 100644 --- a/docs/version-specific/supported-software/g/GTDB-Tk.md +++ b/docs/version-specific/supported-software/g/GTDB-Tk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GTDB-Tk A toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``2.3.2`` | | ``foss/2022a`` ``2.3.2`` | | ``foss/2023a`` ``2.4.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTK+.md b/docs/version-specific/supported-software/g/GTK+.md index b055249f0..a51e69653 100644 --- a/docs/version-specific/supported-software/g/GTK+.md +++ b/docs/version-specific/supported-software/g/GTK+.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GTK+ The GTK+ 2 package contains libraries used for creating graphical user interfaces for applications. @@ -23,3 +27,6 @@ version | toolchain ``3.24.17`` | ``GCCcore/9.3.0`` ``3.24.23`` | ``GCCcore/10.2.0`` ``3.24.8`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTK2.md b/docs/version-specific/supported-software/g/GTK2.md index 01206240d..fe962cdf8 100644 --- a/docs/version-specific/supported-software/g/GTK2.md +++ b/docs/version-specific/supported-software/g/GTK2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GTK2 The GTK+ 2 package contains libraries used for creating graphical user interfaces for applications. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.24.33`` | ``GCCcore/10.3.0`` ``2.24.33`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTK3.md b/docs/version-specific/supported-software/g/GTK3.md index 453f900d6..f13bb7c22 100644 --- a/docs/version-specific/supported-software/g/GTK3.md +++ b/docs/version-specific/supported-software/g/GTK3.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``3.24.35`` | ``GCCcore/12.2.0`` ``3.24.37`` | ``GCCcore/12.3.0`` ``3.24.39`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTK4.md b/docs/version-specific/supported-software/g/GTK4.md index cc064d578..98e880b7e 100644 --- a/docs/version-specific/supported-software/g/GTK4.md +++ b/docs/version-specific/supported-software/g/GTK4.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.11.3`` | ``GCC/12.2.0`` ``4.13.1`` | ``GCC/12.3.0`` ``4.7.0`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTOOL.md b/docs/version-specific/supported-software/g/GTOOL.md index 089252f3e..bc5858a3d 100644 --- a/docs/version-specific/supported-software/g/GTOOL.md +++ b/docs/version-specific/supported-software/g/GTOOL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GTOOL GTOOL is a program for transforming sets of genotype data for use with the programs SNPTEST and IMPUTE. @@ -7,3 +11,6 @@ GTOOL is a program for transforming sets of genotype data for use with the prog version | toolchain --------|---------- ``0.7.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GTS.md b/docs/version-specific/supported-software/g/GTS.md index 019c8f0a3..1e7d1ab40 100644 --- a/docs/version-specific/supported-software/g/GTS.md +++ b/docs/version-specific/supported-software/g/GTS.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | toolchain ``0.7.6`` | ``intel/2016b`` ``0.7.6`` | ``intel/2018a`` ``20121130`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GUIDANCE.md b/docs/version-specific/supported-software/g/GUIDANCE.md index 0dafe027b..ede49e770 100644 --- a/docs/version-specific/supported-software/g/GUIDANCE.md +++ b/docs/version-specific/supported-software/g/GUIDANCE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GUIDANCE is a software package for aligning biological sequences (DNA or amino a version | toolchain --------|---------- ``2.02`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GULP.md b/docs/version-specific/supported-software/g/GULP.md index fe2b71ba7..8a86e8cd6 100644 --- a/docs/version-specific/supported-software/g/GULP.md +++ b/docs/version-specific/supported-software/g/GULP.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.1`` | ``intel/2019a`` ``6.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GUSHR.md b/docs/version-specific/supported-software/g/GUSHR.md index 3b02f79b1..515e73db2 100644 --- a/docs/version-specific/supported-software/g/GUSHR.md +++ b/docs/version-specific/supported-software/g/GUSHR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GUSHR Assembly-free construction of UTRs from short read RNA-Seq data on the basis of coding sequence annotation. @@ -7,3 +11,6 @@ Assembly-free construction of UTRs from short read RNA-Seq data on the basis of version | toolchain --------|---------- ``2020-09-28`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gaia.md b/docs/version-specific/supported-software/g/Gaia.md index 30671b4fc..d930a3654 100644 --- a/docs/version-specific/supported-software/g/Gaia.md +++ b/docs/version-specific/supported-software/g/Gaia.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gaia is a C++ library with python bindings which implements similarity measures version | versionsuffix | toolchain --------|---------------|---------- ``2.4.5`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GapCloser.md b/docs/version-specific/supported-software/g/GapCloser.md index 22a94cc64..ca03de4a8 100644 --- a/docs/version-specific/supported-software/g/GapCloser.md +++ b/docs/version-specific/supported-software/g/GapCloser.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.12-r6`` | ``foss/2018a`` ``1.12-r6`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GapFiller.md b/docs/version-specific/supported-software/g/GapFiller.md index b055d221f..1bfb820b5 100644 --- a/docs/version-specific/supported-software/g/GapFiller.md +++ b/docs/version-specific/supported-software/g/GapFiller.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.1.1`` | ``intel/2017a`` ``2.1.2`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gaussian.md b/docs/version-specific/supported-software/g/Gaussian.md index 605f940d2..75c56d00d 100644 --- a/docs/version-specific/supported-software/g/Gaussian.md +++ b/docs/version-specific/supported-software/g/Gaussian.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``09.e.01`` | ``-AVX`` | ``system`` ``16.A.03`` | ``-AVX2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gblocks.md b/docs/version-specific/supported-software/g/Gblocks.md index d4a26f8bc..ea843e0c8 100644 --- a/docs/version-specific/supported-software/g/Gblocks.md +++ b/docs/version-specific/supported-software/g/Gblocks.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Gblocks Selection of conserved blocks from multiple alignments for their use in phylogenetic analysis @@ -7,3 +11,6 @@ Selection of conserved blocks from multiple alignments for their use in phylogen version | toolchain --------|---------- ``0.91b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gctf.md b/docs/version-specific/supported-software/g/Gctf.md index 83e02ed86..63546762e 100644 --- a/docs/version-specific/supported-software/g/Gctf.md +++ b/docs/version-specific/supported-software/g/Gctf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Gctf Gctf: real-time CTF determination and correction, Kai Zhang, 2016 @@ -7,3 +11,6 @@ Gctf: real-time CTF determination and correction, Kai Zhang, 2016 version | toolchain --------|---------- ``1.06`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gdk-Pixbuf.md b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md index a05037054..dd8f956d2 100644 --- a/docs/version-specific/supported-software/g/Gdk-Pixbuf.md +++ b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md @@ -1,3 +1,7 @@ +--- +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. @@ -30,3 +34,6 @@ version | toolchain ``2.42.6`` | ``GCCcore/10.3.0`` ``2.42.6`` | ``GCCcore/11.2.0`` ``2.42.8`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gdspy.md b/docs/version-specific/supported-software/g/Gdspy.md index 764646e15..cd603bbf8 100644 --- a/docs/version-specific/supported-software/g/Gdspy.md +++ b/docs/version-specific/supported-software/g/Gdspy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Gdspy Gdspy is a Python module for creation and manipulation of GDSII stream files. @@ -7,3 +11,6 @@ Gdspy is a Python module for creation and manipulation of GDSII stream files. version | toolchain --------|---------- ``1.6.13`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Geant4-data.md b/docs/version-specific/supported-software/g/Geant4-data.md index 1056efe88..02e616c2f 100644 --- a/docs/version-specific/supported-software/g/Geant4-data.md +++ b/docs/version-specific/supported-software/g/Geant4-data.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Geant4-data Datasets for Geant4. @@ -9,3 +13,6 @@ version | toolchain ``11.1`` | ``system`` ``20201103`` | ``system`` ``20210510`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Geant4.md b/docs/version-specific/supported-software/g/Geant4.md index e8d0da7fe..d32735a2e 100644 --- a/docs/version-specific/supported-software/g/Geant4.md +++ b/docs/version-specific/supported-software/g/Geant4.md @@ -1,3 +1,7 @@ +--- +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. @@ -26,3 +30,6 @@ version | toolchain ``11.1.2`` | ``GCC/11.3.0`` ``9.5.p02`` | ``intel/2016a`` ``9.6.p04`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenMap.md b/docs/version-specific/supported-software/g/GenMap.md index 309443807..9a0c707b8 100644 --- a/docs/version-specific/supported-software/g/GenMap.md +++ b/docs/version-specific/supported-software/g/GenMap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenMap GenMap - Fast and Exact Computation of Genome Mappability @@ -7,3 +11,6 @@ GenMap - Fast and Exact Computation of Genome Mappability version | toolchain --------|---------- ``1.3.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GeneMark-ET.md b/docs/version-specific/supported-software/g/GeneMark-ET.md index ca324cd70..1b5f24109 100644 --- a/docs/version-specific/supported-software/g/GeneMark-ET.md +++ b/docs/version-specific/supported-software/g/GeneMark-ET.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GeneMark-ET Eukaryotic gene prediction suite with automatic training @@ -11,3 +15,6 @@ version | toolchain ``4.65`` | ``GCCcore/10.2.0`` ``4.71`` | ``GCCcore/11.2.0`` ``4.71`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenerativeModels.md b/docs/version-specific/supported-software/g/GenerativeModels.md index a5d6de904..5a505fddc 100644 --- a/docs/version-specific/supported-software/g/GenerativeModels.md +++ b/docs/version-specific/supported-software/g/GenerativeModels.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenerativeModels @@ -7,3 +11,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenomeComb.md b/docs/version-specific/supported-software/g/GenomeComb.md index da99b8d1e..cb5f5500d 100644 --- a/docs/version-specific/supported-software/g/GenomeComb.md +++ b/docs/version-specific/supported-software/g/GenomeComb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenomeComb Genomecomb is a package designed to analyze, combine, annotate and query genome as well as transcriptome sequencing data. @@ -7,3 +11,6 @@ Genomecomb is a package designed to analyze, combine, annotate and query genome version | versionsuffix | toolchain --------|---------------|---------- ``0.106.0`` | ``-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenomeMapper.md b/docs/version-specific/supported-software/g/GenomeMapper.md index 4f24b9634..4d4404f04 100644 --- a/docs/version-specific/supported-software/g/GenomeMapper.md +++ b/docs/version-specific/supported-software/g/GenomeMapper.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GenomeMapper is a short read mapping tool designed for accurate read alignments. version | toolchain --------|---------- ``0.4.4`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenomeTester4.md b/docs/version-specific/supported-software/g/GenomeTester4.md index 01ff55d8f..37dbb1d8a 100644 --- a/docs/version-specific/supported-software/g/GenomeTester4.md +++ b/docs/version-specific/supported-software/g/GenomeTester4.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenomeTester4 A toolkit for performing set operations - union, intersection and complement - on k-mer lists. @@ -7,3 +11,6 @@ A toolkit for performing set operations - union, intersection and complement - o version | toolchain --------|---------- ``4.0`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenomeThreader.md b/docs/version-specific/supported-software/g/GenomeThreader.md index a78c5b6dc..6c7873ba3 100644 --- a/docs/version-specific/supported-software/g/GenomeThreader.md +++ b/docs/version-specific/supported-software/g/GenomeThreader.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenomeThreader GenomeThreader is a software tool to compute gene structure predictions. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.1`` | ``-Linux_x86_64-64bit`` | ``system`` ``1.7.3`` | ``-Linux_x86_64-64bit`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenomeTools.md b/docs/version-specific/supported-software/g/GenomeTools.md index 376eec2a5..a95ba0fbe 100644 --- a/docs/version-specific/supported-software/g/GenomeTools.md +++ b/docs/version-specific/supported-software/g/GenomeTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenomeTools A comprehensive software library for efficient processing of structured genome annotations. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``1.6.2`` | | ``GCC/10.3.0`` ``1.6.2`` | | ``GCC/11.3.0`` ``1.6.2`` | | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenomeWorks.md b/docs/version-specific/supported-software/g/GenomeWorks.md index dfe9ab374..373d326f7 100644 --- a/docs/version-specific/supported-software/g/GenomeWorks.md +++ b/docs/version-specific/supported-software/g/GenomeWorks.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GenomeWorks SDK for GPU accelerated genome assembly and analysis @@ -7,3 +11,6 @@ SDK for GPU accelerated genome assembly and analysis version | toolchain --------|---------- ``2021.02.2`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Genome_Profiler.md b/docs/version-specific/supported-software/g/Genome_Profiler.md index 16bbb68aa..287ecb6ee 100644 --- a/docs/version-specific/supported-software/g/Genome_Profiler.md +++ b/docs/version-specific/supported-software/g/Genome_Profiler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Genome_Profiler Genome Profiler (GeP) is a program to perform whole-genome multilocus sequence typing (wgMLST) analysis for bacterial isolates @@ -7,3 +11,6 @@ Genome Profiler (GeP) is a program to perform whole-genome multilocus sequence version | versionsuffix | toolchain --------|---------------|---------- ``2.1`` | ``-Perl-5.24.0`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GenotypeHarmonizer.md b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md index ea22923ff..eb7135874 100644 --- a/docs/version-specific/supported-software/g/GenotypeHarmonizer.md +++ b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Genotype Harmonizer is an easy to use command-line tool that allows harmoniz version | versionsuffix | toolchain --------|---------------|---------- ``1.4.14`` | ``-Java-1.7.0_80`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gerris.md b/docs/version-specific/supported-software/g/Gerris.md index a9cd92b23..af899674d 100644 --- a/docs/version-specific/supported-software/g/Gerris.md +++ b/docs/version-specific/supported-software/g/Gerris.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Gerris Gerris is a Free Software program for the solution of the partial differential equations describing fluid flow @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20131206`` | ``foss/2017b`` ``20131206`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GetOrganelle.md b/docs/version-specific/supported-software/g/GetOrganelle.md index f84fdcbb0..8575784f0 100644 --- a/docs/version-specific/supported-software/g/GetOrganelle.md +++ b/docs/version-specific/supported-software/g/GetOrganelle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GetOrganelle This toolkit assemblies organelle genome from genomic skimming data. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.7.5.3`` | | ``foss/2021b`` ``1.7.6.1`` | | ``foss/2021b`` ``1.7.7.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GffCompare.md b/docs/version-specific/supported-software/g/GffCompare.md index 888fa793b..ae1af62dd 100644 --- a/docs/version-specific/supported-software/g/GffCompare.md +++ b/docs/version-specific/supported-software/g/GffCompare.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``0.11.6`` | ``GCCcore/9.3.0`` ``0.12.2`` | ``GCC/10.3.0`` ``0.12.6`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Ghostscript.md b/docs/version-specific/supported-software/g/Ghostscript.md index 131444fea..b9cd47993 100644 --- a/docs/version-specific/supported-software/g/Ghostscript.md +++ b/docs/version-specific/supported-software/g/Ghostscript.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``9.54.0`` | | ``GCCcore/10.3.0`` ``9.54.0`` | | ``GCCcore/11.2.0`` ``9.56.1`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gibbs2.md b/docs/version-specific/supported-software/g/Gibbs2.md index be397e5f7..91c786eb1 100644 --- a/docs/version-specific/supported-software/g/Gibbs2.md +++ b/docs/version-specific/supported-software/g/Gibbs2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gibbs2 is a program for the calculation of thermodynamic properties in periodic version | toolchain --------|---------- ``1.0`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GimmeMotifs.md b/docs/version-specific/supported-software/g/GimmeMotifs.md index 7f394a792..644fb227f 100644 --- a/docs/version-specific/supported-software/g/GimmeMotifs.md +++ b/docs/version-specific/supported-software/g/GimmeMotifs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GimmeMotifs Suite of motif tools, including a motif prediction pipeline for ChIP-seq experiments @@ -7,3 +11,6 @@ Suite of motif tools, including a motif prediction pipeline for ChIP-seq experim version | toolchain --------|---------- ``0.17.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Giotto-Suite.md b/docs/version-specific/supported-software/g/Giotto-Suite.md index 781d03e11..2e4935313 100644 --- a/docs/version-specific/supported-software/g/Giotto-Suite.md +++ b/docs/version-specific/supported-software/g/Giotto-Suite.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Giotto Suite is focused on building a modular platform for analyzing spatial-omi version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GitPython.md b/docs/version-specific/supported-software/g/GitPython.md index 6fe42234c..c08dc4c81 100644 --- a/docs/version-specific/supported-software/g/GitPython.md +++ b/docs/version-specific/supported-software/g/GitPython.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GitPython GitPython is a python library used to interact with Git repositories @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Givaro.md b/docs/version-specific/supported-software/g/Givaro.md index a7c61aa93..13915f2c7 100644 --- a/docs/version-specific/supported-software/g/Givaro.md +++ b/docs/version-specific/supported-software/g/Givaro.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Givaro C++ library for arithmetic and algebraic computations @@ -9,3 +13,6 @@ version | toolchain ``4.0.1`` | ``foss/2016a`` ``4.2.0`` | ``GCCcore/11.3.0`` ``4.2.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Giza.md b/docs/version-specific/supported-software/g/Giza.md index 4dde9fbd5..0ab00bb80 100644 --- a/docs/version-specific/supported-software/g/Giza.md +++ b/docs/version-specific/supported-software/g/Giza.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2018b`` ``1.4.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Glade.md b/docs/version-specific/supported-software/g/Glade.md index 40557b2f2..b775024c8 100644 --- a/docs/version-specific/supported-software/g/Glade.md +++ b/docs/version-specific/supported-software/g/Glade.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GlimmerHMM.md b/docs/version-specific/supported-software/g/GlimmerHMM.md index 6bc910eef..6f5c91d51 100644 --- a/docs/version-specific/supported-software/g/GlimmerHMM.md +++ b/docs/version-specific/supported-software/g/GlimmerHMM.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``3.0.4c`` | ``GCC/10.2.0`` ``3.0.4c`` | ``GCC/11.2.0`` ``3.0.4c`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GlobalArrays.md b/docs/version-specific/supported-software/g/GlobalArrays.md index 4fd7b074b..31868b5ba 100644 --- a/docs/version-specific/supported-software/g/GlobalArrays.md +++ b/docs/version-specific/supported-software/g/GlobalArrays.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GlobalArrays Global Arrays (GA) is a Partitioned Global Address Space (PGAS) programming model @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``5.8.1`` | | ``intel/2022a`` ``5.8.2`` | | ``intel/2022a`` ``5.8.2`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Globus-CLI.md b/docs/version-specific/supported-software/g/Globus-CLI.md index 900705cae..c7121803a 100644 --- a/docs/version-specific/supported-software/g/Globus-CLI.md +++ b/docs/version-specific/supported-software/g/Globus-CLI.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``3.1.1`` | ``GCCcore/10.2.0`` ``3.2.0`` | ``GCCcore/10.3.0`` ``3.6.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GlobusConnectPersonal.md b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md index 90255cd79..190388a84 100644 --- a/docs/version-specific/supported-software/g/GlobusConnectPersonal.md +++ b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Globus Connect Personal turns your laptop or other personal computer into a Glo version | toolchain --------|---------- ``2.3.6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Glucose.md b/docs/version-specific/supported-software/g/Glucose.md index 33935a1ff..4b8105837 100644 --- a/docs/version-specific/supported-software/g/Glucose.md +++ b/docs/version-specific/supported-software/g/Glucose.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Glucose is based on a new scoring scheme (well, not so new now, it was introduce version | toolchain --------|---------- ``4.1`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GnuTLS.md b/docs/version-specific/supported-software/g/GnuTLS.md index edd241bca..6fb84770c 100644 --- a/docs/version-specific/supported-software/g/GnuTLS.md +++ b/docs/version-specific/supported-software/g/GnuTLS.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``3.7.3`` | ``GCCcore/11.2.0`` ``3.7.8`` | ``GCCcore/11.3.0`` ``3.7.8`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Go.md b/docs/version-specific/supported-software/g/Go.md index 39e938c48..1a4dd8248 100644 --- a/docs/version-specific/supported-software/g/Go.md +++ b/docs/version-specific/supported-software/g/Go.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Go Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. @@ -28,3 +32,6 @@ version | toolchain ``1.4.2`` | ``GCC/4.8.4`` ``1.5`` | ``GCC/4.8.4`` ``1.8.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Godon.md b/docs/version-specific/supported-software/g/Godon.md index f054bf60a..365b32471 100644 --- a/docs/version-specific/supported-software/g/Godon.md +++ b/docs/version-specific/supported-software/g/Godon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Godon Godon is codon models software written in Go. @@ -7,3 +11,6 @@ Godon is codon models software written in Go. version | versionsuffix | toolchain --------|---------------|---------- ``20210913`` | ``-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GraPhlAn.md b/docs/version-specific/supported-software/g/GraPhlAn.md index 407b10f7a..4ed951b73 100644 --- a/docs/version-specific/supported-software/g/GraPhlAn.md +++ b/docs/version-specific/supported-software/g/GraPhlAn.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GraPhlAn is a software tool for producing high-quality circular representations version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-2.7.16`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Grace.md b/docs/version-specific/supported-software/g/Grace.md index a83b5297a..5535387e5 100644 --- a/docs/version-specific/supported-software/g/Grace.md +++ b/docs/version-specific/supported-software/g/Grace.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Grace Grace is a WYSIWYG 2D plotting tool for X Windows System and Motif. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``5.1.25`` | ``-5build1`` | ``intel/2017b`` ``5.1.25`` | ``-5build1`` | ``intel/2019a`` ``5.1.25`` | ``-5build1`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gradle.md b/docs/version-specific/supported-software/g/Gradle.md index d54d29aa0..471be6554 100644 --- a/docs/version-specific/supported-software/g/Gradle.md +++ b/docs/version-specific/supported-software/g/Gradle.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``6.1.1`` | | ``system`` ``6.9.1`` | | ``system`` ``8.6`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GraphDB.md b/docs/version-specific/supported-software/g/GraphDB.md index ea7a08dd9..3711cd39e 100644 --- a/docs/version-specific/supported-software/g/GraphDB.md +++ b/docs/version-specific/supported-software/g/GraphDB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GraphDB is an enterprise ready Semantic Graph Database, compliant with W3C Stand version | toolchain --------|---------- ``10.1.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GraphMap.md b/docs/version-specific/supported-software/g/GraphMap.md index d1d3389d7..7d26104b3 100644 --- a/docs/version-specific/supported-software/g/GraphMap.md +++ b/docs/version-specific/supported-software/g/GraphMap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GraphMap A highly sensitive and accurate mapper for long, error-prone reads @@ -7,3 +11,6 @@ A highly sensitive and accurate mapper for long, error-prone reads version | toolchain --------|---------- ``0.5.2`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GraphMap2.md b/docs/version-specific/supported-software/g/GraphMap2.md index 48d1e91af..ad90f3afc 100644 --- a/docs/version-specific/supported-software/g/GraphMap2.md +++ b/docs/version-specific/supported-software/g/GraphMap2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GraphMap2 A highly sensitive and accurate mapper for long, error-prone reads @@ -7,3 +11,6 @@ A highly sensitive and accurate mapper for long, error-prone reads version | toolchain --------|---------- ``0.6.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Graphene.md b/docs/version-specific/supported-software/g/Graphene.md index bdf27a6bf..f8bd05fa4 100644 --- a/docs/version-specific/supported-software/g/Graphene.md +++ b/docs/version-specific/supported-software/g/Graphene.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Graphene Graphene is a thin layer of types for graphic libraries @@ -11,3 +15,6 @@ version | toolchain ``1.10.8`` | ``GCCcore/12.3.0`` ``1.10.8`` | ``GCCcore/13.2.0`` ``1.6.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GraphicsMagick.md b/docs/version-specific/supported-software/g/GraphicsMagick.md index 19494f47d..5af519f4e 100644 --- a/docs/version-specific/supported-software/g/GraphicsMagick.md +++ b/docs/version-specific/supported-software/g/GraphicsMagick.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GraphicsMagick GraphicsMagick is the swiss army knife of image processing. @@ -16,3 +20,6 @@ version | toolchain ``1.3.34`` | ``foss/2019b`` ``1.3.36`` | ``GCCcore/11.2.0`` ``1.3.36`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Graphviz.md b/docs/version-specific/supported-software/g/Graphviz.md index b5a825103..b9bf5da72 100644 --- a/docs/version-specific/supported-software/g/Graphviz.md +++ b/docs/version-specific/supported-software/g/Graphviz.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``5.0.0`` | | ``GCCcore/11.3.0`` ``8.1.0`` | | ``GCCcore/12.2.0`` ``8.1.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Greenlet.md b/docs/version-specific/supported-software/g/Greenlet.md index 818d38e20..c0badbf68 100644 --- a/docs/version-specific/supported-software/g/Greenlet.md +++ b/docs/version-specific/supported-software/g/Greenlet.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.0.2`` | | ``GCCcore/12.3.0`` ``3.0.2`` | | ``GCCcore/12.3.0`` ``3.0.3`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Grep.md b/docs/version-specific/supported-software/g/Grep.md index 30e565b66..2d5c16d33 100644 --- a/docs/version-specific/supported-software/g/Grep.md +++ b/docs/version-specific/supported-software/g/Grep.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The grep command searches one or more input files for lines containing a match t version | toolchain --------|---------- ``2.21`` | ``GCC/4.9.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GroIMP.md b/docs/version-specific/supported-software/g/GroIMP.md index 3ff2c16b9..37edf3b5c 100644 --- a/docs/version-specific/supported-software/g/GroIMP.md +++ b/docs/version-specific/supported-software/g/GroIMP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # GroIMP GroIMP (Growth Grammar-related Interactive Modelling Platform) is a 3D-modelling platform. @@ -7,3 +11,6 @@ GroIMP (Growth Grammar-related Interactive Modelling Platform) is a 3D-modelling version | toolchain --------|---------- ``1.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GromacsWrapper.md b/docs/version-specific/supported-software/g/GromacsWrapper.md index 186b8abd3..af507c473 100644 --- a/docs/version-specific/supported-software/g/GromacsWrapper.md +++ b/docs/version-specific/supported-software/g/GromacsWrapper.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GromacsWrapper is a python package that wraps system calls to Gromacs tools into version | versionsuffix | toolchain --------|---------------|---------- ``0.8.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Groovy.md b/docs/version-specific/supported-software/g/Groovy.md index 2cc6e1f30..c51c41e1a 100644 --- a/docs/version-specific/supported-software/g/Groovy.md +++ b/docs/version-specific/supported-software/g/Groovy.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.9`` | ``-Java-11`` | ``system`` ``4.0.3`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/GtkSourceView.md b/docs/version-specific/supported-software/g/GtkSourceView.md index 1c11e52ce..18221dd49 100644 --- a/docs/version-specific/supported-software/g/GtkSourceView.md +++ b/docs/version-specific/supported-software/g/GtkSourceView.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.24.11`` | ``GCCcore/10.2.0`` ``3.24.11`` | ``GCCcore/8.2.0`` ``4.4.0`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Guile.md b/docs/version-specific/supported-software/g/Guile.md index 1ef75e88d..cea2e0f7d 100644 --- a/docs/version-specific/supported-software/g/Guile.md +++ b/docs/version-specific/supported-software/g/Guile.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Guile Guile is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system. @@ -28,3 +32,6 @@ version | toolchain ``3.0.8`` | ``GCCcore/11.3.0`` ``3.0.9`` | ``GCCcore/10.2.0`` ``3.0.9`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/Gurobi.md b/docs/version-specific/supported-software/g/Gurobi.md index be28366a3..9a220891e 100644 --- a/docs/version-specific/supported-software/g/Gurobi.md +++ b/docs/version-specific/supported-software/g/Gurobi.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | versionsuffix | toolchain ``9.5.0`` | | ``GCCcore/10.3.0`` ``9.5.0`` | | ``GCCcore/11.2.0`` ``9.5.2`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/g2clib.md b/docs/version-specific/supported-software/g/g2clib.md index 488ca5cde..da01410c0 100644 --- a/docs/version-specific/supported-software/g/g2clib.md +++ b/docs/version-specific/supported-software/g/g2clib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # g2clib Library contains GRIB2 encoder/decoder ('C' version). @@ -17,3 +21,6 @@ version | toolchain ``1.6.3`` | ``GCCcore/10.3.0`` ``1.6.3`` | ``GCCcore/11.2.0`` ``1.7.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/g2lib.md b/docs/version-specific/supported-software/g/g2lib.md index 8a5a7f3c1..f97df74c5 100644 --- a/docs/version-specific/supported-software/g/g2lib.md +++ b/docs/version-specific/supported-software/g/g2lib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # g2lib Library contains GRIB2 encoder/decoder and search/indexing routines. @@ -15,3 +19,6 @@ version | toolchain ``3.1.0`` | ``intel/2018b`` ``3.2.0`` | ``GCCcore/10.2.0`` ``3.2.0`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/g2log.md b/docs/version-specific/supported-software/g/g2log.md index 017581715..a53ea675b 100644 --- a/docs/version-specific/supported-software/g/g2log.md +++ b/docs/version-specific/supported-software/g/g2log.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # g2log g2log, efficient asynchronous logger using C++11 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/8.3.0`` ``1.0`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gRPC.md b/docs/version-specific/supported-software/g/gRPC.md index 4dc4609ad..05e473245 100644 --- a/docs/version-specific/supported-software/g/gRPC.md +++ b/docs/version-specific/supported-software/g/gRPC.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.44.0`` | ``GCCcore/11.2.0`` ``1.57.0`` | ``GCCcore/12.3.0`` ``1.62.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gSOAP.md b/docs/version-specific/supported-software/g/gSOAP.md index 043dea108..c5f3e824d 100644 --- a/docs/version-specific/supported-software/g/gSOAP.md +++ b/docs/version-specific/supported-software/g/gSOAP.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.8.100`` | ``GCCcore/8.3.0`` ``2.8.48`` | ``GCCcore/6.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gap.md b/docs/version-specific/supported-software/g/gap.md index 02e9d4082..f6533f020 100644 --- a/docs/version-specific/supported-software/g/gap.md +++ b/docs/version-specific/supported-software/g/gap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gap GAP is a system for computational discrete algebra, with particular emphasis on Computational Group Theory. @@ -9,3 +13,6 @@ version | toolchain ``4.11.0`` | ``foss/2019a`` ``4.12.2`` | ``foss/2022a`` ``4.9.3`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gappa.md b/docs/version-specific/supported-software/g/gappa.md index 5677d8ca2..364eb910c 100644 --- a/docs/version-specific/supported-software/g/gappa.md +++ b/docs/version-specific/supported-software/g/gappa.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ gappa is a collection of commands for working with phylogenetic data. Its main f version | toolchain --------|---------- ``0.7.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/garnett.md b/docs/version-specific/supported-software/g/garnett.md index 300b4ce84..73e4525c3 100644 --- a/docs/version-specific/supported-software/g/garnett.md +++ b/docs/version-specific/supported-software/g/garnett.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # garnett Garnett is a software package that faciliates automated cell type classification from single-cell expression data. @@ -7,3 +11,6 @@ Garnett is a software package that faciliates automated cell type classification version | versionsuffix | toolchain --------|---------------|---------- ``0.1.20`` | ``-R-4.0.3`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gawk.md b/docs/version-specific/supported-software/g/gawk.md index 6eecf98cc..c9feb0f17 100644 --- a/docs/version-specific/supported-software/g/gawk.md +++ b/docs/version-specific/supported-software/g/gawk.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``5.1.1`` | ``GCC/11.3.0`` ``5.3.0`` | ``GCC/12.2.0`` ``5.3.0`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gbasis.md b/docs/version-specific/supported-software/g/gbasis.md index b8303c754..7f2ea26ba 100644 --- a/docs/version-specific/supported-software/g/gbasis.md +++ b/docs/version-specific/supported-software/g/gbasis.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gbasis Python library for analytical evaluation and integration of Gaussian-type basis functions and related quantities. @@ -7,3 +11,6 @@ Python library for analytical evaluation and integration of Gaussian-type basis version | toolchain --------|---------- ``20210904`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gbs2ploidy.md b/docs/version-specific/supported-software/g/gbs2ploidy.md index 8770a37f0..99e1201fc 100644 --- a/docs/version-specific/supported-software/g/gbs2ploidy.md +++ b/docs/version-specific/supported-software/g/gbs2ploidy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gbs2ploidy Inference of Ploidy from (Genotyping-by-Sequencing) GBS Data @@ -7,3 +11,6 @@ Inference of Ploidy from (Genotyping-by-Sequencing) GBS Data version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-3.4.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gc.md b/docs/version-specific/supported-software/g/gc.md index df03308b7..9a7130fce 100644 --- a/docs/version-specific/supported-software/g/gc.md +++ b/docs/version-specific/supported-software/g/gc.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``8.2.2`` | ``GCCcore/11.3.0`` ``8.2.4`` | ``GCCcore/12.3.0`` ``8.2.6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gcccuda.md b/docs/version-specific/supported-software/g/gcccuda.md index 632620aa4..448ad8966 100644 --- a/docs/version-specific/supported-software/g/gcccuda.md +++ b/docs/version-specific/supported-software/g/gcccuda.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gcccuda GNU Compiler Collection (GCC) based compiler toolchain, along with CUDA toolkit. @@ -14,3 +18,6 @@ version | toolchain ``2019b`` | ``system`` ``2020a`` | ``system`` ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gcloud.md b/docs/version-specific/supported-software/g/gcloud.md index 629d5091b..94a37f022 100644 --- a/docs/version-specific/supported-software/g/gcloud.md +++ b/docs/version-specific/supported-software/g/gcloud.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gcloud Libraries and tools for interacting with Google Cloud products and services. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``382.0.0`` | ``system`` ``472.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gcsfs.md b/docs/version-specific/supported-software/g/gcsfs.md index 466561b13..a1d4af50f 100644 --- a/docs/version-specific/supported-software/g/gcsfs.md +++ b/docs/version-specific/supported-software/g/gcsfs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gcsfs Pythonic file-system interface for Google Cloud Storage. @@ -7,3 +11,6 @@ Pythonic file-system interface for Google Cloud Storage. version | toolchain --------|---------- ``2023.12.2.post1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gdbgui.md b/docs/version-specific/supported-software/g/gdbgui.md index 98fb1c677..28afd2368 100644 --- a/docs/version-specific/supported-software/g/gdbgui.md +++ b/docs/version-specific/supported-software/g/gdbgui.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, v version | versionsuffix | toolchain --------|---------------|---------- ``0.13.1.2`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gdbm.md b/docs/version-specific/supported-software/g/gdbm.md index d0c54be14..9cefdf69b 100644 --- a/docs/version-specific/supported-software/g/gdbm.md +++ b/docs/version-specific/supported-software/g/gdbm.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.18.1`` | ``foss/2020a`` ``1.21`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gdc-client.md b/docs/version-specific/supported-software/g/gdc-client.md index 5a249edc7..443df1a72 100644 --- a/docs/version-specific/supported-software/g/gdc-client.md +++ b/docs/version-specific/supported-software/g/gdc-client.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gdc-client The gdc-client provides several convenience functions over the GDC API which provides general download/upload via HTTPS. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gdist.md b/docs/version-specific/supported-software/g/gdist.md index 75e8f1fe6..c5742582a 100644 --- a/docs/version-specific/supported-software/g/gdist.md +++ b/docs/version-specific/supported-software/g/gdist.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The gdist module is a Cython interface to a C++ library (http://code.google.com/ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gearshifft.md b/docs/version-specific/supported-software/g/gearshifft.md index 8445b42b3..4f1d1d3c8 100644 --- a/docs/version-specific/supported-software/g/gearshifft.md +++ b/docs/version-specific/supported-software/g/gearshifft.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gearshifft Benchmark Suite for Heterogenuous FFT Implementations @@ -7,3 +11,6 @@ Benchmark Suite for Heterogenuous FFT Implementations version | toolchain --------|---------- ``0.4.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gemelli.md b/docs/version-specific/supported-software/g/gemelli.md index 67b1c8752..017cc491d 100644 --- a/docs/version-specific/supported-software/g/gemelli.md +++ b/docs/version-specific/supported-software/g/gemelli.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gemelli is a tool box for running both Robust Aitchison PCA (RPCA) and Compositi version | toolchain --------|---------- ``0.0.9`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gemmi.md b/docs/version-specific/supported-software/g/gemmi.md index d79104eb9..0ef10b422 100644 --- a/docs/version-specific/supported-software/g/gemmi.md +++ b/docs/version-specific/supported-software/g/gemmi.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.5`` | ``GCCcore/10.2.0`` ``0.6.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gencore_variant_detection.md b/docs/version-specific/supported-software/g/gencore_variant_detection.md index 47552d4b0..c563a7b08 100644 --- a/docs/version-specific/supported-software/g/gencore_variant_detection.md +++ b/docs/version-specific/supported-software/g/gencore_variant_detection.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gencore_variant_detection This is a bundled install of many software packages for doing variant detection analysis. @@ -7,3 +11,6 @@ This is a bundled install of many software packages for doing variant detection version | toolchain --------|---------- ``1.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gengetopt.md b/docs/version-specific/supported-software/g/gengetopt.md index abee3c725..037613b12 100644 --- a/docs/version-specific/supported-software/g/gengetopt.md +++ b/docs/version-specific/supported-software/g/gengetopt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gengetopt Gengetopt is a tool to write command line option parsing code for C programs. @@ -11,3 +15,6 @@ version | toolchain ``2.23`` | ``GCCcore/11.3.0`` ``2.23`` | ``GCCcore/13.2.0`` ``2.23`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/genomepy.md b/docs/version-specific/supported-software/g/genomepy.md index 1ad3d3cbb..64a8822c8 100644 --- a/docs/version-specific/supported-software/g/genomepy.md +++ b/docs/version-specific/supported-software/g/genomepy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # genomepy genomepy is designed to provide a simple and straightforward way to download and use genomic data @@ -7,3 +11,6 @@ genomepy is designed to provide a simple and straightforward way to download and version | toolchain --------|---------- ``0.15.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/genozip.md b/docs/version-specific/supported-software/g/genozip.md index 08fc89734..455b5d282 100644 --- a/docs/version-specific/supported-software/g/genozip.md +++ b/docs/version-specific/supported-software/g/genozip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # genozip Genozip is a compressor for genomic files - it compresses FASTQ, SAM/BAM/CRAM, VCF, FASTA and others. @@ -7,3 +11,6 @@ Genozip is a compressor for genomic files - it compresses FASTQ, SAM/BAM/CRAM, V version | toolchain --------|---------- ``13.0.5`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gensim.md b/docs/version-specific/supported-software/g/gensim.md index f9e57df03..2efc21668 100644 --- a/docs/version-specific/supported-software/g/gensim.md +++ b/docs/version-specific/supported-software/g/gensim.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gensim Gensim is a Python library for topic modelling, document indexing and similarity retrieval with large corpora. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.8.3`` | | ``foss/2020b`` ``3.8.3`` | | ``intel/2020b`` ``4.2.0`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/geocube.md b/docs/version-specific/supported-software/g/geocube.md index a37ca5e1d..f01f8917c 100644 --- a/docs/version-specific/supported-software/g/geocube.md +++ b/docs/version-specific/supported-software/g/geocube.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # geocube Tool to convert geopandas vector data into rasterized xarray data. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.14`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.4.3`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/geopandas.md b/docs/version-specific/supported-software/g/geopandas.md index e49c2817e..ebea6a8ce 100644 --- a/docs/version-specific/supported-software/g/geopandas.md +++ b/docs/version-specific/supported-software/g/geopandas.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/geopy.md b/docs/version-specific/supported-software/g/geopy.md index 643e3c477..3de4e2693 100644 --- a/docs/version-specific/supported-software/g/geopy.md +++ b/docs/version-specific/supported-software/g/geopy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # geopy geopy is a Python 2 and 3 client for several popular geocoding web services. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/georges.md b/docs/version-specific/supported-software/g/georges.md index 97b077c4d..18eeaf314 100644 --- a/docs/version-specific/supported-software/g/georges.md +++ b/docs/version-specific/supported-software/g/georges.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2019.2`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/geosphere.md b/docs/version-specific/supported-software/g/geosphere.md index 3debbd68e..1afb69d31 100644 --- a/docs/version-specific/supported-software/g/geosphere.md +++ b/docs/version-specific/supported-software/g/geosphere.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # geosphere Spherical trigonometry for geographic applications. That is, compute distances and related measures for angular (longitude/latitude) locations. @@ -7,3 +11,6 @@ Spherical trigonometry for geographic applications. That is, compute distances version | versionsuffix | toolchain --------|---------------|---------- ``1.5-18`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gettext.md b/docs/version-specific/supported-software/g/gettext.md index aa4606f82..94a6bcfd7 100644 --- a/docs/version-specific/supported-software/g/gettext.md +++ b/docs/version-specific/supported-software/g/gettext.md @@ -1,3 +1,7 @@ +--- +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 @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``0.22.5`` | | ``GCCcore/13.3.0`` ``0.22.5`` | | ``system`` ``0.22`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gexiv2.md b/docs/version-specific/supported-software/g/gexiv2.md index 29f9bc925..44ea59c4d 100644 --- a/docs/version-specific/supported-software/g/gexiv2.md +++ b/docs/version-specific/supported-software/g/gexiv2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gexiv2 gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. @@ -7,3 +11,6 @@ gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. version | toolchain --------|---------- ``0.12.2`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gfbf.md b/docs/version-specific/supported-software/g/gfbf.md index f308095b3..08396c6c7 100644 --- a/docs/version-specific/supported-software/g/gfbf.md +++ b/docs/version-specific/supported-software/g/gfbf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gfbf GNU Compiler Collection (GCC) based compiler toolchain, including FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW. @@ -12,3 +16,6 @@ version | toolchain ``2023a`` | ``system`` ``2023b`` | ``system`` ``2024.05`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gffread.md b/docs/version-specific/supported-software/g/gffread.md index d10cb7920..869340e6a 100644 --- a/docs/version-specific/supported-software/g/gffread.md +++ b/docs/version-specific/supported-software/g/gffread.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gffread GFF/GTF parsing utility providing format conversions, region filtering, FASTA sequence extraction and more. @@ -13,3 +17,6 @@ version | toolchain ``0.12.7`` | ``GCCcore/11.2.0`` ``0.12.7`` | ``GCCcore/12.2.0`` ``0.9.12`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gffutils.md b/docs/version-specific/supported-software/g/gffutils.md index 1780c590c..2f691c65f 100644 --- a/docs/version-specific/supported-software/g/gffutils.md +++ b/docs/version-specific/supported-software/g/gffutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gffutils is a Python package for working with and manipulating the GFF and GTF version | toolchain --------|---------- ``0.12`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gflags.md b/docs/version-specific/supported-software/g/gflags.md index cb6f5ca28..9795623db 100644 --- a/docs/version-specific/supported-software/g/gflags.md +++ b/docs/version-specific/supported-software/g/gflags.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``2.2.2`` | ``GCCcore/8.2.0`` ``2.2.2`` | ``GCCcore/8.3.0`` ``2.2.2`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gh.md b/docs/version-specific/supported-software/g/gh.md index 6cd3f662d..bbac3b93a 100644 --- a/docs/version-specific/supported-software/g/gh.md +++ b/docs/version-specific/supported-software/g/gh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gh gh is GitHub on the command line. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``system`` ``2.20.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/giac.md b/docs/version-specific/supported-software/g/giac.md index a11369fa9..b261d102f 100644 --- a/docs/version-specific/supported-software/g/giac.md +++ b/docs/version-specific/supported-software/g/giac.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.9.0-69`` | ``gfbf/2022a`` ``1.9.0-99`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/giflib.md b/docs/version-specific/supported-software/g/giflib.md index a999f1c0e..403628dee 100644 --- a/docs/version-specific/supported-software/g/giflib.md +++ b/docs/version-specific/supported-software/g/giflib.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``5.2.1`` | ``GCCcore/13.2.0`` ``5.2.1`` | ``GCCcore/8.3.0`` ``5.2.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gifsicle.md b/docs/version-specific/supported-software/g/gifsicle.md index 0fd5664b4..d44e5cc7f 100644 --- a/docs/version-specific/supported-software/g/gifsicle.md +++ b/docs/version-specific/supported-software/g/gifsicle.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.92`` | ``GCCcore/8.2.0`` ``1.93`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gimkl.md b/docs/version-specific/supported-software/g/gimkl.md index c74e7ad3f..873262d38 100644 --- a/docs/version-specific/supported-software/g/gimkl.md +++ b/docs/version-specific/supported-software/g/gimkl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gimkl GNU Compiler Collection (GCC) based compiler toolchain, next to Intel MPI and Intel MKL (BLAS, (Sca)LAPACK, FFTW). @@ -9,3 +13,6 @@ version | toolchain ``2.11.5`` | ``system`` ``2017a`` | ``system`` ``2018b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gimpi.md b/docs/version-specific/supported-software/g/gimpi.md index a5b458f16..875c35364 100644 --- a/docs/version-specific/supported-software/g/gimpi.md +++ b/docs/version-specific/supported-software/g/gimpi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gimpi GNU Compiler Collection (GCC) based compiler toolchain, next to Intel MPI. @@ -11,3 +15,6 @@ version | toolchain ``2017b`` | ``system`` ``2018a`` | ``system`` ``2018b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gimpic.md b/docs/version-specific/supported-software/g/gimpic.md index e0862a5ad..e5050dd05 100644 --- a/docs/version-specific/supported-software/g/gimpic.md +++ b/docs/version-specific/supported-software/g/gimpic.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GNU Compiler Collection (GCC) based compiler toolchain along with CUDA toolkit, version | toolchain --------|---------- ``2017b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/giolf.md b/docs/version-specific/supported-software/g/giolf.md index 863149a65..367ee1e58 100644 --- a/docs/version-specific/supported-software/g/giolf.md +++ b/docs/version-specific/supported-software/g/giolf.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2017b`` | ``system`` ``2018a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/giolfc.md b/docs/version-specific/supported-software/g/giolfc.md index 9291b49af..79f378b74 100644 --- a/docs/version-specific/supported-software/g/giolfc.md +++ b/docs/version-specific/supported-software/g/giolfc.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GCC based compiler toolchain __with CUDA support__, and including IntelMPI for version | toolchain --------|---------- ``2017b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/git-annex.md b/docs/version-specific/supported-software/g/git-annex.md index 784f7a5b8..01de8161e 100644 --- a/docs/version-specific/supported-software/g/git-annex.md +++ b/docs/version-specific/supported-software/g/git-annex.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``10.20230802`` | ``GCCcore/12.2.0`` ``10.20230802`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/git-extras.md b/docs/version-specific/supported-software/g/git-extras.md index 7997706fc..4f41a9db5 100644 --- a/docs/version-specific/supported-software/g/git-extras.md +++ b/docs/version-specific/supported-software/g/git-extras.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # git-extras Extra useful scripts for git @@ -7,3 +11,6 @@ Extra useful scripts for git version | toolchain --------|---------- ``5.1.0`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/git-lfs.md b/docs/version-specific/supported-software/g/git-lfs.md index f5b3d2cbb..732cccdcf 100644 --- a/docs/version-specific/supported-software/g/git-lfs.md +++ b/docs/version-specific/supported-software/g/git-lfs.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``3.4.0`` | ``system`` ``3.4.1`` | ``system`` ``3.5.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/git.md b/docs/version-specific/supported-software/g/git.md index 57be3a23d..d355dff9d 100644 --- a/docs/version-specific/supported-software/g/git.md +++ b/docs/version-specific/supported-software/g/git.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``2.42.0`` | | ``GCCcore/13.2.0`` ``2.45.1`` | | ``GCCcore/13.3.0`` ``2.8.0`` | | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gkmSVM.md b/docs/version-specific/supported-software/g/gkmSVM.md index 71aea2192..9ade481e3 100644 --- a/docs/version-specific/supported-software/g/gkmSVM.md +++ b/docs/version-specific/supported-software/g/gkmSVM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gkmSVM Gapped-Kmer Support Vector Machine. @@ -7,3 +11,6 @@ Gapped-Kmer Support Vector Machine. version | versionsuffix | toolchain --------|---------------|---------- ``0.82.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/glew.md b/docs/version-specific/supported-software/g/glew.md index eace648a9..37bb71f3a 100644 --- a/docs/version-specific/supported-software/g/glew.md +++ b/docs/version-specific/supported-software/g/glew.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-osmesa`` | ``GCCcore/11.3.0`` ``2.2.0`` | ``-egl`` | ``GCCcore/12.3.0`` ``2.2.0`` | ``-osmesa`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/glib-networking.md b/docs/version-specific/supported-software/g/glib-networking.md index d93b9aed9..11b521a78 100644 --- a/docs/version-specific/supported-software/g/glib-networking.md +++ b/docs/version-specific/supported-software/g/glib-networking.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # glib-networking Network extensions for GLib @@ -9,3 +13,6 @@ version | toolchain ``2.68.1`` | ``GCCcore/10.3.0`` ``2.72.1`` | ``GCCcore/11.2.0`` ``2.72.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/glibc.md b/docs/version-specific/supported-software/g/glibc.md index f0f4c351f..f872074c2 100644 --- a/docs/version-specific/supported-software/g/glibc.md +++ b/docs/version-specific/supported-software/g/glibc.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.17`` | ``GCCcore/6.4.0`` ``2.26`` | ``GCCcore/6.4.0`` ``2.30`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/glog.md b/docs/version-specific/supported-software/g/glog.md index 9f21ae853..c4e0bb41a 100644 --- a/docs/version-specific/supported-software/g/glog.md +++ b/docs/version-specific/supported-software/g/glog.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # glog A C++ implementation of the Google logging module. @@ -15,3 +19,6 @@ version | toolchain ``0.4.0`` | ``GCCcore/9.3.0`` ``0.5.0`` | ``GCCcore/10.2.0`` ``0.6.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/glproto.md b/docs/version-specific/supported-software/g/glproto.md index 7f8654262..c082aeadc 100644 --- a/docs/version-specific/supported-software/g/glproto.md +++ b/docs/version-specific/supported-software/g/glproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # glproto X protocol and ancillary headers @@ -9,3 +13,6 @@ version | toolchain ``1.4.17`` | ``foss/2016a`` ``1.4.17`` | ``gimkl/2.11.5`` ``1.4.17`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gmpich.md b/docs/version-specific/supported-software/g/gmpich.md index b28801363..da0afb383 100644 --- a/docs/version-specific/supported-software/g/gmpich.md +++ b/docs/version-specific/supported-software/g/gmpich.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gmpich gcc and GFortran based compiler toolchain, including MPICH for MPI support. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2016a`` | ``system`` ``2017.08`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gmpolf.md b/docs/version-specific/supported-software/g/gmpolf.md index e72a3c97b..cb5fd7c51 100644 --- a/docs/version-specific/supported-software/g/gmpolf.md +++ b/docs/version-specific/supported-software/g/gmpolf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gmpolf gcc and GFortran based compiler toolchain, MPICH for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2016a`` | ``system`` ``2017.10`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gmpy2.md b/docs/version-specific/supported-software/g/gmpy2.md index 88ff9e8ac..ea6f82374 100644 --- a/docs/version-specific/supported-software/g/gmpy2.md +++ b/docs/version-specific/supported-software/g/gmpy2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gmpy2 GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``2.1.5`` | | ``GCC/12.2.0`` ``2.1.5`` | | ``GCC/12.3.0`` ``2.1.5`` | | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gmsh.md b/docs/version-specific/supported-software/g/gmsh.md index de1b76c95..9d4b256e4 100644 --- a/docs/version-specific/supported-software/g/gmsh.md +++ b/docs/version-specific/supported-software/g/gmsh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gmsh Gmsh is a 3D finite element grid generator with a build-in CAD engine and post-processor. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``4.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` ``4.8.4`` | ``-Python-3.6.4`` | ``foss/2018a`` ``4.9.0`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gmvapich2.md b/docs/version-specific/supported-software/g/gmvapich2.md index 40f7c54d6..811f0c858 100644 --- a/docs/version-specific/supported-software/g/gmvapich2.md +++ b/docs/version-specific/supported-software/g/gmvapich2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gmvapich2 GNU Compiler Collection (GCC) based compiler toolchain, including MVAPICH2 for MPI support. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.7.20`` | ``system`` ``2016a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gmvolf.md b/docs/version-specific/supported-software/g/gmvolf.md index 4a20f89e1..3f61e5177 100644 --- a/docs/version-specific/supported-software/g/gmvolf.md +++ b/docs/version-specific/supported-software/g/gmvolf.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.7.20`` | ``system`` ``2016a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gnupg-bundle.md b/docs/version-specific/supported-software/g/gnupg-bundle.md index 531759384..18fc3fc56 100644 --- a/docs/version-specific/supported-software/g/gnupg-bundle.md +++ b/docs/version-specific/supported-software/g/gnupg-bundle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gnupg-bundle GnuPG — The Universal Crypto Engine @@ -7,3 +11,6 @@ GnuPG — The Universal Crypto Engine version | toolchain --------|---------- ``20240306`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gnuplot.md b/docs/version-specific/supported-software/g/gnuplot.md index dfb9f83d8..66f4ae9a1 100644 --- a/docs/version-specific/supported-software/g/gnuplot.md +++ b/docs/version-specific/supported-software/g/gnuplot.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gnuplot Portable interactive, function plotting utility @@ -27,3 +31,6 @@ version | toolchain ``5.4.4`` | ``GCCcore/11.3.0`` ``5.4.6`` | ``GCCcore/12.2.0`` ``5.4.8`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/goalign.md b/docs/version-specific/supported-software/g/goalign.md index 6bc9578fb..6d38cb806 100644 --- a/docs/version-specific/supported-software/g/goalign.md +++ b/docs/version-specific/supported-software/g/goalign.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # goalign Goalign is a set of command line tools to manipulate multiple alignments. @@ -7,3 +11,6 @@ Goalign is a set of command line tools to manipulate multiple alignments. version | toolchain --------|---------- ``0.3.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gobff.md b/docs/version-specific/supported-software/g/gobff.md index cfd229264..958500818 100644 --- a/docs/version-specific/supported-software/g/gobff.md +++ b/docs/version-specific/supported-software/g/gobff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gobff GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2020.11`` | | ``system`` ``2020b`` | | ``system`` ``2021a`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/goblf.md b/docs/version-specific/supported-software/g/goblf.md index 5bb89a216..d98f943f2 100644 --- a/docs/version-specific/supported-software/g/goblf.md +++ b/docs/version-specific/supported-software/g/goblf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # goblf GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, BLIS (BLAS support), LAPACK, FFTW and ScaLAPACK. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2018b`` | ``system`` ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gofasta.md b/docs/version-specific/supported-software/g/gofasta.md index 3d2cd700e..a2779a83a 100644 --- a/docs/version-specific/supported-software/g/gofasta.md +++ b/docs/version-specific/supported-software/g/gofasta.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Some functions for dealing with alignments, developed to handle SARS-CoV-2 data version | toolchain --------|---------- ``0.0.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/golf.md b/docs/version-specific/supported-software/g/golf.md index c97fbf051..9d7b2a85f 100644 --- a/docs/version-specific/supported-software/g/golf.md +++ b/docs/version-specific/supported-software/g/golf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # golf GNU Compiler Collection (GCC) based compiler toolchain, including OpenBLAS (BLAS and LAPACK support) and FFTW. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2018a`` | ``system`` ``2020a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gomkl.md b/docs/version-specific/supported-software/g/gomkl.md index 8fe50c607..72cd079ee 100644 --- a/docs/version-specific/supported-software/g/gomkl.md +++ b/docs/version-specific/supported-software/g/gomkl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gomkl GNU Compiler Collection (GCC) based compiler toolchain with OpenMPI and MKL @@ -14,3 +18,6 @@ version | toolchain ``2021b`` | ``system`` ``2022a`` | ``system`` ``2023a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gompi.md b/docs/version-specific/supported-software/g/gompi.md index 4c49fb6aa..f82db771a 100644 --- a/docs/version-specific/supported-software/g/gompi.md +++ b/docs/version-specific/supported-software/g/gompi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gompi GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support. @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``2023b`` | | ``system`` ``2024.05`` | | ``system`` ``system`` | ``-2.29`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gompic.md b/docs/version-specific/supported-software/g/gompic.md index 970cf785b..76b0e71a1 100644 --- a/docs/version-specific/supported-software/g/gompic.md +++ b/docs/version-specific/supported-software/g/gompic.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2019b`` | ``system`` ``2020a`` | ``system`` ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/google-java-format.md b/docs/version-specific/supported-software/g/google-java-format.md index 04a54cb75..2b38b1465 100644 --- a/docs/version-specific/supported-software/g/google-java-format.md +++ b/docs/version-specific/supported-software/g/google-java-format.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # google-java-format Reformats Java source code to comply with Google Java Style. @@ -7,3 +11,6 @@ Reformats Java source code to comply with Google Java Style. version | versionsuffix | toolchain --------|---------------|---------- ``1.7`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/googletest.md b/docs/version-specific/supported-software/g/googletest.md index bc428be5b..10d2f274e 100644 --- a/docs/version-specific/supported-software/g/googletest.md +++ b/docs/version-specific/supported-software/g/googletest.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # googletest Google's framework for writing C++ tests on a variety of platforms @@ -20,3 +24,6 @@ version | toolchain ``1.8.0`` | ``foss/2016b`` ``1.8.0`` | ``intel/2016b`` ``1.8.1`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gotree.md b/docs/version-specific/supported-software/g/gotree.md index 4273262bf..5af5824eb 100644 --- a/docs/version-specific/supported-software/g/gotree.md +++ b/docs/version-specific/supported-software/g/gotree.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gotree GoTree is a set of command line tools to manipulate phylogenetic trees. @@ -7,3 +11,6 @@ GoTree is a set of command line tools to manipulate phylogenetic trees. version | toolchain --------|---------- ``0.4.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gperf.md b/docs/version-specific/supported-software/g/gperf.md index c752869d4..a28536fc7 100644 --- a/docs/version-specific/supported-software/g/gperf.md +++ b/docs/version-specific/supported-software/g/gperf.md @@ -1,3 +1,7 @@ +--- +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. @@ -26,3 +30,6 @@ version | toolchain ``3.1`` | ``GCCcore/8.2.0`` ``3.1`` | ``GCCcore/8.3.0`` ``3.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gperftools.md b/docs/version-specific/supported-software/g/gperftools.md index b5b5301bf..7eae4fbbc 100644 --- a/docs/version-specific/supported-software/g/gperftools.md +++ b/docs/version-specific/supported-software/g/gperftools.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``2.9.1`` | ``GCCcore/10.2.0`` ``2.9.1`` | ``GCCcore/10.3.0`` ``2.9.1`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gpustat.md b/docs/version-specific/supported-software/g/gpustat.md index cb45fae93..8d66ce481 100644 --- a/docs/version-specific/supported-software/g/gpustat.md +++ b/docs/version-specific/supported-software/g/gpustat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gpustat dstat-like utilization monitor for NVIDIA GPUs @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``0.6.0`` | | ``gcccuda/2020b`` ``1.0.0b1`` | | ``GCCcore/11.2.0`` ``1.1`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gradunwarp.md b/docs/version-specific/supported-software/g/gradunwarp.md index c74a3404a..c8e4a78a6 100644 --- a/docs/version-specific/supported-software/g/gradunwarp.md +++ b/docs/version-specific/supported-software/g/gradunwarp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gradunwarp Gradient Unwarping. This is the Human Connectome Project fork of the no longer maintained original. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/graph-tool.md b/docs/version-specific/supported-software/g/graph-tool.md index a94d745a4..06765b555 100644 --- a/docs/version-specific/supported-software/g/graph-tool.md +++ b/docs/version-specific/supported-software/g/graph-tool.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.26`` | ``-Python-3.6.3`` | ``foss/2017b`` ``2.27`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.55`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/graphite2.md b/docs/version-specific/supported-software/g/graphite2.md index 612f32aad..db95bd66d 100644 --- a/docs/version-specific/supported-software/g/graphite2.md +++ b/docs/version-specific/supported-software/g/graphite2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # graphite2 Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world. @@ -14,3 +18,6 @@ version | toolchain ``1.3.14`` | ``GCCcore/12.3.0`` ``1.3.14`` | ``GCCcore/13.2.0`` ``1.3.14`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/graphviz-python.md b/docs/version-specific/supported-software/g/graphviz-python.md index 181960ccc..17ae75bef 100644 --- a/docs/version-specific/supported-software/g/graphviz-python.md +++ b/docs/version-specific/supported-software/g/graphviz-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # graphviz-python Simple Python interface for Graphviz @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gretl.md b/docs/version-specific/supported-software/g/gretl.md index 92232cf74..e44f5f82c 100644 --- a/docs/version-specific/supported-software/g/gretl.md +++ b/docs/version-specific/supported-software/g/gretl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gretl A cross-platform software package for econometric analysis @@ -7,3 +11,6 @@ A cross-platform software package for econometric analysis version | toolchain --------|---------- ``2020a`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/grib_api.md b/docs/version-specific/supported-software/g/grib_api.md index 8bf3d5db5..4b6ebe62d 100644 --- a/docs/version-specific/supported-software/g/grib_api.md +++ b/docs/version-specific/supported-software/g/grib_api.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.24.0`` | ``foss/2017b`` ``1.24.0`` | ``intel/2017a`` ``1.24.0`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/grid.md b/docs/version-specific/supported-software/g/grid.md index 440aa2152..a0baec5ec 100644 --- a/docs/version-specific/supported-software/g/grid.md +++ b/docs/version-specific/supported-software/g/grid.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Grid is a free and open-source Python library for numerical integration, interp version | toolchain --------|---------- ``20220610`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/groff.md b/docs/version-specific/supported-software/g/groff.md index b0b6c3b87..5294413f9 100644 --- a/docs/version-specific/supported-software/g/groff.md +++ b/docs/version-specific/supported-software/g/groff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # groff Groff (GNU troff) is a typesetting system that reads plain text mixed with formatting commands and produces formatted output. @@ -17,3 +21,6 @@ version | toolchain ``1.22.4`` | ``GCCcore/8.3.0`` ``1.22.4`` | ``GCCcore/9.3.0`` ``1.23.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/grpcio.md b/docs/version-specific/supported-software/g/grpcio.md index fa1950341..81fb5550f 100644 --- a/docs/version-specific/supported-software/g/grpcio.md +++ b/docs/version-specific/supported-software/g/grpcio.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ gRPC is a modern, open source, high-performance remote procedure call (RPC) fram version | toolchain --------|---------- ``1.57.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md index 64769353e..b0544b0cf 100644 --- a/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md +++ b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ gsettings-desktop-schemas contains a collection of GSettings schemas for settin version | toolchain --------|---------- ``3.34.0`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gspell.md b/docs/version-specific/supported-software/g/gspell.md index f457fc72f..827eda665 100644 --- a/docs/version-specific/supported-software/g/gspell.md +++ b/docs/version-specific/supported-software/g/gspell.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gspell gspell provides a flexible API to add spell-checking to a GTK application. @@ -7,3 +11,6 @@ gspell provides a flexible API to add spell-checking to a GTK application. version | toolchain --------|---------- ``1.12.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gsport.md b/docs/version-specific/supported-software/g/gsport.md index 66757db01..d73e75efc 100644 --- a/docs/version-specific/supported-software/g/gsport.md +++ b/docs/version-specific/supported-software/g/gsport.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gsport GSPORT command-line tool for accessing GenomeScan Customer Portal @@ -7,3 +11,6 @@ GSPORT command-line tool for accessing GenomeScan Customer Portal version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gsutil.md b/docs/version-specific/supported-software/g/gsutil.md index 93ed03c57..32ddfada4 100644 --- a/docs/version-specific/supported-software/g/gsutil.md +++ b/docs/version-specific/supported-software/g/gsutil.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gsutil gsutil is a Python application that lets you access Cloud Storage from the command line. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.10`` | ``GCCcore/11.2.0`` ``5.29`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gsw.md b/docs/version-specific/supported-software/g/gsw.md index 44b4c91ab..e5ad4935b 100644 --- a/docs/version-specific/supported-software/g/gsw.md +++ b/docs/version-specific/supported-software/g/gsw.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This Python implementation of the Thermodynamic Equation of Seawater 2010 (TEOS version | toolchain --------|---------- ``3.6.16`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gubbins.md b/docs/version-specific/supported-software/g/gubbins.md index c7fe1c7b8..54c490441 100644 --- a/docs/version-specific/supported-software/g/gubbins.md +++ b/docs/version-specific/supported-software/g/gubbins.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Gubbins (Genealogies Unbiased By recomBinations In Nucleotide Sequences) is an a version | toolchain --------|---------- ``2.4.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/guenomu.md b/docs/version-specific/supported-software/g/guenomu.md index e5c085f4a..6d7c780bd 100644 --- a/docs/version-specific/supported-software/g/guenomu.md +++ b/docs/version-specific/supported-software/g/guenomu.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # guenomu guenomu is a software written in C that estimates the species tree for a given set of gene families. @@ -7,3 +11,6 @@ guenomu is a software written in C that estimates the species tree for a given s version | versionsuffix | toolchain --------|---------------|---------- ``2019.07.05`` | ``-mpi`` | ``iimpi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/gzip.md b/docs/version-specific/supported-software/g/gzip.md index 549a4e76f..d67aa5b2e 100644 --- a/docs/version-specific/supported-software/g/gzip.md +++ b/docs/version-specific/supported-software/g/gzip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # gzip gzip (GNU zip) is a popular data compression program as a replacement for compress @@ -21,3 +25,6 @@ version | toolchain ``1.8`` | ``GCCcore/6.3.0`` ``1.8`` | ``GCCcore/6.4.0`` ``1.9`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/g/index.md b/docs/version-specific/supported-software/g/index.md index ff2feaec5..2eca06294 100644 --- a/docs/version-specific/supported-software/g/index.md +++ b/docs/version-specific/supported-software/g/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (g) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - *g* - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [G-PhoCS](G-PhoCS.md) * [g2clib](g2clib.md) * [g2lib](g2lib.md) diff --git a/docs/version-specific/supported-software/h/H5hut.md b/docs/version-specific/supported-software/h/H5hut.md index 74b9e5036..32a94bda5 100644 --- a/docs/version-specific/supported-software/h/H5hut.md +++ b/docs/version-specific/supported-software/h/H5hut.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # H5hut HDF5 Utility Toolkit: High-Performance I/O Library for Particle-based Simulations @@ -7,3 +11,6 @@ HDF5 Utility Toolkit: High-Performance I/O Library for Particle-based Simulation version | toolchain --------|---------- ``1.99.13`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HAL.md b/docs/version-specific/supported-software/h/HAL.md index 4714815a6..d1fcd71ef 100644 --- a/docs/version-specific/supported-software/h/HAL.md +++ b/docs/version-specific/supported-software/h/HAL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HAL is a structure to efficiently store and index multiple genome alignments and version | toolchain --------|---------- ``2.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HAPGEN2.md b/docs/version-specific/supported-software/h/HAPGEN2.md index 32d3f8c93..7a92cf311 100644 --- a/docs/version-specific/supported-software/h/HAPGEN2.md +++ b/docs/version-specific/supported-software/h/HAPGEN2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HAPGEN2 'HAPGEN2' simulates case control datasets at SNP markers. @@ -7,3 +11,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HBase.md b/docs/version-specific/supported-software/h/HBase.md index b38faf43b..a5eef4343 100644 --- a/docs/version-specific/supported-software/h/HBase.md +++ b/docs/version-specific/supported-software/h/HBase.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HBase Apache HBase. is the Hadoop database, a distributed, scalable, big data store. @@ -7,3 +11,6 @@ Apache HBase. is the Hadoop database, a distributed, scalable, big data store. version | toolchain --------|---------- ``1.0.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HD-BET.md b/docs/version-specific/supported-software/h/HD-BET.md index 43ac486e0..430816b7d 100644 --- a/docs/version-specific/supported-software/h/HD-BET.md +++ b/docs/version-specific/supported-software/h/HD-BET.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HD-BET Tool for brain extraction. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220318`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``20220318`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDBSCAN.md b/docs/version-specific/supported-software/h/HDBSCAN.md index 34195132b..7a067e2c8 100644 --- a/docs/version-specific/supported-software/h/HDBSCAN.md +++ b/docs/version-specific/supported-software/h/HDBSCAN.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.8.24`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.8.27`` | | ``foss/2021a`` ``0.8.29`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDDM.md b/docs/version-specific/supported-software/h/HDDM.md index a358f09dd..06f1039d7 100644 --- a/docs/version-specific/supported-software/h/HDDM.md +++ b/docs/version-specific/supported-software/h/HDDM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HDDM HDDM is a Puthon toolbox for hierarchical Bayesian parameter estimation of the Drift Diffusion Model (via PyMC). @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.7.5`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.9.9`` | | ``foss/2021b`` ``0.9.9`` | | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDF-EOS.md b/docs/version-specific/supported-software/h/HDF-EOS.md index 6f2837f4b..a7f43c66c 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS.md +++ b/docs/version-specific/supported-software/h/HDF-EOS.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.20`` | ``GCCcore/10.2.0`` ``2.20`` | ``GCCcore/7.3.0`` ``2.20`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDF-EOS2.md b/docs/version-specific/supported-software/h/HDF-EOS2.md index 905b01dcd..9464bb5aa 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS2.md +++ b/docs/version-specific/supported-software/h/HDF-EOS2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HDF-EOS libraries are software libraries built on HDF libraries. It supports th version | toolchain --------|---------- ``3.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDF-EOS5.md b/docs/version-specific/supported-software/h/HDF-EOS5.md index cd7c49b71..49f925c07 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS5.md +++ b/docs/version-specific/supported-software/h/HDF-EOS5.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.16`` | ``foss/2018b`` ``1.16`` | ``gompi/2019b`` ``1.16`` | ``gompi/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDF.md b/docs/version-specific/supported-software/h/HDF.md index ba380d5e1..434b99693 100644 --- a/docs/version-specific/supported-software/h/HDF.md +++ b/docs/version-specific/supported-software/h/HDF.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``4.2.16-2`` | | ``GCCcore/12.3.0`` ``4.2.16-2`` | | ``GCCcore/13.2.0`` ``4.2.16`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDF5.md b/docs/version-specific/supported-software/h/HDF5.md index 871116622..22f9d6e44 100644 --- a/docs/version-specific/supported-software/h/HDF5.md +++ b/docs/version-specific/supported-software/h/HDF5.md @@ -1,3 +1,7 @@ +--- +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. @@ -105,3 +109,6 @@ version | versionsuffix | toolchain ``1.8.20`` | | ``gmpolf/2017.10`` ``1.8.20`` | | ``intel/2017b`` ``1.8.20`` | | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HDFView.md b/docs/version-specific/supported-software/h/HDFView.md index c137a9b1d..652c8fb5a 100644 --- a/docs/version-specific/supported-software/h/HDFView.md +++ b/docs/version-specific/supported-software/h/HDFView.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HDFView HDFView is a visual tool for browsing and editing HDF4 and HDF5 files. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.14`` | ``-Java-1.8.0_152-centos6`` | ``system`` ``2.14`` | ``-Java-1.8.0_152-centos7`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HEALPix.md b/docs/version-specific/supported-software/h/HEALPix.md index 4662659d8..11b29aaa0 100644 --- a/docs/version-specific/supported-software/h/HEALPix.md +++ b/docs/version-specific/supported-software/h/HEALPix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HEALPix Hierarchical Equal Area isoLatitude Pixelation of a sphere. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.50`` | ``GCCcore/7.3.0`` ``3.50`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HF-Datasets.md b/docs/version-specific/supported-software/h/HF-Datasets.md index 18f47e82b..276d278f1 100644 --- a/docs/version-specific/supported-software/h/HF-Datasets.md +++ b/docs/version-specific/supported-software/h/HF-Datasets.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The largest hub of ready-to-use datasets for ML models with fast, easy-to-use an version | toolchain --------|---------- ``2.18.0`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HH-suite.md b/docs/version-specific/supported-software/h/HH-suite.md index 4a97d56f7..e48461555 100644 --- a/docs/version-specific/supported-software/h/HH-suite.md +++ b/docs/version-specific/supported-software/h/HH-suite.md @@ -1,3 +1,7 @@ +--- +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). @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``3.3.0`` | | ``gompi/2023a`` ``3.3.0`` | ``-Python-3.7.4`` | ``gompic/2019b`` ``3.3.0`` | | ``gompic/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HIP.md b/docs/version-specific/supported-software/h/HIP.md index 1f65228d2..594624ada 100644 --- a/docs/version-specific/supported-software/h/HIP.md +++ b/docs/version-specific/supported-software/h/HIP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HIP is a C++ Runtime API and Kernel Language that allows developers to create po version | versionsuffix | toolchain --------|---------------|---------- ``4.5.0`` | ``-amd`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HIPS.md b/docs/version-specific/supported-software/h/HIPS.md index 0f79b3589..333dffef1 100644 --- a/docs/version-specific/supported-software/h/HIPS.md +++ b/docs/version-specific/supported-software/h/HIPS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HIPS (Hierarchical Iterative Parallel Solver) is a scientific library that provi version | toolchain --------|---------- ``1.2b-rc5`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HISAT2.md b/docs/version-specific/supported-software/h/HISAT2.md index 3171f95ee..874a870be 100644 --- a/docs/version-specific/supported-software/h/HISAT2.md +++ b/docs/version-specific/supported-software/h/HISAT2.md @@ -1,3 +1,7 @@ +--- +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). @@ -22,3 +26,6 @@ version | toolchain ``2.2.1`` | ``gompi/2021b`` ``2.2.1`` | ``gompi/2022a`` ``2.2.1`` | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HLAminer.md b/docs/version-specific/supported-software/h/HLAminer.md index 10f154f90..132280602 100644 --- a/docs/version-specific/supported-software/h/HLAminer.md +++ b/docs/version-specific/supported-software/h/HLAminer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HLAminer is a software for HLA predictions from next-generation shotgun (NGS) se version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-Perl-5.28.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HMMER.md b/docs/version-specific/supported-software/h/HMMER.md index 683eefefd..0722f4d63 100644 --- a/docs/version-specific/supported-software/h/HMMER.md +++ b/docs/version-specific/supported-software/h/HMMER.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | toolchain ``3.3.2`` | ``iimpi/2020b`` ``3.3.2`` | ``iimpi/2021b`` ``3.4`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HMMER2.md b/docs/version-specific/supported-software/h/HMMER2.md index 200578d1d..b9893f3cf 100644 --- a/docs/version-specific/supported-software/h/HMMER2.md +++ b/docs/version-specific/supported-software/h/HMMER2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HMMER2 HMMER is used for searching sequence databases for sequence homologs, and for making sequence alignments. @@ -9,3 +13,6 @@ version | toolchain ``2.3.2`` | ``GCC/10.2.0`` ``2.3.2`` | ``GCC/10.3.0`` ``2.3.2`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HOME.md b/docs/version-specific/supported-software/h/HOME.md index 6211acc53..0dea264eb 100644 --- a/docs/version-specific/supported-software/h/HOME.md +++ b/docs/version-specific/supported-software/h/HOME.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HOME (histogram of methylation) is a python package for differential methylation version | versionsuffix | toolchain --------|---------------|---------- ``0.9`` | ``-Python-2.7.13`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HOMER.md b/docs/version-specific/supported-software/h/HOMER.md index 000945a55..baccee3d4 100644 --- a/docs/version-specific/supported-software/h/HOMER.md +++ b/docs/version-specific/supported-software/h/HOMER.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for version | versionsuffix | toolchain --------|---------------|---------- ``4.11`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HOOMD-blue.md b/docs/version-specific/supported-software/h/HOOMD-blue.md index 7fcc89881..ffc0dddc1 100644 --- a/docs/version-specific/supported-software/h/HOOMD-blue.md +++ b/docs/version-specific/supported-software/h/HOOMD-blue.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``4.0.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HPCC.md b/docs/version-specific/supported-software/h/HPCC.md index 480ec4492..ded004379 100644 --- a/docs/version-specific/supported-software/h/HPCC.md +++ b/docs/version-specific/supported-software/h/HPCC.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ HPC Challenge is a benchmark suite that measures a range memory access patterns. version | toolchain --------|---------- ``1.5.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HPCG.md b/docs/version-specific/supported-software/h/HPCG.md index fadf7fc86..35531da6f 100644 --- a/docs/version-specific/supported-software/h/HPCG.md +++ b/docs/version-specific/supported-software/h/HPCG.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | toolchain ``3.1`` | ``intel/2022a`` ``3.1`` | ``intel/2022b`` ``3.1`` | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HPCX.md b/docs/version-specific/supported-software/h/HPCX.md index a2517d587..8c0a71ee5 100644 --- a/docs/version-specific/supported-software/h/HPCX.md +++ b/docs/version-specific/supported-software/h/HPCX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HPCX The Mellanox HPC-X Toolkit is a comprehensive MPI and SHMEM/PGAS software suite for high performance computing environments @@ -7,3 +11,6 @@ The Mellanox HPC-X Toolkit is a comprehensive MPI and SHMEM/PGAS software suite version | toolchain --------|---------- ``2.3.0`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HPDBSCAN.md b/docs/version-specific/supported-software/h/HPDBSCAN.md index 727790e6f..8f98d05c1 100644 --- a/docs/version-specific/supported-software/h/HPDBSCAN.md +++ b/docs/version-specific/supported-software/h/HPDBSCAN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HPDBSCAN Highly parallel density based spatial clustering for application with noise @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20171110`` | ``foss/2017b`` ``20210826`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HPL.md b/docs/version-specific/supported-software/h/HPL.md index 6d4570682..2082fb04f 100644 --- a/docs/version-specific/supported-software/h/HPL.md +++ b/docs/version-specific/supported-software/h/HPL.md @@ -1,3 +1,7 @@ +--- +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. @@ -126,3 +130,6 @@ version | versionsuffix | toolchain ``2.3`` | | ``iomkl/2019.01`` ``2.3`` | | ``iomkl/2021a`` ``2.3`` | | ``iomkl/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HTSeq.md b/docs/version-specific/supported-software/h/HTSeq.md index 2ee687b56..3eb7446df 100644 --- a/docs/version-specific/supported-software/h/HTSeq.md +++ b/docs/version-specific/supported-software/h/HTSeq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HTSeq A framework to process and analyze data from high-throughput sequencing (HTS) assays @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-3.6.3`` | ``intel/2017b`` ``0.9.1`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.0.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HTSlib.md b/docs/version-specific/supported-software/h/HTSlib.md index 8e5b569fa..9d52b8613 100644 --- a/docs/version-specific/supported-software/h/HTSlib.md +++ b/docs/version-specific/supported-software/h/HTSlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HTSlib A C library for reading/writing high-throughput sequencing data. This package includes the utilities bgzip and tabix @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``1.9`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | | ``intel/2018b`` ``20160107`` | ``-PacBio`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HTSplotter.md b/docs/version-specific/supported-software/h/HTSplotter.md index 90de5340c..4d5e5319d 100644 --- a/docs/version-specific/supported-software/h/HTSplotter.md +++ b/docs/version-specific/supported-software/h/HTSplotter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HTSplotter HTSplotter allows an end-to-end data processing and analysis of chemical and genetic in vitro perturbation screens. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.15`` | ``foss/2022a`` ``2.11`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Hadoop.md b/docs/version-specific/supported-software/h/Hadoop.md index b6fa1cada..ee9d79571 100644 --- a/docs/version-specific/supported-software/h/Hadoop.md +++ b/docs/version-specific/supported-software/h/Hadoop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Hadoop Hadoop MapReduce by Cloudera @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.6.0-cdh5.7.0`` | ``-native`` | ``system`` ``2.6.0-cdh5.8.0`` | ``-native`` | ``system`` ``2.9.2`` | ``-native`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HarfBuzz.md b/docs/version-specific/supported-software/h/HarfBuzz.md index 0c47bce7b..96c1cf667 100644 --- a/docs/version-specific/supported-software/h/HarfBuzz.md +++ b/docs/version-specific/supported-software/h/HarfBuzz.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HarfBuzz HarfBuzz is an OpenType text shaping engine. @@ -31,3 +35,6 @@ version | toolchain ``5.3.1`` | ``GCCcore/12.2.0`` ``5.3.1`` | ``GCCcore/12.3.0`` ``8.2.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Harminv.md b/docs/version-specific/supported-software/h/Harminv.md index c623b26ad..80fcc3201 100644 --- a/docs/version-specific/supported-software/h/Harminv.md +++ b/docs/version-specific/supported-software/h/Harminv.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.4.1`` | ``intel/2018a`` ``1.4.1`` | ``intel/2020a`` ``1.4.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HeFFTe.md b/docs/version-specific/supported-software/h/HeFFTe.md index ec841826d..728a8d448 100644 --- a/docs/version-specific/supported-software/h/HeFFTe.md +++ b/docs/version-specific/supported-software/h/HeFFTe.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HeFFTe Highly Efficient FFT for Exascale (HeFFTe) library @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2020a`` ``2.4.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Health-GPS.md b/docs/version-specific/supported-software/h/Health-GPS.md index b9a3a3a83..71ffefd37 100644 --- a/docs/version-specific/supported-software/h/Health-GPS.md +++ b/docs/version-specific/supported-software/h/Health-GPS.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.3.0`` | ``GCCcore/11.3.0`` ``1.2.2.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Hello.md b/docs/version-specific/supported-software/h/Hello.md index f57c7ffa8..4f415e495 100644 --- a/docs/version-specific/supported-software/h/Hello.md +++ b/docs/version-specific/supported-software/h/Hello.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The GNU Hello program produces a familiar, friendly greeting. Yes, this is anoth version | toolchain --------|---------- ``2.10`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HepMC.md b/docs/version-specific/supported-software/h/HepMC.md index 3c7bfba87..5328ff879 100644 --- a/docs/version-specific/supported-software/h/HepMC.md +++ b/docs/version-specific/supported-software/h/HepMC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HepMC HepMC is a standard for storing Monte Carlo event data. @@ -7,3 +11,6 @@ HepMC is a standard for storing Monte Carlo event data. version | toolchain --------|---------- ``2.06.11`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HepMC3.md b/docs/version-specific/supported-software/h/HepMC3.md index b1e550b11..44dfdd8bf 100644 --- a/docs/version-specific/supported-software/h/HepMC3.md +++ b/docs/version-specific/supported-software/h/HepMC3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HepMC3 HepMC is a standard for storing Monte Carlo event data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.2.5`` | ``GCC/11.3.0`` ``3.2.6`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HiC-Pro.md b/docs/version-specific/supported-software/h/HiC-Pro.md index ec2c68a65..e2d99b722 100644 --- a/docs/version-specific/supported-software/h/HiC-Pro.md +++ b/docs/version-specific/supported-software/h/HiC-Pro.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.9.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``3.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HiCExplorer.md b/docs/version-specific/supported-software/h/HiCExplorer.md index d47930b5a..b3e38ecaf 100644 --- a/docs/version-specific/supported-software/h/HiCExplorer.md +++ b/docs/version-specific/supported-software/h/HiCExplorer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HiCExplorer HiCexplorer addresses the common tasks of Hi-C analysis from processing to visualization. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``3.7.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HiCMatrix.md b/docs/version-specific/supported-software/h/HiCMatrix.md index c9b8234cc..4031d1780 100644 --- a/docs/version-specific/supported-software/h/HiCMatrix.md +++ b/docs/version-specific/supported-software/h/HiCMatrix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HiCMatrix This library implements the central class of HiCExplorer to manage Hi-C interaction matrices. @@ -7,3 +11,6 @@ This library implements the central class of HiCExplorer to manage Hi-C interact version | toolchain --------|---------- ``17`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HiGHS.md b/docs/version-specific/supported-software/h/HiGHS.md index 02beaffd6..eddfd157d 100644 --- a/docs/version-specific/supported-software/h/HiGHS.md +++ b/docs/version-specific/supported-software/h/HiGHS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Open source serial and parallel solvers for large-scale sparse linear programmin version | toolchain --------|---------- ``1.7.0`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HighFive.md b/docs/version-specific/supported-software/h/HighFive.md index 29c2d9aed..336e8f889 100644 --- a/docs/version-specific/supported-software/h/HighFive.md +++ b/docs/version-specific/supported-software/h/HighFive.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HighFive HighFive is a modern header-only C++11 friendly interface for libhdf5. @@ -9,3 +13,6 @@ version | toolchain ``2.6.2`` | ``gompi/2021a`` ``2.6.2`` | ``gompi/2022a`` ``2.7.1`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Highway.md b/docs/version-specific/supported-software/h/Highway.md index 5e1df5448..778b285f5 100644 --- a/docs/version-specific/supported-software/h/Highway.md +++ b/docs/version-specific/supported-software/h/Highway.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Highway Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the same operation to 'lanes'. @@ -13,3 +17,6 @@ version | toolchain ``1.0.4`` | ``GCCcore/11.3.0`` ``1.0.4`` | ``GCCcore/12.3.0`` ``1.0.7`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Horovod.md b/docs/version-specific/supported-software/h/Horovod.md index 628ba4efe..fb2d67939 100644 --- a/docs/version-specific/supported-software/h/Horovod.md +++ b/docs/version-specific/supported-software/h/Horovod.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Horovod Horovod is a distributed training framework for TensorFlow. @@ -40,3 +44,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HyPhy.md b/docs/version-specific/supported-software/h/HyPhy.md index dbb43f76b..2108502b7 100644 --- a/docs/version-specific/supported-software/h/HyPhy.md +++ b/docs/version-specific/supported-software/h/HyPhy.md @@ -1,3 +1,7 @@ +--- +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 @@ -10,3 +14,6 @@ version | toolchain ``2.5.1`` | ``gompi/2019a`` ``2.5.33`` | ``gompi/2021a`` ``2.5.60`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HyPo.md b/docs/version-specific/supported-software/h/HyPo.md index 7a7100ac4..686446f54 100644 --- a/docs/version-specific/supported-software/h/HyPo.md +++ b/docs/version-specific/supported-software/h/HyPo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # HyPo HyPo: Super Fast & Accurate Polisher for Long Read Genome Assemblies @@ -7,3 +11,6 @@ HyPo: Super Fast & Accurate Polisher for Long Read Genome Assemblies version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Hybpiper.md b/docs/version-specific/supported-software/h/Hybpiper.md index df42751d2..7b18aa893 100644 --- a/docs/version-specific/supported-software/h/Hybpiper.md +++ b/docs/version-specific/supported-software/h/Hybpiper.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HybPiper was designed for targeted sequence capture, in which DNA sequencing li version | toolchain --------|---------- ``2.1.6`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Hydra.md b/docs/version-specific/supported-software/h/Hydra.md index 6e8007497..44f3440c5 100644 --- a/docs/version-specific/supported-software/h/Hydra.md +++ b/docs/version-specific/supported-software/h/Hydra.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.1.1`` | ``GCCcore/10.3.0`` ``1.3.2`` | ``GCCcore/11.3.0`` ``1.3.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/HyperQueue.md b/docs/version-specific/supported-software/h/HyperQueue.md index 282db7b15..333f45d03 100644 --- a/docs/version-specific/supported-software/h/HyperQueue.md +++ b/docs/version-specific/supported-software/h/HyperQueue.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HyperQueue lets you build a computation plan consisting of a large amount of tas version | toolchain --------|---------- ``0.13.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Hyperopt.md b/docs/version-specific/supported-software/h/Hyperopt.md index be9a8be09..eda72be8d 100644 --- a/docs/version-specific/supported-software/h/Hyperopt.md +++ b/docs/version-specific/supported-software/h/Hyperopt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Hyperopt hyperopt is a Python library for optimizing over awkward search spaces with real-valued, discrete, and conditional dimensions. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``0.2.5`` | | ``fosscuda/2020b`` ``0.2.7`` | | ``foss/2021a`` ``0.2.7`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/Hypre.md b/docs/version-specific/supported-software/h/Hypre.md index b939cc02a..953ea80f7 100644 --- a/docs/version-specific/supported-software/h/Hypre.md +++ b/docs/version-specific/supported-software/h/Hypre.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | toolchain ``2.25.0`` | ``foss/2022a`` ``2.27.0`` | ``foss/2022b`` ``2.29.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/h4toh5.md b/docs/version-specific/supported-software/h/h4toh5.md index 9d338ad9c..32fac499d 100644 --- a/docs/version-specific/supported-software/h/h4toh5.md +++ b/docs/version-specific/supported-software/h/h4toh5.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.2.3`` | | ``gompi/2019b`` ``2.2.3`` | | ``gompi/2020b`` ``2.2.5`` | | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/h5netcdf.md b/docs/version-specific/supported-software/h/h5netcdf.md index aca7fd3fe..9191fcbb4 100644 --- a/docs/version-specific/supported-software/h/h5netcdf.md +++ b/docs/version-specific/supported-software/h/h5netcdf.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.1.0`` | ``foss/2021b`` ``1.2.0`` | ``foss/2022a`` ``1.2.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/h5py.md b/docs/version-specific/supported-software/h/h5py.md index ce0c438fb..346a82b83 100644 --- a/docs/version-specific/supported-software/h/h5py.md +++ b/docs/version-specific/supported-software/h/h5py.md @@ -1,3 +1,7 @@ +--- +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. @@ -78,3 +82,6 @@ version | versionsuffix | toolchain ``3.7.0`` | | ``intel/2022a`` ``3.8.0`` | | ``foss/2022b`` ``3.9.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hampel.md b/docs/version-specific/supported-software/h/hampel.md index 759c2460f..6d8f22845 100644 --- a/docs/version-specific/supported-software/h/hampel.md +++ b/docs/version-specific/supported-software/h/hampel.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ The Hampel filter is generally used to detect anomalies in data with a timeserie version | toolchain --------|---------- ``0.0.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hanythingondemand.md b/docs/version-specific/supported-software/h/hanythingondemand.md index a75a9f459..01defe656 100644 --- a/docs/version-specific/supported-software/h/hanythingondemand.md +++ b/docs/version-specific/supported-software/h/hanythingondemand.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-2.7.12`` | ``intel/2016b`` ``3.2.2`` | ``-cli`` | ``system`` ``3.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/harmony.md b/docs/version-specific/supported-software/h/harmony.md index 592cd8dda..be951b738 100644 --- a/docs/version-specific/supported-software/h/harmony.md +++ b/docs/version-specific/supported-software/h/harmony.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # harmony Harmony is a general-purpose R package with an efficient algorithm for integrating multiple data sets. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20210528`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.0.0-20200224`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hatch-jupyter-builder.md b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md index a15155cf2..2b3bdef8c 100644 --- a/docs/version-specific/supported-software/h/hatch-jupyter-builder.md +++ b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Hatch Jupyter Builder is a plugin for the hatchling Python build backend. It is version | toolchain --------|---------- ``0.9.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hatchling.md b/docs/version-specific/supported-software/h/hatchling.md index f237b2163..d9ddd7cd8 100644 --- a/docs/version-specific/supported-software/h/hatchling.md +++ b/docs/version-specific/supported-software/h/hatchling.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hatchling Extensible, standards compliant build backend used by Hatch, a modern, extensible Python project manager. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.18.0`` | ``GCCcore/12.3.0`` ``1.18.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hdWGCNA.md b/docs/version-specific/supported-software/h/hdWGCNA.md index e8eaf7ed8..766c476ba 100644 --- a/docs/version-specific/supported-software/h/hdWGCNA.md +++ b/docs/version-specific/supported-software/h/hdWGCNA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ hdWGCNA is an R package for performing weighted gene co-expression network analy version | versionsuffix | toolchain --------|---------------|---------- ``0.3.00`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hdf5storage.md b/docs/version-specific/supported-software/h/hdf5storage.md index b2eb7f51f..f65ecbb31 100644 --- a/docs/version-specific/supported-software/h/hdf5storage.md +++ b/docs/version-specific/supported-software/h/hdf5storage.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1.15`` | ``foss/2019a`` ``0.1.15`` | ``fosscuda/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/heaptrack.md b/docs/version-specific/supported-software/h/heaptrack.md index 3d35cd191..670d958da 100644 --- a/docs/version-specific/supported-software/h/heaptrack.md +++ b/docs/version-specific/supported-software/h/heaptrack.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # heaptrack A heap memory profiler for Linux. @@ -7,3 +11,6 @@ A heap memory profiler for Linux. version | toolchain --------|---------- ``1.1.0`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hector.md b/docs/version-specific/supported-software/h/hector.md index 1a3841d2b..2dbf7b7d0 100644 --- a/docs/version-specific/supported-software/h/hector.md +++ b/docs/version-specific/supported-software/h/hector.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is the repository for Hector, an open source, object-oriented, simple glob version | toolchain --------|---------- ``2.5.0`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/help2man.md b/docs/version-specific/supported-software/h/help2man.md index 5d55d05b7..65ed1713c 100644 --- a/docs/version-specific/supported-software/h/help2man.md +++ b/docs/version-specific/supported-software/h/help2man.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # help2man help2man produces simple manual pages from the '--help' and '--version' output of other commands. @@ -42,3 +46,6 @@ version | toolchain ``1.49.3`` | ``GCCcore/13.2.0`` ``1.49.3`` | ``GCCcore/13.3.0`` ``1.49.3`` | ``GCCcore/14.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hevea.md b/docs/version-specific/supported-software/h/hevea.md index db995b84b..791f609a7 100644 --- a/docs/version-specific/supported-software/h/hevea.md +++ b/docs/version-specific/supported-software/h/hevea.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hevea A quite complete and fast LATEX to HTML translator @@ -7,3 +11,6 @@ A quite complete and fast LATEX to HTML translator version | toolchain --------|---------- ``2.36`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hic-straw.md b/docs/version-specific/supported-software/h/hic-straw.md index 1b84d31d8..184c208c8 100644 --- a/docs/version-specific/supported-software/h/hic-straw.md +++ b/docs/version-specific/supported-software/h/hic-straw.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hic-straw Straw is a library which allows rapid streaming of contact data from .hic files. @@ -7,3 +11,6 @@ Straw is a library which allows rapid streaming of contact data from .hic files. version | toolchain --------|---------- ``1.3.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hierfstat.md b/docs/version-specific/supported-software/h/hierfstat.md index 8bdfa34f2..50841e72e 100644 --- a/docs/version-specific/supported-software/h/hierfstat.md +++ b/docs/version-specific/supported-software/h/hierfstat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hierfstat Estimates hierarchical F-statistics from haploid or diploid genetic data with any numbers of levels in the hierarchy. @@ -7,3 +11,6 @@ Estimates hierarchical F-statistics from haploid or diploid genetic data with an version | versionsuffix | toolchain --------|---------------|---------- ``0.5-7`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hifiasm.md b/docs/version-specific/supported-software/h/hifiasm.md index 5385781c3..627c0d352 100644 --- a/docs/version-specific/supported-software/h/hifiasm.md +++ b/docs/version-specific/supported-software/h/hifiasm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hifiasm Hifiasm: a haplotype-resolved assembler for accurate Hifi reads. @@ -11,3 +15,6 @@ version | toolchain ``0.16.1`` | ``GCCcore/10.3.0`` ``0.19.5`` | ``GCCcore/11.2.0`` ``0.19.7`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hipSYCL.md b/docs/version-specific/supported-software/h/hipSYCL.md index b3d81565b..78e630d5a 100644 --- a/docs/version-specific/supported-software/h/hipSYCL.md +++ b/docs/version-specific/supported-software/h/hipSYCL.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.9.1`` | ``GCC/10.2.0`` ``0.9.1`` | ``gcccuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hipify-clang.md b/docs/version-specific/supported-software/h/hipify-clang.md index 8af6b4690..7a72b2b95 100644 --- a/docs/version-specific/supported-software/h/hipify-clang.md +++ b/docs/version-specific/supported-software/h/hipify-clang.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Hipify-clang is a clang-based tool for translating CUDA sources into HIP sourc version | toolchain --------|---------- ``4.2.0`` | ``gcccuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hiredis.md b/docs/version-specific/supported-software/h/hiredis.md index d1aae5965..8b3c090f5 100644 --- a/docs/version-specific/supported-software/h/hiredis.md +++ b/docs/version-specific/supported-software/h/hiredis.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.2.0`` ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/histolab.md b/docs/version-specific/supported-software/h/histolab.md index 266fb6d75..05c04160e 100644 --- a/docs/version-specific/supported-software/h/histolab.md +++ b/docs/version-specific/supported-software/h/histolab.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # histolab Library for Digital Pathology Image Processing @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.1`` | ``foss/2021a`` ``0.4.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hivtrace.md b/docs/version-specific/supported-software/h/hivtrace.md index 5f283a1bf..92d88b8d0 100644 --- a/docs/version-specific/supported-software/h/hivtrace.md +++ b/docs/version-specific/supported-software/h/hivtrace.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ HIV-TRACE is an application that identifies potential transmission clusters with version | toolchain --------|---------- ``0.6.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hl7apy.md b/docs/version-specific/supported-software/h/hl7apy.md index a8fd7e502..bd0b0deaa 100644 --- a/docs/version-specific/supported-software/h/hl7apy.md +++ b/docs/version-specific/supported-software/h/hl7apy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hl7apy Python library to parse, create and handle HL7 v2 messages. @@ -7,3 +11,6 @@ Python library to parse, create and handle HL7 v2 messages. version | versionsuffix | toolchain --------|---------------|---------- ``1.3.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hmmcopy_utils.md b/docs/version-specific/supported-software/h/hmmcopy_utils.md index 86452dc25..d85340234 100644 --- a/docs/version-specific/supported-software/h/hmmcopy_utils.md +++ b/docs/version-specific/supported-software/h/hmmcopy_utils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hmmcopy_utils Tools for extracting read counts and gc and mappability statistics in preparation for running HMMCopy. @@ -7,3 +11,6 @@ Tools for extracting read counts and gc and mappability statistics in preparatio version | toolchain --------|---------- ``20210728`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hmmlearn.md b/docs/version-specific/supported-software/h/hmmlearn.md index 805b39e9b..43804216a 100644 --- a/docs/version-specific/supported-software/h/hmmlearn.md +++ b/docs/version-specific/supported-software/h/hmmlearn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hmmlearn hmmlearn is a set of algorithms for unsupervised learning and inference of Hidden Markov Models @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` ``0.3.0`` | | ``foss/2022b`` ``0.3.0`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/horton.md b/docs/version-specific/supported-software/h/horton.md index 72bfd7ef3..f1aa598cc 100644 --- a/docs/version-specific/supported-software/h/horton.md +++ b/docs/version-specific/supported-software/h/horton.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + 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 index a67ab94de..0aa1dfa06 100644 --- 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 @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # how_are_we_stranded_here Python package for testing strandedness of RNA-Seq fastq files @@ -7,3 +11,6 @@ Python package for testing strandedness of RNA-Seq fastq files version | toolchain --------|---------- ``1.0.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/htop.md b/docs/version-specific/supported-software/h/htop.md index badad8513..3fcec562d 100644 --- a/docs/version-specific/supported-software/h/htop.md +++ b/docs/version-specific/supported-software/h/htop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # htop An interactive process viewer for Unix @@ -10,3 +14,6 @@ version | toolchain ``2.0.1`` | ``system`` ``3.2.1`` | ``system`` ``3.2.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hub.md b/docs/version-specific/supported-software/h/hub.md index 457d50b9c..f1bd447af 100644 --- a/docs/version-specific/supported-software/h/hub.md +++ b/docs/version-specific/supported-software/h/hub.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # hub hub is a command-line wrapper for git that makes you better at GitHub. @@ -7,3 +11,6 @@ hub is a command-line wrapper for git that makes you better at GitHub. version | versionsuffix | toolchain --------|---------------|---------- ``2.2.2`` | ``-linux-amd64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/humann.md b/docs/version-specific/supported-software/h/humann.md index dfd1b0887..8a26343d5 100644 --- a/docs/version-specific/supported-software/h/humann.md +++ b/docs/version-specific/supported-software/h/humann.md @@ -1,3 +1,7 @@ +--- +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)? @@ -7,3 +11,6 @@ HUMAnN v3 is a pipeline for efficiently and accurately determining the coverage version | toolchain --------|---------- ``3.6`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hunspell.md b/docs/version-specific/supported-software/h/hunspell.md index 3e2231efa..a00fcfc62 100644 --- a/docs/version-specific/supported-software/h/hunspell.md +++ b/docs/version-specific/supported-software/h/hunspell.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.7.1`` | ``GCCcore/11.2.0`` ``1.7.1`` | ``GCCcore/11.3.0`` ``1.7.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hwloc.md b/docs/version-specific/supported-software/h/hwloc.md index e35afca0a..1d637405f 100644 --- a/docs/version-specific/supported-software/h/hwloc.md +++ b/docs/version-specific/supported-software/h/hwloc.md @@ -1,3 +1,7 @@ +--- +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. @@ -54,3 +58,6 @@ version | toolchain ``2.8.0`` | ``GCCcore/12.2.0`` ``2.9.1`` | ``GCCcore/12.3.0`` ``2.9.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hyperspy.md b/docs/version-specific/supported-software/h/hyperspy.md index ebd5425ff..d1d611fb1 100644 --- a/docs/version-specific/supported-software/h/hyperspy.md +++ b/docs/version-specific/supported-software/h/hyperspy.md @@ -1,3 +1,7 @@ +--- +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) @@ -7,3 +11,6 @@ HyperSpy is an open source Python library which provides tools to facilitate the version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.5.2`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/hypothesis.md b/docs/version-specific/supported-software/h/hypothesis.md index 8eeb2ee69..b730c3522 100644 --- a/docs/version-specific/supported-software/h/hypothesis.md +++ b/docs/version-specific/supported-software/h/hypothesis.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``6.7.0`` | | ``GCCcore/10.2.0`` ``6.82.0`` | | ``GCCcore/12.3.0`` ``6.90.0`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/h/index.md b/docs/version-specific/supported-software/h/index.md index 3b9f00d1e..0bdc585c1 100644 --- a/docs/version-specific/supported-software/h/index.md +++ b/docs/version-specific/supported-software/h/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (h) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - *h* - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [h4toh5](h4toh5.md) * [H5hut](H5hut.md) * [h5netcdf](h5netcdf.md) diff --git a/docs/version-specific/supported-software/i/I-TASSER.md b/docs/version-specific/supported-software/i/I-TASSER.md index ae3fdf9d1..b5fc797a1 100644 --- a/docs/version-specific/supported-software/i/I-TASSER.md +++ b/docs/version-specific/supported-software/i/I-TASSER.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.0`` | ``system`` ``4.2`` | ``system`` ``5.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ICA-AROMA.md b/docs/version-specific/supported-software/i/ICA-AROMA.md index 284282314..bf8a56262 100644 --- a/docs/version-specific/supported-software/i/ICA-AROMA.md +++ b/docs/version-specific/supported-software/i/ICA-AROMA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ICA-AROMA (i.e. 'ICA-based Automatic Removal Of Motion Artifacts') concerns a da version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4-beta`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ICON.md b/docs/version-specific/supported-software/i/ICON.md index 2a5b18c31..b0fcff20d 100644 --- a/docs/version-specific/supported-software/i/ICON.md +++ b/docs/version-specific/supported-software/i/ICON.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ICON is a flexible, scalable, high-performance modelling framework for weather, version | toolchain --------|---------- ``2024.01`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ICU.md b/docs/version-specific/supported-software/i/ICU.md index a9c43a26e..a4a26ebba 100644 --- a/docs/version-specific/supported-software/i/ICU.md +++ b/docs/version-specific/supported-software/i/ICU.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``73.2`` | ``GCCcore/12.3.0`` ``74.1`` | ``GCCcore/13.2.0`` ``75.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IDBA-UD.md b/docs/version-specific/supported-software/i/IDBA-UD.md index f76be8661..a8376da54 100644 --- a/docs/version-specific/supported-software/i/IDBA-UD.md +++ b/docs/version-specific/supported-software/i/IDBA-UD.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``1.1.3`` | ``GCC/9.3.0`` ``1.1.3`` | ``foss/2018a`` ``1.1.3`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IDG.md b/docs/version-specific/supported-software/i/IDG.md index d60274bff..3091f4b99 100644 --- a/docs/version-specific/supported-software/i/IDG.md +++ b/docs/version-specific/supported-software/i/IDG.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridd version | toolchain --------|---------- ``1.2.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IGMPlot.md b/docs/version-specific/supported-software/i/IGMPlot.md index d26ecbb29..23e8efb78 100644 --- a/docs/version-specific/supported-software/i/IGMPlot.md +++ b/docs/version-specific/supported-software/i/IGMPlot.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.4.2`` | ``GCC/8.3.0`` ``2.4.2`` | ``iccifort/2019.5.281`` ``2.6.9b`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IGV.md b/docs/version-specific/supported-software/i/IGV.md index 036bae70f..e963179b9 100644 --- a/docs/version-specific/supported-software/i/IGV.md +++ b/docs/version-specific/supported-software/i/IGV.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IGV This package contains command line utilities for preprocessing, computing feature count density (coverage), sorting, and indexing data files. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.5.0`` | ``-Java-11`` | ``system`` ``2.8.0`` | ``-Java-11`` | ``system`` ``2.9.4`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IGVTools.md b/docs/version-specific/supported-software/i/IGVTools.md index 82f270884..44d3c8669 100644 --- a/docs/version-specific/supported-software/i/IGVTools.md +++ b/docs/version-specific/supported-software/i/IGVTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IJulia.md b/docs/version-specific/supported-software/i/IJulia.md index dd946c9fb..9addf24b7 100644 --- a/docs/version-specific/supported-software/i/IJulia.md +++ b/docs/version-specific/supported-software/i/IJulia.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IJulia Julia kernel for Jupyter @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.23.3`` | ``-Julia-1.6.7`` | ``system`` ``1.24.0`` | ``-Julia-1.8.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ILAMB.md b/docs/version-specific/supported-software/i/ILAMB.md index 6c5266946..8bcd5fb60 100644 --- a/docs/version-specific/supported-software/i/ILAMB.md +++ b/docs/version-specific/supported-software/i/ILAMB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The International Land Model Benchmarking (ILAMB) project is a model-data interc version | versionsuffix | toolchain --------|---------------|---------- ``2.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IMB.md b/docs/version-specific/supported-software/i/IMB.md index bc87481e4..513d69d5f 100644 --- a/docs/version-specific/supported-software/i/IMB.md +++ b/docs/version-specific/supported-software/i/IMB.md @@ -1,3 +1,7 @@ +--- +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 @@ -19,3 +23,6 @@ version | toolchain ``4.1`` | ``foss/2017a`` ``4.1`` | ``intel/2017.02`` ``4.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IML.md b/docs/version-specific/supported-software/i/IML.md index f36da2722..eb45e524b 100644 --- a/docs/version-specific/supported-software/i/IML.md +++ b/docs/version-specific/supported-software/i/IML.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.5`` | ``gfbf/2022a`` ``1.0.5`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IMOD.md b/docs/version-specific/supported-software/i/IMOD.md index fc1947e49..1f2389cc2 100644 --- a/docs/version-specific/supported-software/i/IMOD.md +++ b/docs/version-specific/supported-software/i/IMOD.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``4.11.5`` | | ``foss/2020b`` ``4.11.5`` | | ``fosscuda/2020b`` ``4.7.15`` | ``_RHEL6-64_CUDA6.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IMPUTE2.md b/docs/version-specific/supported-software/i/IMPUTE2.md index 526bcf44c..dc80df2b2 100644 --- a/docs/version-specific/supported-software/i/IMPUTE2.md +++ b/docs/version-specific/supported-software/i/IMPUTE2.md @@ -1,3 +1,7 @@ +--- +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 @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.3.0`` | ``_x86_64_static`` | ``system`` ``2.3.2`` | ``_x86_64_dynamic`` | ``system`` ``2.3.2`` | ``_x86_64_static`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IMa2.md b/docs/version-specific/supported-software/i/IMa2.md index 950663b70..a98d21462 100644 --- a/docs/version-specific/supported-software/i/IMa2.md +++ b/docs/version-specific/supported-software/i/IMa2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IMa2 IMa2 is a progam for population genetic analysis that can handle two or more populations. @@ -7,3 +11,6 @@ IMa2 is a progam for population genetic analysis that can handle two or more pop version | toolchain --------|---------- ``8.27.12`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IMa2p.md b/docs/version-specific/supported-software/i/IMa2p.md index 33e079123..3f0851a2b 100644 --- a/docs/version-specific/supported-software/i/IMa2p.md +++ b/docs/version-specific/supported-software/i/IMa2p.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20151123`` | ``foss/2016a`` ``20160804`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/INTEGRATE-Neo.md b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md index f32a0c20d..b2de37c3e 100644 --- a/docs/version-specific/supported-software/i/INTEGRATE-Neo.md +++ b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ INTEGRATE-Neo is a gene fusion neoantigen discovering tool using next-generation version | versionsuffix | toolchain --------|---------------|---------- ``1.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/INTEGRATE.md b/docs/version-specific/supported-software/i/INTEGRATE.md index d5615fc7a..e414e60b5 100644 --- a/docs/version-specific/supported-software/i/INTEGRATE.md +++ b/docs/version-specific/supported-software/i/INTEGRATE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ INTEGRATE is a tool calling gene fusions with exact fusion junctions and genomic version | toolchain --------|---------- ``0.2.6`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IOR.md b/docs/version-specific/supported-software/i/IOR.md index e11644b01..b5452fed9 100644 --- a/docs/version-specific/supported-software/i/IOR.md +++ b/docs/version-specific/supported-software/i/IOR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IOR The IOR software is used for benchmarking parallel file systems using POSIX, MPIIO, or HDF5 interfaces. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``3.3.0`` | | ``gompi/2021a`` ``3.3.0`` | | ``gompi/2022a`` ``4.0.0`` | | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IOzone.md b/docs/version-specific/supported-software/i/IOzone.md index 4da60006a..01cf3fdbe 100644 --- a/docs/version-specific/supported-software/i/IOzone.md +++ b/docs/version-specific/supported-software/i/IOzone.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IOzone is a filesystem benchmark tool. The benchmark generates and measures a va version | toolchain --------|---------- ``3.434`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IPM.md b/docs/version-specific/supported-software/i/IPM.md index 6d8af1a7d..cf7b955d4 100644 --- a/docs/version-specific/supported-software/i/IPM.md +++ b/docs/version-specific/supported-software/i/IPM.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.0.6`` | ``iimpi/2019b`` ``2.0.6`` | ``iimpi/2020a`` ``2.0.6`` | ``iompi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IPy.md b/docs/version-specific/supported-software/i/IPy.md index 290333d7e..f76611d73 100644 --- a/docs/version-specific/supported-software/i/IPy.md +++ b/docs/version-specific/supported-software/i/IPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IPy Class and tools for handling of IPv4 and IPv6 addresses and networks @@ -7,3 +11,6 @@ Class and tools for handling of IPv4 and IPv6 addresses and networks version | toolchain --------|---------- ``0.83`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IPython.md b/docs/version-specific/supported-software/i/IPython.md index 758d9cf4b..6291abcac 100644 --- a/docs/version-specific/supported-software/i/IPython.md +++ b/docs/version-specific/supported-software/i/IPython.md @@ -1,3 +1,7 @@ +--- +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. @@ -55,3 +59,6 @@ version | versionsuffix | toolchain ``8.14.0`` | | ``GCCcore/12.3.0`` ``8.17.2`` | | ``GCCcore/13.2.0`` ``8.5.0`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IQ-TREE.md b/docs/version-specific/supported-software/i/IQ-TREE.md index c4cc5482a..b23280c2d 100644 --- a/docs/version-specific/supported-software/i/IQ-TREE.md +++ b/docs/version-specific/supported-software/i/IQ-TREE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IQ-TREE Efficient phylogenomic software by maximum likelihood @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``2.2.2.6`` | | ``gompi/2022a`` ``2.2.2.6`` | | ``gompi/2022b`` ``2.2.2.7`` | | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IRkernel.md b/docs/version-specific/supported-software/i/IRkernel.md index dbc377b4a..84d23bd1f 100644 --- a/docs/version-specific/supported-software/i/IRkernel.md +++ b/docs/version-specific/supported-software/i/IRkernel.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ISA-L.md b/docs/version-specific/supported-software/i/ISA-L.md index 146779d48..e3f1d5dc0 100644 --- a/docs/version-specific/supported-software/i/ISA-L.md +++ b/docs/version-specific/supported-software/i/ISA-L.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ISA-L Intelligent Storage Acceleration Library @@ -13,3 +17,6 @@ version | toolchain ``2.30.0`` | ``GCCcore/12.2.0`` ``2.30.0`` | ``GCCcore/12.3.0`` ``2.31.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ISL.md b/docs/version-specific/supported-software/i/ISL.md index 9aeb0f9a8..ed0eda7b9 100644 --- a/docs/version-specific/supported-software/i/ISL.md +++ b/docs/version-specific/supported-software/i/ISL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ISL isl is a library for manipulating sets and relations of integer points bounded by linear constraints. @@ -21,3 +25,6 @@ version | toolchain ``0.26`` | ``GCCcore/12.3.0`` ``0.26`` | ``GCCcore/13.2.0`` ``0.26`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ITK.md b/docs/version-specific/supported-software/i/ITK.md index 93f750962..5c9f9e869 100644 --- a/docs/version-specific/supported-software/i/ITK.md +++ b/docs/version-specific/supported-software/i/ITK.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``5.2.1`` | | ``foss/2022a`` ``5.2.1`` | | ``fosscuda/2020b`` ``5.3.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ITSTool.md b/docs/version-specific/supported-software/i/ITSTool.md index 79fedba01..52c10ebff 100644 --- a/docs/version-specific/supported-software/i/ITSTool.md +++ b/docs/version-specific/supported-software/i/ITSTool.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ITSx.md b/docs/version-specific/supported-software/i/ITSx.md index 3a61f2312..74e219041 100644 --- a/docs/version-specific/supported-software/i/ITSx.md +++ b/docs/version-specific/supported-software/i/ITSx.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.1.2`` | ``GCCcore/9.3.0`` ``1.1.3`` | ``GCCcore/10.3.0`` ``1.1.3`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IgBLAST.md b/docs/version-specific/supported-software/i/IgBLAST.md index 637df5f52..9d2a10684 100644 --- a/docs/version-specific/supported-software/i/IgBLAST.md +++ b/docs/version-specific/supported-software/i/IgBLAST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IgBLAST IgBLAST faclilitates the analysis of immunoglobulin and T cell receptor variable domain sequences. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.15.0`` | ``-x64-linux`` | ``system`` ``1.18.0`` | ``-x64-linux`` | ``system`` ``1.21.0`` | ``-x64-linux`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ImageJ.md b/docs/version-specific/supported-software/i/ImageJ.md index c1b72d75e..9bac256a2 100644 --- a/docs/version-specific/supported-software/i/ImageJ.md +++ b/docs/version-specific/supported-software/i/ImageJ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ImageJ Image Processing and Analysis in Java @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.51i`` | | ``system`` ``1.51k`` | | ``system`` ``1.52q`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ImageMagick.md b/docs/version-specific/supported-software/i/ImageMagick.md index a66f1b6a6..db560710d 100644 --- a/docs/version-specific/supported-software/i/ImageMagick.md +++ b/docs/version-specific/supported-software/i/ImageMagick.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ImageMagick ImageMagick is a software suite to create, edit, compose, or convert bitmap images @@ -31,3 +35,6 @@ version | versionsuffix | toolchain ``7.1.0-4`` | | ``GCCcore/11.2.0`` ``7.1.0-53`` | | ``GCCcore/12.2.0`` ``7.1.1-15`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Imath.md b/docs/version-specific/supported-software/i/Imath.md index e5e708c26..9bb21ccb1 100644 --- a/docs/version-specific/supported-software/i/Imath.md +++ b/docs/version-specific/supported-software/i/Imath.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Imath Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics @@ -10,3 +14,6 @@ version | toolchain ``3.1.6`` | ``GCCcore/12.2.0`` ``3.1.7`` | ``GCCcore/12.3.0`` ``3.1.9`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Imlib2.md b/docs/version-specific/supported-software/i/Imlib2.md index ab80b22d1..27b59d68e 100644 --- a/docs/version-specific/supported-software/i/Imlib2.md +++ b/docs/version-specific/supported-software/i/Imlib2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is the Imlib 2 library - a library that does image file loading and saving version | toolchain --------|---------- ``1.5.1`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/InChI.md b/docs/version-specific/supported-software/i/InChI.md index 2e5429bc0..a40e76765 100644 --- a/docs/version-specific/supported-software/i/InChI.md +++ b/docs/version-specific/supported-software/i/InChI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The IUPAC International Chemical Identifier (InChI TM) is a non-proprietary iden version | toolchain --------|---------- ``1.06`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/InParanoid.md b/docs/version-specific/supported-software/i/InParanoid.md index 5b95d4e32..41e7a09c1 100644 --- a/docs/version-specific/supported-software/i/InParanoid.md +++ b/docs/version-specific/supported-software/i/InParanoid.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # InParanoid InParanoid: ortholog groups with inparalogs. @@ -7,3 +11,6 @@ InParanoid: ortholog groups with inparalogs. version | toolchain --------|---------- ``5.0-20220607`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Inelastica.md b/docs/version-specific/supported-software/i/Inelastica.md index 4c9d94af6..9fa56b35a 100644 --- a/docs/version-specific/supported-software/i/Inelastica.md +++ b/docs/version-specific/supported-software/i/Inelastica.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Inelastica Python package for eigenchannels, vibrations and inelastic electron transport based on SIESTA/TranSIESTA DFT. @@ -7,3 +11,6 @@ Python package for eigenchannels, vibrations and inelastic electron transport ba version | versionsuffix | toolchain --------|---------------|---------- ``1.3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Inferelator.md b/docs/version-specific/supported-software/i/Inferelator.md index c068ee673..6b94ab5aa 100644 --- a/docs/version-specific/supported-software/i/Inferelator.md +++ b/docs/version-specific/supported-software/i/Inferelator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Inferelator Inferelator 3.0 is a package for gene regulatory network inference that is based on regularized regression. @@ -7,3 +11,6 @@ Inferelator 3.0 is a package for gene regulatory network inference that is based version | toolchain --------|---------- ``0.6.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Infernal.md b/docs/version-specific/supported-software/i/Infernal.md index fcdb5b872..94cfc683b 100644 --- a/docs/version-specific/supported-software/i/Infernal.md +++ b/docs/version-specific/supported-software/i/Infernal.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Infernal Infernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities. @@ -15,3 +19,6 @@ version | toolchain ``1.1.4`` | ``foss/2021b`` ``1.1.4`` | ``foss/2022a`` ``1.1.4`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Infomap.md b/docs/version-specific/supported-software/i/Infomap.md index fcfa11be5..5a330cc00 100644 --- a/docs/version-specific/supported-software/i/Infomap.md +++ b/docs/version-specific/supported-software/i/Infomap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Infomap Multi-level network clustering based on the Map equation. @@ -7,3 +11,6 @@ Multi-level network clustering based on the Map equation. version | toolchain --------|---------- ``20190308`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Inspector.md b/docs/version-specific/supported-software/i/Inspector.md index 3122414f3..c43e7afe6 100644 --- a/docs/version-specific/supported-software/i/Inspector.md +++ b/docs/version-specific/supported-software/i/Inspector.md @@ -1,3 +1,7 @@ +--- +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 @@ -20,3 +24,6 @@ version | toolchain ``2022.0.0`` | ``system`` ``2022.1.0`` | ``system`` ``2023.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IntaRNA.md b/docs/version-specific/supported-software/i/IntaRNA.md index 02a15370d..3a654e071 100644 --- a/docs/version-specific/supported-software/i/IntaRNA.md +++ b/docs/version-specific/supported-software/i/IntaRNA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IntaRNA Efficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites @@ -7,3 +11,6 @@ Efficient RNA-RNA interaction prediction incorporating accessibility and seeding version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IntelClusterChecker.md b/docs/version-specific/supported-software/i/IntelClusterChecker.md index 361eaefb3..e2d409395 100644 --- a/docs/version-specific/supported-software/i/IntelClusterChecker.md +++ b/docs/version-specific/supported-software/i/IntelClusterChecker.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IntelClusterChecker Verifies cluster components work together ― for - better uptime and productivity and lower total - cost of ownership (TCO) @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2017.1.016`` | ``system`` ``2021.5.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IntelDAAL.md b/docs/version-specific/supported-software/i/IntelDAAL.md index 3ff43a785..938a15471 100644 --- a/docs/version-specific/supported-software/i/IntelDAAL.md +++ b/docs/version-specific/supported-software/i/IntelDAAL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Intel® Data Analytics Acceleration Library (Intel® DAAL) is the library of Int version | toolchain --------|---------- ``2019.4.007`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IntelPython.md b/docs/version-specific/supported-software/i/IntelPython.md index 1879bbf66..7166d176f 100644 --- a/docs/version-specific/supported-software/i/IntelPython.md +++ b/docs/version-specific/supported-software/i/IntelPython.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # IntelPython Intel® Distribution for Python. Powered by Anaconda. Accelerating Python* performance on modern architectures from Intel. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.7.15`` | ``-2019.2.066`` | ``system`` ``3.6.8`` | ``-2019.2.066`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/InterOp.md b/docs/version-specific/supported-software/i/InterOp.md index 02e623e24..09c2f9254 100644 --- a/docs/version-specific/supported-software/i/InterOp.md +++ b/docs/version-specific/supported-software/i/InterOp.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Illumina InterOp libraries are a set of common routines used for reading Int version | toolchain --------|---------- ``1.2.4`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/InterProScan.md b/docs/version-specific/supported-software/i/InterProScan.md index 6d337b4fa..2cc0ceaa5 100644 --- a/docs/version-specific/supported-software/i/InterProScan.md +++ b/docs/version-specific/supported-software/i/InterProScan.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``5.52-86.0`` | ``GCCcore/10.3.0`` ``5.55-88.0`` | ``foss/2021a`` ``5.62-94.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/InterProScan_data.md b/docs/version-specific/supported-software/i/InterProScan_data.md index 26409e7d1..b9e214aaa 100644 --- a/docs/version-specific/supported-software/i/InterProScan_data.md +++ b/docs/version-specific/supported-software/i/InterProScan_data.md @@ -1,3 +1,7 @@ +--- +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]. @@ -7,3 +11,6 @@ InterProScan is a sequence analysis application (nucleotide and protein sequence version | toolchain --------|---------- ``5.55-88.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IonQuant.md b/docs/version-specific/supported-software/i/IonQuant.md index 6fa6d856f..87652bb3e 100644 --- a/docs/version-specific/supported-software/i/IonQuant.md +++ b/docs/version-specific/supported-software/i/IonQuant.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IonQuant is a fast and comprehensive tool for MS1 precursor intensity-based qua version | versionsuffix | toolchain --------|---------------|---------- ``1.10.12`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Ipopt.md b/docs/version-specific/supported-software/i/Ipopt.md index 4ce0f482a..17491706b 100644 --- a/docs/version-specific/supported-software/i/Ipopt.md +++ b/docs/version-specific/supported-software/i/Ipopt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ipopt Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package for large-scale nonlinear optimization. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.12.13`` | ``intel/2019a`` ``3.12.9`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/Iris.md b/docs/version-specific/supported-software/i/Iris.md index f8f3d3fd3..051f0f22c 100644 --- a/docs/version-specific/supported-software/i/Iris.md +++ b/docs/version-specific/supported-software/i/Iris.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Iris A module for improving the insertion sequences of structural variant calls @@ -7,3 +11,6 @@ A module for improving the insertion sequences of structural variant calls version | versionsuffix | toolchain --------|---------------|---------- ``1.0.5`` | ``-Java-15`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IronPython.md b/docs/version-specific/supported-software/i/IronPython.md index 27e5452cf..8079e249b 100644 --- a/docs/version-specific/supported-software/i/IronPython.md +++ b/docs/version-specific/supported-software/i/IronPython.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IronPython is an open-source implementation of the Python programming language version | toolchain --------|---------- ``2.7`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IsoNet.md b/docs/version-specific/supported-software/i/IsoNet.md index e46c4ce80..e25362693 100644 --- a/docs/version-specific/supported-software/i/IsoNet.md +++ b/docs/version-specific/supported-software/i/IsoNet.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IsoNet stands for for ISOtropic reconstructioN of Electron Tomography. It trains version | toolchain --------|---------- ``0.1_20210822_04_674f67f`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IsoQuant.md b/docs/version-specific/supported-software/i/IsoQuant.md index d2398d551..317f248d1 100644 --- a/docs/version-specific/supported-software/i/IsoQuant.md +++ b/docs/version-specific/supported-software/i/IsoQuant.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IsoQuant is a tool for the genome-based analysis of long RNA reads, such as Pac version | toolchain --------|---------- ``3.3.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IsoSeq.md b/docs/version-specific/supported-software/i/IsoSeq.md index 65acb06f8..34e3b14fe 100644 --- a/docs/version-specific/supported-software/i/IsoSeq.md +++ b/docs/version-specific/supported-software/i/IsoSeq.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.8.2`` | ``-linux-x86_64`` | ``system`` ``4.0.0`` | ``-linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md index 002fc5c7e..e6ab09b56 100644 --- a/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md +++ b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Analysis of alternative splicing and isoform switches with predicted functional version | versionsuffix | toolchain --------|---------------|---------- ``1.18.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/i-PI.md b/docs/version-specific/supported-software/i/i-PI.md index b9d86185e..c7a7e7c59 100644 --- a/docs/version-specific/supported-software/i/i-PI.md +++ b/docs/version-specific/supported-software/i/i-PI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # i-PI A Python wrapper for (ab initio) (path integrals) molecular dynamics @@ -7,3 +11,6 @@ A Python wrapper for (ab initio) (path integrals) molecular dynamics version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20160213`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/i-cisTarget.md b/docs/version-specific/supported-software/i/i-cisTarget.md index 312dc01c3..b11c8f4f7 100644 --- a/docs/version-specific/supported-software/i/i-cisTarget.md +++ b/docs/version-specific/supported-software/i/i-cisTarget.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ An integrative genomics method for the prediction of regulatory features and cis version | versionsuffix | toolchain --------|---------------|---------- ``20160602`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/i7z.md b/docs/version-specific/supported-software/i/i7z.md index 8ee684c24..586ba7ce2 100644 --- a/docs/version-specific/supported-software/i/i7z.md +++ b/docs/version-specific/supported-software/i/i7z.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # i7z A better i7 (and now i3, i5) reporting tool for Linux @@ -7,3 +11,6 @@ A better i7 (and now i3, i5) reporting tool for Linux version | toolchain --------|---------- ``20131012`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iCount.md b/docs/version-specific/supported-software/i/iCount.md index 1f9d91bf2..bd1d4f4fd 100644 --- a/docs/version-specific/supported-software/i/iCount.md +++ b/docs/version-specific/supported-software/i/iCount.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ iCount: protein-RNA interaction analysis is a Python module and associated comm version | versionsuffix | toolchain --------|---------------|---------- ``20180820`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iVar.md b/docs/version-specific/supported-software/i/iVar.md index d716b8194..32b90690d 100644 --- a/docs/version-specific/supported-software/i/iVar.md +++ b/docs/version-specific/supported-software/i/iVar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iVar iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing. @@ -9,3 +13,6 @@ version | toolchain ``1.0.1`` | ``foss/2018b`` ``1.3.1`` | ``GCC/10.2.0`` ``1.3.1`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/icc.md b/docs/version-specific/supported-software/i/icc.md index 5c419cbff..e8e6f9f44 100644 --- a/docs/version-specific/supported-software/i/icc.md +++ b/docs/version-specific/supported-software/i/icc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # icc C and C++ compiler from Intel @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iccifort.md b/docs/version-specific/supported-software/i/iccifort.md index 3d6cf2324..adcfda8ca 100644 --- a/docs/version-specific/supported-software/i/iccifort.md +++ b/docs/version-specific/supported-software/i/iccifort.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iccifort Intel Cluster Toolkit Compiler Edition provides Intel C,C++ and fortran compilers, Intel MPI and Intel MKL @@ -36,3 +40,6 @@ version | versionsuffix | toolchain ``2020.1.217`` | | ``system`` ``2020.4.304`` | | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iccifortcuda.md b/docs/version-specific/supported-software/i/iccifortcuda.md index 1b04e1e73..a15f6c27f 100644 --- a/docs/version-specific/supported-software/i/iccifortcuda.md +++ b/docs/version-specific/supported-software/i/iccifortcuda.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iccifortcuda Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL, with CUDA toolkit @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2019b`` | | ``system`` ``2020a`` | | ``system`` ``2020b`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iced.md b/docs/version-specific/supported-software/i/iced.md index 0ef616839..b8d45f858 100644 --- a/docs/version-specific/supported-software/i/iced.md +++ b/docs/version-specific/supported-software/i/iced.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iced Implements the ICE normalization of hic data. @@ -7,3 +11,6 @@ Implements the ICE normalization of hic data. version | toolchain --------|---------- ``0.5.10`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ichorCNA.md b/docs/version-specific/supported-software/i/ichorCNA.md index 26f5b3f12..507ba3358 100644 --- a/docs/version-specific/supported-software/i/ichorCNA.md +++ b/docs/version-specific/supported-software/i/ichorCNA.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.2.0`` | ``foss/2019b`` ``0.3.2-20191219`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/icmake.md b/docs/version-specific/supported-software/i/icmake.md index 0e957b4ac..255f046c9 100644 --- a/docs/version-specific/supported-software/i/icmake.md +++ b/docs/version-specific/supported-software/i/icmake.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Icmake is a hybrid between a 'make' utility and a 'shell script' language. Origi version | toolchain --------|---------- ``7.23.02`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/idemux.md b/docs/version-specific/supported-software/i/idemux.md index 1e72aab37..a750c6579 100644 --- a/docs/version-specific/supported-software/i/idemux.md +++ b/docs/version-specific/supported-software/i/idemux.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ idemux - inline barcode demultiplexing Idemux is a command line tool designed to version | toolchain --------|---------- ``0.1.6`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ieeg-cli.md b/docs/version-specific/supported-software/i/ieeg-cli.md index 68664acb8..acb64118a 100644 --- a/docs/version-specific/supported-software/i/ieeg-cli.md +++ b/docs/version-specific/supported-software/i/ieeg-cli.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IEEG.ORG is a collaborative initiative funded by the National Institutes of Neu version | toolchain --------|---------- ``1.14.56`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ifort.md b/docs/version-specific/supported-software/i/ifort.md index 55001f6e6..7ae6b019b 100644 --- a/docs/version-specific/supported-software/i/ifort.md +++ b/docs/version-specific/supported-software/i/ifort.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ifort Fortran compiler from Intel @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/igraph.md b/docs/version-specific/supported-software/i/igraph.md index d9d7e10f1..4a441741c 100644 --- a/docs/version-specific/supported-software/i/igraph.md +++ b/docs/version-specific/supported-software/i/igraph.md @@ -1,3 +1,7 @@ +--- +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++. @@ -19,3 +23,6 @@ version | toolchain ``0.9.1`` | ``fosscuda/2020b`` ``0.9.4`` | ``foss/2021a`` ``0.9.5`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/igv-reports.md b/docs/version-specific/supported-software/i/igv-reports.md index f6815a5fa..1a69e5ffc 100644 --- a/docs/version-specific/supported-software/i/igv-reports.md +++ b/docs/version-specific/supported-software/i/igv-reports.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Python application to generate self-contained igv.js pages that can be opened wi version | versionsuffix | toolchain --------|---------------|---------- ``0.9.8`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/igvShiny.md b/docs/version-specific/supported-software/i/igvShiny.md index 246fbc7d0..113c33276 100644 --- a/docs/version-specific/supported-software/i/igvShiny.md +++ b/docs/version-specific/supported-software/i/igvShiny.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # igvShiny An htmlwidget version of igv, for RStudio and Shiny apps @@ -7,3 +11,6 @@ An htmlwidget version of igv, for RStudio and Shiny apps version | versionsuffix | toolchain --------|---------------|---------- ``20240112`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iibff.md b/docs/version-specific/supported-software/i/iibff.md index 8694e3e7f..e39a6ed39 100644 --- a/docs/version-specific/supported-software/i/iibff.md +++ b/docs/version-specific/supported-software/i/iibff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iibff GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. @@ -7,3 +11,6 @@ GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPAC version | toolchain --------|---------- ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iimkl.md b/docs/version-specific/supported-software/i/iimkl.md index 28bb30fff..dba45d0e6 100644 --- a/docs/version-specific/supported-software/i/iimkl.md +++ b/docs/version-specific/supported-software/i/iimkl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iimkl Intel C/C++ and Fortran compilers, alongside Intel Math Kernel Library (MKL). @@ -11,3 +15,6 @@ version | toolchain ``2022b`` | ``system`` ``2023a`` | ``system`` ``2023b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iimpi.md b/docs/version-specific/supported-software/i/iimpi.md index db5902b5a..415a087de 100644 --- a/docs/version-specific/supported-software/i/iimpi.md +++ b/docs/version-specific/supported-software/i/iimpi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iimpi Intel C/C++ and Fortran compilers, alongside Intel MPI. @@ -53,3 +57,6 @@ version | versionsuffix | toolchain ``2023b`` | | ``system`` ``8.1.5`` | ``-GCC-4.9.3-2.25`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iimpic.md b/docs/version-specific/supported-software/i/iimpic.md index cd9d86985..65c69643f 100644 --- a/docs/version-specific/supported-software/i/iimpic.md +++ b/docs/version-specific/supported-software/i/iimpic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iimpic Intel C/C++ and Fortran compilers, alongside Intel MPI. @@ -12,3 +16,6 @@ version | toolchain ``2019b`` | ``system`` ``2020a`` | ``system`` ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imagecodecs.md b/docs/version-specific/supported-software/i/imagecodecs.md index ac4e6b9ba..3020c354a 100644 --- a/docs/version-specific/supported-software/i/imagecodecs.md +++ b/docs/version-specific/supported-software/i/imagecodecs.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2022.9.26`` | ``foss/2021a`` ``2022.9.26`` | ``foss/2022a`` ``2024.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imageio.md b/docs/version-specific/supported-software/i/imageio.md index ba6ea17df..501a77714 100644 --- a/docs/version-specific/supported-software/i/imageio.md +++ b/docs/version-specific/supported-software/i/imageio.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``foss/2020b`` ``2.9.0`` | | ``fosscuda/2020b`` ``2.9.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imake.md b/docs/version-specific/supported-software/i/imake.md index 171ad9ecd..5cdfdcedd 100644 --- a/docs/version-specific/supported-software/i/imake.md +++ b/docs/version-specific/supported-software/i/imake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # imake imake is a Makefile-generator that is intended to make it easier to develop software portably for multiple systems. @@ -10,3 +14,6 @@ version | toolchain ``1.0.8`` | ``GCCcore/10.2.0`` ``1.0.8`` | ``GCCcore/10.3.0`` ``1.0.8`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imbalanced-learn.md b/docs/version-specific/supported-software/i/imbalanced-learn.md index 6f012ff28..9af31e952 100644 --- a/docs/version-specific/supported-software/i/imbalanced-learn.md +++ b/docs/version-specific/supported-software/i/imbalanced-learn.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``0.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` ``0.7.0`` | | ``foss/2020b`` ``0.9.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imgaug.md b/docs/version-specific/supported-software/i/imgaug.md index aa13d87b8..dde33f020 100644 --- a/docs/version-specific/supported-software/i/imgaug.md +++ b/docs/version-specific/supported-software/i/imgaug.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.4.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.0`` | | ``foss/2022a`` ``0.4.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imkl-FFTW.md b/docs/version-specific/supported-software/i/imkl-FFTW.md index 8a717be16..98f0fe373 100644 --- a/docs/version-specific/supported-software/i/imkl-FFTW.md +++ b/docs/version-specific/supported-software/i/imkl-FFTW.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # imkl-FFTW FFTW interfaces using Intel oneAPI Math Kernel Library @@ -20,3 +24,6 @@ version | toolchain ``2023.2.0`` | ``iimpi/2023.07`` ``2023.2.0`` | ``iimpi/2023b`` ``2024.0.0`` | ``iimpi/2023.11`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imkl.md b/docs/version-specific/supported-software/i/imkl.md index dd7a005df..0668bb87e 100644 --- a/docs/version-specific/supported-software/i/imkl.md +++ b/docs/version-specific/supported-software/i/imkl.md @@ -1,3 +1,7 @@ +--- +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. @@ -89,3 +93,6 @@ version | versionsuffix | toolchain ``2023.1.0`` | | ``system`` ``2023.2.0`` | | ``system`` ``2024.0.0`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/immunedeconv.md b/docs/version-specific/supported-software/i/immunedeconv.md index d5dcf1620..e988f2882 100644 --- a/docs/version-specific/supported-software/i/immunedeconv.md +++ b/docs/version-specific/supported-software/i/immunedeconv.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ immunedeconv is an R package for unified access to computational methods for est version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/impi.md b/docs/version-specific/supported-software/i/impi.md index ad8f5438b..61bf46e92 100644 --- a/docs/version-specific/supported-software/i/impi.md +++ b/docs/version-specific/supported-software/i/impi.md @@ -1,3 +1,7 @@ +--- +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. @@ -71,3 +75,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/imutils.md b/docs/version-specific/supported-software/i/imutils.md index 6cbe55c5b..d40b10984 100644 --- a/docs/version-specific/supported-software/i/imutils.md +++ b/docs/version-specific/supported-software/i/imutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.4`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/index.md b/docs/version-specific/supported-software/i/index.md index 4609a0fe3..f333651bd 100644 --- a/docs/version-specific/supported-software/i/index.md +++ b/docs/version-specific/supported-software/i/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (i) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - *i* - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [i-cisTarget](i-cisTarget.md) * [i-PI](i-PI.md) * [I-TASSER](I-TASSER.md) diff --git a/docs/version-specific/supported-software/i/indicators.md b/docs/version-specific/supported-software/i/indicators.md index 6b5394b97..c8cb24d45 100644 --- a/docs/version-specific/supported-software/i/indicators.md +++ b/docs/version-specific/supported-software/i/indicators.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2`` | ``GCCcore/11.2.0`` ``2.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/inferCNV.md b/docs/version-specific/supported-software/i/inferCNV.md index 89d90088e..24a3994db 100644 --- a/docs/version-specific/supported-software/i/inferCNV.md +++ b/docs/version-specific/supported-software/i/inferCNV.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``1.3.3`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.3.3`` | | ``foss/2020b`` ``1.3.3`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/infercnvpy.md b/docs/version-specific/supported-software/i/infercnvpy.md index 608b84f8a..46640704c 100644 --- a/docs/version-specific/supported-software/i/infercnvpy.md +++ b/docs/version-specific/supported-software/i/infercnvpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # infercnvpy Infer copy number variation (CNV) from scRNA-seq data. Plays nicely with Scanpy. @@ -9,3 +13,6 @@ version | toolchain ``0.4.0`` | ``foss/2021b`` ``0.4.2`` | ``foss/2022a`` ``0.4.3`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/inflection.md b/docs/version-specific/supported-software/i/inflection.md index b725f6437..af6aa1652 100644 --- a/docs/version-specific/supported-software/i/inflection.md +++ b/docs/version-specific/supported-software/i/inflection.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ inflection is a package that finds the inflection point of a planar curve which version | versionsuffix | toolchain --------|---------------|---------- ``1.3.5`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/inih.md b/docs/version-specific/supported-software/i/inih.md index 8b0ce793f..4a96bbe64 100644 --- a/docs/version-specific/supported-software/i/inih.md +++ b/docs/version-specific/supported-software/i/inih.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # inih Direct Rendering Manager runtime library. @@ -7,3 +11,6 @@ Direct Rendering Manager runtime library. version | toolchain --------|---------- ``57`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/inline.md b/docs/version-specific/supported-software/i/inline.md index dfdb2da6b..81787f430 100644 --- a/docs/version-specific/supported-software/i/inline.md +++ b/docs/version-specific/supported-software/i/inline.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Functionality to dynamically define R functions and S4 methods with 'inlined' C version | versionsuffix | toolchain --------|---------------|---------- ``0.3.19`` | ``-R-4.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/inputproto.md b/docs/version-specific/supported-software/i/inputproto.md index cd97845ce..450303063 100644 --- a/docs/version-specific/supported-software/i/inputproto.md +++ b/docs/version-specific/supported-software/i/inputproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # inputproto X.org InputProto protocol headers. @@ -10,3 +14,6 @@ version | toolchain ``2.3.1`` | ``gimkl/2.11.5`` ``2.3.1`` | ``intel/2016a`` ``2.3.2`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/intel-compilers.md b/docs/version-specific/supported-software/i/intel-compilers.md index efe459cf4..50fad3ce2 100644 --- a/docs/version-specific/supported-software/i/intel-compilers.md +++ b/docs/version-specific/supported-software/i/intel-compilers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # intel-compilers Intel C, C++ & Fortran compilers (classic and oneAPI) @@ -19,3 +23,6 @@ version | toolchain ``2023.1.0`` | ``system`` ``2023.2.1`` | ``system`` ``2024.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/intel.md b/docs/version-specific/supported-software/i/intel.md index 600044810..c589f6e39 100644 --- a/docs/version-specific/supported-software/i/intel.md +++ b/docs/version-specific/supported-software/i/intel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # intel Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL. @@ -52,3 +56,6 @@ version | versionsuffix | toolchain ``2023.11`` | | ``system`` ``2023a`` | | ``system`` ``2023b`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/intelcuda.md b/docs/version-specific/supported-software/i/intelcuda.md index c516ed9dc..78448064d 100644 --- a/docs/version-specific/supported-software/i/intelcuda.md +++ b/docs/version-specific/supported-software/i/intelcuda.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # intelcuda Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL, with CUDA toolkit @@ -12,3 +16,6 @@ version | toolchain ``2019b`` | ``system`` ``2020a`` | ``system`` ``2020b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/intervaltree-python.md b/docs/version-specific/supported-software/i/intervaltree-python.md index dc5bc3dbf..a8770bce7 100644 --- a/docs/version-specific/supported-software/i/intervaltree-python.md +++ b/docs/version-specific/supported-software/i/intervaltree-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # intervaltree-python A mutable, self-balancing interval tree. Queries may be by point, by range overlap, or by range containment @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``GCCcore/11.3.0`` ``3.1.0`` | | ``GCCcore/12.2.0`` ``3.1.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/intervaltree.md b/docs/version-specific/supported-software/i/intervaltree.md index 9280e18a6..23502befc 100644 --- a/docs/version-specific/supported-software/i/intervaltree.md +++ b/docs/version-specific/supported-software/i/intervaltree.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``0.1`` | ``GCCcore/11.3.0`` ``0.1`` | ``GCCcore/12.3.0`` ``0.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/intltool.md b/docs/version-specific/supported-software/i/intltool.md index 021a58877..74909d178 100644 --- a/docs/version-specific/supported-software/i/intltool.md +++ b/docs/version-specific/supported-software/i/intltool.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/io_lib.md b/docs/version-specific/supported-software/i/io_lib.md index 1c2ba1999..fb513d414 100644 --- a/docs/version-specific/supported-software/i/io_lib.md +++ b/docs/version-specific/supported-software/i/io_lib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Io_lib is a library of file reading and writing code to provide a general purpos version | toolchain --------|---------- ``1.14.8`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ioapi.md b/docs/version-specific/supported-software/i/ioapi.md index 6a2129b95..9b1179632 100644 --- a/docs/version-specific/supported-software/i/ioapi.md +++ b/docs/version-specific/supported-software/i/ioapi.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Models-3/EDSS Input/Output Applications Programming Interface (I/O API) prov version | versionsuffix | toolchain --------|---------------|---------- ``3.2-2020111`` | ``-nocpl`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iodata.md b/docs/version-specific/supported-software/i/iodata.md index 29be2238f..5f20595a6 100644 --- a/docs/version-specific/supported-software/i/iodata.md +++ b/docs/version-specific/supported-software/i/iodata.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iodata Python library for reading, writing, and converting computational chemistry file formats and generating input files. @@ -7,3 +11,6 @@ Python library for reading, writing, and converting computational chemistry file version | toolchain --------|---------- ``1.0.0a2`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iomkl.md b/docs/version-specific/supported-software/i/iomkl.md index 7390b2055..dfc5c4233 100644 --- a/docs/version-specific/supported-software/i/iomkl.md +++ b/docs/version-specific/supported-software/i/iomkl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iomkl Intel Cluster Toolchain Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MKL & OpenMPI. @@ -21,3 +25,6 @@ version | toolchain ``2020b`` | ``system`` ``2021a`` | ``system`` ``2021b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iompi.md b/docs/version-specific/supported-software/i/iompi.md index a789bbd51..b6164256d 100644 --- a/docs/version-specific/supported-software/i/iompi.md +++ b/docs/version-specific/supported-software/i/iompi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iompi Toolchain with Intel C, C++ and Fortran compilers, alongside OpenMPI. @@ -21,3 +25,6 @@ version | toolchain ``2020b`` | ``system`` ``2021a`` | ``system`` ``2021b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/iperf.md b/docs/version-specific/supported-software/i/iperf.md index b636cd384..bfd8127b8 100644 --- a/docs/version-specific/supported-software/i/iperf.md +++ b/docs/version-specific/supported-software/i/iperf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # iperf Iperf 2: TCP and UDP bandwidth performance measurement tool @@ -9,3 +13,6 @@ version | toolchain ``2.1.9`` | ``GCCcore/10.2.0`` ``3.15`` | ``system`` ``3.16`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ipp.md b/docs/version-specific/supported-software/i/ipp.md index a5defe00e..7661885aa 100644 --- a/docs/version-specific/supported-software/i/ipp.md +++ b/docs/version-specific/supported-software/i/ipp.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``7.0.5.233`` | ``system`` ``8.1.0.144`` | ``system`` ``9.0.1.150`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ipympl.md b/docs/version-specific/supported-software/i/ipympl.md index f12424e3e..c5742003e 100644 --- a/docs/version-specific/supported-software/i/ipympl.md +++ b/docs/version-specific/supported-software/i/ipympl.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.9.3`` | ``foss/2022a`` ``0.9.3`` | ``gfbf/2023a`` ``0.9.4`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ipyparallel.md b/docs/version-specific/supported-software/i/ipyparallel.md index 934822584..930fc3e81 100644 --- a/docs/version-specific/supported-software/i/ipyparallel.md +++ b/docs/version-specific/supported-software/i/ipyparallel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ipyparallel ipyparallel is a Python package and collection of CLI scripts for controlling clusters for Jupyter @@ -7,3 +11,6 @@ ipyparallel is a Python package and collection of CLI scripts for controlling c version | versionsuffix | toolchain --------|---------------|---------- ``6.2.2`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ipyrad.md b/docs/version-specific/supported-software/i/ipyrad.md index dcf7aab16..9f6331400 100644 --- a/docs/version-specific/supported-software/i/ipyrad.md +++ b/docs/version-specific/supported-software/i/ipyrad.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ipyrad is an interactive toolkit for assembly and analysis of restriction-site a version | versionsuffix | toolchain --------|---------------|---------- ``0.6.15`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/irodsfs.md b/docs/version-specific/supported-software/i/irodsfs.md index 3d536ebff..d7343bf04 100644 --- a/docs/version-specific/supported-software/i/irodsfs.md +++ b/docs/version-specific/supported-software/i/irodsfs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # irodsfs FUSE implementation of iRODS Client written in Golang. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.8.11`` | ``-linux-amd64`` | ``system`` ``0.8.12`` | ``-linux-amd64`` | ``system`` ``0.8.9`` | ``-linux-amd64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/isoCirc.md b/docs/version-specific/supported-software/i/isoCirc.md index 74864aa41..3424d747e 100644 --- a/docs/version-specific/supported-software/i/isoCirc.md +++ b/docs/version-specific/supported-software/i/isoCirc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # isoCirc isoCirc: computational pipeline to identify high-confidence BSJs and full-length circRNA isoforms from isoCirc long-read data @@ -7,3 +11,6 @@ isoCirc: computational pipeline to identify high-confidence BSJs and full-length version | toolchain --------|---------- ``1.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/ispc.md b/docs/version-specific/supported-software/i/ispc.md index 59ea2d803..f1114be99 100644 --- a/docs/version-specific/supported-software/i/ispc.md +++ b/docs/version-specific/supported-software/i/ispc.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.12.0`` | ``system`` ``1.16.0`` | ``system`` ``1.6.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/itac.md b/docs/version-specific/supported-software/i/itac.md index cf210f855..ca0383b7d 100644 --- a/docs/version-specific/supported-software/i/itac.md +++ b/docs/version-specific/supported-software/i/itac.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``8.0.0.011`` | ``system`` ``8.1.4.045`` | ``system`` ``9.0.3.051`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/i/itpp.md b/docs/version-specific/supported-software/i/itpp.md index 5b13cb67f..439bcd167 100644 --- a/docs/version-specific/supported-software/i/itpp.md +++ b/docs/version-specific/supported-software/i/itpp.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ IT++ is a C++ library of mathematical, signal processing and communication clas version | toolchain --------|---------- ``4.3.1`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/index.md b/docs/version-specific/supported-software/index.md index 643bcb651..9bdfd0e0b 100644 --- a/docs/version-specific/supported-software/index.md +++ b/docs/version-specific/supported-software/index.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # List of supported software EasyBuild supports 3552 different software packages (incl. toolchains, bundles): diff --git a/docs/version-specific/supported-software/j/JAGS.md b/docs/version-specific/supported-software/j/JAGS.md index e0dfb43d8..9153bce4a 100644 --- a/docs/version-specific/supported-software/j/JAGS.md +++ b/docs/version-specific/supported-software/j/JAGS.md @@ -1,3 +1,7 @@ +--- +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 @@ -22,3 +26,6 @@ version | toolchain ``4.3.1`` | ``foss/2022a`` ``4.3.2`` | ``foss/2022b`` ``4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JAXFrontCE.md b/docs/version-specific/supported-software/j/JAXFrontCE.md index 18b1a19ba..6ceaf4c70 100644 --- a/docs/version-specific/supported-software/j/JAXFrontCE.md +++ b/docs/version-specific/supported-software/j/JAXFrontCE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ JAXFront is a technology to generate graphical user interfaces on multiple chan version | toolchain --------|---------- ``2.75`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JSON-GLib.md b/docs/version-specific/supported-software/j/JSON-GLib.md index 781eb3758..ba255b42c 100644 --- a/docs/version-specific/supported-software/j/JSON-GLib.md +++ b/docs/version-specific/supported-software/j/JSON-GLib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ JSON-GLib implements a full JSON parser and generator using GLib and GObject, a version | toolchain --------|---------- ``1.6.2`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JUBE.md b/docs/version-specific/supported-software/j/JUBE.md index 3b66d3ad1..7099be93d 100644 --- a/docs/version-specific/supported-software/j/JUBE.md +++ b/docs/version-specific/supported-software/j/JUBE.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.4.0`` | ``system`` ``2.4.1`` | ``system`` ``2.4.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JUnit.md b/docs/version-specific/supported-software/j/JUnit.md index 0d20d06fa..a735ac14f 100644 --- a/docs/version-specific/supported-software/j/JUnit.md +++ b/docs/version-specific/supported-software/j/JUnit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # JUnit A programmer-oriented testing framework for Java. @@ -24,3 +28,6 @@ version | versionsuffix | toolchain ``4.12`` | ``-Java-1.8.0_77`` | ``system`` ``4.12`` | ``-Java-1.8.0_92`` | ``system`` ``4.12`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JWM.md b/docs/version-specific/supported-software/j/JWM.md index 712ecd9ae..c8c5ab43d 100644 --- a/docs/version-specific/supported-software/j/JWM.md +++ b/docs/version-specific/supported-software/j/JWM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # JWM JWM is a light-weight window manager for the X11 Window System. @@ -7,3 +11,6 @@ JWM is a light-weight window manager for the X11 Window System. version | toolchain --------|---------- ``2.3.5`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jansson.md b/docs/version-specific/supported-software/j/Jansson.md index b391a3b70..c32ba43c8 100644 --- a/docs/version-specific/supported-software/j/Jansson.md +++ b/docs/version-specific/supported-software/j/Jansson.md @@ -1,3 +1,7 @@ +--- +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 @@ -11,3 +15,6 @@ version | toolchain ``2.14`` | ``GCC/11.3.0`` ``2.14`` | ``GCC/12.3.0`` ``2.6`` | ``GCC/4.8.3`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JasPer.md b/docs/version-specific/supported-software/j/JasPer.md index b8b278c21..fc4312786 100644 --- a/docs/version-specific/supported-software/j/JasPer.md +++ b/docs/version-specific/supported-software/j/JasPer.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.2.0`` ``4.0.0`` | ``GCCcore/12.3.0`` ``4.0.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jasmine.md b/docs/version-specific/supported-software/j/Jasmine.md index 54f254b4a..190608b4c 100644 --- a/docs/version-specific/supported-software/j/Jasmine.md +++ b/docs/version-specific/supported-software/j/Jasmine.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Jasmine SV Merging Across Samples @@ -7,3 +11,6 @@ SV Merging Across Samples version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-Java-15`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Java.md b/docs/version-specific/supported-software/j/Java.md index 3fa416e99..fd6acb191 100644 --- a/docs/version-specific/supported-software/j/Java.md +++ b/docs/version-specific/supported-software/j/Java.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Java Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers. @@ -78,3 +82,6 @@ version | versionsuffix | toolchain ``8.362`` | | ``system`` ``8.402`` | | ``system`` ``8`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JavaFX.md b/docs/version-specific/supported-software/j/JavaFX.md index 9e6975bc0..4f54b77b4 100644 --- a/docs/version-specific/supported-software/j/JavaFX.md +++ b/docs/version-specific/supported-software/j/JavaFX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # JavaFX OpenJFX is an open source, next generation client application platform for desktop, mobile and embedded systems built on Java @@ -7,3 +11,6 @@ OpenJFX is an open source, next generation client application platform for deskt version | versionsuffix | toolchain --------|---------------|---------- ``11.0.2`` | ``_linux-x64_bin-sdk`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jblob.md b/docs/version-specific/supported-software/j/Jblob.md index b7cae7c8e..94252b560 100644 --- a/docs/version-specific/supported-software/j/Jblob.md +++ b/docs/version-specific/supported-software/j/Jblob.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Jblob Jblob - WDC Climate dataset download @@ -7,3 +11,6 @@ Jblob - WDC Climate dataset download version | toolchain --------|---------- ``3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jellyfish.md b/docs/version-specific/supported-software/j/Jellyfish.md index 4a46282e1..9e42895a7 100644 --- a/docs/version-specific/supported-software/j/Jellyfish.md +++ b/docs/version-specific/supported-software/j/Jellyfish.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA. @@ -21,3 +25,6 @@ version | toolchain ``2.3.0`` | ``GCC/12.2.0`` ``2.3.0`` | ``GCC/8.2.0-2.31.1`` ``2.3.0`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JiTCODE.md b/docs/version-specific/supported-software/j/JiTCODE.md index fefff49b1..33b4c5845 100644 --- a/docs/version-specific/supported-software/j/JiTCODE.md +++ b/docs/version-specific/supported-software/j/JiTCODE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # JiTCODE Just-in-time compilation for ordinary/delay/stochastic differential equations (DDEs) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.4.0`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jmol.md b/docs/version-specific/supported-software/j/Jmol.md index f26c738ac..c598612fc 100644 --- a/docs/version-specific/supported-software/j/Jmol.md +++ b/docs/version-specific/supported-software/j/Jmol.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Jmol Jmol: an open-source Java viewer for chemical structures in 3D @@ -7,3 +11,6 @@ Jmol: an open-source Java viewer for chemical structures in 3D version | versionsuffix | toolchain --------|---------------|---------- ``16.1.41`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jorg.md b/docs/version-specific/supported-software/j/Jorg.md index 43473dba3..670372f5c 100644 --- a/docs/version-specific/supported-software/j/Jorg.md +++ b/docs/version-specific/supported-software/j/Jorg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Jorg A MAG Circularization Method By Lauren Lui, Torben Nielsen, and Adam Arkin @@ -7,3 +11,6 @@ A MAG Circularization Method By Lauren Lui, Torben Nielsen, and Adam Arkin version | toolchain --------|---------- ``1.0.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JsonCpp.md b/docs/version-specific/supported-software/j/JsonCpp.md index 52f780b91..86bf985c8 100644 --- a/docs/version-specific/supported-software/j/JsonCpp.md +++ b/docs/version-specific/supported-software/j/JsonCpp.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``1.9.5`` | ``GCCcore/11.3.0`` ``1.9.5`` | ``GCCcore/12.2.0`` ``1.9.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Judy.md b/docs/version-specific/supported-software/j/Judy.md index 49e9a8501..9e1729309 100644 --- a/docs/version-specific/supported-software/j/Judy.md +++ b/docs/version-specific/supported-software/j/Judy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Judy A C library that implements a dynamic array. @@ -13,3 +17,6 @@ version | toolchain ``1.0.5`` | ``GCCcore/12.2.0`` ``1.0.5`` | ``GCCcore/8.2.0`` ``1.0.5`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Julia.md b/docs/version-specific/supported-software/j/Julia.md index aefe5260f..eb0923138 100644 --- a/docs/version-specific/supported-software/j/Julia.md +++ b/docs/version-specific/supported-software/j/Julia.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Julia Julia is a high-level, high-performance dynamic programming language for numerical computing @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``1.9.0`` | ``-linux-x86_64`` | ``system`` ``1.9.2`` | ``-linux-x86_64`` | ``system`` ``1.9.3`` | ``-linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/Jupyter-bundle.md b/docs/version-specific/supported-software/j/Jupyter-bundle.md index 9c6fbe80f..97e19e7d4 100644 --- a/docs/version-specific/supported-software/j/Jupyter-bundle.md +++ b/docs/version-specific/supported-software/j/Jupyter-bundle.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20230823`` | ``GCCcore/12.3.0`` ``20240522`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JupyterHub.md b/docs/version-specific/supported-software/j/JupyterHub.md index 232b820fb..d4c45eccd 100644 --- a/docs/version-specific/supported-software/j/JupyterHub.md +++ b/docs/version-specific/supported-software/j/JupyterHub.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``4.0.1`` | | ``GCCcore/12.2.0`` ``4.0.2`` | | ``GCCcore/12.3.0`` ``4.1.5`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JupyterLab.md b/docs/version-specific/supported-software/j/JupyterLab.md index 3bcb39d8c..0d2f3a79f 100644 --- a/docs/version-specific/supported-software/j/JupyterLab.md +++ b/docs/version-specific/supported-software/j/JupyterLab.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``4.0.3`` | | ``GCCcore/12.2.0`` ``4.0.5`` | | ``GCCcore/12.3.0`` ``4.2.0`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/JupyterNotebook.md b/docs/version-specific/supported-software/j/JupyterNotebook.md index 952adc070..d6c4700e6 100644 --- a/docs/version-specific/supported-software/j/JupyterNotebook.md +++ b/docs/version-specific/supported-software/j/JupyterNotebook.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``7.0.2`` | ``GCCcore/12.3.0`` ``7.0.3`` | ``GCCcore/12.2.0`` ``7.2.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/index.md b/docs/version-specific/supported-software/j/index.md index fcfbcbff1..5691e8d23 100644 --- a/docs/version-specific/supported-software/j/index.md +++ b/docs/version-specific/supported-software/j/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (j) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - *j* - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [JAGS](JAGS.md) * [Jansson](Jansson.md) * [Jasmine](Jasmine.md) diff --git a/docs/version-specific/supported-software/j/jModelTest.md b/docs/version-specific/supported-software/j/jModelTest.md index a352dd762..a79fc901b 100644 --- a/docs/version-specific/supported-software/j/jModelTest.md +++ b/docs/version-specific/supported-software/j/jModelTest.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jModelTest jModelTest is a tool to carry out statistical selection of best-fit models of nucleotide substitution. @@ -7,3 +11,6 @@ jModelTest is a tool to carry out statistical selection of best-fit models of nu version | versionsuffix | toolchain --------|---------------|---------- ``2.1.10r20160303`` | ``-Java-1.8.0_92`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jax.md b/docs/version-specific/supported-software/j/jax.md index 72221a060..61d264099 100644 --- a/docs/version-specific/supported-software/j/jax.md +++ b/docs/version-specific/supported-software/j/jax.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jax Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``0.3.9`` | | ``foss/2021a`` ``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jbigkit.md b/docs/version-specific/supported-software/j/jbigkit.md index 078892158..1bdbea09e 100644 --- a/docs/version-specific/supported-software/j/jbigkit.md +++ b/docs/version-specific/supported-software/j/jbigkit.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``2.1`` | ``GCCcore/8.2.0`` ``2.1`` | ``GCCcore/8.3.0`` ``2.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jedi-language-server.md b/docs/version-specific/supported-software/j/jedi-language-server.md index 7b951625d..2434a58e2 100644 --- a/docs/version-specific/supported-software/j/jedi-language-server.md +++ b/docs/version-specific/supported-software/j/jedi-language-server.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jedi-language-server A Python Language Server powered by Jedi. @@ -7,3 +11,6 @@ A Python Language Server powered by Jedi. version | toolchain --------|---------- ``0.39.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jedi.md b/docs/version-specific/supported-software/j/jedi.md index 0838afdd6..b951539ca 100644 --- a/docs/version-specific/supported-software/j/jedi.md +++ b/docs/version-specific/supported-software/j/jedi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jedi Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.18.1`` | ``GCCcore/11.3.0`` ``0.19.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jemalloc.md b/docs/version-specific/supported-software/j/jemalloc.md index ccbd40ee7..04682837c 100644 --- a/docs/version-specific/supported-software/j/jemalloc.md +++ b/docs/version-specific/supported-software/j/jemalloc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jemalloc jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. @@ -23,3 +27,6 @@ version | toolchain ``5.3.0`` | ``GCCcore/11.3.0`` ``5.3.0`` | ``GCCcore/12.2.0`` ``5.3.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jhbuild.md b/docs/version-specific/supported-software/j/jhbuild.md index 61562aae1..7332febf4 100644 --- a/docs/version-specific/supported-software/j/jhbuild.md +++ b/docs/version-specific/supported-software/j/jhbuild.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ JHBuild allows you to automatically download and compile “modules” (i.e. sou version | toolchain --------|---------- ``3.15.92`` | ``GCCcore/4.9.3`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jiter.md b/docs/version-specific/supported-software/j/jiter.md index 514a1c97d..aaac04ebc 100644 --- a/docs/version-specific/supported-software/j/jiter.md +++ b/docs/version-specific/supported-software/j/jiter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jiter Fast iterable JSON parser @@ -7,3 +11,6 @@ Fast iterable JSON parser version | toolchain --------|---------- ``0.4.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/joypy.md b/docs/version-specific/supported-software/j/joypy.md index 6de4af39f..c5c5de8ba 100644 --- a/docs/version-specific/supported-software/j/joypy.md +++ b/docs/version-specific/supported-software/j/joypy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # joypy Joyplots in Python with matplotlib & pandas @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.2.4`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jq.md b/docs/version-specific/supported-software/j/jq.md index 4b743aa0b..0bb85e591 100644 --- a/docs/version-specific/supported-software/j/jq.md +++ b/docs/version-specific/supported-software/j/jq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jq jq is a lightweight and flexible command-line JSON processor. @@ -12,3 +16,6 @@ version | toolchain ``1.6`` | ``GCCcore/11.3.0`` ``1.6`` | ``GCCcore/12.2.0`` ``1.6`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/json-c.md b/docs/version-specific/supported-software/j/json-c.md index 5ebe8c760..d4cdd802f 100644 --- a/docs/version-specific/supported-software/j/json-c.md +++ b/docs/version-specific/supported-software/j/json-c.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.16`` | ``GCCcore/12.2.0`` ``0.16`` | ``GCCcore/12.3.0`` ``0.17`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/json-fortran.md b/docs/version-specific/supported-software/j/json-fortran.md index 85fe14612..af59aa7c1 100644 --- a/docs/version-specific/supported-software/j/json-fortran.md +++ b/docs/version-specific/supported-software/j/json-fortran.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # json-fortran JSON-Fortran: A Modern Fortran JSON API @@ -15,3 +19,6 @@ version | toolchain ``8.3.0`` | ``intel-compilers/2022.0.1`` ``8.3.0`` | ``intel-compilers/2022.1.0`` ``8.3.0`` | ``intel-compilers/2022.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md index 738529a46..6ac1bcb67 100644 --- a/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md +++ b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jupyter-contrib-nbextensions A collection of various notebook extensions for Jupyter @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.7.0`` | ``GCCcore/11.3.0`` ``0.7.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md index c414f38fd..70e9f2a5c 100644 --- a/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jupyter-matlab-proxy MATLAB Integration for Jupyter @@ -9,3 +13,6 @@ version | toolchain ``0.12.2`` | ``GCCcore/12.3.0`` ``0.3.4`` | ``GCCcore/10.3.0`` ``0.5.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyter-resource-usage.md b/docs/version-specific/supported-software/j/jupyter-resource-usage.md index bc01b97f6..a4f14a694 100644 --- a/docs/version-specific/supported-software/j/jupyter-resource-usage.md +++ b/docs/version-specific/supported-software/j/jupyter-resource-usage.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jupyter-resource-usage Jupyter Notebook Extension for monitoring your own Resource Usage (memory and/or CPU) @@ -11,3 +15,6 @@ version | toolchain ``0.6.3`` | ``GCCcore/11.3.0`` ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md index 72f84d7f9..ca3e7802d 100644 --- a/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jupyter-rsession-proxy Jupyter extensions for running an RStudio rsession proxy @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.1.0`` | ``GCCcore/11.3.0`` ``2.2.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyter-server-proxy.md b/docs/version-specific/supported-software/j/jupyter-server-proxy.md index 94cfb8977..b841d2cc3 100644 --- a/docs/version-specific/supported-software/j/jupyter-server-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-server-proxy.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``3.2.2`` | ``GCCcore/12.2.0`` ``4.0.0`` | ``GCCcore/12.3.0`` ``4.1.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyter-server.md b/docs/version-specific/supported-software/j/jupyter-server.md index 7767db6a7..33c1b22b8 100644 --- a/docs/version-specific/supported-software/j/jupyter-server.md +++ b/docs/version-specific/supported-software/j/jupyter-server.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.14.0`` | ``GCCcore/13.2.0`` ``2.7.0`` | ``GCCcore/12.2.0`` ``2.7.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyterlab-lmod.md b/docs/version-specific/supported-software/j/jupyterlab-lmod.md index c63ce7303..39ee8ac2c 100644 --- a/docs/version-specific/supported-software/j/jupyterlab-lmod.md +++ b/docs/version-specific/supported-software/j/jupyterlab-lmod.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ JupyterLab extension that allows user to interact with environment modules befor version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jupyterlmod.md b/docs/version-specific/supported-software/j/jupyterlmod.md index fc9d2aaba..9f70f85e9 100644 --- a/docs/version-specific/supported-software/j/jupyterlmod.md +++ b/docs/version-specific/supported-software/j/jupyterlmod.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.0.0`` | ``GCCcore/11.3.0`` ``4.0.3`` | ``GCCcore/11.3.0`` ``4.0.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/j/jxrlib.md b/docs/version-specific/supported-software/j/jxrlib.md index e008fdc1c..9d54e150f 100644 --- a/docs/version-specific/supported-software/j/jxrlib.md +++ b/docs/version-specific/supported-software/j/jxrlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # jxrlib Open source implementation of jpegxr @@ -10,3 +14,6 @@ version | toolchain ``1.1`` | ``GCCcore/10.3.0`` ``1.1`` | ``GCCcore/11.3.0`` ``1.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KAT.md b/docs/version-specific/supported-software/k/KAT.md index cb7fa8ba3..f1945b1c8 100644 --- a/docs/version-specific/supported-software/k/KAT.md +++ b/docs/version-specific/supported-software/k/KAT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KAT The K-mer Analysis Toolkit (KAT) contains a number of tools that analyse and compare K-mer spectra. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.2`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.4.2`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KITE.md b/docs/version-specific/supported-software/k/KITE.md index 630a9b534..0b4c4ad65 100644 --- a/docs/version-specific/supported-software/k/KITE.md +++ b/docs/version-specific/supported-software/k/KITE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ KITE is an open-source Python/C++ software suite for efficient real-space tight- version | toolchain --------|---------- ``1.1`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KMC.md b/docs/version-specific/supported-software/k/KMC.md index 4aaacd42b..42b4010c5 100644 --- a/docs/version-specific/supported-software/k/KMC.md +++ b/docs/version-specific/supported-software/k/KMC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KMC KMC is a disk-based programm for counting k-mers from (possibly gzipped) FASTQ/FASTA files. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KMCP.md b/docs/version-specific/supported-software/k/KMCP.md index fee9070f5..c29a54d2d 100644 --- a/docs/version-specific/supported-software/k/KMCP.md +++ b/docs/version-specific/supported-software/k/KMCP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KMCP KMCP: accurate metagenomic profiling of both prokaryotic and viral populations by pseudo-mapping @@ -7,3 +11,6 @@ KMCP: accurate metagenomic profiling of both prokaryotic and viral populations b version | toolchain --------|---------- ``0.9.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KNIME.md b/docs/version-specific/supported-software/k/KNIME.md index 703fc4658..e20629095 100644 --- a/docs/version-specific/supported-software/k/KNIME.md +++ b/docs/version-specific/supported-software/k/KNIME.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ KNIME Analytics Platform is the open source software for creating data science a version | toolchain --------|---------- ``3.6.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KWIML.md b/docs/version-specific/supported-software/k/KWIML.md index e49b4f06a..35f022f1e 100644 --- a/docs/version-specific/supported-software/k/KWIML.md +++ b/docs/version-specific/supported-software/k/KWIML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KWIML The Kitware Information Macro Library @@ -7,3 +11,6 @@ The Kitware Information Macro Library version | toolchain --------|---------- ``20180201`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KaHIP.md b/docs/version-specific/supported-software/k/KaHIP.md index 929cf247a..80387dabf 100644 --- a/docs/version-specific/supported-software/k/KaHIP.md +++ b/docs/version-specific/supported-software/k/KaHIP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KaHIP The graph partitioning framework KaHIP -- Karlsruhe High Quality Partitioning. @@ -9,3 +13,6 @@ version | toolchain ``3.14`` | ``gompi/2022a`` ``3.14`` | ``gompi/2022b`` ``3.16`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kaiju.md b/docs/version-specific/supported-software/k/Kaiju.md index 1369233aa..0bbaca41d 100644 --- a/docs/version-specific/supported-software/k/Kaiju.md +++ b/docs/version-specific/supported-software/k/Kaiju.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Kaiju Kaiju is a program for sensitive taxonomic classification of high-throughput sequencing reads from metagenomic whole genome sequencing experiments @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kaleido.md b/docs/version-specific/supported-software/k/Kaleido.md index 97b659d93..9251c2cef 100644 --- a/docs/version-specific/supported-software/k/Kaleido.md +++ b/docs/version-specific/supported-software/k/Kaleido.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Kaleido Fast static image export for web-based visualization libraries with zero dependencies @@ -11,3 +15,6 @@ version | toolchain ``0.2.1`` | ``GCCcore/11.3.0`` ``0.2.1`` | ``GCCcore/12.2.0`` ``0.2.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kalign.md b/docs/version-specific/supported-software/k/Kalign.md index 9041da7cc..6f9324604 100644 --- a/docs/version-specific/supported-software/k/Kalign.md +++ b/docs/version-specific/supported-software/k/Kalign.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Kalign Kalign is a fast multiple sequence alignment program for biological sequences. @@ -12,3 +16,6 @@ version | toolchain ``3.3.2`` | ``GCCcore/11.2.0`` ``3.3.5`` | ``GCCcore/11.3.0`` ``3.4.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kent_tools.md b/docs/version-specific/supported-software/k/Kent_tools.md index 514b2d055..f53fa1245 100644 --- a/docs/version-specific/supported-software/k/Kent_tools.md +++ b/docs/version-specific/supported-software/k/Kent_tools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Kent_tools Kent tools: collection of tools used by the UCSC genome browser. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``422`` | | ``GCC/11.2.0`` ``442`` | | ``GCC/11.3.0`` ``457`` | | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Keras.md b/docs/version-specific/supported-software/k/Keras.md index 94caf43c9..72a526527 100644 --- a/docs/version-specific/supported-software/k/Keras.md +++ b/docs/version-specific/supported-software/k/Keras.md @@ -1,3 +1,7 @@ +--- +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. @@ -33,3 +37,6 @@ version | versionsuffix | toolchain ``2.4.3`` | | ``foss/2020b`` ``2.4.3`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` ``2.4.3`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KerasTuner.md b/docs/version-specific/supported-software/k/KerasTuner.md index 88de923fa..cda700b92 100644 --- a/docs/version-specific/supported-software/k/KerasTuner.md +++ b/docs/version-specific/supported-software/k/KerasTuner.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KerasTuner KerasTuner is an easy-to-use, scalable hyperparameter optimization framework that solves the pain points of hyperparameter search. @@ -7,3 +11,6 @@ KerasTuner is an easy-to-use, scalable hyperparameter optimization framework tha version | toolchain --------|---------- ``1.3.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KmerGenie.md b/docs/version-specific/supported-software/k/KmerGenie.md index 1b789eb7b..5d24551aa 100644 --- a/docs/version-specific/supported-software/k/KmerGenie.md +++ b/docs/version-specific/supported-software/k/KmerGenie.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KmerGenie KmerGenie estimates the best k-mer length for genome de novo assembly. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.7044`` | ``intel/2017a`` ``1.7048`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kraken.md b/docs/version-specific/supported-software/k/Kraken.md index 1e622022a..5880bac27 100644 --- a/docs/version-specific/supported-software/k/Kraken.md +++ b/docs/version-specific/supported-software/k/Kraken.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kraken2.md b/docs/version-specific/supported-software/k/Kraken2.md index d5becb9b8..79ca806e4 100644 --- a/docs/version-specific/supported-software/k/Kraken2.md +++ b/docs/version-specific/supported-software/k/Kraken2.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``gompi/2021a`` ``2.1.2`` | | ``gompi/2021b`` ``2.1.2`` | | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KrakenUniq.md b/docs/version-specific/supported-software/k/KrakenUniq.md index f0a0e9951..f9966691d 100644 --- a/docs/version-specific/supported-software/k/KrakenUniq.md +++ b/docs/version-specific/supported-software/k/KrakenUniq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KrakenUniq KrakenUniq: confident and fast metagenomics classification using unique k-mer counts @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCC/11.3.0`` ``1.0.4`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/Kratos.md b/docs/version-specific/supported-software/k/Kratos.md index 02c4e34fb..637aa23ad 100644 --- a/docs/version-specific/supported-software/k/Kratos.md +++ b/docs/version-specific/supported-software/k/Kratos.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Kratos Kratos Multiphysics (A.K.A Kratos) is a framework for building parallel multi-disciplinary simulation software. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``6.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KronaTools.md b/docs/version-specific/supported-software/k/KronaTools.md index 7a399554d..84fdc0eb4 100644 --- a/docs/version-specific/supported-software/k/KronaTools.md +++ b/docs/version-specific/supported-software/k/KronaTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``2.8.1`` | ``GCCcore/11.3.0`` ``2.8.1`` | ``GCCcore/12.2.0`` ``2.8.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/KyotoCabinet.md b/docs/version-specific/supported-software/k/KyotoCabinet.md index bbc6333b3..ae4077363 100644 --- a/docs/version-specific/supported-software/k/KyotoCabinet.md +++ b/docs/version-specific/supported-software/k/KyotoCabinet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # KyotoCabinet Kyoto Cabinet is a library of routines for managing a database. @@ -9,3 +13,6 @@ version | toolchain ``1.2.77`` | ``GCCcore/7.3.0`` ``1.2.77`` | ``GCCcore/8.2.0`` ``1.2.80`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/index.md b/docs/version-specific/supported-software/k/index.md index bf475f119..4b7e0783d 100644 --- a/docs/version-specific/supported-software/k/index.md +++ b/docs/version-specific/supported-software/k/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (k) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - *k* - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [KaHIP](KaHIP.md) * [Kaiju](Kaiju.md) * [Kaleido](Kaleido.md) diff --git a/docs/version-specific/supported-software/k/kWIP.md b/docs/version-specific/supported-software/k/kWIP.md index 3201fe717..80a8e042a 100644 --- a/docs/version-specific/supported-software/k/kWIP.md +++ b/docs/version-specific/supported-software/k/kWIP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This software implements a de novo, alignment free measure of sample genetic di version | toolchain --------|---------- ``0.2.0`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kallisto.md b/docs/version-specific/supported-software/k/kallisto.md index ddadef144..ae541a9ff 100644 --- a/docs/version-specific/supported-software/k/kallisto.md +++ b/docs/version-specific/supported-software/k/kallisto.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``0.48.0`` | ``gompi/2021b`` ``0.48.0`` | ``gompi/2022a`` ``0.50.1`` | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kb-python.md b/docs/version-specific/supported-software/k/kb-python.md index 516cafccf..55d66ae31 100644 --- a/docs/version-specific/supported-software/k/kb-python.md +++ b/docs/version-specific/supported-software/k/kb-python.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.27.3`` | ``foss/2021b`` ``0.27.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kbproto.md b/docs/version-specific/supported-software/k/kbproto.md index 9a8f23d1d..cc5af7407 100644 --- a/docs/version-specific/supported-software/k/kbproto.md +++ b/docs/version-specific/supported-software/k/kbproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # kbproto X.org KBProto protocol headers. @@ -10,3 +14,6 @@ version | toolchain ``1.0.7`` | ``gimkl/2.11.5`` ``1.0.7`` | ``intel/2016a`` ``1.0.7`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kedro.md b/docs/version-specific/supported-software/k/kedro.md index 030ec1814..706a88cc6 100644 --- a/docs/version-specific/supported-software/k/kedro.md +++ b/docs/version-specific/supported-software/k/kedro.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # kedro Kedro is an open-source Python framework that applies software engineering best-practice to data and machine-learning pipelines. @@ -7,3 +11,6 @@ Kedro is an open-source Python framework that applies software engineering best- version | versionsuffix | toolchain --------|---------------|---------- ``0.16.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/khmer.md b/docs/version-specific/supported-software/k/khmer.md index cbb706036..6993056c3 100644 --- a/docs/version-specific/supported-software/k/khmer.md +++ b/docs/version-specific/supported-software/k/khmer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # khmer In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kim-api.md b/docs/version-specific/supported-software/k/kim-api.md index d652c2eeb..56683ff44 100644 --- a/docs/version-specific/supported-software/k/kim-api.md +++ b/docs/version-specific/supported-software/k/kim-api.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``2.3.0`` | ``GCC/12.2.0`` ``2.3.0`` | ``GCC/12.3.0`` ``2.3.0`` | ``intel-compilers/2023.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kineto.md b/docs/version-specific/supported-software/k/kineto.md index 72ec930b6..04f22f2ce 100644 --- a/docs/version-specific/supported-software/k/kineto.md +++ b/docs/version-specific/supported-software/k/kineto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # kineto A CPU+GPU Profiling library that provides access to timeline traces and hardware performance counters @@ -7,3 +11,6 @@ A CPU+GPU Profiling library that provides access to timeline traces and hardware version | toolchain --------|---------- ``0.4.0`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/king.md b/docs/version-specific/supported-software/k/king.md index 24c43fbd2..20a82f76c 100644 --- a/docs/version-specific/supported-software/k/king.md +++ b/docs/version-specific/supported-software/k/king.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.4`` | ``system`` ``2.2.7`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kma.md b/docs/version-specific/supported-software/k/kma.md index 60f13a5ad..0ec55ce8e 100644 --- a/docs/version-specific/supported-software/k/kma.md +++ b/docs/version-specific/supported-software/k/kma.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.22`` | ``intel/2019b`` ``1.4.12a`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kneaddata.md b/docs/version-specific/supported-software/k/kneaddata.md index 337b9f4ff..c3a90a12b 100644 --- a/docs/version-specific/supported-software/k/kneaddata.md +++ b/docs/version-specific/supported-software/k/kneaddata.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ KneadData is a tool designed to perform quality control on metagenomic and metat version | toolchain --------|---------- ``0.12.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kpcalg.md b/docs/version-specific/supported-software/k/kpcalg.md index 3c0504bcc..808ea2327 100644 --- a/docs/version-specific/supported-software/k/kpcalg.md +++ b/docs/version-specific/supported-software/k/kpcalg.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Kernel PC (kPC) algorithm for causal structure learning and causal inference us version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/krbalancing.md b/docs/version-specific/supported-software/k/krbalancing.md index 1252da8e5..19ebe04f5 100644 --- a/docs/version-specific/supported-software/k/krbalancing.md +++ b/docs/version-specific/supported-software/k/krbalancing.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # krbalancing A C++ extension for Python which computes K.R. balanced matrices. @@ -7,3 +11,6 @@ A C++ extension for Python which computes K.R. balanced matrices. version | toolchain --------|---------- ``0.5.0b0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/k/kwant.md b/docs/version-specific/supported-software/k/kwant.md index a4e7be9d2..7979b3959 100644 --- a/docs/version-specific/supported-software/k/kwant.md +++ b/docs/version-specific/supported-software/k/kwant.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.4.1`` | ``-Python-3.7.2`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LADR.md b/docs/version-specific/supported-software/l/LADR.md index 7cba9075a..41a9d719e 100644 --- a/docs/version-specific/supported-software/l/LADR.md +++ b/docs/version-specific/supported-software/l/LADR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LADR Prover9, Mace4, and several related programs come packaged in a system called LADR (Library for Automated Deduction Research). @@ -7,3 +11,6 @@ Prover9, Mace4, and several related programs come packaged in a system called L version | toolchain --------|---------- ``2009-11A`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LAME.md b/docs/version-specific/supported-software/l/LAME.md index 0c0c8ef1b..c6957d7fc 100644 --- a/docs/version-specific/supported-software/l/LAME.md +++ b/docs/version-specific/supported-software/l/LAME.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LAME LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. @@ -21,3 +25,6 @@ version | toolchain ``3.100`` | ``intel/2017b`` ``3.99.5`` | ``foss/2016b`` ``3.99.5`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LAMMPS.md b/docs/version-specific/supported-software/l/LAMMPS.md index 8852188b0..80267d3ba 100644 --- a/docs/version-specific/supported-software/l/LAMMPS.md +++ b/docs/version-specific/supported-software/l/LAMMPS.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LAPACK.md b/docs/version-specific/supported-software/l/LAPACK.md index 2e81c4b6c..80af6d609 100644 --- a/docs/version-specific/supported-software/l/LAPACK.md +++ b/docs/version-specific/supported-software/l/LAPACK.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``3.12.0`` | ``GCC/13.2.0`` ``3.8.0`` | ``GCC/7.3.0-2.30`` ``3.9.1`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LASSO-Python.md b/docs/version-specific/supported-software/l/LASSO-Python.md index cb6b7db14..201a4f9fc 100644 --- a/docs/version-specific/supported-software/l/LASSO-Python.md +++ b/docs/version-specific/supported-software/l/LASSO-Python.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This python library is designed for general purpose usage in the field of Comput version | toolchain --------|---------- ``2.0.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LAST.md b/docs/version-specific/supported-software/l/LAST.md index 589a4eae8..6dbb27762 100644 --- a/docs/version-specific/supported-software/l/LAST.md +++ b/docs/version-specific/supported-software/l/LAST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LAST LAST finds similar regions between sequences. @@ -10,3 +14,6 @@ version | toolchain ``1179`` | ``GCC/10.2.0`` ``869`` | ``intel/2017a`` ``914`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LASTZ.md b/docs/version-specific/supported-software/l/LASTZ.md index 668bade88..fc748bd51 100644 --- a/docs/version-specific/supported-software/l/LASTZ.md +++ b/docs/version-specific/supported-software/l/LASTZ.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.02.00`` | ``foss/2016a`` ``1.04.03`` | ``foss/2019b`` ``1.04.22`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LBFGS++.md b/docs/version-specific/supported-software/l/LBFGS++.md index 9cd714418..ed2ef74a0 100644 --- a/docs/version-specific/supported-software/l/LBFGS++.md +++ b/docs/version-specific/supported-software/l/LBFGS++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LBFGS++ A header-only C++ library for L-BFGS and L-BFGS-B algorithms @@ -7,3 +11,6 @@ A header-only C++ library for L-BFGS and L-BFGS-B algorithms version | toolchain --------|---------- ``0.1.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LCov.md b/docs/version-specific/supported-software/l/LCov.md index b13d15917..5728d8e1f 100644 --- a/docs/version-specific/supported-software/l/LCov.md +++ b/docs/version-specific/supported-software/l/LCov.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LCov LCOV - the LTP GCOV extension @@ -7,3 +11,6 @@ LCOV - the LTP GCOV extension version | toolchain --------|---------- ``1.13`` | ``GCCcore/7.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LDC.md b/docs/version-specific/supported-software/l/LDC.md index 966e60e8f..555094e11 100644 --- a/docs/version-specific/supported-software/l/LDC.md +++ b/docs/version-specific/supported-software/l/LDC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LDC The LLVM-based D Compiler @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.26.0`` | | ``GCCcore/10.3.0`` ``1.30.0`` | | ``GCCcore/11.3.0`` ``1.36.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LEMON.md b/docs/version-specific/supported-software/l/LEMON.md index 552fd645a..349932674 100644 --- a/docs/version-specific/supported-software/l/LEMON.md +++ b/docs/version-specific/supported-software/l/LEMON.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ LEMON stands for Library for Efficient Modeling and Optimization in Networks. I version | toolchain --------|---------- ``1.3.1`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LERC.md b/docs/version-specific/supported-software/l/LERC.md index 76eab3e28..6320c0a91 100644 --- a/docs/version-specific/supported-software/l/LERC.md +++ b/docs/version-specific/supported-software/l/LERC.md @@ -1,3 +1,7 @@ +--- +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). @@ -12,3 +16,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.2.0`` ``4.0.0`` | ``GCCcore/12.3.0`` ``4.0.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LHAPDF.md b/docs/version-specific/supported-software/l/LHAPDF.md index e5b180d80..85771a3f4 100644 --- a/docs/version-specific/supported-software/l/LHAPDF.md +++ b/docs/version-specific/supported-software/l/LHAPDF.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.5.3`` | ``GCC/11.3.0`` ``6.5.4`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LIANA.md b/docs/version-specific/supported-software/l/LIANA.md index 64b20542b..6cd79b353 100644 --- a/docs/version-specific/supported-software/l/LIANA.md +++ b/docs/version-specific/supported-software/l/LIANA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ LIANA: a LIgand-receptor ANalysis frAmework. LIANA enables the use of any comb version | versionsuffix | toolchain --------|---------------|---------- ``0.1.11`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md index b392e72d0..5eaa48b0d 100644 --- a/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md +++ b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MATLAB interface of LIBSVM, an integrated software for support vector classifica version | versionsuffix | toolchain --------|---------------|---------- ``3.30`` | ``-MATLAB-2022b-r5`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LIBSVM-Python.md b/docs/version-specific/supported-software/l/LIBSVM-Python.md index 1412a0bfe..d9ec9a923 100644 --- a/docs/version-specific/supported-software/l/LIBSVM-Python.md +++ b/docs/version-specific/supported-software/l/LIBSVM-Python.md @@ -1,3 +1,7 @@ +--- +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". @@ -7,3 +11,6 @@ This tool provides a simple Python interface to LIBSVM, a library for support version | toolchain --------|---------- ``3.30`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LIBSVM.md b/docs/version-specific/supported-software/l/LIBSVM.md index 4af91308b..de282845e 100644 --- a/docs/version-specific/supported-software/l/LIBSVM.md +++ b/docs/version-specific/supported-software/l/LIBSVM.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``3.25`` | ``GCCcore/10.3.0`` ``3.25`` | ``GCCcore/11.2.0`` ``3.30`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LISFLOOD-FP.md b/docs/version-specific/supported-software/l/LISFLOOD-FP.md index 5d591b3b7..fcde88d35 100644 --- a/docs/version-specific/supported-software/l/LISFLOOD-FP.md +++ b/docs/version-specific/supported-software/l/LISFLOOD-FP.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.1`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` ``8.1`` | | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LLDB.md b/docs/version-specific/supported-software/l/LLDB.md index ebfa4367b..d7cde1cff 100644 --- a/docs/version-specific/supported-software/l/LLDB.md +++ b/docs/version-specific/supported-software/l/LLDB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LLDB The debugger component of the LLVM project @@ -7,3 +11,6 @@ The debugger component of the LLVM project version | versionsuffix | toolchain --------|---------------|---------- ``11.0.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LLVM.md b/docs/version-specific/supported-software/l/LLVM.md index d2dc8e398..888a817e4 100644 --- a/docs/version-specific/supported-software/l/LLVM.md +++ b/docs/version-specific/supported-software/l/LLVM.md @@ -1,3 +1,7 @@ +--- +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. @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``9.0.0`` | | ``GCCcore/8.3.0`` ``9.0.1`` | | ``GCCcore/8.3.0`` ``9.0.1`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LMDB.md b/docs/version-specific/supported-software/l/LMDB.md index c7bba427e..20c7651d7 100644 --- a/docs/version-specific/supported-software/l/LMDB.md +++ b/docs/version-specific/supported-software/l/LMDB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LMDB OpenLDAP's Lightning Memory-Mapped Database (LMDB) library. @@ -19,3 +23,6 @@ version | toolchain ``0.9.29`` | ``GCCcore/11.3.0`` ``0.9.29`` | ``GCCcore/12.2.0`` ``0.9.31`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LMfit.md b/docs/version-specific/supported-software/l/LMfit.md index e06508098..36ab6f14a 100644 --- a/docs/version-specific/supported-software/l/LMfit.md +++ b/docs/version-specific/supported-software/l/LMfit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LMfit Lmfit provides a high-level interface to non-linear optimization and curve fitting problems for Python @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``1.0.3`` | | ``foss/2022a`` ``1.0.3`` | | ``intel/2022a`` ``1.2.1`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LOHHLA.md b/docs/version-specific/supported-software/l/LOHHLA.md index c2d15a294..15f329737 100644 --- a/docs/version-specific/supported-software/l/LOHHLA.md +++ b/docs/version-specific/supported-software/l/LOHHLA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ LOHHLA, Loss Of Heterozygosity in Human Leukocyte Antigen, a computational tool version | versionsuffix | toolchain --------|---------------|---------- ``2018.11.05`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LPJmL.md b/docs/version-specific/supported-software/l/LPJmL.md index cc84d8225..a9580b975 100644 --- a/docs/version-specific/supported-software/l/LPJmL.md +++ b/docs/version-specific/supported-software/l/LPJmL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LPJmL Dynamic global vegetation model with managed land and river routing @@ -7,3 +11,6 @@ Dynamic global vegetation model with managed land and river routing version | toolchain --------|---------- ``4.0.003`` | ``iimpi/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LPeg.md b/docs/version-specific/supported-software/l/LPeg.md index dd77d11a9..76c2323e7 100644 --- a/docs/version-specific/supported-software/l/LPeg.md +++ b/docs/version-specific/supported-software/l/LPeg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LPeg LPeg is a new pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs). @@ -7,3 +11,6 @@ LPeg is a new pattern-matching library for Lua, based on Parsing Expression Gram version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LS-PrePost.md b/docs/version-specific/supported-software/l/LS-PrePost.md index 0ccd38a94..2f8866f6c 100644 --- a/docs/version-specific/supported-software/l/LS-PrePost.md +++ b/docs/version-specific/supported-software/l/LS-PrePost.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LS-PrePost LS-PrePost is an advanced pre and post-processor that is delivered free with LS-DYNA. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``4.6.24`` | | ``system`` ``4.7.15`` | | ``system`` ``4.7.8`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LSD2.md b/docs/version-specific/supported-software/l/LSD2.md index 54ffd1510..e52cc3f1e 100644 --- a/docs/version-specific/supported-software/l/LSD2.md +++ b/docs/version-specific/supported-software/l/LSD2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LSD2 Least-squares methods to estimate rates and dates from phylogenies @@ -13,3 +17,6 @@ version | toolchain ``2.3`` | ``GCCcore/11.3.0`` ``2.4.1`` | ``GCCcore/12.2.0`` ``2.4.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LSMS.md b/docs/version-specific/supported-software/l/LSMS.md index a54af4b75..28c42a704 100644 --- a/docs/version-specific/supported-software/l/LSMS.md +++ b/docs/version-specific/supported-software/l/LSMS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LSMS LSMS benchmark, part of CORAL suite @@ -7,3 +11,6 @@ LSMS benchmark, part of CORAL suite version | toolchain --------|---------- ``3_rev237`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LTR_retriever.md b/docs/version-specific/supported-software/l/LTR_retriever.md index 3edb51f68..ecdf0f7b3 100644 --- a/docs/version-specific/supported-software/l/LTR_retriever.md +++ b/docs/version-specific/supported-software/l/LTR_retriever.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.9.0`` | ``foss/2020b`` ``2.9.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LUMPY.md b/docs/version-specific/supported-software/l/LUMPY.md index 5d1c52599..5757b68d8 100644 --- a/docs/version-specific/supported-software/l/LUMPY.md +++ b/docs/version-specific/supported-software/l/LUMPY.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LUMPY A probabilistic framework for structural variant discovery. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.2.13`` | ``foss/2016b`` ``0.3.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LUSCUS.md b/docs/version-specific/supported-software/l/LUSCUS.md index 4b2fc38b0..4f60e8f31 100644 --- a/docs/version-specific/supported-software/l/LUSCUS.md +++ b/docs/version-specific/supported-software/l/LUSCUS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LUSCUS Luscus is the program for graphical display and editing of molecular systems. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.8.6`` | ``foss/2018b`` ``0.8.6`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LZO.md b/docs/version-specific/supported-software/l/LZO.md index 65ac5f443..2ac295848 100644 --- a/docs/version-specific/supported-software/l/LZO.md +++ b/docs/version-specific/supported-software/l/LZO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LZO LZO-2.06: Portable lossless data compression library @@ -27,3 +31,6 @@ version | toolchain ``2.10`` | ``foss/2018b`` ``2.10`` | ``fosscuda/2018b`` ``2.10`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/L_RNA_scaffolder.md b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md index 049aed3e7..61465a6bb 100644 --- a/docs/version-specific/supported-software/l/L_RNA_scaffolder.md +++ b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # L_RNA_scaffolder L_RNA_scaffolder is a novel scaffolding tool using long trancriptome reads to scaffold genome fragments @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20141124`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``20190530`` | | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md index 0718dbc11..d084cf1b4 100644 --- a/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md +++ b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The lab streaming layer (LSL) is a system for the unified collection of measurem version | toolchain --------|---------- ``1.16.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lace.md b/docs/version-specific/supported-software/l/Lace.md index c35cbe555..1e49f8a78 100644 --- a/docs/version-specific/supported-software/l/Lace.md +++ b/docs/version-specific/supported-software/l/Lace.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Lace Building SuperTranscripts: A linear representation of transcriptome data @@ -7,3 +11,6 @@ Building SuperTranscripts: A linear representation of transcriptome data version | toolchain --------|---------- ``1.14.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LangChain.md b/docs/version-specific/supported-software/l/LangChain.md index 8f449b1e5..313b73064 100644 --- a/docs/version-specific/supported-software/l/LangChain.md +++ b/docs/version-specific/supported-software/l/LangChain.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LangChain LangChain is a framework for developing applications powered by large language models (LLMs). @@ -7,3 +11,6 @@ LangChain is a framework for developing applications powered by large language m version | toolchain --------|---------- ``0.2.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LayoutParser.md b/docs/version-specific/supported-software/l/LayoutParser.md index ffddadc3f..af7fd9099 100644 --- a/docs/version-specific/supported-software/l/LayoutParser.md +++ b/docs/version-specific/supported-software/l/LayoutParser.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LayoutParser A Unified Toolkit for Deep Learning Based Document Image Analysis @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LeadIT.md b/docs/version-specific/supported-software/l/LeadIT.md index 22fc8b91c..60b88222e 100644 --- a/docs/version-specific/supported-software/l/LeadIT.md +++ b/docs/version-specific/supported-software/l/LeadIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LeadIT Visually Informed LeadOpt @@ -7,3 +11,6 @@ Visually Informed LeadOpt version | toolchain --------|---------- ``2.1.9`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Leptonica.md b/docs/version-specific/supported-software/l/Leptonica.md index d908292a4..473d88bb7 100644 --- a/docs/version-specific/supported-software/l/Leptonica.md +++ b/docs/version-specific/supported-software/l/Leptonica.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.78.0`` | ``GCCcore/8.2.0`` ``1.82.0`` | ``GCCcore/10.3.0`` ``1.83.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LevelDB.md b/docs/version-specific/supported-software/l/LevelDB.md index ea8dc2481..918e4a950 100644 --- a/docs/version-specific/supported-software/l/LevelDB.md +++ b/docs/version-specific/supported-software/l/LevelDB.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.22`` | ``GCCcore/11.3.0`` ``1.22`` | ``GCCcore/8.2.0`` ``1.22`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Levenshtein.md b/docs/version-specific/supported-software/l/Levenshtein.md index 187af8f87..e0342df42 100644 --- a/docs/version-specific/supported-software/l/Levenshtein.md +++ b/docs/version-specific/supported-software/l/Levenshtein.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Levenshtein Python extension for computing string edit distances and similarities. @@ -7,3 +11,6 @@ Python extension for computing string edit distances and similarities. version | toolchain --------|---------- ``0.24.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LiBis.md b/docs/version-specific/supported-software/l/LiBis.md index 9df3235ca..2996591c7 100644 --- a/docs/version-specific/supported-software/l/LiBis.md +++ b/docs/version-specific/supported-software/l/LiBis.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LiBis An ultrasensitive alignment method for low input bisulfite sequencing @@ -7,3 +11,6 @@ An ultrasensitive alignment method for low input bisulfite sequencing version | versionsuffix | toolchain --------|---------------|---------- ``20200428`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LibLZF.md b/docs/version-specific/supported-software/l/LibLZF.md index c6b7c3b1a..a6779eb68 100644 --- a/docs/version-specific/supported-software/l/LibLZF.md +++ b/docs/version-specific/supported-software/l/LibLZF.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``3.6`` | ``GCCcore/10.3.0`` ``3.6`` | ``GCCcore/11.3.0`` ``3.6`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LibSoup.md b/docs/version-specific/supported-software/l/LibSoup.md index 54c53e74c..1bbb9e607 100644 --- a/docs/version-specific/supported-software/l/LibSoup.md +++ b/docs/version-specific/supported-software/l/LibSoup.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.74.0`` | ``GCCcore/10.3.0`` ``3.0.7`` | ``GCC/11.2.0`` ``3.0.8`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LibTIFF.md b/docs/version-specific/supported-software/l/LibTIFF.md index 5c1e1201b..25aa218a6 100644 --- a/docs/version-specific/supported-software/l/LibTIFF.md +++ b/docs/version-specific/supported-software/l/LibTIFF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LibTIFF tiff: Library and tools for reading and writing TIFF data files @@ -33,3 +37,6 @@ version | toolchain ``4.5.0`` | ``GCCcore/12.3.0`` ``4.6.0`` | ``GCCcore/13.2.0`` ``4.6.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LibUUID.md b/docs/version-specific/supported-software/l/LibUUID.md index f2b5b8df2..29e48075d 100644 --- a/docs/version-specific/supported-software/l/LibUUID.md +++ b/docs/version-specific/supported-software/l/LibUUID.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LibUUID Portable uuid C library @@ -13,3 +17,6 @@ version | toolchain ``1.0.3`` | ``foss/2016a`` ``1.0.3`` | ``intel/2017a`` ``1.0.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Libint.md b/docs/version-specific/supported-software/l/Libint.md index f21358f15..8c22185bd 100644 --- a/docs/version-specific/supported-software/l/Libint.md +++ b/docs/version-specific/supported-software/l/Libint.md @@ -1,3 +1,7 @@ +--- +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. @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lighter.md b/docs/version-specific/supported-software/l/Lighter.md index 98ae45ab9..8c9508c7e 100644 --- a/docs/version-specific/supported-software/l/Lighter.md +++ b/docs/version-specific/supported-software/l/Lighter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Lighter Fast and memory-efficient sequencing error corrector @@ -9,3 +13,6 @@ version | toolchain ``1.1.1`` | ``foss/2018a`` ``1.1.2`` | ``GCC/11.2.0`` ``1.1.2`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lightning.md b/docs/version-specific/supported-software/l/Lightning.md index 6750a983c..4c4aea77d 100644 --- a/docs/version-specific/supported-software/l/Lightning.md +++ b/docs/version-specific/supported-software/l/Lightning.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The deep learning framework to pretrain, finetune and deploy AI models. Lightnin version | versionsuffix | toolchain --------|---------------|---------- ``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LinBox.md b/docs/version-specific/supported-software/l/LinBox.md index f9f1416d8..ae6705206 100644 --- a/docs/version-specific/supported-software/l/LinBox.md +++ b/docs/version-specific/supported-software/l/LinBox.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LinBox C++ library for exact, high-performance linear algebra @@ -9,3 +13,6 @@ version | toolchain ``1.4.0`` | ``foss/2016a`` ``1.7.0`` | ``gfbf/2022a`` ``1.7.0`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lingeling.md b/docs/version-specific/supported-software/l/Lingeling.md index 267fe99c7..22e29f101 100644 --- a/docs/version-specific/supported-software/l/Lingeling.md +++ b/docs/version-specific/supported-software/l/Lingeling.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ One of the design principles of the state-of-the-art SAT solver Lingeling is to version | toolchain --------|---------- ``bcp`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LittleCMS.md b/docs/version-specific/supported-software/l/LittleCMS.md index 50a381c0b..969292c62 100644 --- a/docs/version-specific/supported-software/l/LittleCMS.md +++ b/docs/version-specific/supported-software/l/LittleCMS.md @@ -1,3 +1,7 @@ +--- +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. @@ -26,3 +30,6 @@ version | toolchain ``2.9`` | ``foss/2017b`` ``2.9`` | ``foss/2018a`` ``2.9`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lmod.md b/docs/version-specific/supported-software/l/Lmod.md index 15e30e8c6..853922945 100644 --- a/docs/version-specific/supported-software/l/Lmod.md +++ b/docs/version-specific/supported-software/l/Lmod.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | toolchain ``5.9`` | ``GCC/4.8.4`` ``6.4.2`` | ``system`` ``7.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LncLOOM.md b/docs/version-specific/supported-software/l/LncLOOM.md index 182e4f207..653e04878 100644 --- a/docs/version-specific/supported-software/l/LncLOOM.md +++ b/docs/version-specific/supported-software/l/LncLOOM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ LncLOOM is a graph-based framework that uses integer programming to identify com version | toolchain --------|---------- ``2.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LoFreq.md b/docs/version-specific/supported-software/l/LoFreq.md index 341db5dc0..179e3c6c8 100644 --- a/docs/version-specific/supported-software/l/LoFreq.md +++ b/docs/version-specific/supported-software/l/LoFreq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LoFreq Fast and sensitive variant calling from next-gen sequencing data @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LoRDEC.md b/docs/version-specific/supported-software/l/LoRDEC.md index a2bc8eca2..3806e0564 100644 --- a/docs/version-specific/supported-software/l/LoRDEC.md +++ b/docs/version-specific/supported-software/l/LoRDEC.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Program for correcting sequencing errors in long reads (e.g., PacBio, Oxford Nan version | toolchain --------|---------- ``0.9`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LocARNA.md b/docs/version-specific/supported-software/l/LocARNA.md index bbb6ed50c..c39ad900f 100644 --- a/docs/version-specific/supported-software/l/LocARNA.md +++ b/docs/version-specific/supported-software/l/LocARNA.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.9.2`` | | ``foss/2016b`` ``1.9.2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.9.2.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Log-Log4perl.md b/docs/version-specific/supported-software/l/Log-Log4perl.md index ee9e7c367..c027fdd1e 100644 --- a/docs/version-specific/supported-software/l/Log-Log4perl.md +++ b/docs/version-specific/supported-software/l/Log-Log4perl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Log-Log4perl Log4perl @@ -7,3 +11,6 @@ Log4perl version | toolchain --------|---------- ``1.47`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Loki.md b/docs/version-specific/supported-software/l/Loki.md index 19bd57df7..6c51f68e1 100644 --- a/docs/version-specific/supported-software/l/Loki.md +++ b/docs/version-specific/supported-software/l/Loki.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Loki Loki is a C++ library of designs, containing flexible implementations of common design patterns and idioms. @@ -11,3 +15,6 @@ version | toolchain ``0.1.7`` | ``intel/2016a`` ``0.1.7`` | ``intel/2016b`` ``0.1.7`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Longshot.md b/docs/version-specific/supported-software/l/Longshot.md index 96a0a604b..93929aca2 100644 --- a/docs/version-specific/supported-software/l/Longshot.md +++ b/docs/version-specific/supported-software/l/Longshot.md @@ -1,3 +1,7 @@ +--- +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). @@ -11,3 +15,6 @@ version | toolchain ``0.4.1`` | ``GCCcore/8.3.0`` ``0.4.3`` | ``GCCcore/10.2.0`` ``0.4.5`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LoopTools.md b/docs/version-specific/supported-software/l/LoopTools.md index 7847f3cdf..e01968fc1 100644 --- a/docs/version-specific/supported-software/l/LoopTools.md +++ b/docs/version-specific/supported-software/l/LoopTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ LoopTools is a package for evaluation of scalar and tensor one-loop integrals. version | toolchain --------|---------- ``2.15`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LtrDetector.md b/docs/version-specific/supported-software/l/LtrDetector.md index ab78f750c..5f044a986 100644 --- a/docs/version-specific/supported-software/l/LtrDetector.md +++ b/docs/version-specific/supported-software/l/LtrDetector.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # LtrDetector A modern tool-suite for detectinglong terminal repeat retrotransposons de-novo onthe genomic scale @@ -7,3 +11,6 @@ A modern tool-suite for detectinglong terminal repeat retrotransposons de-novo o version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lua.md b/docs/version-specific/supported-software/l/Lua.md index 4d0247b03..f1f687e2b 100644 --- a/docs/version-specific/supported-software/l/Lua.md +++ b/docs/version-specific/supported-software/l/Lua.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | toolchain ``5.4.4`` | ``GCCcore/12.2.0`` ``5.4.6`` | ``GCCcore/12.3.0`` ``5.4.6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LuaJIT.md b/docs/version-specific/supported-software/l/LuaJIT.md index 4c82869b8..7c2b2b341 100644 --- a/docs/version-specific/supported-software/l/LuaJIT.md +++ b/docs/version-specific/supported-software/l/LuaJIT.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.2`` | ``GCC/4.9.2`` ``2.1.0-beta3_20230602`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md index 6b5001bf6..72a882e6d 100644 --- a/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md +++ b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ openresty/luajit2 - OpenResty's maintained branch of LuaJIT. LuaJIT is a Just-In version | toolchain --------|---------- ``2.1-20220411`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/LuaRocks.md b/docs/version-specific/supported-software/l/LuaRocks.md index e470d8df6..b3f64b62c 100644 --- a/docs/version-specific/supported-software/l/LuaRocks.md +++ b/docs/version-specific/supported-software/l/LuaRocks.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ LuaRocks is the package manager for Lua modules. It allows you to create and in version | toolchain --------|---------- ``3.9.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md index aff4df055..267abd520 100644 --- a/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md +++ b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A command line gazetteer built around the Geonames.org dataset, that uses the Ap version | toolchain --------|---------- ``20170718`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/index.md b/docs/version-specific/supported-software/l/index.md index d7ecb4f26..e168b3be4 100644 --- a/docs/version-specific/supported-software/l/index.md +++ b/docs/version-specific/supported-software/l/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (l) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - *l* - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [L_RNA_scaffolder](L_RNA_scaffolder.md) * [Lab-Streaming-Layer](Lab-Streaming-Layer.md) * [Lace](Lace.md) diff --git a/docs/version-specific/supported-software/l/lDDT.md b/docs/version-specific/supported-software/l/lDDT.md index 2c33bfee4..988e0deb3 100644 --- a/docs/version-specific/supported-software/l/lDDT.md +++ b/docs/version-specific/supported-software/l/lDDT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The local Distance Difference Test (lDDT) is a superposition-free score which ev version | toolchain --------|---------- ``1.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lagrangian-filtering.md b/docs/version-specific/supported-software/l/lagrangian-filtering.md index 5e78ed8a3..5d63de1dd 100644 --- a/docs/version-specific/supported-software/l/lagrangian-filtering.md +++ b/docs/version-specific/supported-software/l/lagrangian-filtering.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lagrangian-filtering Temporal filtering of data in a Lagrangian frame of reference. @@ -7,3 +11,6 @@ Temporal filtering of data in a Lagrangian frame of reference. version | toolchain --------|---------- ``0.8.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lancet.md b/docs/version-specific/supported-software/l/lancet.md index 27982f0d3..0a6a59aef 100644 --- a/docs/version-specific/supported-software/l/lancet.md +++ b/docs/version-specific/supported-software/l/lancet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lancet Lancet is a somatic variant caller (SNVs and indels) for short read data. @@ -7,3 +11,6 @@ Lancet is a somatic variant caller (SNVs and indels) for short read data. version | toolchain --------|---------- ``1.1.0`` | ``iccifort/2019.5.281`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/langchain-anthropic.md b/docs/version-specific/supported-software/l/langchain-anthropic.md index 1e32a1d3c..87f8636ed 100644 --- a/docs/version-specific/supported-software/l/langchain-anthropic.md +++ b/docs/version-specific/supported-software/l/langchain-anthropic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # langchain-anthropic This package contains the LangChain integration for Anthropic's generative models. @@ -7,3 +11,6 @@ This package contains the LangChain integration for Anthropic's generative model version | toolchain --------|---------- ``0.1.15`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lavaan.md b/docs/version-specific/supported-software/l/lavaan.md index 27db99eba..582cf8f0a 100644 --- a/docs/version-specific/supported-software/l/lavaan.md +++ b/docs/version-specific/supported-software/l/lavaan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lavaan Fit a variety of latent variable models, including confirmatory factor analysis, structural equation modeling and latent growth curve models. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lcalc.md b/docs/version-specific/supported-software/l/lcalc.md index ea8daff4a..634baf264 100644 --- a/docs/version-specific/supported-software/l/lcalc.md +++ b/docs/version-specific/supported-software/l/lcalc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lcalc Lcalc is a package for working with L-functions. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.5`` | ``GCCcore/11.3.0`` ``2.0.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/leafcutter.md b/docs/version-specific/supported-software/l/leafcutter.md index d5914b6f7..163f2ac46 100644 --- a/docs/version-specific/supported-software/l/leafcutter.md +++ b/docs/version-specific/supported-software/l/leafcutter.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Leafcutter quantifies RNA splicing variation using short-read RNA-seq data. Th version | versionsuffix | toolchain --------|---------------|---------- ``0.2.9`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/leidenalg.md b/docs/version-specific/supported-software/l/leidenalg.md index ab9e86160..3c3873f96 100644 --- a/docs/version-specific/supported-software/l/leidenalg.md +++ b/docs/version-specific/supported-software/l/leidenalg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # leidenalg Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``0.8.7`` | | ``foss/2021a`` ``0.8.8`` | | ``foss/2021b`` ``0.9.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/less.md b/docs/version-specific/supported-software/l/less.md index d94ecf3fd..31c256e7b 100644 --- a/docs/version-specific/supported-software/l/less.md +++ b/docs/version-specific/supported-software/l/less.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Less is a free, open-source file pager. It can be found on most versions of Linu version | toolchain --------|---------- ``458`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lftp.md b/docs/version-specific/supported-software/l/lftp.md index fb4f65f7e..3bf36ca33 100644 --- a/docs/version-specific/supported-software/l/lftp.md +++ b/docs/version-specific/supported-software/l/lftp.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libBigWig.md b/docs/version-specific/supported-software/l/libBigWig.md index ba0e22bd7..4782dd9c2 100644 --- a/docs/version-specific/supported-software/l/libBigWig.md +++ b/docs/version-specific/supported-software/l/libBigWig.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libBigWig A C library for handling bigWig files @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.4`` | ``GCCcore/8.3.0`` ``0.4.6`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libFLAME.md b/docs/version-specific/supported-software/l/libFLAME.md index 60d36d336..00b39f932 100644 --- a/docs/version-specific/supported-software/l/libFLAME.md +++ b/docs/version-specific/supported-software/l/libFLAME.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``5.2.0`` | | ``GCCcore/10.2.0`` ``5.2.0`` | | ``GCCcore/10.3.0`` ``5.2.0`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libGDSII.md b/docs/version-specific/supported-software/l/libGDSII.md index 6ec2960f6..0fecdb045 100644 --- a/docs/version-specific/supported-software/l/libGDSII.md +++ b/docs/version-specific/supported-software/l/libGDSII.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.21`` | ``GCCcore/10.2.0`` ``0.21`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libGLU.md b/docs/version-specific/supported-software/l/libGLU.md index 1a9623ffc..fc056c0d6 100644 --- a/docs/version-specific/supported-software/l/libGLU.md +++ b/docs/version-specific/supported-software/l/libGLU.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libGLU The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. @@ -36,3 +40,6 @@ version | versionsuffix | toolchain ``9.0.2`` | | ``GCCcore/12.2.0`` ``9.0.3`` | | ``GCCcore/12.3.0`` ``9.0.3`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libGridXC.md b/docs/version-specific/supported-software/l/libGridXC.md index aa62ae94f..4693cf140 100644 --- a/docs/version-specific/supported-software/l/libGridXC.md +++ b/docs/version-specific/supported-software/l/libGridXC.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``0.9.6`` | ``iimpi/2021a`` ``0.9.6`` | ``iimpi/2021b`` ``1.1.0`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libICE.md b/docs/version-specific/supported-software/l/libICE.md index f12832275..ec7781611 100644 --- a/docs/version-specific/supported-software/l/libICE.md +++ b/docs/version-specific/supported-software/l/libICE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libICE X Inter-Client Exchange library for freedesktop.org @@ -9,3 +13,6 @@ version | toolchain ``1.0.9`` | ``foss/2016a`` ``1.0.9`` | ``gimkl/2.11.5`` ``1.0.9`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libMemcached.md b/docs/version-specific/supported-software/l/libMemcached.md index dbdd684e5..09cdb40e5 100644 --- a/docs/version-specific/supported-software/l/libMemcached.md +++ b/docs/version-specific/supported-software/l/libMemcached.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.0.18`` | ``GCCcore/13.2.0`` ``1.0.18`` | ``GCCcore/6.4.0`` ``1.0.18`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libPSML.md b/docs/version-specific/supported-software/l/libPSML.md index 718ae9c44..f9c302f1c 100644 --- a/docs/version-specific/supported-software/l/libPSML.md +++ b/docs/version-specific/supported-software/l/libPSML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libPSML LibPSML provides a Fortran API to parse files in the PSeudopotential Markup Language (PSML) format. @@ -16,3 +20,6 @@ version | toolchain ``1.1.7`` | ``foss/2016b`` ``1.1.7`` | ``foss/2017a`` ``1.1.8`` | ``iccifort/2019.5.281`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libQGLViewer.md b/docs/version-specific/supported-software/l/libQGLViewer.md index 586773b4c..7a3b15490 100644 --- a/docs/version-specific/supported-software/l/libQGLViewer.md +++ b/docs/version-specific/supported-software/l/libQGLViewer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libQGLViewer libQGLViewer is a C++ library based on Qt that eases the creation of OpenGL 3D viewers. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``2.6.4`` | | ``intel/2016b`` ``2.7.1`` | | ``intel/2018a`` ``2.8.0`` | | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libRmath.md b/docs/version-specific/supported-software/l/libRmath.md index 45e2d1954..9c5064704 100644 --- a/docs/version-specific/supported-software/l/libRmath.md +++ b/docs/version-specific/supported-software/l/libRmath.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``4.1.2`` | ``GCCcore/11.2.0`` ``4.2.0`` | ``GCCcore/10.3.0`` ``4.2.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libSBML.md b/docs/version-specific/supported-software/l/libSBML.md index e0f0b688e..1dea20742 100644 --- a/docs/version-specific/supported-software/l/libSBML.md +++ b/docs/version-specific/supported-software/l/libSBML.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``5.19.0`` | ``GCC/10.2.0`` ``5.19.0`` | ``GCC/10.3.0`` ``5.19.7`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libSM.md b/docs/version-specific/supported-software/l/libSM.md index 2338738cd..df98b35f2 100644 --- a/docs/version-specific/supported-software/l/libSM.md +++ b/docs/version-specific/supported-software/l/libSM.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.2.2`` | ``foss/2016a`` ``1.2.2`` | ``gimkl/2.11.5`` ``1.2.2`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libStatGen.md b/docs/version-specific/supported-software/l/libStatGen.md index 827c0e081..ec1a0108a 100644 --- a/docs/version-specific/supported-software/l/libStatGen.md +++ b/docs/version-specific/supported-software/l/libStatGen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libStatGen Useful set of classes for creating statistical genetic programs. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.15`` | ``GCCcore/10.2.0`` ``20190330`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libWallModelledLES.md b/docs/version-specific/supported-software/l/libWallModelledLES.md index 21ffb6400..8ab390bb4 100644 --- a/docs/version-specific/supported-software/l/libWallModelledLES.md +++ b/docs/version-specific/supported-software/l/libWallModelledLES.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ libWallModelledLES is a library based on OpenFOAM® technology, extending the ca version | toolchain --------|---------- ``0.6.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libX11.md b/docs/version-specific/supported-software/l/libX11.md index 89caf96ca..b9f957c67 100644 --- a/docs/version-specific/supported-software/l/libX11.md +++ b/docs/version-specific/supported-software/l/libX11.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libX11 X11 client-side library @@ -9,3 +13,6 @@ version | toolchain ``1.6.3`` | ``foss/2016a`` ``1.6.3`` | ``gimkl/2.11.5`` ``1.6.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXau.md b/docs/version-specific/supported-software/l/libXau.md index 32bd30274..0fccad6d8 100644 --- a/docs/version-specific/supported-software/l/libXau.md +++ b/docs/version-specific/supported-software/l/libXau.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.0.8`` | ``foss/2016a`` ``1.0.8`` | ``gimkl/2.11.5`` ``1.0.8`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXcursor.md b/docs/version-specific/supported-software/l/libXcursor.md index caf1c2c08..800986450 100644 --- a/docs/version-specific/supported-software/l/libXcursor.md +++ b/docs/version-specific/supported-software/l/libXcursor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXcursor X Cursor management library @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.14`` | ``foss/2016a`` ``1.1.14`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXdamage.md b/docs/version-specific/supported-software/l/libXdamage.md index 086f3d485..77d9af038 100644 --- a/docs/version-specific/supported-software/l/libXdamage.md +++ b/docs/version-specific/supported-software/l/libXdamage.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXdamage X Damage extension library @@ -9,3 +13,6 @@ version | toolchain ``1.1.4`` | ``foss/2016a`` ``1.1.4`` | ``gimkl/2.11.5`` ``1.1.4`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXdmcp.md b/docs/version-specific/supported-software/l/libXdmcp.md index 3bd70c854..c1f2aec45 100644 --- a/docs/version-specific/supported-software/l/libXdmcp.md +++ b/docs/version-specific/supported-software/l/libXdmcp.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.1.2`` | ``foss/2016a`` ``1.1.2`` | ``gimkl/2.11.5`` ``1.1.2`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXext.md b/docs/version-specific/supported-software/l/libXext.md index f4aae9887..d10a54c15 100644 --- a/docs/version-specific/supported-software/l/libXext.md +++ b/docs/version-specific/supported-software/l/libXext.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXext Common X Extensions library @@ -9,3 +13,6 @@ version | toolchain ``1.3.3`` | ``foss/2016a`` ``1.3.3`` | ``gimkl/2.11.5`` ``1.3.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXfixes.md b/docs/version-specific/supported-software/l/libXfixes.md index d050eb2ce..3ef64ff66 100644 --- a/docs/version-specific/supported-software/l/libXfixes.md +++ b/docs/version-specific/supported-software/l/libXfixes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXfixes X Fixes extension library @@ -10,3 +14,6 @@ version | toolchain ``5.0.1`` | ``gimkl/2.11.5`` ``5.0.1`` | ``intel/2016a`` ``5.0.2`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXfont.md b/docs/version-specific/supported-software/l/libXfont.md index afcd4711f..72064fbf3 100644 --- a/docs/version-specific/supported-software/l/libXfont.md +++ b/docs/version-specific/supported-software/l/libXfont.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXfont X font libary @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.5.1`` | | ``gimkl/2.11.5`` ``1.5.1`` | ``-freetype-2.6.3`` | ``intel/2016a`` ``1.5.1`` | | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXft.md b/docs/version-specific/supported-software/l/libXft.md index 6ce963b81..16985ce64 100644 --- a/docs/version-specific/supported-software/l/libXft.md +++ b/docs/version-specific/supported-software/l/libXft.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXft X11 client-side library @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.3.2`` | | ``foss/2016a`` ``2.3.2`` | ``-fontconfig-2.11.95`` | ``intel/2016a`` ``2.3.2`` | | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXi.md b/docs/version-specific/supported-software/l/libXi.md index ba9cffdcb..1c6705f19 100644 --- a/docs/version-specific/supported-software/l/libXi.md +++ b/docs/version-specific/supported-software/l/libXi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXi LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.7.6`` | ``foss/2016a`` ``1.7.6`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXinerama.md b/docs/version-specific/supported-software/l/libXinerama.md index 5ea0dc2f5..982a3e5dc 100644 --- a/docs/version-specific/supported-software/l/libXinerama.md +++ b/docs/version-specific/supported-software/l/libXinerama.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXinerama Xinerama multiple monitor library @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.3`` | ``foss/2016a`` ``1.1.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXmu.md b/docs/version-specific/supported-software/l/libXmu.md index cecce67ce..f386eb40a 100644 --- a/docs/version-specific/supported-software/l/libXmu.md +++ b/docs/version-specific/supported-software/l/libXmu.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.2`` | ``foss/2016a`` ``1.1.2`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXp.md b/docs/version-specific/supported-software/l/libXp.md index deb9c873d..76bc85bff 100644 --- a/docs/version-specific/supported-software/l/libXp.md +++ b/docs/version-specific/supported-software/l/libXp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXp libXp provides the X print library. @@ -7,3 +11,6 @@ libXp provides the X print library. version | toolchain --------|---------- ``1.0.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXpm.md b/docs/version-specific/supported-software/l/libXpm.md index 522d8cf56..06ba020d1 100644 --- a/docs/version-specific/supported-software/l/libXpm.md +++ b/docs/version-specific/supported-software/l/libXpm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXpm libXp provides the X print library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.5.11`` | ``foss/2016a`` ``3.5.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXrandr.md b/docs/version-specific/supported-software/l/libXrandr.md index c90415a21..c4646bb8e 100644 --- a/docs/version-specific/supported-software/l/libXrandr.md +++ b/docs/version-specific/supported-software/l/libXrandr.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXrandr X Resize, Rotate and Reflection extension library @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2016a`` ``1.5.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXrender.md b/docs/version-specific/supported-software/l/libXrender.md index 4d345a6e1..537009dc0 100644 --- a/docs/version-specific/supported-software/l/libXrender.md +++ b/docs/version-specific/supported-software/l/libXrender.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXrender X11 client-side library @@ -9,3 +13,6 @@ version | toolchain ``0.9.9`` | ``foss/2016a`` ``0.9.9`` | ``gimkl/2.11.5`` ``0.9.9`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXt.md b/docs/version-specific/supported-software/l/libXt.md index 7e0441772..7bb1c2c23 100644 --- a/docs/version-specific/supported-software/l/libXt.md +++ b/docs/version-specific/supported-software/l/libXt.md @@ -1,3 +1,7 @@ +--- +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). @@ -9,3 +13,6 @@ version | toolchain ``1.1.5`` | ``foss/2016a`` ``1.1.5`` | ``gimkl/2.11.5`` ``1.1.5`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libXxf86vm.md b/docs/version-specific/supported-software/l/libXxf86vm.md index ee1311dc1..a8a184da9 100644 --- a/docs/version-specific/supported-software/l/libXxf86vm.md +++ b/docs/version-specific/supported-software/l/libXxf86vm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libXxf86vm X11 XFree86 video mode extension library @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.4`` | ``foss/2016a`` ``1.1.4`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libabigail.md b/docs/version-specific/supported-software/l/libabigail.md index bfa48ab08..9b3228164 100644 --- a/docs/version-specific/supported-software/l/libabigail.md +++ b/docs/version-specific/supported-software/l/libabigail.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ABIGAIL stands for the Application Binary Interface Generic Analysis and Instrum version | toolchain --------|---------- ``2.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libaec.md b/docs/version-specific/supported-software/l/libaec.md index 6b9d78579..9744a077d 100644 --- a/docs/version-specific/supported-software/l/libaec.md +++ b/docs/version-specific/supported-software/l/libaec.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.0.6`` | ``GCCcore/12.2.0`` ``1.0.6`` | ``GCCcore/12.3.0`` ``1.0.6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libaed2.md b/docs/version-specific/supported-software/l/libaed2.md index 1ec11d4af..672a3325b 100644 --- a/docs/version-specific/supported-software/l/libaed2.md +++ b/docs/version-specific/supported-software/l/libaed2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ libaed2 is a library of modules and algorithms for simulation of "aquatic ecodyn version | toolchain --------|---------- ``1.3.0`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libaio.md b/docs/version-specific/supported-software/l/libaio.md index eb0db3d0c..9d5148133 100644 --- a/docs/version-specific/supported-software/l/libaio.md +++ b/docs/version-specific/supported-software/l/libaio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libaio Asynchronous input/output library that uses the kernels native interface. @@ -15,3 +19,6 @@ version | toolchain ``0.3.113`` | ``GCCcore/12.2.0`` ``0.3.113`` | ``GCCcore/12.3.0`` ``0.3.113`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libarchive.md b/docs/version-specific/supported-software/l/libarchive.md index f8e5aa013..d0bd72028 100644 --- a/docs/version-specific/supported-software/l/libarchive.md +++ b/docs/version-specific/supported-software/l/libarchive.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libarchive Multi-format archive and compression library @@ -18,3 +22,6 @@ version | toolchain ``3.6.2`` | ``GCCcore/13.1.0`` ``3.7.2`` | ``GCCcore/13.2.0`` ``3.7.4`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libav.md b/docs/version-specific/supported-software/l/libav.md index 848168042..326410dcb 100644 --- a/docs/version-specific/supported-software/l/libav.md +++ b/docs/version-specific/supported-software/l/libav.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Libav is a friendly and community-driven effort to provide its users with a set version | toolchain --------|---------- ``11.10`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libavif.md b/docs/version-specific/supported-software/l/libavif.md index 29bf88d8c..6c1afc4f2 100644 --- a/docs/version-specific/supported-software/l/libavif.md +++ b/docs/version-specific/supported-software/l/libavif.md @@ -1,3 +1,7 @@ +--- +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/ @@ -10,3 +14,6 @@ version | toolchain ``0.11.1`` | ``GCCcore/11.3.0`` ``0.9.0`` | ``foss/2020b`` ``1.0.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libbaseencode.md b/docs/version-specific/supported-software/l/libbaseencode.md index a3f480ed7..961e5dad5 100644 --- a/docs/version-specific/supported-software/l/libbaseencode.md +++ b/docs/version-specific/supported-software/l/libbaseencode.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libbaseencode Library written in C for encoding and decoding data using base32 or base64 according to RFC-4648 @@ -7,3 +11,6 @@ Library written in C for encoding and decoding data using base32 or base64 acco version | toolchain --------|---------- ``1.0.11`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libbitmask.md b/docs/version-specific/supported-software/l/libbitmask.md index 06cb835f5..2f46c2142 100644 --- a/docs/version-specific/supported-software/l/libbitmask.md +++ b/docs/version-specific/supported-software/l/libbitmask.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libbitmask libbitmask provides a convenient, powerful bitmask data type @@ -7,3 +11,6 @@ libbitmask provides a convenient, powerful bitmask data type version | toolchain --------|---------- ``2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libbraiding.md b/docs/version-specific/supported-software/l/libbraiding.md index 9acacdc73..6bd705f84 100644 --- a/docs/version-specific/supported-software/l/libbraiding.md +++ b/docs/version-specific/supported-software/l/libbraiding.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is a project to expose the functionalitis of the Braiding program as a shar version | toolchain --------|---------- ``1.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcdms.md b/docs/version-specific/supported-software/l/libcdms.md index 1eeedd615..256a953b1 100644 --- a/docs/version-specific/supported-software/l/libcdms.md +++ b/docs/version-specific/supported-software/l/libcdms.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libcdms Climate Data Management System Library. @@ -7,3 +11,6 @@ Climate Data Management System Library. version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcerf.md b/docs/version-specific/supported-software/l/libcerf.md index 58e1ba060..720106f4b 100644 --- a/docs/version-specific/supported-software/l/libcerf.md +++ b/docs/version-specific/supported-software/l/libcerf.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | toolchain ``2.1`` | ``GCCcore/11.3.0`` ``2.3`` | ``GCCcore/12.2.0`` ``2.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcint.md b/docs/version-specific/supported-software/l/libcint.md index 150e447a7..afd4ce4ac 100644 --- a/docs/version-specific/supported-software/l/libcint.md +++ b/docs/version-specific/supported-software/l/libcint.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libcint libcint is an open source library for analytical Gaussian integrals. @@ -12,3 +16,6 @@ version | toolchain ``5.1.6`` | ``foss/2022a`` ``5.4.0`` | ``gfbf/2023a`` ``5.5.0`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcircle.md b/docs/version-specific/supported-software/l/libcircle.md index 1e7cd29c0..d153e861b 100644 --- a/docs/version-specific/supported-software/l/libcircle.md +++ b/docs/version-specific/supported-software/l/libcircle.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.3`` | ``gompi/2022a`` ``0.3`` | ``gompi/2023a`` ``0.3`` | ``iimpi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcmaes.md b/docs/version-specific/supported-software/l/libcmaes.md index 15f429996..2f4956390 100644 --- a/docs/version-specific/supported-software/l/libcmaes.md +++ b/docs/version-specific/supported-software/l/libcmaes.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ libcmaes is a multithreaded C++11 library for high performance blackbox stochast version | toolchain --------|---------- ``0.9.5`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libconfig.md b/docs/version-specific/supported-software/l/libconfig.md index 2783fa584..f096e9439 100644 --- a/docs/version-specific/supported-software/l/libconfig.md +++ b/docs/version-specific/supported-software/l/libconfig.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libconfig Libconfig is a simple library for processing structured configuration files @@ -11,3 +15,6 @@ version | toolchain ``1.7.2`` | ``GCCcore/7.3.0`` ``1.7.3`` | ``GCCcore/10.3.0`` ``1.7.3`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcotp.md b/docs/version-specific/supported-software/l/libcotp.md index 01191abd8..a2b390ad0 100644 --- a/docs/version-specific/supported-software/l/libcotp.md +++ b/docs/version-specific/supported-software/l/libcotp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libcotp C library that generates TOTP and HOTP according to RFC-6238 @@ -7,3 +11,6 @@ C library that generates TOTP and HOTP according to RFC-6238 version | toolchain --------|---------- ``1.2.3`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcpuset.md b/docs/version-specific/supported-software/l/libcpuset.md index d07dc7882..343f76a63 100644 --- a/docs/version-specific/supported-software/l/libcpuset.md +++ b/docs/version-specific/supported-software/l/libcpuset.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libcpuset libcpuset provides full access to cpuset capabilities @@ -7,3 +11,6 @@ libcpuset provides full access to cpuset capabilities version | toolchain --------|---------- ``1.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libcroco.md b/docs/version-specific/supported-software/l/libcroco.md index 4b4358edb..f689a4bd2 100644 --- a/docs/version-specific/supported-software/l/libcroco.md +++ b/docs/version-specific/supported-software/l/libcroco.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libcroco Libcroco is a standalone css2 parsing and manipulation library. @@ -9,3 +13,6 @@ version | toolchain ``0.6.11`` | ``intel/2016a`` ``0.6.13`` | ``GCC/10.2.0`` ``0.6.13`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libctl.md b/docs/version-specific/supported-software/l/libctl.md index 29412990f..1c2f5d3d4 100644 --- a/docs/version-specific/supported-software/l/libctl.md +++ b/docs/version-specific/supported-software/l/libctl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libctl libctl is a free Guile-based library implementing flexible control files for scientific simulations. @@ -10,3 +14,6 @@ version | toolchain ``4.0.0`` | ``intel/2020a`` ``4.1.3`` | ``GCCcore/6.4.0`` ``4.5.1`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libdap.md b/docs/version-specific/supported-software/l/libdap.md index d9dc9821a..936353e1a 100644 --- a/docs/version-specific/supported-software/l/libdap.md +++ b/docs/version-specific/supported-software/l/libdap.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``3.20.7`` | | ``GCCcore/10.3.0`` ``3.20.7`` | | ``GCCcore/9.3.0`` ``3.20.8`` | | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libde265.md b/docs/version-specific/supported-software/l/libde265.md index f49058415..13178567e 100644 --- a/docs/version-specific/supported-software/l/libde265.md +++ b/docs/version-specific/supported-software/l/libde265.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libde265 libde265 is an open source implementation of the h.265 video codec @@ -10,3 +14,6 @@ version | toolchain ``1.0.15`` | ``GCC/12.3.0`` ``1.0.8`` | ``GCC/10.3.0`` ``1.0.8`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libdeflate.md b/docs/version-specific/supported-software/l/libdeflate.md index c9d82b3d0..e68cb3f47 100644 --- a/docs/version-specific/supported-software/l/libdeflate.md +++ b/docs/version-specific/supported-software/l/libdeflate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libdeflate Heavily optimized library for DEFLATE/zlib/gzip compression and decompression. @@ -17,3 +21,6 @@ version | toolchain ``1.7`` | ``GCCcore/9.3.0`` ``1.8`` | ``GCCcore/10.3.0`` ``1.8`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libdivsufsort.md b/docs/version-specific/supported-software/l/libdivsufsort.md index d12d38986..2c546d6b1 100644 --- a/docs/version-specific/supported-software/l/libdivsufsort.md +++ b/docs/version-specific/supported-software/l/libdivsufsort.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libdivsufsort libdivsufsort is a software library that implements a lightweight suffix array construction algorithm. @@ -7,3 +11,6 @@ libdivsufsort is a software library that implements a lightweight suffix array version | toolchain --------|---------- ``2.0.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libdrm.md b/docs/version-specific/supported-software/l/libdrm.md index 7f429de4f..b67cf7ec0 100644 --- a/docs/version-specific/supported-software/l/libdrm.md +++ b/docs/version-specific/supported-software/l/libdrm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libdrm Direct Rendering Manager runtime library. @@ -29,3 +33,6 @@ version | toolchain ``2.4.92`` | ``GCCcore/7.3.0`` ``2.4.97`` | ``GCCcore/8.2.0`` ``2.4.99`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libdrs.md b/docs/version-specific/supported-software/l/libdrs.md index 9468f99e8..7074f382a 100644 --- a/docs/version-specific/supported-software/l/libdrs.md +++ b/docs/version-specific/supported-software/l/libdrs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libdrs PCMDI's old DRS format implementation @@ -7,3 +11,6 @@ PCMDI's old DRS format implementation version | toolchain --------|---------- ``3.1.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libdwarf.md b/docs/version-specific/supported-software/l/libdwarf.md index d27385a49..da43b0a7a 100644 --- a/docs/version-specific/supported-software/l/libdwarf.md +++ b/docs/version-specific/supported-software/l/libdwarf.md @@ -1,3 +1,7 @@ +--- +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)) @@ -17,3 +21,6 @@ version | toolchain ``20201201`` | ``GCCcore/10.2.0`` ``20210305`` | ``GCCcore/10.3.0`` ``20210528`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libedit.md b/docs/version-specific/supported-software/l/libedit.md index b3c0216b4..ce7daeb60 100644 --- a/docs/version-specific/supported-software/l/libedit.md +++ b/docs/version-specific/supported-software/l/libedit.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``20191231`` | ``GCCcore/9.3.0`` ``20210910`` | ``GCCcore/10.3.0`` ``20210910`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libelf.md b/docs/version-specific/supported-software/l/libelf.md index a725d3599..1b6b4f5c2 100644 --- a/docs/version-specific/supported-software/l/libelf.md +++ b/docs/version-specific/supported-software/l/libelf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libelf libelf is a free ELF object file access library @@ -16,3 +20,6 @@ version | toolchain ``0.8.13`` | ``GCCcore/6.3.0`` ``0.8.13`` | ``GCCcore/8.2.0`` ``0.8.13`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libemf.md b/docs/version-specific/supported-software/l/libemf.md index cc4b783bd..44aba8656 100644 --- a/docs/version-specific/supported-software/l/libemf.md +++ b/docs/version-specific/supported-software/l/libemf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libemf Library implementation of ECMA-234 API for the generation of enhanced metafiles. @@ -7,3 +11,6 @@ Library implementation of ECMA-234 API for the generation of enhanced metafiles. version | toolchain --------|---------- ``1.0.13`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libepoxy.md b/docs/version-specific/supported-software/l/libepoxy.md index f2897b97b..b60d2a418 100644 --- a/docs/version-specific/supported-software/l/libepoxy.md +++ b/docs/version-specific/supported-software/l/libepoxy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libepoxy Epoxy is a library for handling OpenGL function pointer management for you @@ -18,3 +22,6 @@ version | toolchain ``1.5.4`` | ``GCCcore/9.3.0`` ``1.5.8`` | ``GCCcore/10.3.0`` ``1.5.8`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libev.md b/docs/version-specific/supported-software/l/libev.md index 271a8508f..3735571af 100644 --- a/docs/version-specific/supported-software/l/libev.md +++ b/docs/version-specific/supported-software/l/libev.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.33`` | ``GCC/11.2.0`` ``4.33`` | ``GCC/11.3.0`` ``4.33`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libevent.md b/docs/version-specific/supported-software/l/libevent.md index 0cce79052..3266dd276 100644 --- a/docs/version-specific/supported-software/l/libevent.md +++ b/docs/version-specific/supported-software/l/libevent.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | toolchain ``2.1.8`` | ``GCCcore/8.2.0`` ``2.1.8`` | ``GCCcore/8.3.0`` ``2.1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libexif.md b/docs/version-specific/supported-software/l/libexif.md index 7ec43dc5b..920675b1a 100644 --- a/docs/version-specific/supported-software/l/libexif.md +++ b/docs/version-specific/supported-software/l/libexif.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libexif A library for parsing, editing, and saving EXIF data. @@ -7,3 +11,6 @@ A library for parsing, editing, and saving EXIF data. version | toolchain --------|---------- ``0.6.24`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libfabric.md b/docs/version-specific/supported-software/l/libfabric.md index baaf9d8dd..9cfab9208 100644 --- a/docs/version-specific/supported-software/l/libfabric.md +++ b/docs/version-specific/supported-software/l/libfabric.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``1.19.0`` | ``GCCcore/13.2.0`` ``1.21.0`` | ``GCCcore/13.3.0`` ``1.9.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libfdf.md b/docs/version-specific/supported-software/l/libfdf.md index a6e21cca1..496646c4b 100644 --- a/docs/version-specific/supported-software/l/libfdf.md +++ b/docs/version-specific/supported-software/l/libfdf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libfdf LibFDF provides a Fortran API to parse files in the Flexible Data Format (FDF). @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libffcall.md b/docs/version-specific/supported-software/l/libffcall.md index 9d48b7a4f..550cfd484 100644 --- a/docs/version-specific/supported-software/l/libffcall.md +++ b/docs/version-specific/supported-software/l/libffcall.md @@ -1,3 +1,7 @@ +--- +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 @@ -10,3 +14,6 @@ version | toolchain ``2.2`` | ``GCCcore/8.3.0`` ``2.2`` | ``GCCcore/9.3.0`` ``2.4`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libffi.md b/docs/version-specific/supported-software/l/libffi.md index a8cc075bc..c42708dc0 100644 --- a/docs/version-specific/supported-software/l/libffi.md +++ b/docs/version-specific/supported-software/l/libffi.md @@ -1,3 +1,7 @@ +--- +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. @@ -33,3 +37,6 @@ version | toolchain ``3.4.4`` | ``GCCcore/13.1.0`` ``3.4.4`` | ``GCCcore/13.2.0`` ``3.4.5`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libfontenc.md b/docs/version-specific/supported-software/l/libfontenc.md index e4448c728..ae39b3b4f 100644 --- a/docs/version-specific/supported-software/l/libfontenc.md +++ b/docs/version-specific/supported-software/l/libfontenc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libfontenc X11 font encoding library @@ -9,3 +13,6 @@ version | toolchain ``1.1.3`` | ``foss/2016a`` ``1.1.3`` | ``gimkl/2.11.5`` ``1.1.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libfyaml.md b/docs/version-specific/supported-software/l/libfyaml.md index f87680ac8..834701080 100644 --- a/docs/version-specific/supported-software/l/libfyaml.md +++ b/docs/version-specific/supported-software/l/libfyaml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libfyaml Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.9`` | ``GCCcore/12.2.0`` ``0.9`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgcrypt.md b/docs/version-specific/supported-software/l/libgcrypt.md index 4f8672161..39ac1f259 100644 --- a/docs/version-specific/supported-software/l/libgcrypt.md +++ b/docs/version-specific/supported-software/l/libgcrypt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgcrypt Libgcrypt is a general purpose cryptographic library originally based on code from GnuPG @@ -15,3 +19,6 @@ version | toolchain ``1.9.2`` | ``GCCcore/10.2.0`` ``1.9.2`` | ``GCCcore/10.3.0`` ``1.9.3`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgd.md b/docs/version-specific/supported-software/l/libgd.md index ea000c6b6..e893818d9 100644 --- a/docs/version-specific/supported-software/l/libgd.md +++ b/docs/version-specific/supported-software/l/libgd.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgd GD is an open source code library for the dynamic creation of images by programmers. @@ -27,3 +31,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/12.2.0`` ``2.3.3`` | ``GCCcore/12.3.0`` ``2.3.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgdiplus.md b/docs/version-specific/supported-software/l/libgdiplus.md index d21a0b51b..c9a5f5739 100644 --- a/docs/version-specific/supported-software/l/libgdiplus.md +++ b/docs/version-specific/supported-software/l/libgdiplus.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgdiplus Libgdiplus is the Mono library that provides a GDI+-compatible API on non-Windows operating systems. @@ -7,3 +11,6 @@ Libgdiplus is the Mono library that provides a GDI+-compatible API on non-Windo version | toolchain --------|---------- ``6.1`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgeotiff.md b/docs/version-specific/supported-software/l/libgeotiff.md index 88107d2f9..47d274cc5 100644 --- a/docs/version-specific/supported-software/l/libgeotiff.md +++ b/docs/version-specific/supported-software/l/libgeotiff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgeotiff Library for reading and writing coordinate system information from/to GeoTIFF files @@ -18,3 +22,6 @@ version | toolchain ``1.7.1`` | ``GCCcore/11.3.0`` ``1.7.1`` | ``GCCcore/12.2.0`` ``1.7.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgit2.md b/docs/version-specific/supported-software/l/libgit2.md index 419b54943..85f638017 100644 --- a/docs/version-specific/supported-software/l/libgit2.md +++ b/docs/version-specific/supported-software/l/libgit2.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``1.5.0`` | ``GCCcore/12.2.0`` ``1.7.1`` | ``GCCcore/12.3.0`` ``1.7.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libglade.md b/docs/version-specific/supported-software/l/libglade.md index 21a1d42db..37402a251 100644 --- a/docs/version-specific/supported-software/l/libglade.md +++ b/docs/version-specific/supported-software/l/libglade.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libglade Libglade is a library for constructing user interfaces dynamically from XML descriptions. @@ -10,3 +14,6 @@ version | toolchain ``2.6.4`` | ``intel/2016a`` ``2.6.4`` | ``intel/2017b`` ``2.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libglvnd.md b/docs/version-specific/supported-software/l/libglvnd.md index 6460a427b..c4be43d64 100644 --- a/docs/version-specific/supported-software/l/libglvnd.md +++ b/docs/version-specific/supported-software/l/libglvnd.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libglvnd libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. @@ -16,3 +20,6 @@ version | toolchain ``1.6.0`` | ``GCCcore/12.2.0`` ``1.6.0`` | ``GCCcore/12.3.0`` ``1.7.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgpg-error.md b/docs/version-specific/supported-software/l/libgpg-error.md index fef204d54..2c9511911 100644 --- a/docs/version-specific/supported-software/l/libgpg-error.md +++ b/docs/version-specific/supported-software/l/libgpg-error.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgpg-error Libgpg-error is a small library that defines common error values for all GnuPG components. @@ -15,3 +19,6 @@ version | toolchain ``1.42`` | ``GCCcore/11.2.0`` ``1.46`` | ``GCCcore/11.3.0`` ``1.48`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgpuarray.md b/docs/version-specific/supported-software/l/libgpuarray.md index 5a1fe8829..7ca531113 100644 --- a/docs/version-specific/supported-software/l/libgpuarray.md +++ b/docs/version-specific/supported-software/l/libgpuarray.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgpuarray Library to manipulate tensors on the GPU. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``0.7.6`` | | ``fosscuda/2019a`` ``0.7.6`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``0.7.6`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgtextutils.md b/docs/version-specific/supported-software/l/libgtextutils.md index b7e5a4bca..cabe8bfde 100644 --- a/docs/version-specific/supported-software/l/libgtextutils.md +++ b/docs/version-specific/supported-software/l/libgtextutils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgtextutils ligtextutils is a dependency of fastx-toolkit and is provided via the same upstream @@ -10,3 +14,6 @@ version | toolchain ``0.7`` | ``foss/2016a`` ``0.7`` | ``foss/2016b`` ``0.7`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libgxps.md b/docs/version-specific/supported-software/l/libgxps.md index f5a55e93e..9083eae7b 100644 --- a/docs/version-specific/supported-software/l/libgxps.md +++ b/docs/version-specific/supported-software/l/libgxps.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libgxps libgxps is a GObject based library for handling and rendering XPS documents. @@ -7,3 +11,6 @@ libgxps is a GObject based library for handling and rendering XPS documents. version | toolchain --------|---------- ``0.3.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libhandy.md b/docs/version-specific/supported-software/l/libhandy.md index bda31c252..1e5df4c0c 100644 --- a/docs/version-specific/supported-software/l/libhandy.md +++ b/docs/version-specific/supported-software/l/libhandy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libhandy Building blocks for modern adaptive GNOME apps @@ -7,3 +11,6 @@ Building blocks for modern adaptive GNOME apps version | toolchain --------|---------- ``1.8.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libharu.md b/docs/version-specific/supported-software/l/libharu.md index e41073f46..f17d8f14d 100644 --- a/docs/version-specific/supported-software/l/libharu.md +++ b/docs/version-specific/supported-software/l/libharu.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libharu libHaru is a free, cross platform, open source library for generating PDF files. @@ -19,3 +23,6 @@ version | toolchain ``2.3.0`` | ``foss/2021b`` ``2.3.0`` | ``intel/2017a`` ``2.3.0`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libheif.md b/docs/version-specific/supported-software/l/libheif.md index 8f97594f6..737ad75f6 100644 --- a/docs/version-specific/supported-software/l/libheif.md +++ b/docs/version-specific/supported-software/l/libheif.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libheif libheif is an HEIF and AVIF file format decoder and encoder @@ -10,3 +14,6 @@ version | toolchain ``1.12.0`` | ``GCC/11.2.0`` ``1.16.2`` | ``GCC/11.3.0`` ``1.17.6`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libhomfly.md b/docs/version-specific/supported-software/l/libhomfly.md index 8e819c2a8..6b843362b 100644 --- a/docs/version-specific/supported-software/l/libhomfly.md +++ b/docs/version-specific/supported-software/l/libhomfly.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is basically a conversion of the program written by Robert J Jenkins Jr int version | toolchain --------|---------- ``1.02r6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libibmad.md b/docs/version-specific/supported-software/l/libibmad.md index 56df3d07e..b2b9d2d40 100644 --- a/docs/version-specific/supported-software/l/libibmad.md +++ b/docs/version-specific/supported-software/l/libibmad.md @@ -1,3 +1,7 @@ +--- +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.) @@ -7,3 +11,6 @@ libibmad is a convenience library to encode, decode, and dump IB MAD packets. It version | toolchain --------|---------- ``1.3.12`` | ``GCC/4.9.3-2.25`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libibumad.md b/docs/version-specific/supported-software/l/libibumad.md index 3b301309a..92167a42d 100644 --- a/docs/version-specific/supported-software/l/libibumad.md +++ b/docs/version-specific/supported-software/l/libibumad.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libibumad libibumad is the umad kernel interface library. @@ -7,3 +11,6 @@ libibumad is the umad kernel interface library. version | toolchain --------|---------- ``1.3.10.2`` | ``GCC/4.9.3-2.25`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libiconv.md b/docs/version-specific/supported-software/l/libiconv.md index ebc1da7b3..4cb6922c5 100644 --- a/docs/version-specific/supported-software/l/libiconv.md +++ b/docs/version-specific/supported-software/l/libiconv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libiconv Libiconv converts from one character encoding to another through Unicode conversion @@ -21,3 +25,6 @@ version | toolchain ``1.17`` | ``GCCcore/12.3.0`` ``1.17`` | ``GCCcore/13.2.0`` ``1.17`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libidn.md b/docs/version-specific/supported-software/l/libidn.md index e61858692..bc7b473ec 100644 --- a/docs/version-specific/supported-software/l/libidn.md +++ b/docs/version-specific/supported-software/l/libidn.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``1.36`` | ``GCCcore/10.3.0`` ``1.38`` | ``GCCcore/11.2.0`` ``1.41`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libidn2.md b/docs/version-specific/supported-software/l/libidn2.md index db88ce77e..794d84735 100644 --- a/docs/version-specific/supported-software/l/libidn2.md +++ b/docs/version-specific/supported-software/l/libidn2.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``2.3.2`` | ``GCCcore/11.3.0`` ``2.3.2`` | ``GCCcore/13.2.0`` ``2.3.7`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libjpeg-turbo.md b/docs/version-specific/supported-software/l/libjpeg-turbo.md index 10962e901..48677afae 100644 --- a/docs/version-specific/supported-software/l/libjpeg-turbo.md +++ b/docs/version-specific/supported-software/l/libjpeg-turbo.md @@ -1,3 +1,7 @@ +--- +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. @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``2.1.5.1`` | | ``GCCcore/12.3.0`` ``3.0.1`` | | ``GCCcore/13.2.0`` ``3.0.1`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libjxl.md b/docs/version-specific/supported-software/l/libjxl.md index fd86b0f8f..eea3293c7 100644 --- a/docs/version-specific/supported-software/l/libjxl.md +++ b/docs/version-specific/supported-software/l/libjxl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libjxl JPEG XL image format reference implementation @@ -11,3 +15,6 @@ version | toolchain ``0.8.1`` | ``foss/2022a`` ``0.8.2`` | ``GCCcore/12.3.0`` ``0.8.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libleidenalg.md b/docs/version-specific/supported-software/l/libleidenalg.md index 7422f0568..513ae3a57 100644 --- a/docs/version-specific/supported-software/l/libleidenalg.md +++ b/docs/version-specific/supported-software/l/libleidenalg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libleidenalg Implements the Leiden algorithm in C++ @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.11.1`` | ``foss/2022b`` ``0.11.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmad.md b/docs/version-specific/supported-software/l/libmad.md index 5bb7e631c..0f636c635 100644 --- a/docs/version-specific/supported-software/l/libmad.md +++ b/docs/version-specific/supported-software/l/libmad.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libmad MAD is a high-quality MPEG audio decoder. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.15.1b`` | ``GCCcore/11.3.0`` ``0.15.1b`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmatheval.md b/docs/version-specific/supported-software/l/libmatheval.md index 0615ec72c..fcead85dc 100644 --- a/docs/version-specific/supported-software/l/libmatheval.md +++ b/docs/version-specific/supported-software/l/libmatheval.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libmatheval GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text. @@ -15,3 +19,6 @@ version | toolchain ``1.1.11`` | ``foss/2017a`` ``1.1.11`` | ``intel/2016a`` ``1.1.11`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmaus2.md b/docs/version-specific/supported-software/l/libmaus2.md index f482698ba..58de17cac 100644 --- a/docs/version-specific/supported-software/l/libmaus2.md +++ b/docs/version-specific/supported-software/l/libmaus2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libmaus2 libmaus2 is a collection of data structures and algorithms. @@ -9,3 +13,6 @@ version | toolchain ``2.0.453`` | ``intel/2018a`` ``2.0.499`` | ``GCC/11.3.0`` ``2.0.813`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmbd.md b/docs/version-specific/supported-software/l/libmbd.md index 2266af3da..ea5272f61 100644 --- a/docs/version-specific/supported-software/l/libmbd.md +++ b/docs/version-specific/supported-software/l/libmbd.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``0.10.4`` | ``foss/2021a`` ``0.10.4`` | ``intel/2020b`` ``0.10.4`` | ``intel/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmicrohttpd.md b/docs/version-specific/supported-software/l/libmicrohttpd.md index 3c390ad66..ba870643c 100644 --- a/docs/version-specific/supported-software/l/libmicrohttpd.md +++ b/docs/version-specific/supported-software/l/libmicrohttpd.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``0.9.73`` | ``GCCcore/10.2.0`` ``0.9.73`` | ``GCCcore/8.2.0`` ``0.9.73`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmo_unpack.md b/docs/version-specific/supported-software/l/libmo_unpack.md index 7ccf5587f..ca94f484c 100644 --- a/docs/version-specific/supported-software/l/libmo_unpack.md +++ b/docs/version-specific/supported-software/l/libmo_unpack.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libmo_unpack A library for handling the WGDOS and RLE compression schemes used in UM files. @@ -7,3 +11,6 @@ A library for handling the WGDOS and RLE compression schemes used in UM files. version | toolchain --------|---------- ``3.1.2`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libmypaint.md b/docs/version-specific/supported-software/l/libmypaint.md index 298673dcf..bcf172aaf 100644 --- a/docs/version-specific/supported-software/l/libmypaint.md +++ b/docs/version-specific/supported-software/l/libmypaint.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libmypaint libmypaint, a.k.a. "brushlib", is a library for making brushstrokes which is used by MyPaint and other projects @@ -7,3 +11,6 @@ libmypaint, a.k.a. "brushlib", is a library for making brushstrokes which is use version | toolchain --------|---------- ``1.6.1`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libnsl.md b/docs/version-specific/supported-software/l/libnsl.md index ca2d6a7d8..dd1a1710f 100644 --- a/docs/version-specific/supported-software/l/libnsl.md +++ b/docs/version-specific/supported-software/l/libnsl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libnsl The libnsl package contains the public client interface for NIS(YP). @@ -10,3 +14,6 @@ version | toolchain ``2.0.0`` | ``GCCcore/11.3.0`` ``2.0.0`` | ``GCCcore/12.2.0`` ``2.0.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libobjcryst.md b/docs/version-specific/supported-software/l/libobjcryst.md index 4dfb02602..059660054 100644 --- a/docs/version-specific/supported-software/l/libobjcryst.md +++ b/docs/version-specific/supported-software/l/libobjcryst.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libobjcryst ObjCryst++ is Object-Oriented Crystallographic Library for C++ @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2017.2.3`` | ``intel/2020a`` ``2021.1.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libogg.md b/docs/version-specific/supported-software/l/libogg.md index 58e29108b..cb4c1e978 100644 --- a/docs/version-specific/supported-software/l/libogg.md +++ b/docs/version-specific/supported-software/l/libogg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libogg Ogg is a multimedia container format, and the native file and stream format for the Xiph.org multimedia codecs. @@ -12,3 +16,6 @@ version | toolchain ``1.3.5`` | ``GCCcore/11.3.0`` ``1.3.5`` | ``GCCcore/12.2.0`` ``1.3.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libopus.md b/docs/version-specific/supported-software/l/libopus.md index 5fb60ebca..6014bf9dd 100644 --- a/docs/version-specific/supported-software/l/libopus.md +++ b/docs/version-specific/supported-software/l/libopus.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/11.3.0`` ``1.3.1`` | ``GCCcore/12.2.0`` ``1.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libosmium.md b/docs/version-specific/supported-software/l/libosmium.md index d0eabbc75..beb24ac80 100644 --- a/docs/version-specific/supported-software/l/libosmium.md +++ b/docs/version-specific/supported-software/l/libosmium.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.15.4`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.15.6`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpci.md b/docs/version-specific/supported-software/l/libpci.md index 88cbf27d3..c1ee7fd39 100644 --- a/docs/version-specific/supported-software/l/libpci.md +++ b/docs/version-specific/supported-software/l/libpci.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libpci Library for portable access to PCI bus configuration registers from PCI Utils. @@ -10,3 +14,6 @@ version | toolchain ``3.7.0`` | ``GCCcore/10.3.0`` ``3.7.0`` | ``GCCcore/11.2.0`` ``3.7.0`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpciaccess.md b/docs/version-specific/supported-software/l/libpciaccess.md index de3eed78d..9c77f8f6f 100644 --- a/docs/version-specific/supported-software/l/libpciaccess.md +++ b/docs/version-specific/supported-software/l/libpciaccess.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libpciaccess Generic PCI access library. @@ -26,3 +30,6 @@ version | toolchain ``0.17`` | ``GCCcore/12.3.0`` ``0.17`` | ``GCCcore/13.2.0`` ``0.18.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libplinkio.md b/docs/version-specific/supported-software/l/libplinkio.md index 9fc21aa61..6b812da5f 100644 --- a/docs/version-specific/supported-software/l/libplinkio.md +++ b/docs/version-specific/supported-software/l/libplinkio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libplinkio A small C and Python library for reading PLINK genotype files. @@ -7,3 +11,6 @@ A small C and Python library for reading PLINK genotype files. version | toolchain --------|---------- ``0.9.8`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpng.md b/docs/version-specific/supported-software/l/libpng.md index 00cf0fbf7..f17f2b796 100644 --- a/docs/version-specific/supported-software/l/libpng.md +++ b/docs/version-specific/supported-software/l/libpng.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libpng libpng is the official PNG reference library @@ -40,3 +44,6 @@ version | toolchain ``1.6.39`` | ``GCCcore/12.3.0`` ``1.6.40`` | ``GCCcore/13.2.0`` ``1.6.43`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpsl.md b/docs/version-specific/supported-software/l/libpsl.md index a878670bc..555b834ef 100644 --- a/docs/version-specific/supported-software/l/libpsl.md +++ b/docs/version-specific/supported-software/l/libpsl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libpsl C library for the Public Suffix List @@ -13,3 +17,6 @@ version | toolchain ``0.21.1`` | ``GCCcore/10.3.0`` ``0.21.1`` | ``GCCcore/11.2.0`` ``0.21.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpsortb.md b/docs/version-specific/supported-software/l/libpsortb.md index 9a094bfc2..614b4f0b3 100644 --- a/docs/version-specific/supported-software/l/libpsortb.md +++ b/docs/version-specific/supported-software/l/libpsortb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libpsortb PSORT family of programs for subcellular localization prediction as well as other datasets and resources relevant to localization prediction. @@ -7,3 +11,6 @@ PSORT family of programs for subcellular localization prediction as well as othe version | toolchain --------|---------- ``1.0`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpspio.md b/docs/version-specific/supported-software/l/libpspio.md index 73d9c296a..5395352eb 100644 --- a/docs/version-specific/supported-software/l/libpspio.md +++ b/docs/version-specific/supported-software/l/libpspio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libpspio libpspio is a library to read and write pseudopotentials in multiple formats. @@ -12,3 +16,6 @@ version | toolchain ``0.2.4`` | ``iccifort/2020.4.304`` ``0.2.4`` | ``intel-compilers/2021.2.0`` ``0.2.4`` | ``intel-compilers/2021.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libpthread-stubs.md b/docs/version-specific/supported-software/l/libpthread-stubs.md index 59ae6a9f8..bf9ce83e0 100644 --- a/docs/version-specific/supported-software/l/libpthread-stubs.md +++ b/docs/version-specific/supported-software/l/libpthread-stubs.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.3`` | ``intel/2016a`` ``0.3`` | ``intel/2016b`` ``0.4`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libreadline.md b/docs/version-specific/supported-software/l/libreadline.md index e6ad0d2bd..54dfb809d 100644 --- a/docs/version-specific/supported-software/l/libreadline.md +++ b/docs/version-specific/supported-software/l/libreadline.md @@ -1,3 +1,7 @@ +--- +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. @@ -46,3 +50,6 @@ version | toolchain ``8.2`` | ``GCCcore/13.1.0`` ``8.2`` | ``GCCcore/13.2.0`` ``8.2`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/librosa.md b/docs/version-specific/supported-software/l/librosa.md index ec093eab1..f7871b2ba 100644 --- a/docs/version-specific/supported-software/l/librosa.md +++ b/docs/version-specific/supported-software/l/librosa.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # librosa Audio and music processing in Python @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/librsb.md b/docs/version-specific/supported-software/l/librsb.md index f557264ee..5a91ae72a 100644 --- a/docs/version-specific/supported-software/l/librsb.md +++ b/docs/version-specific/supported-software/l/librsb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # librsb A shared memory parallel sparse matrix computations library for the Recursive Sparse Blocks format @@ -11,3 +15,6 @@ version | toolchain ``1.2.0.9`` | ``GCC/10.2.0`` ``1.3.0.0`` | ``GCC/10.2.0`` ``1.3.0.1`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/librsvg.md b/docs/version-specific/supported-software/l/librsvg.md index 5b42a35e8..3f6a927b6 100644 --- a/docs/version-specific/supported-software/l/librsvg.md +++ b/docs/version-specific/supported-software/l/librsvg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # librsvg librsvg is a library to render SVG files using cairo. @@ -12,3 +16,6 @@ version | toolchain ``2.52.8`` | ``GCCcore/11.2.0`` ``2.55.1`` | ``GCCcore/11.3.0`` ``2.58.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/librttopo.md b/docs/version-specific/supported-software/l/librttopo.md index 01bdc404c..a10c8ba09 100644 --- a/docs/version-specific/supported-software/l/librttopo.md +++ b/docs/version-specific/supported-software/l/librttopo.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The RT Topology Library exposes an API to create and manage standard (ISO 13249 version | toolchain --------|---------- ``1.1.0`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libsamplerate.md b/docs/version-specific/supported-software/l/libsamplerate.md index b9eb65e1d..832ca705b 100644 --- a/docs/version-specific/supported-software/l/libsamplerate.md +++ b/docs/version-specific/supported-software/l/libsamplerate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libsamplerate Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. @@ -7,3 +11,6 @@ Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. version | toolchain --------|---------- ``0.1.9`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libsigc++.md b/docs/version-specific/supported-software/l/libsigc++.md index 5c01bf61f..bc1319a38 100644 --- a/docs/version-specific/supported-software/l/libsigc++.md +++ b/docs/version-specific/supported-software/l/libsigc++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libsigc++ The libsigc++ package implements a typesafe callback system for standard C++. @@ -13,3 +17,6 @@ version | toolchain ``2.10.8`` | ``GCCcore/10.3.0`` ``2.12.1`` | ``GCCcore/11.3.0`` ``3.4.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libsigsegv.md b/docs/version-specific/supported-software/l/libsigsegv.md index 203e32a7f..a4c6d1302 100644 --- a/docs/version-specific/supported-software/l/libsigsegv.md +++ b/docs/version-specific/supported-software/l/libsigsegv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libsigsegv GNU libsigsegv is a library for handling page faults in user mode. @@ -10,3 +14,6 @@ version | toolchain ``2.12`` | ``GCCcore/9.3.0`` ``2.13`` | ``GCCcore/10.2.0`` ``2.14`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libsndfile.md b/docs/version-specific/supported-software/l/libsndfile.md index cbc4e3fc5..b36697d0a 100644 --- a/docs/version-specific/supported-software/l/libsndfile.md +++ b/docs/version-specific/supported-software/l/libsndfile.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/11.3.0`` ``1.2.0`` | ``GCCcore/12.2.0`` ``1.2.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libsodium.md b/docs/version-specific/supported-software/l/libsodium.md index a40c848e9..ec2a38439 100644 --- a/docs/version-specific/supported-software/l/libsodium.md +++ b/docs/version-specific/supported-software/l/libsodium.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libsodium Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more. @@ -26,3 +30,6 @@ version | toolchain ``1.0.19`` | ``GCCcore/13.2.0`` ``1.0.6`` | ``intel/2016a`` ``1.0.8`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libspatialindex.md b/docs/version-specific/supported-software/l/libspatialindex.md index c1f5afea4..7979d8b97 100644 --- a/docs/version-specific/supported-software/l/libspatialindex.md +++ b/docs/version-specific/supported-software/l/libspatialindex.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libspatialindex C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API @@ -16,3 +20,6 @@ version | toolchain ``1.9.3`` | ``GCCcore/12.2.0`` ``1.9.3`` | ``GCCcore/12.3.0`` ``1.9.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libspatialite.md b/docs/version-specific/supported-software/l/libspatialite.md index 6ce72b4ff..7590597d8 100644 --- a/docs/version-specific/supported-software/l/libspatialite.md +++ b/docs/version-specific/supported-software/l/libspatialite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libspatialite SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``4.3.0a`` | ``-Python-3.7.2`` | ``foss/2019a`` ``4.3.0a`` | | ``intel/2016b`` ``5.0.1`` | | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libspectre.md b/docs/version-specific/supported-software/l/libspectre.md index 4373b7069..8ef18837f 100644 --- a/docs/version-specific/supported-software/l/libspectre.md +++ b/docs/version-specific/supported-software/l/libspectre.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ libspectre is a small library for rendering Postscript documents. It provides a version | toolchain --------|---------- ``0.2.12`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libssh.md b/docs/version-specific/supported-software/l/libssh.md index f52b83774..ceef06d81 100644 --- a/docs/version-specific/supported-software/l/libssh.md +++ b/docs/version-specific/supported-software/l/libssh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libssh Multiplatform C library implementing the SSHv2 protocol on client and server side @@ -7,3 +11,6 @@ Multiplatform C library implementing the SSHv2 protocol on client and server sid version | toolchain --------|---------- ``0.9.0`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libsupermesh.md b/docs/version-specific/supported-software/l/libsupermesh.md index 028eb6d2a..8806cdaec 100644 --- a/docs/version-specific/supported-software/l/libsupermesh.md +++ b/docs/version-specific/supported-software/l/libsupermesh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libsupermesh libsupermesh parallel supermeshing library. @@ -7,3 +11,6 @@ libsupermesh parallel supermeshing library. version | toolchain --------|---------- ``2025-01-25`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libtar.md b/docs/version-specific/supported-software/l/libtar.md index b53dd704d..1f3187eb5 100644 --- a/docs/version-specific/supported-software/l/libtar.md +++ b/docs/version-specific/supported-software/l/libtar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libtar C library for manipulating POSIX tar files @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.20`` | ``GCCcore/7.3.0`` ``1.2.20`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libtasn1.md b/docs/version-specific/supported-software/l/libtasn1.md index 93da56b75..8d694eaca 100644 --- a/docs/version-specific/supported-software/l/libtasn1.md +++ b/docs/version-specific/supported-software/l/libtasn1.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``4.7`` | ``GNU/4.9.3-2.25`` ``4.7`` | ``foss/2016a`` ``4.7`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libtecla.md b/docs/version-specific/supported-software/l/libtecla.md index 7ddd1e660..3c6e08967 100644 --- a/docs/version-specific/supported-software/l/libtecla.md +++ b/docs/version-specific/supported-software/l/libtecla.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The tecla library provides UNIX and LINUX programs with interactive command line version | toolchain --------|---------- ``1.6.3`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libtirpc.md b/docs/version-specific/supported-software/l/libtirpc.md index 300bb172a..2c5627009 100644 --- a/docs/version-specific/supported-software/l/libtirpc.md +++ b/docs/version-specific/supported-software/l/libtirpc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libtirpc Libtirpc is a port of Suns Transport-Independent RPC library to Linux. @@ -17,3 +21,6 @@ version | toolchain ``1.3.3`` | ``GCCcore/12.2.0`` ``1.3.3`` | ``GCCcore/12.3.0`` ``1.3.4`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libtool.md b/docs/version-specific/supported-software/l/libtool.md index dfd57b3b6..fe8136d01 100644 --- a/docs/version-specific/supported-software/l/libtool.md +++ b/docs/version-specific/supported-software/l/libtool.md @@ -1,3 +1,7 @@ +--- +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. @@ -54,3 +58,6 @@ version | toolchain ``2.4.7`` | ``GCCcore/13.2.0`` ``2.4.7`` | ``GCCcore/13.3.0`` ``2.4.7`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libtree.md b/docs/version-specific/supported-software/l/libtree.md index e59d9b93b..64ecb7872 100644 --- a/docs/version-specific/supported-software/l/libtree.md +++ b/docs/version-specific/supported-software/l/libtree.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``GCCcore/10.3.0`` ``3.0.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libunistring.md b/docs/version-specific/supported-software/l/libunistring.md index f70451f10..48f126c30 100644 --- a/docs/version-specific/supported-software/l/libunistring.md +++ b/docs/version-specific/supported-software/l/libunistring.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libunistring This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard. @@ -24,3 +28,6 @@ version | toolchain ``1.0`` | ``GCCcore/11.3.0`` ``1.1`` | ``GCCcore/10.2.0`` ``1.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libunwind.md b/docs/version-specific/supported-software/l/libunwind.md index 55178ba4c..1815eda4a 100644 --- a/docs/version-specific/supported-software/l/libunwind.md +++ b/docs/version-specific/supported-software/l/libunwind.md @@ -1,3 +1,7 @@ +--- +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 @@ -24,3 +28,6 @@ version | toolchain ``1.6.2`` | ``GCCcore/12.2.0`` ``1.6.2`` | ``GCCcore/12.3.0`` ``1.6.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libutempter.md b/docs/version-specific/supported-software/l/libutempter.md index cf8ad4174..45dba359a 100644 --- a/docs/version-specific/supported-software/l/libutempter.md +++ b/docs/version-specific/supported-software/l/libutempter.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ libutempter is library that provides an interface for terminal emulators such a version | toolchain --------|---------- ``1.1.6.2`` | ``GCC/6.4.0-2.28`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libuv.md b/docs/version-specific/supported-software/l/libuv.md index 179b72d08..849ec4cb9 100644 --- a/docs/version-specific/supported-software/l/libuv.md +++ b/docs/version-specific/supported-software/l/libuv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libuv libuv is a multi-platform support library with a focus on asynchronous I/O. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.37.0`` | ``GCCcore/8.3.0`` ``1.48.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libvdwxc.md b/docs/version-specific/supported-software/l/libvdwxc.md index d4580fc05..82cbffc72 100644 --- a/docs/version-specific/supported-software/l/libvdwxc.md +++ b/docs/version-specific/supported-software/l/libvdwxc.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``0.4.0`` | ``intel/2020b`` ``0.4.0`` | ``intel/2021a`` ``0.4.0`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libvorbis.md b/docs/version-specific/supported-software/l/libvorbis.md index ba13c8553..c88d3767a 100644 --- a/docs/version-specific/supported-software/l/libvorbis.md +++ b/docs/version-specific/supported-software/l/libvorbis.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libvorbis Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed audio format @@ -12,3 +16,6 @@ version | toolchain ``1.3.7`` | ``GCCcore/11.3.0`` ``1.3.7`` | ``GCCcore/12.2.0`` ``1.3.7`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libvori.md b/docs/version-specific/supported-software/l/libvori.md index 2f683c7c7..c8c8f2ed1 100644 --- a/docs/version-specific/supported-software/l/libvori.md +++ b/docs/version-specific/supported-software/l/libvori.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``220621`` | ``GCCcore/11.3.0`` ``220621`` | ``GCCcore/12.2.0`` ``220621`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libwebp.md b/docs/version-specific/supported-software/l/libwebp.md index 062eb3f87..0a6d37c95 100644 --- a/docs/version-specific/supported-software/l/libwebp.md +++ b/docs/version-specific/supported-software/l/libwebp.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/12.2.0`` ``1.3.1`` | ``GCCcore/12.3.0`` ``1.3.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libwpe.md b/docs/version-specific/supported-software/l/libwpe.md index bd49e5cc8..c79ae0d05 100644 --- a/docs/version-specific/supported-software/l/libwpe.md +++ b/docs/version-specific/supported-software/l/libwpe.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.13.3`` | ``GCCcore/11.2.0`` ``1.14.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxc.md b/docs/version-specific/supported-software/l/libxc.md index cc87091fa..e3b03f960 100644 --- a/docs/version-specific/supported-software/l/libxc.md +++ b/docs/version-specific/supported-software/l/libxc.md @@ -1,3 +1,7 @@ +--- +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. @@ -67,3 +71,6 @@ version | toolchain ``6.2.2`` | ``GCC/13.2.0`` ``6.2.2`` | ``intel-compilers/2023.1.0`` ``6.2.2`` | ``intel-compilers/2023.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxcb.md b/docs/version-specific/supported-software/l/libxcb.md index 1e2cd07cf..9db8c48f8 100644 --- a/docs/version-specific/supported-software/l/libxcb.md +++ b/docs/version-specific/supported-software/l/libxcb.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.11.1`` | ``gimkl/2.11.5`` ``1.11.1`` | ``intel/2016a`` ``1.13`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxkbcommon.md b/docs/version-specific/supported-software/l/libxkbcommon.md index 5f0f848ce..ff8b2689f 100644 --- a/docs/version-specific/supported-software/l/libxkbcommon.md +++ b/docs/version-specific/supported-software/l/libxkbcommon.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.6.1`` | ``foss/2016a`` ``0.6.1`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxml++.md b/docs/version-specific/supported-software/l/libxml++.md index 048f72275..06189cab7 100644 --- a/docs/version-specific/supported-software/l/libxml++.md +++ b/docs/version-specific/supported-software/l/libxml++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libxml++ libxml++ is a C++ wrapper for the libxml XML parser library. @@ -10,3 +14,6 @@ version | toolchain ``2.40.1`` | ``GCCcore/8.2.0`` ``2.40.1`` | ``GCCcore/8.3.0`` ``2.42.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxml2-python.md b/docs/version-specific/supported-software/l/libxml2-python.md index 649d299e2..2a1ac6687 100644 --- a/docs/version-specific/supported-software/l/libxml2-python.md +++ b/docs/version-specific/supported-software/l/libxml2-python.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxml2.md b/docs/version-specific/supported-software/l/libxml2.md index 8bb52c2f3..4b354620d 100644 --- a/docs/version-specific/supported-software/l/libxml2.md +++ b/docs/version-specific/supported-software/l/libxml2.md @@ -1,3 +1,7 @@ +--- +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). @@ -48,3 +52,6 @@ version | versionsuffix | toolchain ``2.9.8`` | | ``GCCcore/7.3.0`` ``2.9.8`` | | ``GCCcore/8.2.0`` ``2.9.9`` | | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxslt.md b/docs/version-specific/supported-software/l/libxslt.md index aa7434418..4b9c3b8d8 100644 --- a/docs/version-specific/supported-software/l/libxslt.md +++ b/docs/version-specific/supported-software/l/libxslt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libxslt Libxslt is the XSLT C library developed for the GNOME project (but usable outside of the Gnome platform). @@ -26,3 +30,6 @@ version | versionsuffix | toolchain ``1.1.37`` | | ``GCCcore/12.2.0`` ``1.1.38`` | | ``GCCcore/12.3.0`` ``1.1.38`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libxsmm.md b/docs/version-specific/supported-software/l/libxsmm.md index 9ae04b231..38a5f4ee8 100644 --- a/docs/version-specific/supported-software/l/libxsmm.md +++ b/docs/version-specific/supported-software/l/libxsmm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libxsmm LIBXSMM is a library for small dense and small sparse matrix-matrix multiplications targeting Intel Architecture (x86). @@ -28,3 +32,6 @@ version | toolchain ``1.8.2`` | ``intel/2017b`` ``1.8.3`` | ``foss/2018a`` ``1.8.3`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libyaml.md b/docs/version-specific/supported-software/l/libyaml.md index 1650d924e..59d375673 100644 --- a/docs/version-specific/supported-software/l/libyaml.md +++ b/docs/version-specific/supported-software/l/libyaml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libyaml LibYAML is a YAML parser and emitter written in C. @@ -27,3 +31,6 @@ version | toolchain ``0.2.5`` | ``GCCcore/12.3.0`` ``0.2.5`` | ``GCCcore/13.2.0`` ``0.2.5`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libzeep.md b/docs/version-specific/supported-software/l/libzeep.md index 4aa84aa11..ecf4d7438 100644 --- a/docs/version-specific/supported-software/l/libzeep.md +++ b/docs/version-specific/supported-software/l/libzeep.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libzeep Libzeep was originally developed to make it easy to create SOAP servers. @@ -7,3 +11,6 @@ Libzeep was originally developed to make it easy to create SOAP servers. version | toolchain --------|---------- ``5.0.1`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/libzip.md b/docs/version-specific/supported-software/l/libzip.md index a9e33c604..06823028d 100644 --- a/docs/version-specific/supported-software/l/libzip.md +++ b/docs/version-specific/supported-software/l/libzip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # libzip libzip is a C library for reading, creating, and modifying zip archives. @@ -11,3 +15,6 @@ version | toolchain ``1.7.3`` | ``GCCcore/10.3.0`` ``1.7.3`` | ``GCCcore/11.2.0`` ``1.9.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lie_learn.md b/docs/version-specific/supported-software/l/lie_learn.md index c28af0a78..3c19126c0 100644 --- a/docs/version-specific/supported-software/l/lie_learn.md +++ b/docs/version-specific/supported-software/l/lie_learn.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ lie_learn is a python package that knows how to do various tricky computations r version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1.post1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lifelines.md b/docs/version-specific/supported-software/l/lifelines.md index 7a16056f3..740d2687b 100644 --- a/docs/version-specific/supported-software/l/lifelines.md +++ b/docs/version-specific/supported-software/l/lifelines.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lifelines lifelines is a pure Python implementation of the best parts of survival analysis @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.22.8`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` ``0.26.3`` | | ``fosscuda/2020b`` ``0.27.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/liknorm.md b/docs/version-specific/supported-software/l/liknorm.md index 10a4bac20..257bb5c58 100644 --- a/docs/version-specific/supported-software/l/liknorm.md +++ b/docs/version-specific/supported-software/l/liknorm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # liknorm Moments of the product of an exponential-family likelihood with a Normal distribution. @@ -7,3 +11,6 @@ Moments of the product of an exponential-family likelihood with a Normal distrib version | toolchain --------|---------- ``1.5.2`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/likwid.md b/docs/version-specific/supported-software/l/likwid.md index 514cfb3ce..9562c2c9d 100644 --- a/docs/version-specific/supported-software/l/likwid.md +++ b/docs/version-specific/supported-software/l/likwid.md @@ -1,3 +1,7 @@ +--- +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. @@ -26,3 +30,6 @@ version | toolchain ``5.2.2`` | ``GCC/12.3.0`` ``5.3.0`` | ``GCC/12.3.0`` ``5.3.0`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lil-aretomo.md b/docs/version-specific/supported-software/l/lil-aretomo.md index 0fc03197f..6ff87b917 100644 --- a/docs/version-specific/supported-software/l/lil-aretomo.md +++ b/docs/version-specific/supported-software/l/lil-aretomo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lil-aretomo A lightweight Python API for AreTomo. @@ -7,3 +11,6 @@ A lightweight Python API for AreTomo. version | toolchain --------|---------- ``0.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/limix.md b/docs/version-specific/supported-software/l/limix.md index c5bdad504..e05545767 100644 --- a/docs/version-specific/supported-software/l/limix.md +++ b/docs/version-specific/supported-software/l/limix.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Limix is a flexible and efficient linear mixed model library with interfaces to version | versionsuffix | toolchain --------|---------------|---------- ``2.0.4`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/line_profiler.md b/docs/version-specific/supported-software/l/line_profiler.md index 8b39f1b99..fdb358f9a 100644 --- a/docs/version-specific/supported-software/l/line_profiler.md +++ b/docs/version-specific/supported-software/l/line_profiler.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``4.0.0`` | | ``foss/2022a`` ``4.1.1`` | | ``GCCcore/12.2.0`` ``4.1.2`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lit.md b/docs/version-specific/supported-software/l/lit.md index f9fd4f4e3..5c28d959c 100644 --- a/docs/version-specific/supported-software/l/lit.md +++ b/docs/version-specific/supported-software/l/lit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ lit is a portable tool for executing LLVM and Clang style test suites, summarizi version | toolchain --------|---------- ``18.1.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lmoments3.md b/docs/version-specific/supported-software/l/lmoments3.md index 2440a4af1..310db4782 100644 --- a/docs/version-specific/supported-software/l/lmoments3.md +++ b/docs/version-specific/supported-software/l/lmoments3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lmoments3 Estimate linear moments for statistical distribution functions. @@ -7,3 +11,6 @@ Estimate linear moments for statistical distribution functions. version | toolchain --------|---------- ``1.0.6`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/logaddexp.md b/docs/version-specific/supported-software/l/logaddexp.md index 8a8d5144a..da28c5701 100644 --- a/docs/version-specific/supported-software/l/logaddexp.md +++ b/docs/version-specific/supported-software/l/logaddexp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # logaddexp C library that implements the logarithm of the sum of exponentiations. Inspired by NumPy's logaddexp function. @@ -7,3 +11,6 @@ C library that implements the logarithm of the sum of exponentiations. Inspired version | toolchain --------|---------- ``1.0.3`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/longestrunsubsequence.md b/docs/version-specific/supported-software/l/longestrunsubsequence.md index 5c2dd6e64..0d9e617a8 100644 --- a/docs/version-specific/supported-software/l/longestrunsubsequence.md +++ b/docs/version-specific/supported-software/l/longestrunsubsequence.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Implementation of a solver for the Longest Run Subsequence Problem. Given a seq version | toolchain --------|---------- ``1.0.1`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/longread_umi.md b/docs/version-specific/supported-software/l/longread_umi.md index 2095a3e2f..4892b3043 100644 --- a/docs/version-specific/supported-software/l/longread_umi.md +++ b/docs/version-specific/supported-software/l/longread_umi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # longread_umi A collection of scripts for processing longread UMI data. @@ -7,3 +11,6 @@ A collection of scripts for processing longread UMI data. version | toolchain --------|---------- ``0.3.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/loomR.md b/docs/version-specific/supported-software/l/loomR.md index 3ba5098b8..ead969017 100644 --- a/docs/version-specific/supported-software/l/loomR.md +++ b/docs/version-specific/supported-software/l/loomR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # loomR An R interface for loom files @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/loompy.md b/docs/version-specific/supported-software/l/loompy.md index a6189a527..c4c172a14 100644 --- a/docs/version-specific/supported-software/l/loompy.md +++ b/docs/version-specific/supported-software/l/loompy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # loompy Python implementation of the Loom file format, an efficient file format for large omics datasets @@ -12,3 +16,6 @@ version | toolchain ``3.0.7`` | ``foss/2022a`` ``3.0.7`` | ``foss/2023a`` ``3.0.7`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lpsolve.md b/docs/version-specific/supported-software/l/lpsolve.md index fd5f9508b..7846d493c 100644 --- a/docs/version-specific/supported-software/l/lpsolve.md +++ b/docs/version-specific/supported-software/l/lpsolve.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lpsolve Mixed Integer Linear Programming (MILP) solver @@ -20,3 +24,6 @@ version | toolchain ``5.5.2.5`` | ``iccifort/2019.5.281`` ``5.5.2.5`` | ``intel/2017a`` ``5.5.2.5`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lrslib.md b/docs/version-specific/supported-software/l/lrslib.md index 198142dfe..7f5893836 100644 --- a/docs/version-specific/supported-software/l/lrslib.md +++ b/docs/version-specific/supported-software/l/lrslib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lrslib lrslib is a self-contained ANSI C implementation of the reverse search algorithm for vertex enumeration/convex hull problems @@ -10,3 +14,6 @@ version | toolchain ``7.0a`` | ``gompi/2019a`` ``7.2`` | ``gompi/2022a`` ``7.2`` | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lwgrp.md b/docs/version-specific/supported-software/l/lwgrp.md index 06f260cfc..bed01dbf6 100644 --- a/docs/version-specific/supported-software/l/lwgrp.md +++ b/docs/version-specific/supported-software/l/lwgrp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lwgrp The Light-weight Group Library provides methods for MPI codes to quickly create and destroy process groups @@ -13,3 +17,6 @@ version | toolchain ``1.0.3`` | ``gompi/2020b`` ``1.0.5`` | ``gompi/2022a`` ``1.0.5`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lxml.md b/docs/version-specific/supported-software/l/lxml.md index 9e0588ead..c0b0fec60 100644 --- a/docs/version-specific/supported-software/l/lxml.md +++ b/docs/version-specific/supported-software/l/lxml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lxml The lxml XML toolkit is a Pythonic binding for the C libraries libxml2 and libxslt. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``4.9.2`` | | ``GCCcore/12.2.0`` ``4.9.2`` | | ``GCCcore/12.3.0`` ``4.9.3`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lynx.md b/docs/version-specific/supported-software/l/lynx.md index 640418381..c2c85978f 100644 --- a/docs/version-specific/supported-software/l/lynx.md +++ b/docs/version-specific/supported-software/l/lynx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # lynx lynx is an alphanumeric display oriented World-Wide Web Client @@ -7,3 +11,6 @@ lynx is an alphanumeric display oriented World-Wide Web Client version | versionsuffix | toolchain --------|---------------|---------- ``2.8.9`` | ``-develop`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/l/lz4.md b/docs/version-specific/supported-software/l/lz4.md index c18e4288a..1d95a27ab 100644 --- a/docs/version-specific/supported-software/l/lz4.md +++ b/docs/version-specific/supported-software/l/lz4.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``1.9.4`` | ``GCCcore/12.3.0`` ``1.9.4`` | ``GCCcore/13.2.0`` ``1.9.4`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/M1QN3.md b/docs/version-specific/supported-software/m/M1QN3.md index efc74d306..0a068124b 100644 --- a/docs/version-specific/supported-software/m/M1QN3.md +++ b/docs/version-specific/supported-software/m/M1QN3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # M1QN3 A solver of large-scale unconstrained minimization problems @@ -7,3 +11,6 @@ A solver of large-scale unconstrained minimization problems version | toolchain --------|---------- ``3.3`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/M3GNet.md b/docs/version-specific/supported-software/m/M3GNet.md index 4cb73d3a8..1b2cf1a1e 100644 --- a/docs/version-specific/supported-software/m/M3GNet.md +++ b/docs/version-specific/supported-software/m/M3GNet.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/M4.md b/docs/version-specific/supported-software/m/M4.md index ef840c96b..0a8fc8f2f 100644 --- a/docs/version-specific/supported-software/m/M4.md +++ b/docs/version-specific/supported-software/m/M4.md @@ -1,3 +1,7 @@ +--- +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. @@ -75,3 +79,6 @@ version | toolchain ``1.4.19`` | ``GCCcore/9.4.0`` ``1.4.19`` | ``GCCcore/9.5.0`` ``1.4.19`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MACH.md b/docs/version-specific/supported-software/m/MACH.md index 3a2875c72..03003a33d 100644 --- a/docs/version-specific/supported-software/m/MACH.md +++ b/docs/version-specific/supported-software/m/MACH.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MACH 1.0 is a Markov Chain based haplotyper that can resolve long haplotypes or version | toolchain --------|---------- ``1.0.18`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MACS2.md b/docs/version-specific/supported-software/m/MACS2.md index 7233a1695..a0da1dc9f 100644 --- a/docs/version-specific/supported-software/m/MACS2.md +++ b/docs/version-specific/supported-software/m/MACS2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MACS2 Model Based Analysis for ChIP-Seq data @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``2.2.9.1`` | | ``foss/2022a`` ``2.2.9.1`` | | ``foss/2022b`` ``2.2.9.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MACS3.md b/docs/version-specific/supported-software/m/MACS3.md index d53783477..97aae865b 100644 --- a/docs/version-specific/supported-software/m/MACS3.md +++ b/docs/version-specific/supported-software/m/MACS3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MACS3 Model Based Analysis for ChIP-Seq data @@ -10,3 +14,6 @@ version | toolchain ``3.0.0b2`` | ``foss/2022b`` ``3.0.1`` | ``foss/2022b`` ``3.0.1`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MACSE.md b/docs/version-specific/supported-software/m/MACSE.md index 1677ba269..9976b8f6d 100644 --- a/docs/version-specific/supported-software/m/MACSE.md +++ b/docs/version-specific/supported-software/m/MACSE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MACSE aligns coding NT sequences with respect to their AA translation while allo version | versionsuffix | toolchain --------|---------------|---------- ``2.06`` | ``-Java-15`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MAFFT.md b/docs/version-specific/supported-software/m/MAFFT.md index 6d7da1508..d495b43c3 100644 --- a/docs/version-specific/supported-software/m/MAFFT.md +++ b/docs/version-specific/supported-software/m/MAFFT.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``7.505`` | ``-with-extensions`` | ``GCC/11.3.0`` ``7.505`` | ``-with-extensions`` | ``GCC/12.2.0`` ``7.520`` | ``-with-extensions`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md index 408a9c97e..e75be8f1c 100644 --- a/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md +++ b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.07b`` | ``foss/2018b`` ``1.07bb`` | ``GCC/8.3.0`` ``1.09b`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MAGeCK.md b/docs/version-specific/supported-software/m/MAGeCK.md index 9830869bf..6322dc931 100644 --- a/docs/version-specific/supported-software/m/MAGeCK.md +++ b/docs/version-specific/supported-software/m/MAGeCK.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.5.9.4`` | ``foss/2021a`` ``0.5.9.4`` | ``foss/2022a`` ``0.5.9.5`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MAJIQ.md b/docs/version-specific/supported-software/m/MAJIQ.md index 342632639..a3987a417 100644 --- a/docs/version-specific/supported-software/m/MAJIQ.md +++ b/docs/version-specific/supported-software/m/MAJIQ.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MAJIQ and Voila are two software packages that together detect, quantify, and vi version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MAKER.md b/docs/version-specific/supported-software/m/MAKER.md index 0622adcf8..98a2307f6 100644 --- a/docs/version-specific/supported-software/m/MAKER.md +++ b/docs/version-specific/supported-software/m/MAKER.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MAKER is a portable and easily configurable genome annotation pipeline. Its purp version | toolchain --------|---------- ``3.01.04`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MARS.md b/docs/version-specific/supported-software/m/MARS.md index c4fca4816..bf62f50d1 100644 --- a/docs/version-specific/supported-software/m/MARS.md +++ b/docs/version-specific/supported-software/m/MARS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MARS improving Multiple circular sequence Alignment using Refined Sequences @@ -7,3 +11,6 @@ improving Multiple circular sequence Alignment using Refined Sequences version | toolchain --------|---------- ``20191101`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MATIO.md b/docs/version-specific/supported-software/m/MATIO.md index 90e0401bb..0bbd1c9b5 100644 --- a/docs/version-specific/supported-software/m/MATIO.md +++ b/docs/version-specific/supported-software/m/MATIO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MATIO matio is an C library for reading and writing Matlab MAT files. @@ -18,3 +22,6 @@ version | toolchain ``1.5.26`` | ``GCCcore/12.3.0`` ``1.5.26`` | ``GCCcore/13.2.0`` ``1.5.9`` | ``GCCcore/5.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MATLAB-Engine.md b/docs/version-specific/supported-software/m/MATLAB-Engine.md index 1b30cada3..0c289e22d 100644 --- a/docs/version-specific/supported-software/m/MATLAB-Engine.md +++ b/docs/version-specific/supported-software/m/MATLAB-Engine.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MATLAB-Engine The MATLAB Engine API for Python provides a package for Python to call MATLAB as a computational engine. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2019b`` | | ``GCCcore/8.3.0`` ``2021a-9.10.1`` | | ``GCCcore/10.2.0`` ``2021b-9.11.19`` | | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MATLAB.md b/docs/version-specific/supported-software/m/MATLAB.md index 6120a8103..4bb0acc43 100644 --- a/docs/version-specific/supported-software/m/MATLAB.md +++ b/docs/version-specific/supported-software/m/MATLAB.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``2022b`` | | ``system`` ``2023a`` | | ``system`` ``2023b`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MATSim.md b/docs/version-specific/supported-software/m/MATSim.md index a10f8f684..972664f62 100644 --- a/docs/version-specific/supported-software/m/MATSim.md +++ b/docs/version-specific/supported-software/m/MATSim.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MATSim MATSim is an open-source framework to implement large-scale agent-based transport simulations. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``14.0`` | ``-Java-11`` | ``system`` ``15.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` ``15.0`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MBROLA.md b/docs/version-specific/supported-software/m/MBROLA.md index d5df4fe80..5caac49ce 100644 --- a/docs/version-specific/supported-software/m/MBROLA.md +++ b/docs/version-specific/supported-software/m/MBROLA.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.3`` | ``-voices-20200330`` | ``GCCcore/12.3.0`` ``3.3`` | ``-voices-20200330`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MCL.md b/docs/version-specific/supported-software/m/MCL.md index 07e027bb2..cb5179c3f 100644 --- a/docs/version-specific/supported-software/m/MCL.md +++ b/docs/version-specific/supported-software/m/MCL.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``22.282`` | | ``GCCcore/11.2.0`` ``22.282`` | | ``GCCcore/11.3.0`` ``22.282`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MCR.md b/docs/version-specific/supported-software/m/MCR.md index b2fce0d53..1ef4493a2 100644 --- a/docs/version-specific/supported-software/m/MCR.md +++ b/docs/version-specific/supported-software/m/MCR.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``R2022a`` | ``.5`` | ``system`` ``R2022a`` | | ``system`` ``R2023a`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDAnalysis.md b/docs/version-specific/supported-software/m/MDAnalysis.md index d0df99632..ad34c0087 100644 --- a/docs/version-specific/supported-software/m/MDAnalysis.md +++ b/docs/version-specific/supported-software/m/MDAnalysis.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MDAnalysis MDAnalysis is an object-oriented Python library to analyze trajectories from molecular dynamics (MD) simulations in many popular formats. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``2.4.2`` | | ``foss/2021a`` ``2.4.2`` | | ``foss/2022b`` ``2.7.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDBM.md b/docs/version-specific/supported-software/m/MDBM.md index 51b346622..899d44992 100644 --- a/docs/version-specific/supported-software/m/MDBM.md +++ b/docs/version-specific/supported-software/m/MDBM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MDBM MDBM is a super-fast memory-mapped key/value store @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.13.0`` | ``GCCcore/6.4.0`` ``4.13.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDI.md b/docs/version-specific/supported-software/m/MDI.md index 147db9054..b195bf14a 100644 --- a/docs/version-specific/supported-software/m/MDI.md +++ b/docs/version-specific/supported-software/m/MDI.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.4.16`` | ``gompi/2022b`` ``1.4.26`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDSplus-Java.md b/docs/version-specific/supported-software/m/MDSplus-Java.md index af6d59a74..175377453 100644 --- a/docs/version-specific/supported-software/m/MDSplus-Java.md +++ b/docs/version-specific/supported-software/m/MDSplus-Java.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MDSplus is a set of software tools for data acquisition and storage and a method version | versionsuffix | toolchain --------|---------------|---------- ``7.96.12`` | ``-Java-13`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDSplus-Python.md b/docs/version-specific/supported-software/m/MDSplus-Python.md index b224d0b6b..d4388ca16 100644 --- a/docs/version-specific/supported-software/m/MDSplus-Python.md +++ b/docs/version-specific/supported-software/m/MDSplus-Python.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MDSplus is a set of software tools for data acquisition and storage and a method version | versionsuffix | toolchain --------|---------------|---------- ``7.96.12`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDSplus.md b/docs/version-specific/supported-software/m/MDSplus.md index 739d6fa43..8bd1aa08e 100644 --- a/docs/version-specific/supported-software/m/MDSplus.md +++ b/docs/version-specific/supported-software/m/MDSplus.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``7.46.1`` | | ``foss/2018a`` ``7.96.12`` | | ``GCCcore/9.3.0`` ``7.96.8`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MDTraj.md b/docs/version-specific/supported-software/m/MDTraj.md index 4e0e8b69a..bd42da0d6 100644 --- a/docs/version-specific/supported-software/m/MDTraj.md +++ b/docs/version-specific/supported-software/m/MDTraj.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MDTraj Read, write and analyze MD trajectories with only a few lines of Python code. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``1.9.7`` | | ``intel/2021b`` ``1.9.7`` | | ``intel/2022a`` ``1.9.9`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEGA.md b/docs/version-specific/supported-software/m/MEGA.md index cc1ed197c..92e5c55d9 100644 --- a/docs/version-specific/supported-software/m/MEGA.md +++ b/docs/version-specific/supported-software/m/MEGA.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``10.0.5`` | ``system`` ``11.0.10`` | ``system`` ``7.0.20-1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEGACC.md b/docs/version-specific/supported-software/m/MEGACC.md index eb036e465..3eb6697c3 100644 --- a/docs/version-specific/supported-software/m/MEGACC.md +++ b/docs/version-specific/supported-software/m/MEGACC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MEGA-Computing Core - Sophisticated and user-friendly software suite for analyzi version | toolchain --------|---------- ``7.0.18-1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEGAHIT.md b/docs/version-specific/supported-software/m/MEGAHIT.md index dbbc400d7..9eeebaaf2 100644 --- a/docs/version-specific/supported-software/m/MEGAHIT.md +++ b/docs/version-specific/supported-software/m/MEGAHIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MEGAHIT An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``1.2.9`` | | ``GCCcore/12.3.0`` ``1.2.9`` | | ``GCCcore/9.3.0`` ``1.2.9`` | | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEGAN.md b/docs/version-specific/supported-software/m/MEGAN.md index 6dda80793..33dbc662d 100644 --- a/docs/version-specific/supported-software/m/MEGAN.md +++ b/docs/version-specific/supported-software/m/MEGAN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MEGAN MEGAN is a comprehensive toolbox for interactively analyzing microbiome data @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.22.0`` | ``-Java-17`` | ``system`` ``6.25.3`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEM.md b/docs/version-specific/supported-software/m/MEM.md index 649c1ddf6..367661258 100644 --- a/docs/version-specific/supported-software/m/MEM.md +++ b/docs/version-specific/supported-software/m/MEM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MEM Marker Enrichment Modeling (MEM) is a tool designed to calculate enrichment scores. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20191023`` | | ``foss/2019b`` ``20191023`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEME.md b/docs/version-specific/supported-software/m/MEME.md index 3164306fa..7508fef77 100644 --- a/docs/version-specific/supported-software/m/MEME.md +++ b/docs/version-specific/supported-software/m/MEME.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``5.4.1`` | ``-Python-2.7.18`` | ``gompi/2021b`` ``5.4.1`` | | ``gompi/2021b`` ``5.5.4`` | | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MEMOTE.md b/docs/version-specific/supported-software/m/MEMOTE.md index 864d4283a..e00c04a02 100644 --- a/docs/version-specific/supported-software/m/MEMOTE.md +++ b/docs/version-specific/supported-software/m/MEMOTE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MEMOTE The genome-scale metabolic model test suite @@ -7,3 +11,6 @@ The genome-scale metabolic model test suite version | toolchain --------|---------- ``0.13.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MERCKX.md b/docs/version-specific/supported-software/m/MERCKX.md index ed3e15150..8986ec6d2 100644 --- a/docs/version-specific/supported-software/m/MERCKX.md +++ b/docs/version-specific/supported-software/m/MERCKX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MERCKX Multilingual Entity/Resource Combiner & Knowledge eXtractor @@ -7,3 +11,6 @@ Multilingual Entity/Resource Combiner & Knowledge eXtractor version | versionsuffix | toolchain --------|---------------|---------- ``20170330`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MESS.md b/docs/version-specific/supported-software/m/MESS.md index ea89732b1..fe584db83 100644 --- a/docs/version-specific/supported-software/m/MESS.md +++ b/docs/version-specific/supported-software/m/MESS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MESS Master Equation System Solver (MESS) @@ -7,3 +11,6 @@ Master Equation System Solver (MESS) version | toolchain --------|---------- ``0.1.6`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/METIS.md b/docs/version-specific/supported-software/m/METIS.md index 23963c507..ffd535e8e 100644 --- a/docs/version-specific/supported-software/m/METIS.md +++ b/docs/version-specific/supported-software/m/METIS.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``intel/2016a`` ``5.1.0`` | | ``intel/2016b`` ``5.1.0`` | | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MICOM.md b/docs/version-specific/supported-software/m/MICOM.md index bb5503398..75023efa1 100644 --- a/docs/version-specific/supported-software/m/MICOM.md +++ b/docs/version-specific/supported-software/m/MICOM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MICOM Python package to study microbial communities using metabolic modeling. @@ -7,3 +11,6 @@ Python package to study microbial communities using metabolic modeling. version | toolchain --------|---------- ``0.33.2`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MIGRATE-N.md b/docs/version-specific/supported-software/m/MIGRATE-N.md index e0bf902ae..141007d91 100644 --- a/docs/version-specific/supported-software/m/MIGRATE-N.md +++ b/docs/version-specific/supported-software/m/MIGRATE-N.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.2.14`` | ``foss/2018a`` ``4.2.8`` | ``foss/2016a`` ``5.0.4`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MINC.md b/docs/version-specific/supported-software/m/MINC.md index ffa9f6be2..0dfe96a71 100644 --- a/docs/version-specific/supported-software/m/MINC.md +++ b/docs/version-specific/supported-software/m/MINC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MINC Medical Image NetCDF or MINC isn't netCDF. @@ -9,3 +13,6 @@ version | toolchain ``2.4.03`` | ``foss/2017b`` ``2.4.03`` | ``foss/2018a`` ``2.4.03`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MINPACK.md b/docs/version-specific/supported-software/m/MINPACK.md index a642c3e7a..ca3da549d 100644 --- a/docs/version-specific/supported-software/m/MINPACK.md +++ b/docs/version-specific/supported-software/m/MINPACK.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Minpack includes software for solving nonlinear equations and nonlinear least s version | toolchain --------|---------- ``19961126`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MIRA.md b/docs/version-specific/supported-software/m/MIRA.md index 75f2595a5..5bbac1e8f 100644 --- a/docs/version-specific/supported-software/m/MIRA.md +++ b/docs/version-specific/supported-software/m/MIRA.md @@ -1,3 +1,7 @@ +--- +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). @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``4.0.2`` | | ``intel/2017b`` ``4.9.6`` | | ``intel/2017b`` ``5.0rc2`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MITObim.md b/docs/version-specific/supported-software/m/MITObim.md index 649a56410..e3c5afc32 100644 --- a/docs/version-specific/supported-software/m/MITObim.md +++ b/docs/version-specific/supported-software/m/MITObim.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.9.1`` | ``foss/2018b`` ``1.9.1`` | ``foss/2020b`` ``1.9.1`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MITgcmutils.md b/docs/version-specific/supported-software/m/MITgcmutils.md index 01c66e80b..2df2fe3c6 100644 --- a/docs/version-specific/supported-software/m/MITgcmutils.md +++ b/docs/version-specific/supported-software/m/MITgcmutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A numerical model designed for study of the atmosphere, ocean, and climate, MIT version | toolchain --------|---------- ``0.1.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MLC.md b/docs/version-specific/supported-software/m/MLC.md index b1f34202d..89661a60e 100644 --- a/docs/version-specific/supported-software/m/MLC.md +++ b/docs/version-specific/supported-software/m/MLC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Intel Memory Latency Checker (Intel MLC) is a tool used to measure memory latenc version | toolchain --------|---------- ``3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MLflow.md b/docs/version-specific/supported-software/m/MLflow.md index 8d58a24a2..d7ec0df32 100644 --- a/docs/version-specific/supported-software/m/MLflow.md +++ b/docs/version-specific/supported-software/m/MLflow.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MLflow is a platform to streamline machine learning development, including track version | toolchain --------|---------- ``2.10.2`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MLxtend.md b/docs/version-specific/supported-software/m/MLxtend.md index 20b426cf6..f702ea0b0 100644 --- a/docs/version-specific/supported-software/m/MLxtend.md +++ b/docs/version-specific/supported-software/m/MLxtend.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MLxtend Mlxtend (machine learning extensions) is a Python library of useful tools for the day-to-day data science tasks. @@ -7,3 +11,6 @@ Mlxtend (machine learning extensions) is a Python library of useful tools for th version | versionsuffix | toolchain --------|---------------|---------- ``0.17.3`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MMSEQ.md b/docs/version-specific/supported-software/m/MMSEQ.md index 71fd6f31c..a83052857 100644 --- a/docs/version-specific/supported-software/m/MMSEQ.md +++ b/docs/version-specific/supported-software/m/MMSEQ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MMSEQ The MMSEQ package contains a collection of statistical tools for analysing RNA-seq expression data. @@ -7,3 +11,6 @@ The MMSEQ package contains a collection of statistical tools for analysing RNA- version | versionsuffix | toolchain --------|---------------|---------- ``1.0.8`` | ``-linux64-static`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MMseqs2.md b/docs/version-specific/supported-software/m/MMseqs2.md index 7d62e35be..9b277a0ab 100644 --- a/docs/version-specific/supported-software/m/MMseqs2.md +++ b/docs/version-specific/supported-software/m/MMseqs2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MMseqs2 MMseqs2: ultra fast and sensitive search and clustering suite @@ -19,3 +23,6 @@ version | toolchain ``14-7e284`` | ``gompi/2023a`` ``5-9375b`` | ``intel/2018a`` ``8-fac81`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MNE-Python.md b/docs/version-specific/supported-software/m/MNE-Python.md index 1a1d2c861..3367b23b0 100644 --- a/docs/version-specific/supported-software/m/MNE-Python.md +++ b/docs/version-specific/supported-software/m/MNE-Python.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.24.1`` | ``foss/2021a`` ``1.6.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MOABB.md b/docs/version-specific/supported-software/m/MOABB.md index 5ed183e38..ccadb3bce 100644 --- a/docs/version-specific/supported-software/m/MOABB.md +++ b/docs/version-specific/supported-software/m/MOABB.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.6`` | ``foss/2021a`` ``1.0.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MOABS.md b/docs/version-specific/supported-software/m/MOABS.md index 3530d670a..3190b6d98 100644 --- a/docs/version-specific/supported-software/m/MOABS.md +++ b/docs/version-specific/supported-software/m/MOABS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MOABS MOABS: MOdel based Analysis of Bisulfite Sequencing data @@ -7,3 +11,6 @@ MOABS: MOdel based Analysis of Bisulfite Sequencing data version | toolchain --------|---------- ``1.3.9.6`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MOB-suite.md b/docs/version-specific/supported-software/m/MOB-suite.md index 74d428339..e26f6d32b 100644 --- a/docs/version-specific/supported-software/m/MOB-suite.md +++ b/docs/version-specific/supported-software/m/MOB-suite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MOB-suite Software tools for clustering, reconstruction and typing of plasmids from draft assemblies @@ -7,3 +11,6 @@ Software tools for clustering, reconstruction and typing of plasmids from draft version | versionsuffix | toolchain --------|---------------|---------- ``3.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MODFLOW.md b/docs/version-specific/supported-software/m/MODFLOW.md index d0b8affcf..e3e8a1f99 100644 --- a/docs/version-specific/supported-software/m/MODFLOW.md +++ b/docs/version-specific/supported-software/m/MODFLOW.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered an intern version | toolchain --------|---------- ``6.4.4`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MOFA2.md b/docs/version-specific/supported-software/m/MOFA2.md index 7e3e7a8dd..2961c61b0 100644 --- a/docs/version-specific/supported-software/m/MOFA2.md +++ b/docs/version-specific/supported-software/m/MOFA2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MOFA is a factor analysis model that provides a general framework for the integ version | versionsuffix | toolchain --------|---------------|---------- ``1.14.0`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MONA.md b/docs/version-specific/supported-software/m/MONA.md index e49e6d86b..de212b986 100644 --- a/docs/version-specific/supported-software/m/MONA.md +++ b/docs/version-specific/supported-software/m/MONA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MONA is a tool that translates formulas to finite-state automata. The formulas m version | toolchain --------|---------- ``1.4-18`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MONAI-Label.md b/docs/version-specific/supported-software/m/MONAI-Label.md index 052fb6c6f..d581bf472 100644 --- a/docs/version-specific/supported-software/m/MONAI-Label.md +++ b/docs/version-specific/supported-software/m/MONAI-Label.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MONAI.md b/docs/version-specific/supported-software/m/MONAI.md index 075ea7ab2..cbfddd2c8 100644 --- a/docs/version-specific/supported-software/m/MONAI.md +++ b/docs/version-specific/supported-software/m/MONAI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MONAI MONAI is a PyTorch-based, open-source framework for deep learning in healthcare imaging, part of PyTorch Ecosystem. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.0.1`` | | ``foss/2022a`` ``1.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``1.3.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MOOSE.md b/docs/version-specific/supported-software/m/MOOSE.md index 5b2a26f08..31871fdfc 100644 --- a/docs/version-specific/supported-software/m/MOOSE.md +++ b/docs/version-specific/supported-software/m/MOOSE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MOOSE The Multiphysics Object-Oriented Simulation Environment (MOOSE) is a finite-element, multiphysics framework primarily developed by Idaho National Laboratory @@ -7,3 +11,6 @@ The Multiphysics Object-Oriented Simulation Environment (MOOSE) is a finite-elem version | versionsuffix | toolchain --------|---------------|---------- ``2021-05-18`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPB.md b/docs/version-specific/supported-software/m/MPB.md index e759c0e2d..dab1c1cdf 100644 --- a/docs/version-specific/supported-software/m/MPB.md +++ b/docs/version-specific/supported-software/m/MPB.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPC.md b/docs/version-specific/supported-software/m/MPC.md index ee81e45c0..7f8e99f65 100644 --- a/docs/version-specific/supported-software/m/MPC.md +++ b/docs/version-specific/supported-software/m/MPC.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``1.3.1`` | | ``GCCcore/12.3.0`` ``1.3.1`` | | ``GCCcore/13.2.0`` ``1.3.1`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPFI.md b/docs/version-specific/supported-software/m/MPFI.md index f8d548c77..d30b468ba 100644 --- a/docs/version-specific/supported-software/m/MPFI.md +++ b/docs/version-specific/supported-software/m/MPFI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MPFI MPFI stands for Multiple Precision Floating-point Interval library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.4`` | ``GCCcore/11.3.0`` ``1.5.4`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPFR.md b/docs/version-specific/supported-software/m/MPFR.md index f5eeba24b..6baee3a39 100644 --- a/docs/version-specific/supported-software/m/MPFR.md +++ b/docs/version-specific/supported-software/m/MPFR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MPFR The MPFR library is a C library for multiple-precision floating-point computations with correct rounding. @@ -27,3 +31,6 @@ version | toolchain ``4.2.0`` | ``GCCcore/12.3.0`` ``4.2.1`` | ``GCCcore/13.2.0`` ``4.2.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPICH.md b/docs/version-specific/supported-software/m/MPICH.md index dbad26515..7721f47dc 100644 --- a/docs/version-specific/supported-software/m/MPICH.md +++ b/docs/version-specific/supported-software/m/MPICH.md @@ -1,3 +1,7 @@ +--- +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). @@ -13,3 +17,6 @@ version | toolchain ``3.3.2`` | ``GCC/10.2.0`` ``3.3.2`` | ``GCC/9.3.0`` ``3.4.2`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPICH2.md b/docs/version-specific/supported-software/m/MPICH2.md index c85e21ffe..26adcc9f5 100644 --- a/docs/version-specific/supported-software/m/MPICH2.md +++ b/docs/version-specific/supported-software/m/MPICH2.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ MPICH v3.x is an open source high-performance MPI 3.0 implementation. It does no version | toolchain --------|---------- ``1.1`` | ``GCC/4.8.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MPJ-Express.md b/docs/version-specific/supported-software/m/MPJ-Express.md index 85f8d6ec0..5f9b7b158 100644 --- a/docs/version-specific/supported-software/m/MPJ-Express.md +++ b/docs/version-specific/supported-software/m/MPJ-Express.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MPJ Express is an open source Java message passing library that allows applicati version | versionsuffix | toolchain --------|---------------|---------- ``0.44`` | ``-Java-1.8.0_92`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MRCPP.md b/docs/version-specific/supported-software/m/MRCPP.md index 24aee2b29..9fcc7ee2d 100644 --- a/docs/version-specific/supported-software/m/MRCPP.md +++ b/docs/version-specific/supported-software/m/MRCPP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MRCPP MultiResolution Computation Program Package @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.3.6`` | ``foss/2020a`` ``1.4.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MRChem.md b/docs/version-specific/supported-software/m/MRChem.md index 4cc8aa668..4f193b642 100644 --- a/docs/version-specific/supported-software/m/MRChem.md +++ b/docs/version-specific/supported-software/m/MRChem.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MRIcron.md b/docs/version-specific/supported-software/m/MRIcron.md index a74c6b877..81451103f 100644 --- a/docs/version-specific/supported-software/m/MRIcron.md +++ b/docs/version-specific/supported-software/m/MRIcron.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.20180614`` | ``system`` ``20150601`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MRPRESSO.md b/docs/version-specific/supported-software/m/MRPRESSO.md index c8c7ba2ac..d9b0776f1 100644 --- a/docs/version-specific/supported-software/m/MRPRESSO.md +++ b/docs/version-specific/supported-software/m/MRPRESSO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MRPRESSO Performs the Mendelian Randomization Pleiotropy RESidual Sum and Outlier (MR-PRESSO) method.. @@ -7,3 +11,6 @@ Performs the Mendelian Randomization Pleiotropy RESidual Sum and Outlier (MR-PRE version | toolchain --------|---------- ``1.0-20230502`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MRtrix.md b/docs/version-specific/supported-software/m/MRtrix.md index d00698708..13ca02611 100644 --- a/docs/version-specific/supported-software/m/MRtrix.md +++ b/docs/version-specific/supported-software/m/MRtrix.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``3.0.4`` | | ``foss/2022b`` ``3.0_RC2`` | ``-Python-2.7.13`` | ``foss/2017a`` ``3.0_RC3`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MSFragger.md b/docs/version-specific/supported-software/m/MSFragger.md index d0cbb5eea..9aa220777 100644 --- a/docs/version-specific/supported-software/m/MSFragger.md +++ b/docs/version-specific/supported-software/m/MSFragger.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ MSFragger is an ultrafast database search tool for peptide identification in ma version | versionsuffix | toolchain --------|---------------|---------- ``4.0`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MSM.md b/docs/version-specific/supported-software/m/MSM.md index bc4c99439..575cace17 100644 --- a/docs/version-specific/supported-software/m/MSM.md +++ b/docs/version-specific/supported-software/m/MSM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MSM Multimodal Surface Matching with Higher order Clique Reduction @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2017b`` ``1.0`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MSPC.md b/docs/version-specific/supported-software/m/MSPC.md index 23ef1cf65..317bcf38c 100644 --- a/docs/version-specific/supported-software/m/MSPC.md +++ b/docs/version-specific/supported-software/m/MSPC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MSPC Using combined evidence from replicates to evaluate ChIP-seq peaks @@ -7,3 +11,6 @@ Using combined evidence from replicates to evaluate ChIP-seq peaks version | toolchain --------|---------- ``3.3.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MTL4.md b/docs/version-specific/supported-software/m/MTL4.md index 74b6e2bc1..3a4865042 100644 --- a/docs/version-specific/supported-software/m/MTL4.md +++ b/docs/version-specific/supported-software/m/MTL4.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.0.8878`` | ``system`` ``4.0.9555`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MUMPS.md b/docs/version-specific/supported-software/m/MUMPS.md index dfdc4881e..e495b557b 100644 --- a/docs/version-specific/supported-software/m/MUMPS.md +++ b/docs/version-specific/supported-software/m/MUMPS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MUMPS A parallel sparse direct solver @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``5.6.1`` | ``-metis`` | ``foss/2022b`` ``5.6.1`` | ``-metis`` | ``foss/2023a`` ``5.6.1`` | ``-metis-seq`` | ``gomkl/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MUMmer.md b/docs/version-specific/supported-software/m/MUMmer.md index 47480c295..74a301ac2 100644 --- a/docs/version-specific/supported-software/m/MUMmer.md +++ b/docs/version-specific/supported-software/m/MUMmer.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``4.0.0rc1`` | ``GCCcore/11.3.0`` ``4.0.0rc1`` | ``GCCcore/12.2.0`` ``4.0.0rc1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MUSCLE.md b/docs/version-specific/supported-software/m/MUSCLE.md index 614cbadaf..f93bf8435 100644 --- a/docs/version-specific/supported-software/m/MUSCLE.md +++ b/docs/version-specific/supported-software/m/MUSCLE.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``GCCcore/10.3.0`` ``5.1.0`` | | ``GCCcore/11.3.0`` ``5.1.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MUSCLE3.md b/docs/version-specific/supported-software/m/MUSCLE3.md index 42ff382a0..bd40305f5 100644 --- a/docs/version-specific/supported-software/m/MUSCLE3.md +++ b/docs/version-specific/supported-software/m/MUSCLE3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MUSCLE3 allows connecting multiple simulation models together into a multiscale version | toolchain --------|---------- ``0.7.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MUST.md b/docs/version-specific/supported-software/m/MUST.md index cbe4bebfb..b3f4dbd13 100644 --- a/docs/version-specific/supported-software/m/MUST.md +++ b/docs/version-specific/supported-software/m/MUST.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.6`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.7.1`` | | ``foss/2020b`` ``1.7.2`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MVAPICH2.md b/docs/version-specific/supported-software/m/MVAPICH2.md index dce14e1d2..3be8e7443 100644 --- a/docs/version-specific/supported-software/m/MVAPICH2.md +++ b/docs/version-specific/supported-software/m/MVAPICH2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MVAPICH2 This is an MPI 3.0 implementation. It is based on MPICH2 and MVICH. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MView.md b/docs/version-specific/supported-software/m/MView.md index 7fb2b4bb6..782464cd2 100644 --- a/docs/version-specific/supported-software/m/MView.md +++ b/docs/version-specific/supported-software/m/MView.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MView MView reformats the results of a sequence database search or a multiple alignment, optionally adding HTML markup. @@ -7,3 +11,6 @@ MView reformats the results of a sequence database search or a multiple alignm version | toolchain --------|---------- ``1.67`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MXNet.md b/docs/version-specific/supported-software/m/MXNet.md index 423a35447..fd76b9e45 100644 --- a/docs/version-specific/supported-software/m/MXNet.md +++ b/docs/version-specific/supported-software/m/MXNet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MXNet Flexible and Efficient Library for Deep Learning @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.3`` | ``-Python-2.7.12-R-3.3.3`` | ``foss/2016b`` ``1.9.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MaSuRCA.md b/docs/version-specific/supported-software/m/MaSuRCA.md index 42f58d03f..fb18ea742 100644 --- a/docs/version-specific/supported-software/m/MaSuRCA.md +++ b/docs/version-specific/supported-software/m/MaSuRCA.md @@ -1,3 +1,7 @@ +--- +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). @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Magics.md b/docs/version-specific/supported-software/m/Magics.md index 00a2f1365..7a08ea051 100644 --- a/docs/version-specific/supported-software/m/Magics.md +++ b/docs/version-specific/supported-software/m/Magics.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Magics is ECMWF's meteorological plotting software and can be either accessed d version | toolchain --------|---------- ``4.13.0`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MagresPython.md b/docs/version-specific/supported-software/m/MagresPython.md index f75f50e2a..3a3bc3ac9 100644 --- a/docs/version-specific/supported-software/m/MagresPython.md +++ b/docs/version-specific/supported-software/m/MagresPython.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MagresPython is a Python library for parsing the CCP-NC ab-initio magnetic reson version | versionsuffix | toolchain --------|---------------|---------- ``20160329`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mako.md b/docs/version-specific/supported-software/m/Mako.md index c1f798f15..02db5bedf 100644 --- a/docs/version-specific/supported-software/m/Mako.md +++ b/docs/version-specific/supported-software/m/Mako.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mako A super-fast templating language that borrows the best ideas from the existing templating languages @@ -35,3 +39,6 @@ version | versionsuffix | toolchain ``1.2.4`` | | ``GCCcore/12.3.0`` ``1.2.4`` | | ``GCCcore/13.2.0`` ``1.3.5`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mamba.md b/docs/version-specific/supported-software/m/Mamba.md index 3c063f0e3..a3afe24e5 100644 --- a/docs/version-specific/supported-software/m/Mamba.md +++ b/docs/version-specific/supported-software/m/Mamba.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``23.1.0-4`` | ``system`` ``23.11.0-0`` | ``system`` ``4.14.0-0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MapSplice.md b/docs/version-specific/supported-software/m/MapSplice.md index 89025f569..0cd2ed74e 100644 --- a/docs/version-specific/supported-software/m/MapSplice.md +++ b/docs/version-specific/supported-software/m/MapSplice.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.2.1`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Maple.md b/docs/version-specific/supported-software/m/Maple.md index c355159ee..9a273dc6c 100644 --- a/docs/version-specific/supported-software/m/Maple.md +++ b/docs/version-specific/supported-software/m/Maple.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Maple Maple combines the world's most powerful mathematical computation engine with an intuitive, 'clickable' user interface. @@ -9,3 +13,6 @@ version | toolchain ``15`` | ``system`` ``2017.2`` | ``system`` ``2022.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Maq.md b/docs/version-specific/supported-software/m/Maq.md index 47c836e1e..ffd9076f9 100644 --- a/docs/version-specific/supported-software/m/Maq.md +++ b/docs/version-specific/supported-software/m/Maq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Maq Maq is a software that builds mapping assemblies from short reads generated by the next-generation sequencing machines. @@ -7,3 +11,6 @@ Maq is a software that builds mapping assemblies from short reads generated by t version | toolchain --------|---------- ``0.7.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MariaDB-connector-c.md b/docs/version-specific/supported-software/m/MariaDB-connector-c.md index b9808019b..5ef9df19c 100644 --- a/docs/version-specific/supported-software/m/MariaDB-connector-c.md +++ b/docs/version-specific/supported-software/m/MariaDB-connector-c.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MariaDB-connector-c MariaDB Connector/C is used to connect applications developed in C/C++ to MariaDB and MySQL databases. @@ -16,3 +20,6 @@ version | toolchain ``3.1.11`` | ``GCCcore/10.2.0`` ``3.1.7`` | ``GCCcore/9.3.0`` ``3.2.2`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MariaDB.md b/docs/version-specific/supported-software/m/MariaDB.md index 2e0b1a023..03154d8a0 100644 --- a/docs/version-specific/supported-software/m/MariaDB.md +++ b/docs/version-specific/supported-software/m/MariaDB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MariaDB MariaDB An enhanced, drop-in replacement for MySQL. @@ -23,3 +27,6 @@ version | toolchain ``10.6.4`` | ``GCC/10.3.0`` ``10.6.4`` | ``GCC/11.2.0`` ``10.9.3`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Markdown.md b/docs/version-specific/supported-software/m/Markdown.md index 292613739..8bd99b64a 100644 --- a/docs/version-specific/supported-software/m/Markdown.md +++ b/docs/version-specific/supported-software/m/Markdown.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.6`` | ``GCCcore/12.2.0`` ``3.6`` | ``GCCcore/12.3.0`` ``3.6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mash.md b/docs/version-specific/supported-software/m/Mash.md index 7d3fd470f..2bab66f10 100644 --- a/docs/version-specific/supported-software/m/Mash.md +++ b/docs/version-specific/supported-software/m/Mash.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mash Fast genome and metagenome distance estimation using MinHash @@ -15,3 +19,6 @@ version | toolchain ``2.3`` | ``GCC/12.2.0`` ``2.3`` | ``GCC/12.3.0`` ``2.3`` | ``intel-compilers/2021.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mashtree.md b/docs/version-specific/supported-software/m/Mashtree.md index 2ee9bc325..9ebef061c 100644 --- a/docs/version-specific/supported-software/m/Mashtree.md +++ b/docs/version-specific/supported-software/m/Mashtree.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mashtree Create a tree using Mash distances. @@ -7,3 +11,6 @@ Create a tree using Mash distances. version | toolchain --------|---------- ``1.4.6`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MathGL.md b/docs/version-specific/supported-software/m/MathGL.md index cd9512c89..5e1b01045 100644 --- a/docs/version-specific/supported-software/m/MathGL.md +++ b/docs/version-specific/supported-software/m/MathGL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MathGL is ... a library for making high-quality scientific graphics under Linux version | toolchain --------|---------- ``2.4.1`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mathematica.md b/docs/version-specific/supported-software/m/Mathematica.md index ba6e790c4..c8ca48b69 100644 --- a/docs/version-specific/supported-software/m/Mathematica.md +++ b/docs/version-specific/supported-software/m/Mathematica.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mathematica Mathematica is a computational software program used in many scientific, engineering, mathematical and computing fields. @@ -17,3 +21,6 @@ version | toolchain ``13.0.0`` | ``system`` ``13.1.0`` | ``system`` ``9.0.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Maude.md b/docs/version-specific/supported-software/m/Maude.md index 3f35186be..64d55a74a 100644 --- a/docs/version-specific/supported-software/m/Maude.md +++ b/docs/version-specific/supported-software/m/Maude.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Maude is a high-performance reflective language and system supporting both equat version | toolchain --------|---------- ``3.1`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Maven.md b/docs/version-specific/supported-software/m/Maven.md index 2c9a38eed..22e13c4f6 100644 --- a/docs/version-specific/supported-software/m/Maven.md +++ b/docs/version-specific/supported-software/m/Maven.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``3.5.2`` | ``system`` ``3.6.0`` | ``system`` ``3.6.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MaxBin.md b/docs/version-specific/supported-software/m/MaxBin.md index e7617bf9d..f2bcee87e 100644 --- a/docs/version-specific/supported-software/m/MaxBin.md +++ b/docs/version-specific/supported-software/m/MaxBin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MaxBin MaxBin is software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.2.7`` | | ``gompi/2020b`` ``2.2.7`` | | ``gompi/2021a`` ``2.2.7`` | | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MaxQuant.md b/docs/version-specific/supported-software/m/MaxQuant.md index 9432ddd45..f293146e2 100644 --- a/docs/version-specific/supported-software/m/MaxQuant.md +++ b/docs/version-specific/supported-software/m/MaxQuant.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.0.3.0`` | ``GCCcore/11.2.0`` ``2.2.0.0`` | ``GCCcore/11.2.0`` ``2.4.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MbedTLS.md b/docs/version-specific/supported-software/m/MbedTLS.md index 002e345d4..29f48b235 100644 --- a/docs/version-specific/supported-software/m/MbedTLS.md +++ b/docs/version-specific/supported-software/m/MbedTLS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MbedTLS An open source, portable, easy to use, readable and flexible SSL library. @@ -7,3 +11,6 @@ An open source, portable, easy to use, readable and flexible SSL library. version | toolchain --------|---------- ``2.26.0`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MedPy.md b/docs/version-specific/supported-software/m/MedPy.md index 3d05df255..2c023da31 100644 --- a/docs/version-specific/supported-software/m/MedPy.md +++ b/docs/version-specific/supported-software/m/MedPy.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.4.0`` | | ``foss/2020b`` ``0.4.0`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Meep.md b/docs/version-specific/supported-software/m/Meep.md index 95792514d..1e3aa01cc 100644 --- a/docs/version-specific/supported-software/m/Meep.md +++ b/docs/version-specific/supported-software/m/Meep.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Megalodon.md b/docs/version-specific/supported-software/m/Megalodon.md index b2c02d110..6d18d58bd 100644 --- a/docs/version-specific/supported-software/m/Megalodon.md +++ b/docs/version-specific/supported-software/m/Megalodon.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.3.5`` | | ``fosscuda/2020b`` ``2.5.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.5.0`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Meld.md b/docs/version-specific/supported-software/m/Meld.md index e49545fc8..d640276c5 100644 --- a/docs/version-specific/supported-software/m/Meld.md +++ b/docs/version-specific/supported-software/m/Meld.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Meld is a visual diff and merge tool targeted at developers. Meld helps you co version | versionsuffix | toolchain --------|---------------|---------- ``3.20.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mercurial.md b/docs/version-specific/supported-software/m/Mercurial.md index ff2373e08..0b74788c3 100644 --- a/docs/version-specific/supported-software/m/Mercurial.md +++ b/docs/version-specific/supported-software/m/Mercurial.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``5.8`` | | ``GCCcore/10.3.0`` ``6.2`` | | ``GCCcore/11.3.0`` ``6.4.5`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mesa-demos.md b/docs/version-specific/supported-software/m/Mesa-demos.md index de7918b31..6d9c3787d 100644 --- a/docs/version-specific/supported-software/m/Mesa-demos.md +++ b/docs/version-specific/supported-software/m/Mesa-demos.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mesa-demos Mesa utility and demo programs, including glxinfo and eglinfo. @@ -7,3 +11,6 @@ Mesa utility and demo programs, including glxinfo and eglinfo. version | toolchain --------|---------- ``8.4.0`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mesa.md b/docs/version-specific/supported-software/m/Mesa.md index 3e5e5ca6f..de4b063db 100644 --- a/docs/version-specific/supported-software/m/Mesa.md +++ b/docs/version-specific/supported-software/m/Mesa.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mesa Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. @@ -37,3 +41,6 @@ version | toolchain ``22.2.4`` | ``GCCcore/12.2.0`` ``23.1.4`` | ``GCCcore/12.3.0`` ``23.1.9`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Meson.md b/docs/version-specific/supported-software/m/Meson.md index 9f80de29e..941f58263 100644 --- a/docs/version-specific/supported-software/m/Meson.md +++ b/docs/version-specific/supported-software/m/Meson.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Meson Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``1.2.3`` | | ``GCCcore/13.2.0`` ``1.3.1`` | | ``GCCcore/12.3.0`` ``1.4.0`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mesquite.md b/docs/version-specific/supported-software/m/Mesquite.md index 49bc6ee91..c4557b875 100644 --- a/docs/version-specific/supported-software/m/Mesquite.md +++ b/docs/version-specific/supported-software/m/Mesquite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mesquite Mesh-Quality Improvement Library @@ -13,3 +17,6 @@ version | toolchain ``2.3.0`` | ``gimkl/2.11.5`` ``2.3.0`` | ``intel/2016a`` ``2.3.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaBAT.md b/docs/version-specific/supported-software/m/MetaBAT.md index 996c6fe8f..4ebb59d8d 100644 --- a/docs/version-specific/supported-software/m/MetaBAT.md +++ b/docs/version-specific/supported-software/m/MetaBAT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MetaBAT An efficient tool for accurately reconstructing single genomes from complex microbial communities @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2.15`` | ``-Python-2.7.18`` | ``gompi/2020b`` ``2.15`` | | ``gompi/2021a`` ``2.15`` | | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaDecoder.md b/docs/version-specific/supported-software/m/MetaDecoder.md index 29d5a48f9..714384a25 100644 --- a/docs/version-specific/supported-software/m/MetaDecoder.md +++ b/docs/version-specific/supported-software/m/MetaDecoder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MetaDecoder An algorithm for clustering metagenomic sequences @@ -7,3 +11,6 @@ An algorithm for clustering metagenomic sequences version | toolchain --------|---------- ``1.0.19`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaEuk.md b/docs/version-specific/supported-software/m/MetaEuk.md index bf01f0ffd..7b6d4ea50 100644 --- a/docs/version-specific/supported-software/m/MetaEuk.md +++ b/docs/version-specific/supported-software/m/MetaEuk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MetaEuk MetaEuk is a modular toolkit designed for large-scale gene discovery and annotation in eukaryotic metagenomic contigs. @@ -11,3 +15,6 @@ version | toolchain ``6`` | ``GCC/11.2.0`` ``6`` | ``GCC/11.3.0`` ``6`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaGeneAnnotator.md b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md index a151e5797..4095a7bbb 100644 --- a/docs/version-specific/supported-software/m/MetaGeneAnnotator.md +++ b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MetaGeneAnnotator MetaGeneAnnotator is a gene-finding program for prokaryote and phage. @@ -7,3 +11,6 @@ MetaGeneAnnotator is a gene-finding program for prokaryote and phage. version | versionsuffix | toolchain --------|---------------|---------- ``20080819`` | ``-x86-64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaMorpheus.md b/docs/version-specific/supported-software/m/MetaMorpheus.md index d7e44c595..b0fcc6b67 100644 --- a/docs/version-specific/supported-software/m/MetaMorpheus.md +++ b/docs/version-specific/supported-software/m/MetaMorpheus.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.0.320`` | ``GCCcore/10.3.0`` ``1.0.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaPhlAn.md b/docs/version-specific/supported-software/m/MetaPhlAn.md index 87f5fcf86..d8a701d27 100644 --- a/docs/version-specific/supported-software/m/MetaPhlAn.md +++ b/docs/version-specific/supported-software/m/MetaPhlAn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MetaPhlAn MetaPhlAn is a computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``4.0.6`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaPhlAn2.md b/docs/version-specific/supported-software/m/MetaPhlAn2.md index 9b4365dfa..0f11f153f 100644 --- a/docs/version-specific/supported-software/m/MetaPhlAn2.md +++ b/docs/version-specific/supported-software/m/MetaPhlAn2.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetaboAnalystR.md b/docs/version-specific/supported-software/m/MetaboAnalystR.md index 295f017b1..f6d12f2c4 100644 --- a/docs/version-specific/supported-software/m/MetaboAnalystR.md +++ b/docs/version-specific/supported-software/m/MetaboAnalystR.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MetaboAnalystR contains the R functions and libraries underlying the popular Met version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1-20190827`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Metagenome-Atlas.md b/docs/version-specific/supported-software/m/Metagenome-Atlas.md index ee33efeef..edc7a8b86 100644 --- a/docs/version-specific/supported-software/m/Metagenome-Atlas.md +++ b/docs/version-specific/supported-software/m/Metagenome-Atlas.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Metagenome-atlas is a easy-to-use metagenomic pipeline based on snakemake. It h version | versionsuffix | toolchain --------|---------------|---------- ``2.4.3`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Metal.md b/docs/version-specific/supported-software/m/Metal.md index f73d9604b..2fee0dff7 100644 --- a/docs/version-specific/supported-software/m/Metal.md +++ b/docs/version-specific/supported-software/m/Metal.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2011-03-25`` | ``foss/2016a`` ``2020-05-05`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MetalWalls.md b/docs/version-specific/supported-software/m/MetalWalls.md index 60f7bee14..3f49d00af 100644 --- a/docs/version-specific/supported-software/m/MetalWalls.md +++ b/docs/version-specific/supported-software/m/MetalWalls.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MetalWalls (MW) is a molecular dynamics code dedicated to the modelling of elect version | toolchain --------|---------- ``21.06.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Metaxa2.md b/docs/version-specific/supported-software/m/Metaxa2.md index 4918c1c9a..0bc0a5d28 100644 --- a/docs/version-specific/supported-software/m/Metaxa2.md +++ b/docs/version-specific/supported-software/m/Metaxa2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Metaxa2 Metaxa2 -- Identifies Small Subunit (SSU) rRNAs and classifies them taxonomically @@ -7,3 +11,6 @@ Metaxa2 -- Identifies Small Subunit (SSU) rRNAs and classifies them taxonomicall version | toolchain --------|---------- ``2.2`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MethylDackel.md b/docs/version-specific/supported-software/m/MethylDackel.md index a78988546..a7b1a9d71 100644 --- a/docs/version-specific/supported-software/m/MethylDackel.md +++ b/docs/version-specific/supported-software/m/MethylDackel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MethylDackel A (mostly) universal methylation extractor for BS-seq experiments. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MiGEC.md b/docs/version-specific/supported-software/m/MiGEC.md index 60881a56e..8f729a5a7 100644 --- a/docs/version-specific/supported-software/m/MiGEC.md +++ b/docs/version-specific/supported-software/m/MiGEC.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.8`` | ``-Java-1.8.0_162`` | ``system`` ``1.2.9`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MiXCR.md b/docs/version-specific/supported-software/m/MiXCR.md index 0d994817b..52bb42ee1 100644 --- a/docs/version-specific/supported-software/m/MiXCR.md +++ b/docs/version-specific/supported-software/m/MiXCR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MiXCR MiXCR processes big immunome data from raw sequences to quantitated clonotypes @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``3.0.13`` | ``-Java-11`` | ``system`` ``3.0.3`` | ``-Java-1.8`` | ``system`` ``4.6.0`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MicrobeAnnotator.md b/docs/version-specific/supported-software/m/MicrobeAnnotator.md index 6fb5aa6b6..f4c128578 100644 --- a/docs/version-specific/supported-software/m/MicrobeAnnotator.md +++ b/docs/version-specific/supported-software/m/MicrobeAnnotator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MicrobeAnnotator Easy-to-use pipeline for the comprehensive metabolic annotation of microbial genomes. @@ -7,3 +11,6 @@ Easy-to-use pipeline for the comprehensive metabolic annotation of microbial gen version | toolchain --------|---------- ``2.0.5`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mikado.md b/docs/version-specific/supported-software/m/Mikado.md index b72f1c57c..8b8dd360f 100644 --- a/docs/version-specific/supported-software/m/Mikado.md +++ b/docs/version-specific/supported-software/m/Mikado.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Mikado is a lightweight Python3 pipeline to identify the most useful or “best version | toolchain --------|---------- ``2.3.4`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Miller.md b/docs/version-specific/supported-software/m/Miller.md index 22a8b29ab..dfcb65a4c 100644 --- a/docs/version-specific/supported-software/m/Miller.md +++ b/docs/version-specific/supported-software/m/Miller.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, version | toolchain --------|---------- ``6.4.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MinCED.md b/docs/version-specific/supported-software/m/MinCED.md index b23f7c593..21a6cb50e 100644 --- a/docs/version-specific/supported-software/m/MinCED.md +++ b/docs/version-specific/supported-software/m/MinCED.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MinCED Mining CRISPRs in Environmental Datasets @@ -7,3 +11,6 @@ Mining CRISPRs in Environmental Datasets version | versionsuffix | toolchain --------|---------------|---------- ``0.4.2`` | ``-Java-11`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MinPath.md b/docs/version-specific/supported-software/m/MinPath.md index 56d68d4da..99ed8ba8a 100644 --- a/docs/version-specific/supported-software/m/MinPath.md +++ b/docs/version-specific/supported-software/m/MinPath.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.4`` | ``-Python-2.7.15`` | ``intel/2018b`` ``1.4`` | ``-Python-2.7.16`` | ``intel/2019b`` ``1.6`` | | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mini-XML.md b/docs/version-specific/supported-software/m/Mini-XML.md index e547e5b55..440f2d1d9 100644 --- a/docs/version-specific/supported-software/m/Mini-XML.md +++ b/docs/version-specific/supported-software/m/Mini-XML.md @@ -1,3 +1,7 @@ +--- +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 @@ -10,3 +14,6 @@ version | toolchain ``2.9`` | ``GCCcore/8.2.0`` ``3.2`` | ``GCCcore/10.3.0`` ``3.3.1`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MiniCARD.md b/docs/version-specific/supported-software/m/MiniCARD.md index fb3b323dd..80d22794a 100644 --- a/docs/version-specific/supported-software/m/MiniCARD.md +++ b/docs/version-specific/supported-software/m/MiniCARD.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MiniCARD is a *cardinality solver* based on MiniSAT [www.minisat.se]. MiniCARD version | toolchain --------|---------- ``1.2`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MiniSat.md b/docs/version-specific/supported-software/m/MiniSat.md index 26d7b749a..fc5f5281f 100644 --- a/docs/version-specific/supported-software/m/MiniSat.md +++ b/docs/version-specific/supported-software/m/MiniSat.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``GCC/9.3.0`` ``20130925`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Miniconda2.md b/docs/version-specific/supported-software/m/Miniconda2.md index 47291e9fe..3bbc8bca6 100644 --- a/docs/version-specific/supported-software/m/Miniconda2.md +++ b/docs/version-specific/supported-software/m/Miniconda2.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.3.21`` | ``system`` ``4.6.14`` | ``system`` ``4.7.10`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Miniconda3.md b/docs/version-specific/supported-software/m/Miniconda3.md index 87c16febd..7fc462ad6 100644 --- a/docs/version-specific/supported-software/m/Miniconda3.md +++ b/docs/version-specific/supported-software/m/Miniconda3.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``4.7.10`` | ``system`` ``4.8.3`` | ``system`` ``4.9.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Miniforge3.md b/docs/version-specific/supported-software/m/Miniforge3.md index bc8602711..ebf863c07 100644 --- a/docs/version-specific/supported-software/m/Miniforge3.md +++ b/docs/version-specific/supported-software/m/Miniforge3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Miniforge3 Miniforge is a free minimal installer for conda and Mamba specific to conda-forge. @@ -7,3 +11,6 @@ Miniforge is a free minimal installer for conda and Mamba specific to conda-for version | toolchain --------|---------- ``24.1.2-0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Minimac4.md b/docs/version-specific/supported-software/m/Minimac4.md index 61febe86a..805a12a49 100644 --- a/docs/version-specific/supported-software/m/Minimac4.md +++ b/docs/version-specific/supported-software/m/Minimac4.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Minimac4 is a latest version in the series of genotype imputation software - pr version | toolchain --------|---------- ``1.0.0`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Minipolish.md b/docs/version-specific/supported-software/m/Minipolish.md index 5bf6f61c1..1d4ba625b 100644 --- a/docs/version-specific/supported-software/m/Minipolish.md +++ b/docs/version-specific/supported-software/m/Minipolish.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Minipolish A tool for Racon polishing of miniasm assemblies @@ -7,3 +11,6 @@ A tool for Racon polishing of miniasm assemblies version | toolchain --------|---------- ``0.1.3`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mish-Cuda.md b/docs/version-specific/supported-software/m/Mish-Cuda.md index 8eaf85f5c..ea1180fe5 100644 --- a/docs/version-specific/supported-software/m/Mish-Cuda.md +++ b/docs/version-specific/supported-software/m/Mish-Cuda.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mish-Cuda Mish-Cuda: Self Regularized Non-Monotonic Activation Function @@ -7,3 +11,6 @@ Mish-Cuda: Self Regularized Non-Monotonic Activation Function version | versionsuffix | toolchain --------|---------------|---------- ``20210309`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MitoHiFi.md b/docs/version-specific/supported-software/m/MitoHiFi.md index dfb707b28..4cd449848 100644 --- a/docs/version-specific/supported-software/m/MitoHiFi.md +++ b/docs/version-specific/supported-software/m/MitoHiFi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MitoHiFi MitoHiFi is a Python workflow that assembles mitogenomes from Pacbio HiFi reads @@ -7,3 +11,6 @@ MitoHiFi is a Python workflow that assembles mitogenomes from Pacbio HiFi reads version | toolchain --------|---------- ``3.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MitoZ.md b/docs/version-specific/supported-software/m/MitoZ.md index 24161f9f9..537641b29 100644 --- a/docs/version-specific/supported-software/m/MitoZ.md +++ b/docs/version-specific/supported-software/m/MitoZ.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MitoZ is a Python3-based toolkit which aims to automatically filter pair-end raw version | versionsuffix | toolchain --------|---------------|---------- ``2.3`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MixMHC2pred.md b/docs/version-specific/supported-software/m/MixMHC2pred.md index 2a11ee5c1..847a5f0f8 100644 --- a/docs/version-specific/supported-software/m/MixMHC2pred.md +++ b/docs/version-specific/supported-software/m/MixMHC2pred.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ MixMHC2pred is a predictor of HLA class II ligands and epitopes. It is describe version | toolchain --------|---------- ``1.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mmg.md b/docs/version-specific/supported-software/m/Mmg.md index 4c6f41046..9c5be1c6f 100644 --- a/docs/version-specific/supported-software/m/Mmg.md +++ b/docs/version-specific/supported-software/m/Mmg.md @@ -1,3 +1,7 @@ +--- +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 @@ -10,3 +14,6 @@ version | toolchain ``5.6.0`` | ``gompi/2021a`` ``5.6.0`` | ``gompi/2021b`` ``5.7.2`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/ModelTest-NG.md b/docs/version-specific/supported-software/m/ModelTest-NG.md index 46e2e254f..326a82ffd 100644 --- a/docs/version-specific/supported-software/m/ModelTest-NG.md +++ b/docs/version-specific/supported-software/m/ModelTest-NG.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ModelTest-NG is a tool for selecting the best-fit model of evolution for DNA and version | toolchain --------|---------- ``0.1.7`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Molcas.md b/docs/version-specific/supported-software/m/Molcas.md index ee011cf13..b2cc6ed60 100644 --- a/docs/version-specific/supported-software/m/Molcas.md +++ b/docs/version-specific/supported-software/m/Molcas.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Molden.md b/docs/version-specific/supported-software/m/Molden.md index 4bd41b690..a7c69ac12 100644 --- a/docs/version-specific/supported-software/m/Molden.md +++ b/docs/version-specific/supported-software/m/Molden.md @@ -1,3 +1,7 @@ +--- +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 @@ -14,3 +18,6 @@ version | toolchain ``6.8`` | ``GCCcore/9.3.0`` ``7.1`` | ``GCCcore/11.3.0`` ``7.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Molekel.md b/docs/version-specific/supported-software/m/Molekel.md index 1388c91cd..d636f9cd5 100644 --- a/docs/version-specific/supported-software/m/Molekel.md +++ b/docs/version-specific/supported-software/m/Molekel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Molekel Molekel is an open-source multi-platform molecular visualization program. @@ -7,3 +11,6 @@ Molekel is an open-source multi-platform molecular visualization program. version | versionsuffix | toolchain --------|---------------|---------- ``5.4.0`` | ``-Linux_x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Molpro.md b/docs/version-specific/supported-software/m/Molpro.md index 3ca3cce7f..3f019eb5a 100644 --- a/docs/version-specific/supported-software/m/Molpro.md +++ b/docs/version-specific/supported-software/m/Molpro.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Molpro Molpro is a complete system of ab initio programs for molecular electronic structure calculations. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2015.1.3`` | ``.linux_x86_64_openmp`` | ``system`` ``2024.1.0`` | ``.linux_x86_64_mpipr`` | ``system`` ``2024.1.0`` | ``.linux_x86_64_sockets`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mono.md b/docs/version-specific/supported-software/m/Mono.md index 18cd4af07..58c214696 100644 --- a/docs/version-specific/supported-software/m/Mono.md +++ b/docs/version-specific/supported-software/m/Mono.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Mono An open source, cross-platform, implementation of C# and the CLR that is binary compatible with Microsoft.NET. @@ -17,3 +21,6 @@ version | toolchain ``6.12.0.122`` | ``GCCcore/11.2.0`` ``6.4.0.198`` | ``foss/2018b`` ``6.8.0.105`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Monocle3.md b/docs/version-specific/supported-software/m/Monocle3.md index 32d82001e..2e8dcafda 100644 --- a/docs/version-specific/supported-software/m/Monocle3.md +++ b/docs/version-specific/supported-software/m/Monocle3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Monocle3 An analysis toolkit for single-cell RNA-seq. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MoreRONN.md b/docs/version-specific/supported-software/m/MoreRONN.md index 1a922a3b8..f71038fd3 100644 --- a/docs/version-specific/supported-software/m/MoreRONN.md +++ b/docs/version-specific/supported-software/m/MoreRONN.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MoreRONN is the spiritual successor of RONN and is useful for surveying disorde version | toolchain --------|---------- ``4.9`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Mothur.md b/docs/version-specific/supported-software/m/Mothur.md index a4cbb1b33..222bb987e 100644 --- a/docs/version-specific/supported-software/m/Mothur.md +++ b/docs/version-specific/supported-software/m/Mothur.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MotionCor2.md b/docs/version-specific/supported-software/m/MotionCor2.md index bcb15450f..8545a1776 100644 --- a/docs/version-specific/supported-software/m/MotionCor2.md +++ b/docs/version-specific/supported-software/m/MotionCor2.md @@ -1,3 +1,7 @@ +--- +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 @@ -13,3 +17,6 @@ version | toolchain ``1.4.4`` | ``GCCcore/10.2.0`` ``1.4.4`` | ``GCCcore/10.3.0`` ``1.5.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MotionCor3.md b/docs/version-specific/supported-software/m/MotionCor3.md index 852042979..839731e29 100644 --- a/docs/version-specific/supported-software/m/MotionCor3.md +++ b/docs/version-specific/supported-software/m/MotionCor3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Anisotropic correction of beam induced motion for cryo-electron microscopy and version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MoviePy.md b/docs/version-specific/supported-software/m/MoviePy.md index a453d0ab0..9d9cbd2ea 100644 --- a/docs/version-specific/supported-software/m/MoviePy.md +++ b/docs/version-specific/supported-software/m/MoviePy.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.0.3`` | | ``foss/2021a`` ``1.0.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MrBayes.md b/docs/version-specific/supported-software/m/MrBayes.md index 2f8edb1b4..121c1917e 100644 --- a/docs/version-specific/supported-software/m/MrBayes.md +++ b/docs/version-specific/supported-software/m/MrBayes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MrBayes MrBayes is a program for the Bayesian estimation of phylogeny. @@ -14,3 +18,6 @@ version | toolchain ``3.2.7`` | ``gompic/2019b`` ``3.2.7a`` | ``foss/2020a`` ``3.2.7a`` | ``iimpi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MuJoCo.md b/docs/version-specific/supported-software/m/MuJoCo.md index 88658a533..7a04c16fd 100644 --- a/docs/version-specific/supported-software/m/MuJoCo.md +++ b/docs/version-specific/supported-software/m/MuJoCo.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.1.1`` | ``GCCcore/11.2.0`` ``2.2.2`` | ``GCCcore/11.3.0`` ``3.1.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MuPeXI.md b/docs/version-specific/supported-software/m/MuPeXI.md index 2193f70f0..4860714ae 100644 --- a/docs/version-specific/supported-software/m/MuPeXI.md +++ b/docs/version-specific/supported-software/m/MuPeXI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MuPeXI: Mutant Peptide eXtractor and Informer. Given a list of somatic mutations version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-Perl-5.28.0-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MuSiC.md b/docs/version-specific/supported-software/m/MuSiC.md index ccd44e5ae..248cc87aa 100644 --- a/docs/version-specific/supported-software/m/MuSiC.md +++ b/docs/version-specific/supported-software/m/MuSiC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Multi-subject Single Cell deconvolution (MuSiC) is a deconvolution method that u version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MuTect.md b/docs/version-specific/supported-software/m/MuTect.md index 80548b2c1..84ae53e75 100644 --- a/docs/version-specific/supported-software/m/MuTect.md +++ b/docs/version-specific/supported-software/m/MuTect.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MultiNest.md b/docs/version-specific/supported-software/m/MultiNest.md index d4e427346..4c4cbbd41 100644 --- a/docs/version-specific/supported-software/m/MultiNest.md +++ b/docs/version-specific/supported-software/m/MultiNest.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MultiNest is a Bayesian inference tool which calculates the evidence and explore version | toolchain --------|---------- ``3.10`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MultiQC.md b/docs/version-specific/supported-software/m/MultiQC.md index fc5ff7587..04bf425cb 100644 --- a/docs/version-specific/supported-software/m/MultiQC.md +++ b/docs/version-specific/supported-software/m/MultiQC.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``1.9`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.9`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MultilevelEstimators.md b/docs/version-specific/supported-software/m/MultilevelEstimators.md index c811ce480..925838669 100644 --- a/docs/version-specific/supported-software/m/MultilevelEstimators.md +++ b/docs/version-specific/supported-software/m/MultilevelEstimators.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MultilevelEstimators The Julia module for Multilevel Monte Carlo methods @@ -7,3 +11,6 @@ The Julia module for Multilevel Monte Carlo methods version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-Julia-1.7.2`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Multiwfn.md b/docs/version-specific/supported-software/m/Multiwfn.md index 19c0c0fac..09da76203 100644 --- a/docs/version-specific/supported-software/m/Multiwfn.md +++ b/docs/version-specific/supported-software/m/Multiwfn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Multiwfn A multifunctional wavefunction analyzer @@ -9,3 +13,6 @@ version | toolchain ``3.4.1`` | ``intel/2017b`` ``3.6`` | ``intel/2019a`` ``3.6`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MyCC.md b/docs/version-specific/supported-software/m/MyCC.md index b74443deb..d6a5835e0 100644 --- a/docs/version-specific/supported-software/m/MyCC.md +++ b/docs/version-specific/supported-software/m/MyCC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MyCC MyCC is built and delivered as a tailored solution for metagenomics sequencesclassfication. @@ -7,3 +11,6 @@ MyCC is built and delivered as a tailored solution for metagenomics sequencescla version | versionsuffix | toolchain --------|---------------|---------- ``2017-03-01`` | ``-Python-2.7.16`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MyMediaLite.md b/docs/version-specific/supported-software/m/MyMediaLite.md index cacdaeccc..9eab201a7 100644 --- a/docs/version-specific/supported-software/m/MyMediaLite.md +++ b/docs/version-specific/supported-software/m/MyMediaLite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MyMediaLite MyMediaLite is a lightweight, multi-purpose library of recommender system algorithms. @@ -9,3 +13,6 @@ version | toolchain ``3.10`` | ``intel/2016b`` ``3.11`` | ``intel/2016b`` ``3.12`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MySQL-python.md b/docs/version-specific/supported-software/m/MySQL-python.md index 384dbee48..7a6fbd0bc 100644 --- a/docs/version-specific/supported-software/m/MySQL-python.md +++ b/docs/version-specific/supported-software/m/MySQL-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # MySQL-python MySQL database connector for Python @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/MySQL.md b/docs/version-specific/supported-software/m/MySQL.md index c156c2d75..7b86f1e45 100644 --- a/docs/version-specific/supported-software/m/MySQL.md +++ b/docs/version-specific/supported-software/m/MySQL.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.6.26`` | ``-clientonly`` | ``GNU/4.9.3-2.25`` ``5.7.21`` | ``-clientonly`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/Myokit.md b/docs/version-specific/supported-software/m/Myokit.md index 16aaa5e9c..249617782 100644 --- a/docs/version-specific/supported-software/m/Myokit.md +++ b/docs/version-specific/supported-software/m/Myokit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Myokit Myokit is an open-source Python-based toolkit that facilitates modeling and simulation of cardiac cellular electrophysiology. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.32.0`` | ``foss/2020b`` ``1.32.0`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/index.md b/docs/version-specific/supported-software/m/index.md index 33ec321fd..e58764f79 100644 --- a/docs/version-specific/supported-software/m/index.md +++ b/docs/version-specific/supported-software/m/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (m) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - *m* - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [M1QN3](M1QN3.md) * [M3GNet](M3GNet.md) * [M4](M4.md) diff --git a/docs/version-specific/supported-software/m/m4ri.md b/docs/version-specific/supported-software/m/m4ri.md index f76c71dad..d841a1116 100644 --- a/docs/version-specific/supported-software/m/m4ri.md +++ b/docs/version-specific/supported-software/m/m4ri.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # m4ri M4RI is a library for fast arithmetic with dense matrices over F2. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20200125`` | ``GCC/11.3.0`` ``20200125`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/m4rie.md b/docs/version-specific/supported-software/m/m4rie.md index dac27d946..2b6226765 100644 --- a/docs/version-specific/supported-software/m/m4rie.md +++ b/docs/version-specific/supported-software/m/m4rie.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # m4rie M4RIE is a library for fast arithmetic with dense matrices. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20200125`` | ``GCC/11.3.0`` ``20200125`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/maeparser.md b/docs/version-specific/supported-software/m/maeparser.md index 5d5409e9e..e807e6cf5 100644 --- a/docs/version-specific/supported-software/m/maeparser.md +++ b/docs/version-specific/supported-software/m/maeparser.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # maeparser maeparser is a parser for Schrodinger Maestro files. @@ -13,3 +17,6 @@ version | toolchain ``1.3.0`` | ``gompi/2022a`` ``1.3.0`` | ``iimpi/2020a`` ``1.3.1`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/magick.md b/docs/version-specific/supported-software/m/magick.md index 2c51d018f..654411ae3 100644 --- a/docs/version-specific/supported-software/m/magick.md +++ b/docs/version-specific/supported-software/m/magick.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # magick R bindings to the open-source image processing library ImageMagick @@ -7,3 +11,6 @@ R bindings to the open-source image processing library ImageMagick version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/magma.md b/docs/version-specific/supported-software/m/magma.md index dc89f05c9..aa3b177a6 100644 --- a/docs/version-specific/supported-software/m/magma.md +++ b/docs/version-specific/supported-software/m/magma.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mahotas.md b/docs/version-specific/supported-software/m/mahotas.md index 719fe599a..9ec450493 100644 --- a/docs/version-specific/supported-software/m/mahotas.md +++ b/docs/version-specific/supported-software/m/mahotas.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mahotas Mahotas is a computer vision and image processing library for Python @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.13`` | | ``foss/2022a`` ``1.4.3`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/make.md b/docs/version-specific/supported-software/m/make.md index 80072d97e..d41db3766 100644 --- a/docs/version-specific/supported-software/m/make.md +++ b/docs/version-specific/supported-software/m/make.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # make make-3.82: GNU version of make utility @@ -20,3 +24,6 @@ version | toolchain ``4.4.1`` | ``GCCcore/12.3.0`` ``4.4.1`` | ``GCCcore/13.2.0`` ``4.4.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/makedepend.md b/docs/version-specific/supported-software/m/makedepend.md index 10024226a..d4e3f8452 100644 --- a/docs/version-specific/supported-software/m/makedepend.md +++ b/docs/version-specific/supported-software/m/makedepend.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # makedepend The makedepend package contains a C-preprocessor like utility to determine build-time dependencies. @@ -18,3 +22,6 @@ version | toolchain ``1.0.6`` | ``GCCcore/9.3.0`` ``1.0.7`` | ``GCCcore/11.3.0`` ``1.0.7`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/makedepf90.md b/docs/version-specific/supported-software/m/makedepf90.md index ff406a2cf..edab0b88a 100644 --- a/docs/version-specific/supported-software/m/makedepf90.md +++ b/docs/version-specific/supported-software/m/makedepf90.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # makedepf90 Makedepf90 is a program for automatic creation of Makefile-style dependency lists for Fortran source code. @@ -7,3 +11,6 @@ Makedepf90 is a program for automatic creation of Makefile-style dependency lis version | toolchain --------|---------- ``2.8.8`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/makefun.md b/docs/version-specific/supported-software/m/makefun.md index 36605dd9c..d385b2d42 100644 --- a/docs/version-specific/supported-software/m/makefun.md +++ b/docs/version-specific/supported-software/m/makefun.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Small library to dynamically create python functions. makefun helps you create f version | toolchain --------|---------- ``1.15.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/makeinfo.md b/docs/version-specific/supported-software/m/makeinfo.md index 3369b83fe..51567acd1 100644 --- a/docs/version-specific/supported-software/m/makeinfo.md +++ b/docs/version-specific/supported-software/m/makeinfo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # makeinfo makeinfo is part of the Texinfo project, the official documentation format of the GNU project. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``7.0.3`` | | ``GCCcore/12.3.0`` ``7.1`` | | ``GCCcore/13.2.0`` ``7.1`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mandrake.md b/docs/version-specific/supported-software/m/mandrake.md index 57a2c82b7..930938cb1 100644 --- a/docs/version-specific/supported-software/m/mandrake.md +++ b/docs/version-specific/supported-software/m/mandrake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mandrake Fast visualisation of the population structure of pathogens using Stochastic Cluster Embedding. @@ -7,3 +11,6 @@ Fast visualisation of the population structure of pathogens using Stochastic Cl version | toolchain --------|---------- ``1.2.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mannkendall.md b/docs/version-specific/supported-software/m/mannkendall.md index f00867f8a..c190d1de9 100644 --- a/docs/version-specific/supported-software/m/mannkendall.md +++ b/docs/version-specific/supported-software/m/mannkendall.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mannkendall A python package for non parametric Mann Kendall family of trend tests. @@ -7,3 +11,6 @@ A python package for non parametric Mann Kendall family of trend tests. version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/manta.md b/docs/version-specific/supported-software/m/manta.md index c1fd0bb84..56def927c 100644 --- a/docs/version-specific/supported-software/m/manta.md +++ b/docs/version-specific/supported-software/m/manta.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-2.7.16`` | ``gompi/2019b`` ``1.6.0`` | ``-Python-2.7.18`` | ``gompi/2020a`` ``1.6.0`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mapDamage.md b/docs/version-specific/supported-software/m/mapDamage.md index d87d2ad20..25292d112 100644 --- a/docs/version-specific/supported-software/m/mapDamage.md +++ b/docs/version-specific/supported-software/m/mapDamage.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-R-4.1.0`` | ``foss/2021a`` ``2.2.1`` | | ``foss/2021b`` ``2.2.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/matlab-proxy.md b/docs/version-specific/supported-software/m/matlab-proxy.md index 24d214fa1..f1b031543 100644 --- a/docs/version-specific/supported-software/m/matlab-proxy.md +++ b/docs/version-specific/supported-software/m/matlab-proxy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # matlab-proxy A Python package which enables you to launch MATLAB and access it from a web browser. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.18.1`` | ``GCCcore/12.3.0`` ``0.5.4`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/matplotlib-inline.md b/docs/version-specific/supported-software/m/matplotlib-inline.md index 7e2ea8592..8cfac5d18 100644 --- a/docs/version-specific/supported-software/m/matplotlib-inline.md +++ b/docs/version-specific/supported-software/m/matplotlib-inline.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # matplotlib-inline Matplotlib Inline Back-end for IPython and Jupyter. @@ -7,3 +11,6 @@ Matplotlib Inline Back-end for IPython and Jupyter. version | toolchain --------|---------- ``0.1.3`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/matplotlib.md b/docs/version-specific/supported-software/m/matplotlib.md index 2ee13a59b..21accf409 100644 --- a/docs/version-specific/supported-software/m/matplotlib.md +++ b/docs/version-specific/supported-software/m/matplotlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -102,3 +106,6 @@ version | versionsuffix | toolchain ``3.7.2`` | | ``gfbf/2023a`` ``3.7.2`` | | ``iimkl/2023a`` ``3.8.2`` | | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/maturin.md b/docs/version-specific/supported-software/m/maturin.md index a83fb7cfa..2c3a06ff3 100644 --- a/docs/version-specific/supported-software/m/maturin.md +++ b/docs/version-specific/supported-software/m/maturin.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mauveAligner.md b/docs/version-specific/supported-software/m/mauveAligner.md index 7613e83f4..188674c4c 100644 --- a/docs/version-specific/supported-software/m/mauveAligner.md +++ b/docs/version-specific/supported-software/m/mauveAligner.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Mauve is a system for constructing multiple genome alignments in the presence of version | toolchain --------|---------- ``4736`` | ``gompi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mawk.md b/docs/version-specific/supported-software/m/mawk.md index 1b3d77bcd..804abdadc 100644 --- a/docs/version-specific/supported-software/m/mawk.md +++ b/docs/version-specific/supported-software/m/mawk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mawk mawk is an interpreter for the AWK Programming Language. @@ -13,3 +17,6 @@ version | toolchain ``1.3.4-20171017`` | ``intel/2018a`` ``1.3.4-20171017`` | ``intel/2018b`` ``1.3.4-20171017`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mayavi.md b/docs/version-specific/supported-software/m/mayavi.md index 61067921c..37d3ff743 100644 --- a/docs/version-specific/supported-software/m/mayavi.md +++ b/docs/version-specific/supported-software/m/mayavi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mayavi The Mayavi scientific data 3-dimensional visualizer @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``4.7.1`` | ``-Python-2.7.15`` | ``foss/2019a`` ``4.7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``4.7.4`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/maze.md b/docs/version-specific/supported-software/m/maze.md index 67e9585fb..b880ab7f7 100644 --- a/docs/version-specific/supported-software/m/maze.md +++ b/docs/version-specific/supported-software/m/maze.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ In a similar manner to dot plots, maze highlights local sequence similarity betw version | toolchain --------|---------- ``20170124`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mbuffer.md b/docs/version-specific/supported-software/m/mbuffer.md index ac89883a6..2e533d3a8 100644 --- a/docs/version-specific/supported-software/m/mbuffer.md +++ b/docs/version-specific/supported-software/m/mbuffer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mbuffer mbuffer is a tool for buffering data streams with a large set of unique features. @@ -7,3 +11,6 @@ mbuffer is a tool for buffering data streams with a large set of unique features version | toolchain --------|---------- ``20191016`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mc.md b/docs/version-specific/supported-software/m/mc.md index d1c27fe0f..7a8cc9b61 100644 --- a/docs/version-specific/supported-software/m/mc.md +++ b/docs/version-specific/supported-software/m/mc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mc mc-4.6.1: User-friendly file manager and visual shell @@ -7,3 +11,6 @@ mc-4.6.1: User-friendly file manager and visual shell version | toolchain --------|---------- ``4.8.13`` | ``GCC/4.9.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mctc-lib.md b/docs/version-specific/supported-software/m/mctc-lib.md index 82fc946b1..230b10d28 100644 --- a/docs/version-specific/supported-software/m/mctc-lib.md +++ b/docs/version-specific/supported-software/m/mctc-lib.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``0.3.1`` | ``GCC/12.2.0`` ``0.3.1`` | ``intel-compilers/2022.1.0`` ``0.3.1`` | ``intel-compilers/2022.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mcu.md b/docs/version-specific/supported-software/m/mcu.md index df7f88de4..065bdcd7a 100644 --- a/docs/version-specific/supported-software/m/mcu.md +++ b/docs/version-specific/supported-software/m/mcu.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A package for periodic wavefunction and crystallography analysis. mcu is design version | toolchain --------|---------- ``2021-04-06`` | ``gomkl/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mdtest.md b/docs/version-specific/supported-software/m/mdtest.md index 4c3484c71..c02d7964f 100644 --- a/docs/version-specific/supported-software/m/mdtest.md +++ b/docs/version-specific/supported-software/m/mdtest.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ mdtest is an MPI-coordinated metadata benchmark test that performs open/stat/c version | toolchain --------|---------- ``1.9.3`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mdust.md b/docs/version-specific/supported-software/m/mdust.md index 118fccd95..97363b463 100644 --- a/docs/version-specific/supported-software/m/mdust.md +++ b/docs/version-specific/supported-software/m/mdust.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mdust mdust from DFCI Gene Indices Software Tools (archived for a historical record only) @@ -7,3 +11,6 @@ mdust from DFCI Gene Indices Software Tools (archived for a historical record on version | toolchain --------|---------- ``20150102`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/meRanTK.md b/docs/version-specific/supported-software/m/meRanTK.md index ff104a313..3e0359f6f 100644 --- a/docs/version-specific/supported-software/m/meRanTK.md +++ b/docs/version-specific/supported-software/m/meRanTK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # meRanTK meRanTK is a versatile high performance toolkit for complete analysis of methylated RNA data. @@ -7,3 +11,6 @@ meRanTK is a versatile high performance toolkit for complete analysis of methyla version | toolchain --------|---------- ``1.1.1b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/meboot.md b/docs/version-specific/supported-software/m/meboot.md index dddda088e..8fe3004eb 100644 --- a/docs/version-specific/supported-software/m/meboot.md +++ b/docs/version-specific/supported-software/m/meboot.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Maximum entropy density based dependent data bootstrap. An algorithm is provide version | versionsuffix | toolchain --------|---------------|---------- ``1.4-9.2`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/medImgProc.md b/docs/version-specific/supported-software/m/medImgProc.md index 780b19337..e3cb60e91 100644 --- a/docs/version-specific/supported-software/m/medImgProc.md +++ b/docs/version-specific/supported-software/m/medImgProc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # medImgProc Motion correction, explicit spatio-temporal regularization of motion tracking, random speckles enhancement, and segmentation. @@ -7,3 +11,6 @@ Motion correction, explicit spatio-temporal regularization of motion tracking, r version | versionsuffix | toolchain --------|---------------|---------- ``2.5.7`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/medaka.md b/docs/version-specific/supported-software/m/medaka.md index 86055b6f0..8cdd5e11b 100644 --- a/docs/version-specific/supported-software/m/medaka.md +++ b/docs/version-specific/supported-software/m/medaka.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # medaka medaka is a tool to create a consensus sequence from nanopore sequencing data. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``1.8.1`` | | ``foss/2022a`` ``1.9.1`` | | ``foss/2022a`` ``1.9.1`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/memkind.md b/docs/version-specific/supported-software/m/memkind.md index 802946b10..60614c104 100644 --- a/docs/version-specific/supported-software/m/memkind.md +++ b/docs/version-specific/supported-software/m/memkind.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ User Extensible Heap Manager built on top of jemalloc which enables control of m version | toolchain --------|---------- ``1.5.0`` | ``GCCcore/5.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/memory-profiler.md b/docs/version-specific/supported-software/m/memory-profiler.md index 8adf1e1b5..4c3715e44 100644 --- a/docs/version-specific/supported-software/m/memory-profiler.md +++ b/docs/version-specific/supported-software/m/memory-profiler.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.55.0`` | ``foss/2019a`` ``0.55.0`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/memtester.md b/docs/version-specific/supported-software/m/memtester.md index f7f96da28..f268d872e 100644 --- a/docs/version-specific/supported-software/m/memtester.md +++ b/docs/version-specific/supported-software/m/memtester.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # memtester A userspace utility for testing the memory subsystem for faults @@ -7,3 +11,6 @@ A userspace utility for testing the memory subsystem for faults version | toolchain --------|---------- ``4.5.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/meshalyzer.md b/docs/version-specific/supported-software/m/meshalyzer.md index 87c25055d..54238eec7 100644 --- a/docs/version-specific/supported-software/m/meshalyzer.md +++ b/docs/version-specific/supported-software/m/meshalyzer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # meshalyzer Graphical program for display time dependent data on 3D finite elment meshes @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.2`` | | ``foss/2020b`` ``20200308`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/meshio.md b/docs/version-specific/supported-software/m/meshio.md index b019acc79..9ba6f1e1b 100644 --- a/docs/version-specific/supported-software/m/meshio.md +++ b/docs/version-specific/supported-software/m/meshio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # meshio meshio is a tool for reading/writing various mesh formats representing unstructured meshes @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.0.2`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.0.2`` | ``-Python-3.6.4`` | ``intel/2018a`` ``5.3.4`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/meshtool.md b/docs/version-specific/supported-software/m/meshtool.md index 41df0cc82..af3eb8612 100644 --- a/docs/version-specific/supported-software/m/meshtool.md +++ b/docs/version-specific/supported-software/m/meshtool.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # meshtool Meshtool is a comand-line tool written in C++. It is designed to apply various manipulations to volumetric meshes. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``16`` | ``GCC/10.2.0`` ``16`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/meson-python.md b/docs/version-specific/supported-software/m/meson-python.md index 78b698703..e56669e05 100644 --- a/docs/version-specific/supported-software/m/meson-python.md +++ b/docs/version-specific/supported-software/m/meson-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # meson-python Python build backend (PEP 517) for Meson projects @@ -10,3 +14,6 @@ version | toolchain ``0.13.2`` | ``GCCcore/12.3.0`` ``0.15.0`` | ``GCCcore/12.3.0`` ``0.15.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/metaWRAP.md b/docs/version-specific/supported-software/m/metaWRAP.md index 97d34baf3..c0aaeb243 100644 --- a/docs/version-specific/supported-software/m/metaWRAP.md +++ b/docs/version-specific/supported-software/m/metaWRAP.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/metaerg.md b/docs/version-specific/supported-software/m/metaerg.md index 1354f8351..af0bd85a0 100644 --- a/docs/version-specific/supported-software/m/metaerg.md +++ b/docs/version-specific/supported-software/m/metaerg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # metaerg MetaErg is a stand-alone and fully automated metagenomic and metaproteomic data annotation pipeline. @@ -7,3 +11,6 @@ MetaErg is a stand-alone and fully automated metagenomic and metaproteomic data version | versionsuffix | toolchain --------|---------------|---------- ``1.2.3`` | ``-Python-2.7.16`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/methylartist.md b/docs/version-specific/supported-software/m/methylartist.md index c744ac64c..7560ab392 100644 --- a/docs/version-specific/supported-software/m/methylartist.md +++ b/docs/version-specific/supported-software/m/methylartist.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # methylartist Tools for plotting methylation data in various ways @@ -7,3 +11,6 @@ Tools for plotting methylation data in various ways version | toolchain --------|---------- ``1.2.6`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/methylpy.md b/docs/version-specific/supported-software/m/methylpy.md index f9d52b40f..79bc8a6a0 100644 --- a/docs/version-specific/supported-software/m/methylpy.md +++ b/docs/version-specific/supported-software/m/methylpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # methylpy Bisulfite sequencing data processing and differential methylation analysis. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.9`` | ``-Python-2.7.13`` | ``foss/2017a`` ``1.2.9`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mfqe.md b/docs/version-specific/supported-software/m/mfqe.md index d735d35c3..2ab0dec5c 100644 --- a/docs/version-specific/supported-software/m/mfqe.md +++ b/docs/version-specific/supported-software/m/mfqe.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mfqe extract one or more sets of reads from a FASTQ (or FASTA) file by specifying their read names. @@ -7,3 +11,6 @@ extract one or more sets of reads from a FASTQ (or FASTA) file by specifying the version | toolchain --------|---------- ``0.5.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mgen.md b/docs/version-specific/supported-software/m/mgen.md index 0b2958a15..522fb4541 100644 --- a/docs/version-specific/supported-software/m/mgen.md +++ b/docs/version-specific/supported-software/m/mgen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mgen Convenient matrix generation functions @@ -7,3 +11,6 @@ Convenient matrix generation functions version | toolchain --------|---------- ``1.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mgltools.md b/docs/version-specific/supported-software/m/mgltools.md index 970e258ce..f4db668d8 100644 --- a/docs/version-specific/supported-software/m/mgltools.md +++ b/docs/version-specific/supported-software/m/mgltools.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ The MGLTools software suite can be used for visualization and analysis of mo version | toolchain --------|---------- ``1.5.7`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mhcflurry.md b/docs/version-specific/supported-software/m/mhcflurry.md index 2d6dd92d9..1670b35b0 100644 --- a/docs/version-specific/supported-software/m/mhcflurry.md +++ b/docs/version-specific/supported-software/m/mhcflurry.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.4`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.2.4`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mhcnuggets.md b/docs/version-specific/supported-software/m/mhcnuggets.md index b593c7a77..34cb95696 100644 --- a/docs/version-specific/supported-software/m/mhcnuggets.md +++ b/docs/version-specific/supported-software/m/mhcnuggets.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mhcnuggets MHCnuggets: Neoantigen peptide MHC binding prediction for class I and II. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.3`` | | ``foss/2020b`` ``2.3`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` ``2.3`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/miRDeep2.md b/docs/version-specific/supported-software/m/miRDeep2.md index 2a2374b5d..ebbd6f6ee 100644 --- a/docs/version-specific/supported-software/m/miRDeep2.md +++ b/docs/version-specific/supported-software/m/miRDeep2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # miRDeep2 miRDeep2 is a completely overhauled tool which discovers microRNA genes by analyzing sequenced RNAs @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.0.0.8`` | | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/microctools.md b/docs/version-specific/supported-software/m/microctools.md index ec100ba79..58b42b064 100644 --- a/docs/version-specific/supported-software/m/microctools.md +++ b/docs/version-specific/supported-software/m/microctools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # microctools Various worker functions for microclimc package @@ -7,3 +11,6 @@ Various worker functions for microclimc package version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20201209`` | ``-R-4.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mimalloc.md b/docs/version-specific/supported-software/m/mimalloc.md index c3c1b85b3..cd11b99aa 100644 --- a/docs/version-specific/supported-software/m/mimalloc.md +++ b/docs/version-specific/supported-software/m/mimalloc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mimalloc mimalloc is a general purpose allocator with excellent performance characteristics. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.7.2`` | ``GCCcore/10.3.0`` ``1.7.2`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/miniasm.md b/docs/version-specific/supported-software/m/miniasm.md index 5f4342932..9d6bc506e 100644 --- a/docs/version-specific/supported-software/m/miniasm.md +++ b/docs/version-specific/supported-software/m/miniasm.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.3-20191007`` | ``GCCcore/10.3.0`` ``0.3-20191007`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/minibar.md b/docs/version-specific/supported-software/m/minibar.md index ee12afea6..462536424 100644 --- a/docs/version-specific/supported-software/m/minibar.md +++ b/docs/version-specific/supported-software/m/minibar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # minibar Dual barcode and primer demultiplexing for MinION sequenced reads @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200326`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` ``20200326`` | ``-Python-3.8.2`` | ``iccifort/2020.1.217`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/minieigen.md b/docs/version-specific/supported-software/m/minieigen.md index da1c4ba3f..488185bb5 100644 --- a/docs/version-specific/supported-software/m/minieigen.md +++ b/docs/version-specific/supported-software/m/minieigen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # minieigen A small wrapper for core parts of EIgen, c++ library for linear algebra. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/minimap2.md b/docs/version-specific/supported-software/m/minimap2.md index cd5458836..96fdfda04 100644 --- a/docs/version-specific/supported-software/m/minimap2.md +++ b/docs/version-specific/supported-software/m/minimap2.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | toolchain ``2.24`` | ``GCCcore/11.3.0`` ``2.26`` | ``GCCcore/12.2.0`` ``2.26`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/minizip.md b/docs/version-specific/supported-software/m/minizip.md index e5b96b699..3d4afa30f 100644 --- a/docs/version-specific/supported-software/m/minizip.md +++ b/docs/version-specific/supported-software/m/minizip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # minizip Mini zip and unzip based on zlib @@ -7,3 +11,6 @@ Mini zip and unzip based on zlib version | toolchain --------|---------- ``1.1`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/misha.md b/docs/version-specific/supported-software/m/misha.md index 34bae904c..8c4cd318e 100644 --- a/docs/version-specific/supported-software/m/misha.md +++ b/docs/version-specific/supported-software/m/misha.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # misha The misha package is intended to help users to efficiently analyze genomic data achieved from various experiments. @@ -7,3 +11,6 @@ The misha package is intended to help users to efficiently analyze genomic data version | versionsuffix | toolchain --------|---------------|---------- ``4.0.10`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mkl-dnn.md b/docs/version-specific/supported-software/m/mkl-dnn.md index 043495e07..9055a3cf7 100644 --- a/docs/version-specific/supported-software/m/mkl-dnn.md +++ b/docs/version-specific/supported-software/m/mkl-dnn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mkl-dnn Intel(R) Math Kernel Library for Deep Neural Networks (Intel(R) MKL-DNN) @@ -11,3 +15,6 @@ version | toolchain ``0.16`` | ``foss/2018b`` ``0.16`` | ``intel/2018b`` ``0.17.2`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mkl-service.md b/docs/version-specific/supported-software/m/mkl-service.md index f0162a959..4838a193c 100644 --- a/docs/version-specific/supported-software/m/mkl-service.md +++ b/docs/version-specific/supported-software/m/mkl-service.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mkl-service Python hooks for Intel(R) Math Kernel Library runtime control settings. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.3.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``2.3.0`` | | ``intel/2020b`` ``2.3.0`` | | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mkl_fft.md b/docs/version-specific/supported-software/m/mkl_fft.md index 171ce9a65..78aa87479 100644 --- a/docs/version-specific/supported-software/m/mkl_fft.md +++ b/docs/version-specific/supported-software/m/mkl_fft.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mkl_fft NumPy-based Python interface to Intel(R) MKL FFT functionality @@ -7,3 +11,6 @@ NumPy-based Python interface to Intel(R) MKL FFT functionality version | versionsuffix | toolchain --------|---------------|---------- ``1.0.14`` | ``-Python-3.6.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/ml-collections.md b/docs/version-specific/supported-software/m/ml-collections.md index 9be776cd2..6aa4965ad 100644 --- a/docs/version-specific/supported-software/m/ml-collections.md +++ b/docs/version-specific/supported-software/m/ml-collections.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ml-collections ML Collections is a library of Python Collections designed for ML use cases. @@ -7,3 +11,6 @@ ML Collections is a library of Python Collections designed for ML use cases. version | toolchain --------|---------- ``0.1.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/ml_dtypes.md b/docs/version-specific/supported-software/m/ml_dtypes.md index ae23f98c5..15b26d974 100644 --- a/docs/version-specific/supported-software/m/ml_dtypes.md +++ b/docs/version-specific/supported-software/m/ml_dtypes.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ ml_dtypes is a stand-alone implementation of several NumPy dtype extensions used version | toolchain --------|---------- ``0.3.2`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mlpack.md b/docs/version-specific/supported-software/m/mlpack.md index c8693a207..8cef98dd2 100644 --- a/docs/version-specific/supported-software/m/mlpack.md +++ b/docs/version-specific/supported-software/m/mlpack.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ mlpack is a fast, header-only C++ machine learning library written in C++ and bu version | toolchain --------|---------- ``4.3.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mm-common.md b/docs/version-specific/supported-software/m/mm-common.md index b06e9cdde..7e2e2e911 100644 --- a/docs/version-specific/supported-software/m/mm-common.md +++ b/docs/version-specific/supported-software/m/mm-common.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mm-common The mm-common module provides the build infrastructure and utilities shared among the GNOME C++ binding libraries. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``GCCcore/10.3.0`` ``1.0.5`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mmtf-cpp.md b/docs/version-specific/supported-software/m/mmtf-cpp.md index 997a10d9f..e8688ac84 100644 --- a/docs/version-specific/supported-software/m/mmtf-cpp.md +++ b/docs/version-specific/supported-software/m/mmtf-cpp.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Macromolecular Transmission Format (MMTF) is a new compact binary format to version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/modred.md b/docs/version-specific/supported-software/m/modred.md index 30e6639fb..ed5059a7b 100644 --- a/docs/version-specific/supported-software/m/modred.md +++ b/docs/version-specific/supported-software/m/modred.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # modred Compute modal decompositions and reduced-order models, easily, efficiently, and in parallel. @@ -7,3 +11,6 @@ Compute modal decompositions and reduced-order models, easily, efficiently, and version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-Python-3.5.2`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mold.md b/docs/version-specific/supported-software/m/mold.md index e1fbfbce4..90989a0ec 100644 --- a/docs/version-specific/supported-software/m/mold.md +++ b/docs/version-specific/supported-software/m/mold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mold mold is a high-performance drop-in replacement for existing Unix linkers. @@ -14,3 +18,6 @@ version | toolchain ``1.7.1`` | ``GCCcore/12.2.0`` ``2.3.1`` | ``GCCcore/13.2.0`` ``2.31.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/molecularGSM.md b/docs/version-specific/supported-software/m/molecularGSM.md index 98eb3adc4..f002e9f1b 100644 --- a/docs/version-specific/supported-software/m/molecularGSM.md +++ b/docs/version-specific/supported-software/m/molecularGSM.md @@ -1,3 +1,7 @@ +--- +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++. @@ -7,3 +11,6 @@ Code for single-ended and double-ended molecular GSM. The growing string method version | toolchain --------|---------- ``20190826`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/molmod.md b/docs/version-specific/supported-software/m/molmod.md index 641ebd813..8cd8dd504 100644 --- a/docs/version-specific/supported-software/m/molmod.md +++ b/docs/version-specific/supported-software/m/molmod.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # molmod MolMod is a Python library with many compoments that are useful to write molecular modeling programs. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``1.4.8`` | | ``foss/2021a`` ``1.4.8`` | | ``foss/2021b`` ``1.4.8`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mongolite.md b/docs/version-specific/supported-software/m/mongolite.md index ddd36b542..b0a589881 100644 --- a/docs/version-specific/supported-software/m/mongolite.md +++ b/docs/version-specific/supported-software/m/mongolite.md @@ -1,3 +1,7 @@ +--- +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: . @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/moonjit.md b/docs/version-specific/supported-software/m/moonjit.md index 442c72be6..33421a7e6 100644 --- a/docs/version-specific/supported-software/m/moonjit.md +++ b/docs/version-specific/supported-software/m/moonjit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Moonjit is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua version | toolchain --------|---------- ``2.2.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mordecai.md b/docs/version-specific/supported-software/m/mordecai.md index b586e8106..4be06a0ab 100644 --- a/docs/version-specific/supported-software/m/mordecai.md +++ b/docs/version-specific/supported-software/m/mordecai.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ mordecai is a full text geoparsing as a Python library. Extract the place names version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/morphosamplers.md b/docs/version-specific/supported-software/m/morphosamplers.md index f74e66e4c..8b6669569 100644 --- a/docs/version-specific/supported-software/m/morphosamplers.md +++ b/docs/version-specific/supported-software/m/morphosamplers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # morphosamplers A library for sampling image data along morphological objects such as splines and surfaces. @@ -7,3 +11,6 @@ A library for sampling image data along morphological objects such as splines an version | toolchain --------|---------- ``0.0.10`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mosdepth.md b/docs/version-specific/supported-software/m/mosdepth.md index 181edcf39..ad02801b7 100644 --- a/docs/version-specific/supported-software/m/mosdepth.md +++ b/docs/version-specific/supported-software/m/mosdepth.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mosdepth Fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing @@ -10,3 +14,6 @@ version | toolchain ``0.2.3`` | ``intel/2018a`` ``0.2.4`` | ``foss/2018b`` ``0.3.3`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/motif.md b/docs/version-specific/supported-software/m/motif.md index 08a8a0eba..c69641082 100644 --- a/docs/version-specific/supported-software/m/motif.md +++ b/docs/version-specific/supported-software/m/motif.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``2.3.8`` | ``intel/2017b`` ``2.3.8`` | ``intel/2018a`` ``2.3.8`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/motionSegmentation.md b/docs/version-specific/supported-software/m/motionSegmentation.md index 4f662ddb3..82927f824 100644 --- a/docs/version-specific/supported-software/m/motionSegmentation.md +++ b/docs/version-specific/supported-software/m/motionSegmentation.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # motionSegmentation Motion correction, explicit spatio-temporal regularization of motion tracking, random speckles enhancement, and segmentation. @@ -7,3 +11,6 @@ Motion correction, explicit spatio-temporal regularization of motion tracking, r version | versionsuffix | toolchain --------|---------------|---------- ``2.7.9`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mpath.md b/docs/version-specific/supported-software/m/mpath.md index 1e0d21a57..460b8c651 100644 --- a/docs/version-specific/supported-software/m/mpath.md +++ b/docs/version-specific/supported-software/m/mpath.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ For now it's quit simple and get_path_info() method returns information about gi version | toolchain --------|---------- ``1.1.3`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mpi4py.md b/docs/version-specific/supported-software/m/mpi4py.md index d135c1676..71430f1f3 100644 --- a/docs/version-specific/supported-software/m/mpi4py.md +++ b/docs/version-specific/supported-software/m/mpi4py.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``3.1.4`` | | ``gompi/2022b`` ``3.1.4`` | | ``gompi/2023a`` ``3.1.5`` | | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mpiP.md b/docs/version-specific/supported-software/m/mpiP.md index 51207ca69..cdd80a953 100644 --- a/docs/version-specific/supported-software/m/mpiP.md +++ b/docs/version-specific/supported-software/m/mpiP.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.4.1`` | ``gompi/2019a`` ``3.4.1`` | ``iimpi/2019a`` ``3.4.1`` | ``iompi/2019.01`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mpifileutils.md b/docs/version-specific/supported-software/m/mpifileutils.md index 74708ce84..d2bdc5a46 100644 --- a/docs/version-specific/supported-software/m/mpifileutils.md +++ b/docs/version-specific/supported-software/m/mpifileutils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mpifileutils MPI-Based File Utilities For Distributed Systems @@ -13,3 +17,6 @@ version | toolchain ``0.11.1`` | ``gompi/2023a`` ``0.9.1`` | ``gompi/2019a`` ``0.9.1`` | ``iimpi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mpmath.md b/docs/version-specific/supported-software/m/mpmath.md index 058022dac..e4eef930c 100644 --- a/docs/version-specific/supported-software/m/mpmath.md +++ b/docs/version-specific/supported-software/m/mpmath.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``1.2.1`` | | ``GCCcore/11.2.0`` ``1.2.1`` | | ``GCCcore/11.3.0`` ``1.3.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mrcfile.md b/docs/version-specific/supported-software/m/mrcfile.md index 150b0f01b..a9ec6b963 100644 --- a/docs/version-specific/supported-software/m/mrcfile.md +++ b/docs/version-specific/supported-software/m/mrcfile.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.3.0`` | ``fosscuda/2020b`` ``1.4.3`` | ``foss/2022a`` ``1.5.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/msgpack-c.md b/docs/version-specific/supported-software/m/msgpack-c.md index 176819d8a..c00d6239a 100644 --- a/docs/version-specific/supported-software/m/msgpack-c.md +++ b/docs/version-specific/supported-software/m/msgpack-c.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.3.0`` | ``GCCcore/10.2.0`` ``6.0.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/msprime.md b/docs/version-specific/supported-software/m/msprime.md index 13bbda7c9..8a06069a5 100644 --- a/docs/version-specific/supported-software/m/msprime.md +++ b/docs/version-specific/supported-software/m/msprime.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # msprime msprime is a coalescent simulator and library for processing tree-based genetic data. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.7.0`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.2.0`` | | ``foss/2021b`` ``1.2.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mstore.md b/docs/version-specific/supported-software/m/mstore.md index 4758067dd..6253300d4 100644 --- a/docs/version-specific/supported-software/m/mstore.md +++ b/docs/version-specific/supported-software/m/mstore.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mstore Molecular structure store for testing @@ -11,3 +15,6 @@ version | toolchain ``0.2.0`` | ``GCC/12.2.0`` ``0.2.0`` | ``intel-compilers/2022.1.0`` ``0.2.0`` | ``intel-compilers/2022.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/muMerge.md b/docs/version-specific/supported-software/m/muMerge.md index 8ec00804e..676e9070d 100644 --- a/docs/version-specific/supported-software/m/muMerge.md +++ b/docs/version-specific/supported-software/m/muMerge.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # muMerge muMerge is a tool for combining bed regions from multiple bed files that overlap. @@ -7,3 +11,6 @@ muMerge is a tool for combining bed regions from multiple bed files that overlap version | toolchain --------|---------- ``1.1.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/muParser.md b/docs/version-specific/supported-software/m/muParser.md index 172524181..05c2cc869 100644 --- a/docs/version-specific/supported-software/m/muParser.md +++ b/docs/version-specific/supported-software/m/muParser.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/10.3.0`` ``2.3.4`` | ``GCCcore/11.3.0`` ``2.3.4`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mujoco-py.md b/docs/version-specific/supported-software/m/mujoco-py.md index bdc1b2679..a277ec43e 100644 --- a/docs/version-specific/supported-software/m/mujoco-py.md +++ b/docs/version-specific/supported-software/m/mujoco-py.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ MuJoCo is a physics engine for detailed, efficient rigid body simulations with c version | toolchain --------|---------- ``2.1.2.14`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/multicharge.md b/docs/version-specific/supported-software/m/multicharge.md index 21ea74c12..27e76640d 100644 --- a/docs/version-specific/supported-software/m/multicharge.md +++ b/docs/version-specific/supported-software/m/multicharge.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # multicharge Electronegativity equilibration model for atomic partial charges. @@ -9,3 +13,6 @@ version | toolchain ``0.2.0`` | ``gfbf/2022b`` ``0.2.0`` | ``iimkl/2022a`` ``0.2.0`` | ``iimkl/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/multichoose.md b/docs/version-specific/supported-software/m/multichoose.md index 77ab5e323..a286f63dd 100644 --- a/docs/version-specific/supported-software/m/multichoose.md +++ b/docs/version-specific/supported-software/m/multichoose.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # multichoose generate multiset combinations (n multichoose k). @@ -12,3 +16,6 @@ version | toolchain ``1.0.3`` | ``GCCcore/11.3.0`` ``1.0.3`` | ``GCCcore/12.3.0`` ``1.0.3`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/multiprocess.md b/docs/version-specific/supported-software/m/multiprocess.md index 43cf686ea..a216f3512 100644 --- a/docs/version-specific/supported-software/m/multiprocess.md +++ b/docs/version-specific/supported-software/m/multiprocess.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # multiprocess better multiprocessing and multithreading in python @@ -7,3 +11,6 @@ better multiprocessing and multithreading in python version | toolchain --------|---------- ``0.70.15`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mumott.md b/docs/version-specific/supported-software/m/mumott.md index b80df2940..c84077aa6 100644 --- a/docs/version-specific/supported-software/m/mumott.md +++ b/docs/version-specific/supported-software/m/mumott.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mumott mumott is a Python library for the analysis of multi-modal tensor tomography data. @@ -7,3 +11,6 @@ mumott is a Python library for the analysis of multi-modal tensor tomography dat version | toolchain --------|---------- ``2.1`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/muparserx.md b/docs/version-specific/supported-software/m/muparserx.md index e7feda39d..66a197aaa 100644 --- a/docs/version-specific/supported-software/m/muparserx.md +++ b/docs/version-specific/supported-software/m/muparserx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # muparserx A C++ Library for Parsing Expressions with Strings, Complex Numbers, Vectors, Matrices and more. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.0.8`` | ``GCCcore/10.3.0`` ``4.0.8`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mutil.md b/docs/version-specific/supported-software/m/mutil.md index 70763b70a..db2c42ad6 100644 --- a/docs/version-specific/supported-software/m/mutil.md +++ b/docs/version-specific/supported-software/m/mutil.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Mutil is a set of standard utilities that have been parallelized to maximize per version | toolchain --------|---------- ``1.822.3`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mxml.md b/docs/version-specific/supported-software/m/mxml.md index 6c479edf1..f8df37cc9 100644 --- a/docs/version-specific/supported-software/m/mxml.md +++ b/docs/version-specific/supported-software/m/mxml.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Mini-XML is a tiny XML library that you can use to read and write XML and XML-l version | toolchain --------|---------- ``3.2`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mxmlplus.md b/docs/version-specific/supported-software/m/mxmlplus.md index 98dfe4353..a6b2673a2 100644 --- a/docs/version-specific/supported-software/m/mxmlplus.md +++ b/docs/version-specific/supported-software/m/mxmlplus.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Mxml is a pure C library (yet having an object oriented layout) that is meant to version | toolchain --------|---------- ``0.9.2`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mygene.md b/docs/version-specific/supported-software/m/mygene.md index 8d7fdef45..be6fbacfa 100644 --- a/docs/version-specific/supported-software/m/mygene.md +++ b/docs/version-specific/supported-software/m/mygene.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mygene Python Client for MyGene.Info services. @@ -9,3 +13,6 @@ version | toolchain ``3.1.0`` | ``intel/2019a`` ``3.2.2`` | ``foss/2022a`` ``3.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mympingpong.md b/docs/version-specific/supported-software/m/mympingpong.md index f6ee83acb..e2f427952 100644 --- a/docs/version-specific/supported-software/m/mympingpong.md +++ b/docs/version-specific/supported-software/m/mympingpong.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mympingpong A mpi4py based random pair pingpong network stress test. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mypy.md b/docs/version-specific/supported-software/m/mypy.md index 254139778..1d1e56d0d 100644 --- a/docs/version-specific/supported-software/m/mypy.md +++ b/docs/version-specific/supported-software/m/mypy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mypy Optional static typing for Python @@ -7,3 +11,6 @@ Optional static typing for Python version | toolchain --------|---------- ``0.4.5`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/m/mysqlclient.md b/docs/version-specific/supported-software/m/mysqlclient.md index bd878a5e2..f1dfb78d2 100644 --- a/docs/version-specific/supported-software/m/mysqlclient.md +++ b/docs/version-specific/supported-software/m/mysqlclient.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # mysqlclient Python interface to MySQL @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.7`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.3.7`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NAG.md b/docs/version-specific/supported-software/n/NAG.md index f8163ada5..fce419709 100644 --- a/docs/version-specific/supported-software/n/NAG.md +++ b/docs/version-specific/supported-software/n/NAG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NAG The worlds largest collection of robust, documented, tested and maintained numerical algorithms. @@ -10,3 +14,6 @@ version | toolchain ``26`` | ``GCCcore/6.4.0`` ``26`` | ``intel/2018a`` ``7.1`` | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NAGfor.md b/docs/version-specific/supported-software/n/NAGfor.md index fd78911cf..742367f4d 100644 --- a/docs/version-specific/supported-software/n/NAGfor.md +++ b/docs/version-specific/supported-software/n/NAGfor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NAGfor The checking compiler for improved code portability and detailed error reporting. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.2.14`` | ``system`` ``7.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NAMD.md b/docs/version-specific/supported-software/n/NAMD.md index 9d2d23d96..22dcbd307 100644 --- a/docs/version-specific/supported-software/n/NAMD.md +++ b/docs/version-specific/supported-software/n/NAMD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NAMD NAMD is a parallel molecular dynamics code designed for high-performance simulation of large biomolecular systems. @@ -26,3 +30,6 @@ version | versionsuffix | toolchain ``2.14`` | | ``fosscuda/2019b`` ``2.14`` | | ``fosscuda/2020b`` ``2.14`` | ``-mpi`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NASM.md b/docs/version-specific/supported-software/n/NASM.md index 18d0d88bc..d19d4e6bc 100644 --- a/docs/version-specific/supported-software/n/NASM.md +++ b/docs/version-specific/supported-software/n/NASM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NASM NASM: General-purpose x86 assembler @@ -33,3 +37,6 @@ version | toolchain ``2.16.01`` | ``GCCcore/12.3.0`` ``2.16.01`` | ``GCCcore/13.2.0`` ``2.16.03`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NBO.md b/docs/version-specific/supported-software/n/NBO.md index 115fd1c88..8a442e288 100644 --- a/docs/version-specific/supported-software/n/NBO.md +++ b/docs/version-specific/supported-software/n/NBO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NBO Generalized Natural Bond Orbital algorithm to handle systems characterized by periodic symmetry. @@ -14,3 +18,6 @@ version | toolchain ``7.0.10`` | ``GCC/9.3.0`` ``7.0.10`` | ``gfbf/2022a`` ``7.0.10`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NCBI-Toolkit.md b/docs/version-specific/supported-software/n/NCBI-Toolkit.md index d279354a1..71a6115e5 100644 --- a/docs/version-specific/supported-software/n/NCBI-Toolkit.md +++ b/docs/version-specific/supported-software/n/NCBI-Toolkit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The NCBI Toolkit is a collection of utilities developed for the production and version | toolchain --------|---------- ``18.0.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NCCL-tests.md b/docs/version-specific/supported-software/n/NCCL-tests.md index 0b66ac39b..59720cc58 100644 --- a/docs/version-specific/supported-software/n/NCCL-tests.md +++ b/docs/version-specific/supported-software/n/NCCL-tests.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NCCL-tests Tests check both the performance and the correctness of NCCL operations. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0`` | | ``gompic/2019b`` ``2.13.6`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NCCL.md b/docs/version-specific/supported-software/n/NCCL.md index a15a1bd00..39b106a30 100644 --- a/docs/version-specific/supported-software/n/NCCL.md +++ b/docs/version-specific/supported-software/n/NCCL.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NCIPLOT.md b/docs/version-specific/supported-software/n/NCIPLOT.md index 69432d818..316d8fe7d 100644 --- a/docs/version-specific/supported-software/n/NCIPLOT.md +++ b/docs/version-specific/supported-software/n/NCIPLOT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NCIPLOT NCIPLOT is a program for revealing non covalent interactions based on the reduced density gradient. @@ -9,3 +13,6 @@ version | toolchain ``4.0-20190718`` | ``iccifort/2019.5.281`` ``4.0-20200106`` | ``iccifort/2019.5.281`` ``4.0-20200624`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NCL.md b/docs/version-specific/supported-software/n/NCL.md index 4d3640fe2..90369f965 100644 --- a/docs/version-specific/supported-software/n/NCL.md +++ b/docs/version-specific/supported-software/n/NCL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NCL NCL is an interpreted language designed specifically for scientific data analysis and visualization. @@ -17,3 +21,6 @@ version | toolchain ``6.6.2`` | ``intel/2018b`` ``6.6.2`` | ``intel/2019b`` ``6.6.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NCO.md b/docs/version-specific/supported-software/n/NCO.md index 5cbb74da2..e23e1bf90 100644 --- a/docs/version-specific/supported-software/n/NCO.md +++ b/docs/version-specific/supported-software/n/NCO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NCO manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5 @@ -26,3 +30,6 @@ version | toolchain ``5.1.3`` | ``foss/2021a`` ``5.1.3`` | ``foss/2022a`` ``5.1.9`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NECI.md b/docs/version-specific/supported-software/n/NECI.md index 64c067b60..804ec478b 100644 --- a/docs/version-specific/supported-software/n/NECI.md +++ b/docs/version-specific/supported-software/n/NECI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NECI Standalone NECI codebase designed for FCIQMC and other stochastic quantum chemistry methods. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20220711`` | ``foss/2022a`` ``20230620`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NEURON.md b/docs/version-specific/supported-software/n/NEURON.md index 0eabc2576..4f442927e 100644 --- a/docs/version-specific/supported-software/n/NEURON.md +++ b/docs/version-specific/supported-software/n/NEURON.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NEURON Empirically-based simulations of neurons and networks of neurons. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``7.4`` | | ``intel/2016b`` ``7.6.5`` | ``-Python-2.7.15`` | ``intel/2018b`` ``7.8.2`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NEXUS-CL.md b/docs/version-specific/supported-software/n/NEXUS-CL.md index 973b70274..894462f18 100644 --- a/docs/version-specific/supported-software/n/NEXUS-CL.md +++ b/docs/version-specific/supported-software/n/NEXUS-CL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NEXUS-CL The NEXUS Class Library is a C++ library for parsing NEXUS files. @@ -7,3 +11,6 @@ The NEXUS Class Library is a C++ library for parsing NEXUS files. version | toolchain --------|---------- ``2.1.18`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NEdit.md b/docs/version-specific/supported-software/n/NEdit.md index 43dff1272..15ec63d85 100644 --- a/docs/version-specific/supported-software/n/NEdit.md +++ b/docs/version-specific/supported-software/n/NEdit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NEdit is a multi-purpose text editor for the X Window System, which combines a version | versionsuffix | toolchain --------|---------------|---------- ``5.5`` | ``-Linux-x86`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NFFT.md b/docs/version-specific/supported-software/n/NFFT.md index 156941eac..971053f9f 100644 --- a/docs/version-specific/supported-software/n/NFFT.md +++ b/docs/version-specific/supported-software/n/NFFT.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``3.5.2`` | ``foss/2021b`` ``3.5.3`` | ``foss/2022a`` ``3.5.3`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NGLess.md b/docs/version-specific/supported-software/n/NGLess.md index 5fd5844d5..ac202f18b 100644 --- a/docs/version-specific/supported-software/n/NGLess.md +++ b/docs/version-specific/supported-software/n/NGLess.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NGLess NGLess is a domain-specific language for NGS (next-generation sequencing data) processing. @@ -7,3 +11,6 @@ NGLess is a domain-specific language for NGS (next-generation sequencing data) p version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-static-Linux64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NGS-Python.md b/docs/version-specific/supported-software/n/NGS-Python.md index 1e72509ed..8e2429eb2 100644 --- a/docs/version-specific/supported-software/n/NGS-Python.md +++ b/docs/version-specific/supported-software/n/NGS-Python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NGS-Python NGS is a new, domain-specific API for accessing reads, alignments and pileups produced from Next Generation Sequencing. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NGS.md b/docs/version-specific/supported-software/n/NGS.md index 31998e952..e8b55cd66 100644 --- a/docs/version-specific/supported-software/n/NGS.md +++ b/docs/version-specific/supported-software/n/NGS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NGS NGS is a new, domain-specific API for accessing reads, alignments and pileups produced from Next Generation Sequencing. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NGSadmix.md b/docs/version-specific/supported-software/n/NGSadmix.md index faf1e56e3..28e69449d 100644 --- a/docs/version-specific/supported-software/n/NGSadmix.md +++ b/docs/version-specific/supported-software/n/NGSadmix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NGSadmix NGSadmix is a tool for finding admixture proportions from NGS data, based on genotype likelihoods. @@ -7,3 +11,6 @@ NGSadmix is a tool for finding admixture proportions from NGS data, based on ge version | toolchain --------|---------- ``32`` | ``GCC/7.3.0-2.30`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NGSpeciesID.md b/docs/version-specific/supported-software/n/NGSpeciesID.md index 87998626f..e8208684d 100644 --- a/docs/version-specific/supported-software/n/NGSpeciesID.md +++ b/docs/version-specific/supported-software/n/NGSpeciesID.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NGSpeciesID NGSpeciesID is a tool for clustering and consensus forming of targeted ONT reads. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.1.2.1`` | | ``foss/2021b`` ``0.3.0`` | | ``foss/2022b`` ``0.3.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NIMBLE.md b/docs/version-specific/supported-software/n/NIMBLE.md index 4d9e20c8a..ff4ae22dc 100644 --- a/docs/version-specific/supported-software/n/NIMBLE.md +++ b/docs/version-specific/supported-software/n/NIMBLE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NIMBLE is a system for building and sharing analysis methods for statistical mod version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NIfTI.md b/docs/version-specific/supported-software/n/NIfTI.md index 63f633f8b..9cb7ec8d1 100644 --- a/docs/version-specific/supported-software/n/NIfTI.md +++ b/docs/version-specific/supported-software/n/NIfTI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NIfTI Niftilib is a set of i/o libraries for reading and writing files in the nifti-1 data format. @@ -7,3 +11,6 @@ Niftilib is a set of i/o libraries for reading and writing files in the nifti-1 version | toolchain --------|---------- ``2.0.0`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NLMpy.md b/docs/version-specific/supported-software/n/NLMpy.md index a8c85e234..b80e40eec 100644 --- a/docs/version-specific/supported-software/n/NLMpy.md +++ b/docs/version-specific/supported-software/n/NLMpy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NLMpy is a Python package for the creation of neutral landscape models that are version | versionsuffix | toolchain --------|---------------|---------- ``0.1.5`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NLTK.md b/docs/version-specific/supported-software/n/NLTK.md index e29eccd11..7566449c9 100644 --- a/docs/version-specific/supported-software/n/NLTK.md +++ b/docs/version-specific/supported-software/n/NLTK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NLTK NLTK is a leading platform for building Python programs to work with human language data. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``3.8.1`` | | ``foss/2022b`` ``3.8.1`` | | ``foss/2023a`` ``3.8.1`` | | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NLopt.md b/docs/version-specific/supported-software/n/NLopt.md index a6bd49b38..5f2a7a26a 100644 --- a/docs/version-specific/supported-software/n/NLopt.md +++ b/docs/version-specific/supported-software/n/NLopt.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | toolchain ``2.7.1`` | ``GCCcore/11.3.0`` ``2.7.1`` | ``GCCcore/12.2.0`` ``2.7.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NOVOPlasty.md b/docs/version-specific/supported-software/n/NOVOPlasty.md index e20e1b45b..403db2a17 100644 --- a/docs/version-specific/supported-software/n/NOVOPlasty.md +++ b/docs/version-specific/supported-software/n/NOVOPlasty.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NOVOPlasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. @@ -7,3 +11,6 @@ NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short cir version | toolchain --------|---------- ``3.7`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NRGLjubljana.md b/docs/version-specific/supported-software/n/NRGLjubljana.md index df5ef2bb3..55bd192b5 100644 --- a/docs/version-specific/supported-software/n/NRGLjubljana.md +++ b/docs/version-specific/supported-software/n/NRGLjubljana.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NRG Ljubljana is an efficient implementation of the numerical renormalization gr version | toolchain --------|---------- ``2.4.3.23`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NSPR.md b/docs/version-specific/supported-software/n/NSPR.md index 87478df11..0bca769a5 100644 --- a/docs/version-specific/supported-software/n/NSPR.md +++ b/docs/version-specific/supported-software/n/NSPR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NSPR Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc-like functions. @@ -18,3 +22,6 @@ version | toolchain ``4.35`` | ``GCCcore/12.2.0`` ``4.35`` | ``GCCcore/12.3.0`` ``4.35`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NSS.md b/docs/version-specific/supported-software/n/NSS.md index 74f40cf40..c0c7ae84c 100644 --- a/docs/version-specific/supported-software/n/NSS.md +++ b/docs/version-specific/supported-software/n/NSS.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``3.85`` | ``GCCcore/12.2.0`` ``3.89.1`` | ``GCCcore/12.3.0`` ``3.94`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NTL.md b/docs/version-specific/supported-software/n/NTL.md index e40cb4fc1..2ecbf9492 100644 --- a/docs/version-specific/supported-software/n/NTL.md +++ b/docs/version-specific/supported-software/n/NTL.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``11.5.1`` | ``GCC/11.3.0`` ``11.5.1`` | ``GCC/12.2.0`` ``11.5.1`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NTPoly.md b/docs/version-specific/supported-software/n/NTPoly.md index ad3c29295..bb0b1f098 100644 --- a/docs/version-specific/supported-software/n/NTPoly.md +++ b/docs/version-specific/supported-software/n/NTPoly.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.7.0`` | ``foss/2021a`` ``2.7.0`` | ``intel/2021a`` ``2.7.1`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NVHPC.md b/docs/version-specific/supported-software/n/NVHPC.md index 34ff16c42..be55b3e5a 100644 --- a/docs/version-specific/supported-software/n/NVHPC.md +++ b/docs/version-specific/supported-software/n/NVHPC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NVHPC C, C++ and Fortran compilers included with the NVIDIA HPC SDK (previously: PGI) @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``23.7`` | ``-CUDA-12.1.1`` | ``system`` ``23.7`` | ``-CUDA-12.2.0`` | ``system`` ``24.1`` | ``-CUDA-12.3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NVSHMEM.md b/docs/version-specific/supported-software/n/NVSHMEM.md index 3b9b6e0c0..a4f549421 100644 --- a/docs/version-specific/supported-software/n/NVSHMEM.md +++ b/docs/version-specific/supported-software/n/NVSHMEM.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NWChem.md b/docs/version-specific/supported-software/n/NWChem.md index ee7823af4..d7f3d09ef 100644 --- a/docs/version-specific/supported-software/n/NWChem.md +++ b/docs/version-specific/supported-software/n/NWChem.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``7.0.2`` | | ``intel/2021a`` ``7.0.2`` | | ``intel/2022a`` ``7.2.2`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanoCaller.md b/docs/version-specific/supported-software/n/NanoCaller.md index 47ca2d42f..66b056ac6 100644 --- a/docs/version-specific/supported-software/n/NanoCaller.md +++ b/docs/version-specific/supported-software/n/NanoCaller.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NanoCaller is a computational method that integrates long reads in deep convolu version | toolchain --------|---------- ``3.4.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanoComp.md b/docs/version-specific/supported-software/n/NanoComp.md index ef9a4e832..f43c34eef 100644 --- a/docs/version-specific/supported-software/n/NanoComp.md +++ b/docs/version-specific/supported-software/n/NanoComp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NanoComp Comparing runs of Oxford Nanopore sequencing data and alignments @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.10.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.13.1`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanoFilt.md b/docs/version-specific/supported-software/n/NanoFilt.md index b7d5e5a1d..fe5449db9 100644 --- a/docs/version-specific/supported-software/n/NanoFilt.md +++ b/docs/version-specific/supported-software/n/NanoFilt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NanoFilt Filtering and trimming of long read sequencing data. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.6.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``2.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.8.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanoLyse.md b/docs/version-specific/supported-software/n/NanoLyse.md index f1d8d72a0..6bfb51695 100644 --- a/docs/version-specific/supported-software/n/NanoLyse.md +++ b/docs/version-specific/supported-software/n/NanoLyse.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NanoLyse Remove reads mapping to the lambda phage genome from a fastq file. @@ -7,3 +11,6 @@ Remove reads mapping to the lambda phage genome from a fastq file. version | toolchain --------|---------- ``1.2.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanoPlot.md b/docs/version-specific/supported-software/n/NanoPlot.md index 9980e7a69..033e6992b 100644 --- a/docs/version-specific/supported-software/n/NanoPlot.md +++ b/docs/version-specific/supported-software/n/NanoPlot.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NanoPlot Plotting suite for long read sequencing data and alignments @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.33.0`` | | ``foss/2021a`` ``1.33.0`` | | ``intel/2020b`` ``1.42.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanoStat.md b/docs/version-specific/supported-software/n/NanoStat.md index 264ad918c..07f459ec7 100644 --- a/docs/version-specific/supported-software/n/NanoStat.md +++ b/docs/version-specific/supported-software/n/NanoStat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NanoStat Calculate various statistics from a long read sequencing dataset in fastq, bam or albacore sequencing summary format. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.6.0`` | ``foss/2021a`` ``1.6.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NanopolishComp.md b/docs/version-specific/supported-software/n/NanopolishComp.md index 76e2c938a..91f2a2f27 100644 --- a/docs/version-specific/supported-software/n/NanopolishComp.md +++ b/docs/version-specific/supported-software/n/NanopolishComp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NanopolishComp NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files @@ -7,3 +11,6 @@ NanopolishComp is a Python3 package for downstream analyses of Nanopolish output version | versionsuffix | toolchain --------|---------------|---------- ``0.6.11`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nek5000.md b/docs/version-specific/supported-software/n/Nek5000.md index deed0c62b..11d2cc67e 100644 --- a/docs/version-specific/supported-software/n/Nek5000.md +++ b/docs/version-specific/supported-software/n/Nek5000.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Nek5000 a fast and scalable high-order solver for computational fluid dynamics @@ -7,3 +11,6 @@ a fast and scalable high-order solver for computational fluid dynamics version | toolchain --------|---------- ``17.0`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nektar++.md b/docs/version-specific/supported-software/n/Nektar++.md index 259a490b3..f46b83b2c 100644 --- a/docs/version-specific/supported-software/n/Nektar++.md +++ b/docs/version-specific/supported-software/n/Nektar++.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Nektar++ is a tensor product based finite element package designed to allow one version | toolchain --------|---------- ``5.0.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Net-core.md b/docs/version-specific/supported-software/n/Net-core.md index 825b183fc..07b659327 100644 --- a/docs/version-specific/supported-software/n/Net-core.md +++ b/docs/version-specific/supported-software/n/Net-core.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ version | toolchain ``2.1.8`` | ``system`` ``2.2.5`` | ``system`` ``3.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NetLogo.md b/docs/version-specific/supported-software/n/NetLogo.md index 6bc6eadff..b8712b20a 100644 --- a/docs/version-specific/supported-software/n/NetLogo.md +++ b/docs/version-specific/supported-software/n/NetLogo.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``6.2.0`` | ``-64`` | ``system`` ``6.2.2`` | ``-64`` | ``system`` ``6.3.0`` | ``-64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NetPIPE.md b/docs/version-specific/supported-software/n/NetPIPE.md index df663bc77..c327078d9 100644 --- a/docs/version-specific/supported-software/n/NetPIPE.md +++ b/docs/version-specific/supported-software/n/NetPIPE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # NetPIPE NetPIPE is a protocol independent communication performance benchmark that visually represents the network performance under a variety of conditions. @@ -9,3 +13,6 @@ version | toolchain ``5.1`` | ``intel/2018a`` ``5.1.4`` | ``gompi/2020b`` ``5.1.4`` | ``iimpi/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NetPyNE.md b/docs/version-specific/supported-software/n/NetPyNE.md index d3aa64054..89ad4b1cb 100644 --- a/docs/version-specific/supported-software/n/NetPyNE.md +++ b/docs/version-specific/supported-software/n/NetPyNE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NetPyNE is an open-source Python package to facilitate the development, parallel version | toolchain --------|---------- ``1.0.2.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NeuroKit.md b/docs/version-specific/supported-software/n/NeuroKit.md index 0985d541a..7bf9401c5 100644 --- a/docs/version-specific/supported-software/n/NeuroKit.md +++ b/docs/version-specific/supported-software/n/NeuroKit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NeuroKit is a Python module that provides high-level integrative functions with version | versionsuffix | toolchain --------|---------------|---------- ``0.2.7`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NewHybrids.md b/docs/version-specific/supported-software/n/NewHybrids.md index a6c706d3a..09105bf82 100644 --- a/docs/version-specific/supported-software/n/NewHybrids.md +++ b/docs/version-specific/supported-software/n/NewHybrids.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This implements a Gibbs sampler to estimate the posterior probability that genet version | toolchain --------|---------- ``1.1_Beta3`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NextGenMap.md b/docs/version-specific/supported-software/n/NextGenMap.md index 2611b90a0..4634bfc0d 100644 --- a/docs/version-specific/supported-software/n/NextGenMap.md +++ b/docs/version-specific/supported-software/n/NextGenMap.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.5.5`` | ``GCC/11.2.0`` ``0.5.5`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nextflow.md b/docs/version-specific/supported-software/n/Nextflow.md index 89ac0edee..15d8fda0d 100644 --- a/docs/version-specific/supported-software/n/Nextflow.md +++ b/docs/version-specific/supported-software/n/Nextflow.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Nextflow Nextflow is a reactive workflow framework and a programming DSL that eases writing computational pipelines with complex data @@ -23,3 +27,6 @@ version | toolchain ``23.04.2`` | ``system`` ``23.10.0`` | ``system`` ``24.04.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NiBabel.md b/docs/version-specific/supported-software/n/NiBabel.md index be0d63bc1..e53970f43 100644 --- a/docs/version-specific/supported-software/n/NiBabel.md +++ b/docs/version-specific/supported-software/n/NiBabel.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``3.2.2`` | | ``foss/2021b`` ``4.0.2`` | | ``foss/2022a`` ``5.2.0`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nilearn.md b/docs/version-specific/supported-software/n/Nilearn.md index bd7b3ed67..ee01cfa53 100644 --- a/docs/version-specific/supported-software/n/Nilearn.md +++ b/docs/version-specific/supported-software/n/Nilearn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Nilearn Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.5.2`` | | ``intel/2019a`` ``0.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.7.1`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nim.md b/docs/version-specific/supported-software/n/Nim.md index 4d8eacd14..5aaec9213 100644 --- a/docs/version-specific/supported-software/n/Nim.md +++ b/docs/version-specific/supported-software/n/Nim.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Nim Nim is a systems and applications programming language. @@ -12,3 +16,6 @@ version | toolchain ``1.4.6`` | ``GCCcore/10.2.0`` ``1.4.8`` | ``GCCcore/10.3.0`` ``1.6.6`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Ninja.md b/docs/version-specific/supported-software/n/Ninja.md index 5f9a36804..1b08fc26d 100644 --- a/docs/version-specific/supported-software/n/Ninja.md +++ b/docs/version-specific/supported-software/n/Ninja.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ninja Ninja is a small build system with a focus on speed. @@ -23,3 +27,6 @@ version | toolchain ``1.9.0`` | ``GCCcore/8.2.0`` ``1.9.0`` | ``GCCcore/8.3.0`` ``1.9.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nipype.md b/docs/version-specific/supported-software/n/Nipype.md index 2e0c04195..21a1c6de0 100644 --- a/docs/version-specific/supported-software/n/Nipype.md +++ b/docs/version-specific/supported-software/n/Nipype.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.4.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.6.0`` | | ``foss/2020b`` ``1.8.5`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Node-RED.md b/docs/version-specific/supported-software/n/Node-RED.md index e1c8e66e5..122b84742 100644 --- a/docs/version-specific/supported-software/n/Node-RED.md +++ b/docs/version-specific/supported-software/n/Node-RED.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Node-RED is a programming tool for wiring together hardware devices, APIs and on version | toolchain --------|---------- ``0.16.2`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Normaliz.md b/docs/version-specific/supported-software/n/Normaliz.md index a171077e2..1da50e454 100644 --- a/docs/version-specific/supported-software/n/Normaliz.md +++ b/docs/version-specific/supported-software/n/Normaliz.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``3.6.3`` | ``intel/2018b`` ``3.7.4`` | ``gompi/2019a`` ``3.8.4`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nsight-Compute.md b/docs/version-specific/supported-software/n/Nsight-Compute.md index 8fc8caa8f..80d5162f2 100644 --- a/docs/version-specific/supported-software/n/Nsight-Compute.md +++ b/docs/version-specific/supported-software/n/Nsight-Compute.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2020.3.0`` | ``system`` ``2021.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/Nsight-Systems.md b/docs/version-specific/supported-software/n/Nsight-Systems.md index f9a554744..ba6c3d5c6 100644 --- a/docs/version-specific/supported-software/n/Nsight-Systems.md +++ b/docs/version-specific/supported-software/n/Nsight-Systems.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NVIDIA® Nsight™ Systems is a system-wide performance analysis tool designed t version | toolchain --------|---------- ``2020.5.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/NxTrim.md b/docs/version-specific/supported-software/n/NxTrim.md index c28e4665d..635c82fbd 100644 --- a/docs/version-specific/supported-software/n/NxTrim.md +++ b/docs/version-specific/supported-software/n/NxTrim.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NxTrim is a software to remove Nextera Mate Pair junction adapters and categoris version | toolchain --------|---------- ``0.4.3`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/index.md b/docs/version-specific/supported-software/n/index.md index 314d7f896..5711b8535 100644 --- a/docs/version-specific/supported-software/n/index.md +++ b/docs/version-specific/supported-software/n/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (n) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - *n* - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [n2v](n2v.md) * [NAG](NAG.md) * [NAGfor](NAGfor.md) diff --git a/docs/version-specific/supported-software/n/n2v.md b/docs/version-specific/supported-software/n/n2v.md index 5548f2467..8b128b56d 100644 --- a/docs/version-specific/supported-software/n/n2v.md +++ b/docs/version-specific/supported-software/n/n2v.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.3.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/namedlist.md b/docs/version-specific/supported-software/n/namedlist.md index d290b1928..5ffd0be74 100644 --- a/docs/version-specific/supported-software/n/namedlist.md +++ b/docs/version-specific/supported-software/n/namedlist.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # namedlist A Python object, similar to namedtuple, but for lists. @@ -7,3 +11,6 @@ A Python object, similar to namedtuple, but for lists. version | toolchain --------|---------- ``1.8`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nano.md b/docs/version-specific/supported-software/n/nano.md index 74cdbb85b..cde7332a5 100644 --- a/docs/version-specific/supported-software/n/nano.md +++ b/docs/version-specific/supported-software/n/nano.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nano a simple editor, inspired by Pico @@ -10,3 +14,6 @@ version | toolchain ``7.0`` | ``GCCcore/11.3.0`` ``7.1`` | ``GCCcore/12.2.0`` ``7.2`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanocompore.md b/docs/version-specific/supported-software/n/nanocompore.md index 192d55205..751176e50 100644 --- a/docs/version-specific/supported-software/n/nanocompore.md +++ b/docs/version-specific/supported-software/n/nanocompore.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanocompore Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples @@ -7,3 +11,6 @@ Nanocompore identifies differences in ONT nanopore sequencing raw signal corresp version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0rc3-2`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanoflann.md b/docs/version-specific/supported-software/n/nanoflann.md index 18cdb523a..8eb800b4b 100644 --- a/docs/version-specific/supported-software/n/nanoflann.md +++ b/docs/version-specific/supported-software/n/nanoflann.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanoflann nanoflann is a C++11 header-only library for building KD-Trees of datasets with different topologies. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.4.0`` | ``GCCcore/10.3.0`` ``1.5.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanoget.md b/docs/version-specific/supported-software/n/nanoget.md index afd6bbc59..bd01491b0 100644 --- a/docs/version-specific/supported-software/n/nanoget.md +++ b/docs/version-specific/supported-software/n/nanoget.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanoget Functions to extract information from Oxford Nanopore sequencing data and alignments @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.18.1`` | | ``foss/2022a`` ``1.18.1`` | | ``foss/2022b`` ``1.19.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanomath.md b/docs/version-specific/supported-software/n/nanomath.md index 2c4fe3d0e..789e7adc3 100644 --- a/docs/version-specific/supported-software/n/nanomath.md +++ b/docs/version-specific/supported-software/n/nanomath.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanomath A few simple math function for other Oxford Nanopore processing scripts @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.2.1`` | | ``foss/2021a`` ``1.3.0`` | | ``foss/2022a`` ``1.3.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanomax-analysis-utils.md b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md index f53d9b4ca..ae323185f 100644 --- a/docs/version-specific/supported-software/n/nanomax-analysis-utils.md +++ b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanomax-analysis-utils A set of tools for handling and analysing data at the NanoMAX beamline. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.4.3`` | | ``foss/2020b`` ``0.4.3`` | | ``fosscuda/2020b`` ``0.4.4`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanonet.md b/docs/version-specific/supported-software/n/nanonet.md index 19f3d4f7c..5b38248c7 100644 --- a/docs/version-specific/supported-software/n/nanonet.md +++ b/docs/version-specific/supported-software/n/nanonet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanonet Nanonet provides recurrent neural network basecalling for Oxford Nanopore MinION data. @@ -7,3 +11,6 @@ Nanonet provides recurrent neural network basecalling for Oxford Nanopore MinION version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nanopolish.md b/docs/version-specific/supported-software/n/nanopolish.md index 38983dbb6..96119b315 100644 --- a/docs/version-specific/supported-software/n/nanopolish.md +++ b/docs/version-specific/supported-software/n/nanopolish.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nanopolish Software package for signal-level analysis of Oxford Nanopore sequencing data. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``0.13.3`` | | ``foss/2020b`` ``0.14.0`` | | ``foss/2022a`` ``0.9.2`` | | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/napari.md b/docs/version-specific/supported-software/n/napari.md index 2b05ed8ca..300289ccd 100644 --- a/docs/version-specific/supported-software/n/napari.md +++ b/docs/version-specific/supported-software/n/napari.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | toolchain ``0.4.18`` | ``foss/2022a`` ``0.4.18`` | ``foss/2023a`` ``0.4.19.post1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nauty.md b/docs/version-specific/supported-software/n/nauty.md index ada02d313..4128ac878 100644 --- a/docs/version-specific/supported-software/n/nauty.md +++ b/docs/version-specific/supported-software/n/nauty.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.7rc5`` | ``GCC/8.3.0`` ``2.8.6`` | ``GCC/11.3.0`` ``2.8.8`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nbclassic.md b/docs/version-specific/supported-software/n/nbclassic.md index 5bfe0bc0e..3faed3ffe 100644 --- a/docs/version-specific/supported-software/n/nbclassic.md +++ b/docs/version-specific/supported-software/n/nbclassic.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncbi-vdb.md b/docs/version-specific/supported-software/n/ncbi-vdb.md index 02a17979d..935aa85bc 100644 --- a/docs/version-specific/supported-software/n/ncbi-vdb.md +++ b/docs/version-specific/supported-software/n/ncbi-vdb.md @@ -1,3 +1,7 @@ +--- +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. @@ -26,3 +30,6 @@ version | toolchain ``3.0.2`` | ``gompi/2022a`` ``3.0.5`` | ``gompi/2021a`` ``3.0.5`` | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncdf4.md b/docs/version-specific/supported-software/n/ncdf4.md index e02dcbae4..84d1491c1 100644 --- a/docs/version-specific/supported-software/n/ncdf4.md +++ b/docs/version-specific/supported-software/n/ncdf4.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ncdf4 ncdf4: Interface to Unidata netCDF (version 4 or earlier) format data files @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``1.17`` | ``-R-4.0.0`` | ``foss/2020a`` ``1.17`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.17`` | ``-R-4.1.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncdu.md b/docs/version-specific/supported-software/n/ncdu.md index 131b61b20..ec6b2bf89 100644 --- a/docs/version-specific/supported-software/n/ncdu.md +++ b/docs/version-specific/supported-software/n/ncdu.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.16`` | ``GCC/11.2.0`` ``1.17`` | ``GCC/11.3.0`` ``1.18`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncolor.md b/docs/version-specific/supported-software/n/ncolor.md index e430b5454..6fb651a81 100644 --- a/docs/version-specific/supported-software/n/ncolor.md +++ b/docs/version-specific/supported-software/n/ncolor.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Fast remapping of instance labels 1,2,3,...,M to a smaller set of repeating, dis version | toolchain --------|---------- ``1.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncompress.md b/docs/version-specific/supported-software/n/ncompress.md index f8ea2cc72..5856ada3b 100644 --- a/docs/version-specific/supported-software/n/ncompress.md +++ b/docs/version-specific/supported-software/n/ncompress.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Compress is a fast, simple LZW file compressor. Compress does not have the high version | toolchain --------|---------- ``4.2.4.4`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncurses.md b/docs/version-specific/supported-software/n/ncurses.md index 1d5308abe..21d82bc5a 100644 --- a/docs/version-specific/supported-software/n/ncurses.md +++ b/docs/version-specific/supported-software/n/ncurses.md @@ -1,3 +1,7 @@ +--- +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. @@ -55,3 +59,6 @@ version | toolchain ``6.4`` | ``system`` ``6.5`` | ``GCCcore/13.3.0`` ``6.5`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ncview.md b/docs/version-specific/supported-software/n/ncview.md index d97e51e6d..c715d6ff3 100644 --- a/docs/version-specific/supported-software/n/ncview.md +++ b/docs/version-specific/supported-software/n/ncview.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | toolchain ``2.1.8`` | ``gompi/2021b`` ``2.1.8`` | ``gompi/2022a`` ``2.1.8`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nd2reader.md b/docs/version-specific/supported-software/n/nd2reader.md index 3b6201720..c9d26d1a5 100644 --- a/docs/version-specific/supported-software/n/nd2reader.md +++ b/docs/version-specific/supported-software/n/nd2reader.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nd2reader nd2reader is a pure-Python package that reads images produced by NIS Elements 4.0+. @@ -7,3 +11,6 @@ nd2reader is a pure-Python package that reads images produced by NIS Elements 4. version | versionsuffix | toolchain --------|---------------|---------- ``3.0.6`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ne.md b/docs/version-specific/supported-software/n/ne.md index 38dc09bf4..8badd96e2 100644 --- a/docs/version-specific/supported-software/n/ne.md +++ b/docs/version-specific/supported-software/n/ne.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ne is a free (GPL'd) text editor based on the POSIX standard that runs (we hope) version | toolchain --------|---------- ``3.0.1`` | ``gimkl/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/neon.md b/docs/version-specific/supported-software/n/neon.md index 4395f058f..e3abce4ac 100644 --- a/docs/version-specific/supported-software/n/neon.md +++ b/docs/version-specific/supported-software/n/neon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # neon neon is an HTTP/1.1 and WebDAV client library, with a C interface. @@ -7,3 +11,6 @@ neon is an HTTP/1.1 and WebDAV client library, with a C interface. version | toolchain --------|---------- ``0.31.2`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/neptune-client.md b/docs/version-specific/supported-software/n/neptune-client.md index 52129d8d9..97f4c462e 100644 --- a/docs/version-specific/supported-software/n/neptune-client.md +++ b/docs/version-specific/supported-software/n/neptune-client.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # neptune-client Neptune is an experiment tracking hub that brings organization and collaboration to your data science team. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.16.2`` | | ``foss/2021a`` ``0.16.2`` | | ``foss/2022a`` ``0.4.129`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netCDF-C++.md b/docs/version-specific/supported-software/n/netCDF-C++.md index 85e266902..bd387c109 100644 --- a/docs/version-specific/supported-software/n/netCDF-C++.md +++ b/docs/version-specific/supported-software/n/netCDF-C++.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NetCDF (network Common Data Form) is a set of software libraries and machine-i version | toolchain --------|---------- ``4.2`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netCDF-C++4.md b/docs/version-specific/supported-software/n/netCDF-C++4.md index b16832c7e..fd998193a 100644 --- a/docs/version-specific/supported-software/n/netCDF-C++4.md +++ b/docs/version-specific/supported-software/n/netCDF-C++4.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``4.3.1`` | | ``iimpi/2021b`` ``4.3.1`` | | ``iimpi/2022a`` ``4.3.1`` | | ``iimpi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netCDF-Fortran.md b/docs/version-specific/supported-software/n/netCDF-Fortran.md index 08bcc865e..c8a9fa014 100644 --- a/docs/version-specific/supported-software/n/netCDF-Fortran.md +++ b/docs/version-specific/supported-software/n/netCDF-Fortran.md @@ -1,3 +1,7 @@ +--- +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. @@ -54,3 +58,6 @@ version | versionsuffix | toolchain ``4.6.1`` | | ``gompi/2023b`` ``4.6.1`` | | ``iimpi/2023a`` ``4.6.1`` | | ``iimpi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netCDF.md b/docs/version-specific/supported-software/n/netCDF.md index be6a5151f..429cb6804 100644 --- a/docs/version-specific/supported-software/n/netCDF.md +++ b/docs/version-specific/supported-software/n/netCDF.md @@ -1,3 +1,7 @@ +--- +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. @@ -68,3 +72,6 @@ version | versionsuffix | toolchain ``4.9.2`` | | ``gompi/2023b`` ``4.9.2`` | | ``iimpi/2023a`` ``4.9.2`` | | ``iimpi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netMHC.md b/docs/version-specific/supported-software/n/netMHC.md index 248f4f842..a7c3a0641 100644 --- a/docs/version-specific/supported-software/n/netMHC.md +++ b/docs/version-specific/supported-software/n/netMHC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # netMHC NetMHC 4.0 predicts binding of peptides to a number of different HLA alleles using artificial neural networks (ANN). @@ -7,3 +11,6 @@ NetMHC 4.0 predicts binding of peptides to a number of different HLA alleles us version | toolchain --------|---------- ``4.0a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netMHCII.md b/docs/version-specific/supported-software/n/netMHCII.md index 7bce1b1c3..36df5dacb 100644 --- a/docs/version-specific/supported-software/n/netMHCII.md +++ b/docs/version-specific/supported-software/n/netMHCII.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NetMHCII 2.3 server predicts binding of peptides to HLA-DR, HLA-DQ, HLA-DP and version | toolchain --------|---------- ``2.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netMHCIIpan.md b/docs/version-specific/supported-software/n/netMHCIIpan.md index d350a6d2b..4ec6460df 100644 --- a/docs/version-specific/supported-software/n/netMHCIIpan.md +++ b/docs/version-specific/supported-software/n/netMHCIIpan.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.2`` | ``GCCcore/7.3.0`` ``3.2`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netMHCpan.md b/docs/version-specific/supported-software/n/netMHCpan.md index 37da62ae2..9842f1386 100644 --- a/docs/version-specific/supported-software/n/netMHCpan.md +++ b/docs/version-specific/supported-software/n/netMHCpan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # netMHCpan The NetMHCpan software predicts binding of peptides to any known MHC molecule using artificial neural networks (ANNs). @@ -7,3 +11,6 @@ The NetMHCpan software predicts binding of peptides to any known MHC molecule u version | toolchain --------|---------- ``4.0a`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netcdf4-python.md b/docs/version-specific/supported-software/n/netcdf4-python.md index 21ce4d010..223673764 100644 --- a/docs/version-specific/supported-software/n/netcdf4-python.md +++ b/docs/version-specific/supported-software/n/netcdf4-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # netcdf4-python Python/numpy interface to netCDF. @@ -33,3 +37,6 @@ version | versionsuffix | toolchain ``1.6.3`` | | ``foss/2022b`` ``1.6.4`` | | ``foss/2023a`` ``1.6.5`` | | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/netloc.md b/docs/version-specific/supported-software/n/netloc.md index 36e0d04ff..11268a979 100644 --- a/docs/version-specific/supported-software/n/netloc.md +++ b/docs/version-specific/supported-software/n/netloc.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Portable Network Locality (netloc) software package provides network topolo version | toolchain --------|---------- ``0.5`` | ``GCC/4.8.3`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nettle.md b/docs/version-specific/supported-software/n/nettle.md index b5e2212b0..7ad538f1f 100644 --- a/docs/version-specific/supported-software/n/nettle.md +++ b/docs/version-specific/supported-software/n/nettle.md @@ -1,3 +1,7 @@ +--- +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. @@ -33,3 +37,6 @@ version | toolchain ``3.8.1`` | ``GCCcore/12.2.0`` ``3.9.1`` | ``GCCcore/12.3.0`` ``3.9.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/networkTools.md b/docs/version-specific/supported-software/n/networkTools.md index d3e27a408..4c3bbd3d5 100644 --- a/docs/version-specific/supported-software/n/networkTools.md +++ b/docs/version-specific/supported-software/n/networkTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # networkTools Dynamical Network Analysis is a method of characterizing allosteric signalling through biomolecular complexes. @@ -7,3 +11,6 @@ Dynamical Network Analysis is a method of characterizing allosteric signalling t version | toolchain --------|---------- ``2`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/networkx.md b/docs/version-specific/supported-software/n/networkx.md index d4dd37208..bbb06416c 100644 --- a/docs/version-specific/supported-software/n/networkx.md +++ b/docs/version-specific/supported-software/n/networkx.md @@ -1,3 +1,7 @@ +--- +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. @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``3.0`` | | ``gfbf/2022b`` ``3.1`` | | ``gfbf/2023a`` ``3.2.1`` | | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nf-core-mag.md b/docs/version-specific/supported-software/n/nf-core-mag.md index e15337f0e..675fde0b1 100644 --- a/docs/version-specific/supported-software/n/nf-core-mag.md +++ b/docs/version-specific/supported-software/n/nf-core-mag.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nf-core-mag The Nextflow pipeline 'mag' ported to EasyBuild/EESSI. @@ -7,3 +11,6 @@ The Nextflow pipeline 'mag' ported to EasyBuild/EESSI. version | toolchain --------|---------- ``20221110`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nf-core.md b/docs/version-specific/supported-software/n/nf-core.md index 899508837..b922cd167 100644 --- a/docs/version-specific/supported-software/n/nf-core.md +++ b/docs/version-specific/supported-software/n/nf-core.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nf-core Python package with helper tools for the nf-core community. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.10`` | ``foss/2022b`` ``2.13.1`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nghttp2.md b/docs/version-specific/supported-software/n/nghttp2.md index b8f4bdf44..a95843fca 100644 --- a/docs/version-specific/supported-software/n/nghttp2.md +++ b/docs/version-specific/supported-software/n/nghttp2.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.48.0`` | ``GCC/11.2.0`` ``1.48.0`` | ``GCC/11.3.0`` ``1.58.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nghttp3.md b/docs/version-specific/supported-software/n/nghttp3.md index ed1763a83..f3cdfe53f 100644 --- a/docs/version-specific/supported-software/n/nghttp3.md +++ b/docs/version-specific/supported-software/n/nghttp3.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.6.0`` | ``GCCcore/11.2.0`` ``0.6.0`` | ``GCCcore/11.3.0`` ``1.3.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nglview.md b/docs/version-specific/supported-software/n/nglview.md index 67976043d..e2dae0967 100644 --- a/docs/version-specific/supported-software/n/nglview.md +++ b/docs/version-specific/supported-software/n/nglview.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nglview IPython widget to interactively view molecular structures and trajectories. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``3.0.3`` | | ``foss/2021a`` ``3.0.3`` | | ``foss/2022a`` ``3.1.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ngspice.md b/docs/version-specific/supported-software/n/ngspice.md index 6262f49df..476ae5075 100644 --- a/docs/version-specific/supported-software/n/ngspice.md +++ b/docs/version-specific/supported-software/n/ngspice.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``31`` | ``foss/2019b`` ``39`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ngtcp2.md b/docs/version-specific/supported-software/n/ngtcp2.md index fa5324b18..130def39a 100644 --- a/docs/version-specific/supported-software/n/ngtcp2.md +++ b/docs/version-specific/supported-software/n/ngtcp2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ngtcp2 'Call it TCP/2. One More Time.' ngtcp2 project is an effort to implement RFC9000 QUIC protocol. @@ -9,3 +13,6 @@ version | toolchain ``0.7.0`` | ``GCC/11.2.0`` ``0.7.0`` | ``GCC/11.3.0`` ``1.2.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nichenetr.md b/docs/version-specific/supported-software/n/nichenetr.md index 7eca7d024..5d3d669c7 100644 --- a/docs/version-specific/supported-software/n/nichenetr.md +++ b/docs/version-specific/supported-software/n/nichenetr.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nichenetr R implementation of the NicheNet method, to predict active ligand-target links between interacting cells @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1-20230223`` | ``-R-4.2.1`` | ``foss/2022a`` ``2.0.4`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nifti2dicom.md b/docs/version-specific/supported-software/n/nifti2dicom.md index 3fc9c4e38..10997ee14 100644 --- a/docs/version-specific/supported-software/n/nifti2dicom.md +++ b/docs/version-specific/supported-software/n/nifti2dicom.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Nifti2Dicom is a conversion tool that converts 3D NIfTI files (and other formats version | toolchain --------|---------- ``0.4.11`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nlohmann_json.md b/docs/version-specific/supported-software/n/nlohmann_json.md index 7e4f3b680..9976df06a 100644 --- a/docs/version-specific/supported-software/n/nlohmann_json.md +++ b/docs/version-specific/supported-software/n/nlohmann_json.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nlohmann_json JSON for Modern C++ @@ -12,3 +16,6 @@ version | toolchain ``3.11.2`` | ``GCCcore/12.2.0`` ``3.11.2`` | ``GCCcore/12.3.0`` ``3.11.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nnU-Net.md b/docs/version-specific/supported-software/n/nnU-Net.md index 3fbc86286..da64245a7 100644 --- a/docs/version-specific/supported-software/n/nnU-Net.md +++ b/docs/version-specific/supported-software/n/nnU-Net.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.7.0`` | ``foss/2020b`` ``1.7.0`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nodejs.md b/docs/version-specific/supported-software/n/nodejs.md index 5c7553907..863fcf773 100644 --- a/docs/version-specific/supported-software/n/nodejs.md +++ b/docs/version-specific/supported-software/n/nodejs.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | toolchain ``4.4.7`` | ``foss/2016a`` ``6.10.3`` | ``foss/2017a`` ``8.9.4`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/noise.md b/docs/version-specific/supported-software/n/noise.md index 6b4e281a0..56ab13b01 100644 --- a/docs/version-specific/supported-software/n/noise.md +++ b/docs/version-specific/supported-software/n/noise.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # noise Native-code and shader implementations of Perlin noise for Python @@ -7,3 +11,6 @@ Native-code and shader implementations of Perlin noise for Python version | toolchain --------|---------- ``1.2.2`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nose-parameterized.md b/docs/version-specific/supported-software/n/nose-parameterized.md index 5d2f63319..595831e4d 100644 --- a/docs/version-specific/supported-software/n/nose-parameterized.md +++ b/docs/version-specific/supported-software/n/nose-parameterized.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nose-parameterized Parameterized testing with any Python test framework. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nose3.md b/docs/version-specific/supported-software/n/nose3.md index c98b81d90..a385f2351 100644 --- a/docs/version-specific/supported-software/n/nose3.md +++ b/docs/version-specific/supported-software/n/nose3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nose3 Nose extends unittest to make testing easier. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.3.8`` | ``GCCcore/11.3.0`` ``1.3.8`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/novaSTA.md b/docs/version-specific/supported-software/n/novaSTA.md index 9bc3c942a..4940285a5 100644 --- a/docs/version-specific/supported-software/n/novaSTA.md +++ b/docs/version-specific/supported-software/n/novaSTA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ C++ version of subtomogram averaging (SA) scripts from TOM/AV3 package version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/novoalign.md b/docs/version-specific/supported-software/n/novoalign.md index da383f7aa..c0b452198 100644 --- a/docs/version-specific/supported-software/n/novoalign.md +++ b/docs/version-specific/supported-software/n/novoalign.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # novoalign Map short reads onto a reference genome from Illumina, Ion Torrent, and 454 next generation sequencing platforms @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.09.00`` | | ``system`` ``3.09.01`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/npstat.md b/docs/version-specific/supported-software/n/npstat.md index acd9253d1..0acadc892 100644 --- a/docs/version-specific/supported-software/n/npstat.md +++ b/docs/version-specific/supported-software/n/npstat.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.99`` | ``foss/2016a`` ``0.99`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nsync.md b/docs/version-specific/supported-software/n/nsync.md index 24b4e3f5d..df181da79 100644 --- a/docs/version-specific/supported-software/n/nsync.md +++ b/docs/version-specific/supported-software/n/nsync.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nsync nsync is a C library that exports various synchronization primitives, such as mutexes @@ -14,3 +18,6 @@ version | toolchain ``1.25.0`` | ``GCCcore/11.3.0`` ``1.26.0`` | ``GCCcore/12.2.0`` ``1.26.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ntCard.md b/docs/version-specific/supported-software/n/ntCard.md index c4f962eb8..a2780c954 100644 --- a/docs/version-specific/supported-software/n/ntCard.md +++ b/docs/version-specific/supported-software/n/ntCard.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ntCard ntCard is a streaming algorithm for estimating the frequencies of k-mers in genomics datasets. @@ -9,3 +13,6 @@ version | toolchain ``1.2.1`` | ``GCC/11.2.0`` ``1.2.1`` | ``GCC/8.3.0`` ``1.2.2`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ntEdit.md b/docs/version-specific/supported-software/n/ntEdit.md index 6fc215b44..7a7e30662 100644 --- a/docs/version-specific/supported-software/n/ntEdit.md +++ b/docs/version-specific/supported-software/n/ntEdit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ntEdit ntEdit is a fast and scalable genomics application for polishing genome assembly drafts. @@ -7,3 +11,6 @@ ntEdit is a fast and scalable genomics application for polishing genome assembly version | toolchain --------|---------- ``1.3.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/ntHits.md b/docs/version-specific/supported-software/n/ntHits.md index d14f4a60c..4110cb8e1 100644 --- a/docs/version-specific/supported-software/n/ntHits.md +++ b/docs/version-specific/supported-software/n/ntHits.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ntHits ntHits is a method for identifying repeats in high-throughput DNA sequencing data. @@ -7,3 +11,6 @@ ntHits is a method for identifying repeats in high-throughput DNA sequencing dat version | toolchain --------|---------- ``0.0.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/num2words.md b/docs/version-specific/supported-software/n/num2words.md index bf56a3e92..684a458d3 100644 --- a/docs/version-specific/supported-software/n/num2words.md +++ b/docs/version-specific/supported-software/n/num2words.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # num2words Modules to convert numbers to words. 42 --> forty-two @@ -7,3 +11,6 @@ Modules to convert numbers to words. 42 --> forty-two version | toolchain --------|---------- ``0.5.10`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/numactl.md b/docs/version-specific/supported-software/n/numactl.md index 304e6fcd3..32f273651 100644 --- a/docs/version-specific/supported-software/n/numactl.md +++ b/docs/version-specific/supported-software/n/numactl.md @@ -1,3 +1,7 @@ +--- +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. @@ -44,3 +48,6 @@ version | toolchain ``2.0.16`` | ``GCCcore/13.2.0`` ``2.0.18`` | ``GCCcore/13.3.0`` ``2.0.9`` | ``GCC/4.8.3`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/numba.md b/docs/version-specific/supported-software/n/numba.md index 74516f3b0..cb8e92fdc 100644 --- a/docs/version-specific/supported-software/n/numba.md +++ b/docs/version-specific/supported-software/n/numba.md @@ -1,3 +1,7 @@ +--- +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. @@ -36,3 +40,6 @@ version | versionsuffix | toolchain ``0.56.4`` | | ``foss/2022a`` ``0.58.1`` | | ``foss/2022b`` ``0.58.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/numdiff.md b/docs/version-specific/supported-software/n/numdiff.md index b1057e9d7..d639031cb 100644 --- a/docs/version-specific/supported-software/n/numdiff.md +++ b/docs/version-specific/supported-software/n/numdiff.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.9.0`` | ``GCCcore/10.2.0`` ``5.9.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/numexpr.md b/docs/version-specific/supported-software/n/numexpr.md index d18fdccca..2205e4c08 100644 --- a/docs/version-specific/supported-software/n/numexpr.md +++ b/docs/version-specific/supported-software/n/numexpr.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | versionsuffix | toolchain ``2.8.1`` | | ``foss/2021a`` ``2.8.1`` | | ``intel/2021a`` ``2.8.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/numpy.md b/docs/version-specific/supported-software/n/numpy.md index d1b90fd56..0a721cab6 100644 --- a/docs/version-specific/supported-software/n/numpy.md +++ b/docs/version-specific/supported-software/n/numpy.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nvitop.md b/docs/version-specific/supported-software/n/nvitop.md index 1bef69dcd..5fe238f91 100644 --- a/docs/version-specific/supported-software/n/nvitop.md +++ b/docs/version-specific/supported-software/n/nvitop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nvitop An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management. @@ -7,3 +11,6 @@ An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-CUDA-12.3.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nvofbf.md b/docs/version-specific/supported-software/n/nvofbf.md index 19f58544a..18783f621 100644 --- a/docs/version-specific/supported-software/n/nvofbf.md +++ b/docs/version-specific/supported-software/n/nvofbf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nvofbf NVHPC based toolchain, including OpenMPI for MPI support, OpenBLAS (via FlexiBLAS for BLAS and LAPACK support), FFTW and ScaLAPACK. @@ -7,3 +11,6 @@ NVHPC based toolchain, including OpenMPI for MPI support, OpenBLAS (via FlexiBLA version | toolchain --------|---------- ``2022.07`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nvompi.md b/docs/version-specific/supported-software/n/nvompi.md index 2ab0374cb..eb32c3699 100644 --- a/docs/version-specific/supported-software/n/nvompi.md +++ b/docs/version-specific/supported-software/n/nvompi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nvompi NVHPC based compiler toolchain, including OpenMPI for MPI support. @@ -7,3 +11,6 @@ NVHPC based compiler toolchain, including OpenMPI for MPI support. version | toolchain --------|---------- ``2022.07`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/n/nvtop.md b/docs/version-specific/supported-software/n/nvtop.md index 342d514cc..ed65c4e64 100644 --- a/docs/version-specific/supported-software/n/nvtop.md +++ b/docs/version-specific/supported-software/n/nvtop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # nvtop htop-like GPU usage monitor @@ -15,3 +19,6 @@ version | toolchain ``2.0.2`` | ``GCCcore/11.3.0`` ``3.0.1`` | ``GCCcore/12.2.0`` ``3.1.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OBITools.md b/docs/version-specific/supported-software/o/OBITools.md index 63634716a..65666e98b 100644 --- a/docs/version-specific/supported-software/o/OBITools.md +++ b/docs/version-specific/supported-software/o/OBITools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.13`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.2.9`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OBITools3.md b/docs/version-specific/supported-software/o/OBITools3.md index f565b5808..34be9a4eb 100644 --- a/docs/version-specific/supported-software/o/OBITools3.md +++ b/docs/version-specific/supported-software/o/OBITools3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OBITools3 A package for the management of analyses and data in DNA metabarcoding. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.0.1b26`` | ``GCCcore/12.3.0`` ``3.0.1b8`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OCNet.md b/docs/version-specific/supported-software/o/OCNet.md index 77110975b..66818b7ae 100644 --- a/docs/version-specific/supported-software/o/OCNet.md +++ b/docs/version-specific/supported-software/o/OCNet.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OCaml.md b/docs/version-specific/supported-software/o/OCaml.md index d4848d17a..5afe9bee9 100644 --- a/docs/version-specific/supported-software/o/OCaml.md +++ b/docs/version-specific/supported-software/o/OCaml.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``4.07.1`` | ``foss/2018b`` ``4.14.0`` | ``GCC/11.3.0`` ``5.1.1`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OGDF.md b/docs/version-specific/supported-software/o/OGDF.md index 41cc2b1c8..c9895de45 100644 --- a/docs/version-specific/supported-software/o/OGDF.md +++ b/docs/version-specific/supported-software/o/OGDF.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OGDF is a self-contained C++ library for graph algorithms, in particular for (bu version | toolchain --------|---------- ``dogwood-202202`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OMA.md b/docs/version-specific/supported-software/o/OMA.md index 8575de8be..415477698 100644 --- a/docs/version-specific/supported-software/o/OMA.md +++ b/docs/version-specific/supported-software/o/OMA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OMA The OMA ('Orthologous MAtrix') project is a method and database for the inference of orthologs among complete genomes @@ -7,3 +11,6 @@ The OMA ('Orthologous MAtrix') project is a method and database for the inferenc version | toolchain --------|---------- ``2.1.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OMERO.insight.md b/docs/version-specific/supported-software/o/OMERO.insight.md index 80c3c6de8..76c711aae 100644 --- a/docs/version-specific/supported-software/o/OMERO.insight.md +++ b/docs/version-specific/supported-software/o/OMERO.insight.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The OMERO.insight Project is a sub-project of the Open Microscopy Environment Pr version | versionsuffix | toolchain --------|---------------|---------- ``5.8.3`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OMERO.py.md b/docs/version-specific/supported-software/o/OMERO.py.md index dea1cb65c..17c339c92 100644 --- a/docs/version-specific/supported-software/o/OMERO.py.md +++ b/docs/version-specific/supported-software/o/OMERO.py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OMERO.py OMERO.py provides Python bindings to the OMERO.blitz server as well as a pluggable command-line interface. @@ -7,3 +11,6 @@ OMERO.py provides Python bindings to the OMERO.blitz server as well as a pluggab version | toolchain --------|---------- ``5.17.0`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ONNX-Runtime.md b/docs/version-specific/supported-software/o/ONNX-Runtime.md index a05844dc4..91f50cfd3 100644 --- a/docs/version-specific/supported-software/o/ONNX-Runtime.md +++ b/docs/version-specific/supported-software/o/ONNX-Runtime.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.10.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.10.0`` | | ``foss/2021a`` ``1.16.3`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ONNX.md b/docs/version-specific/supported-software/o/ONNX.md index 0655b140b..db36f16f8 100644 --- a/docs/version-specific/supported-software/o/ONNX.md +++ b/docs/version-specific/supported-software/o/ONNX.md @@ -1,3 +1,7 @@ +--- +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). @@ -9,3 +13,6 @@ version | toolchain ``1.11.0`` | ``foss/2021a`` ``1.15.0`` | ``foss/2022b`` ``1.15.0`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OOMPA.md b/docs/version-specific/supported-software/o/OOMPA.md index 6bc6c487a..aeaca627e 100644 --- a/docs/version-specific/supported-software/o/OOMPA.md +++ b/docs/version-specific/supported-software/o/OOMPA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OOMPA is a suite of R packages for the analysis of gene expression (RNA), proteo version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-R-3.3.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OPARI2.md b/docs/version-specific/supported-software/o/OPARI2.md index 85c896da5..2d558c504 100644 --- a/docs/version-specific/supported-software/o/OPARI2.md +++ b/docs/version-specific/supported-software/o/OPARI2.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``2.0.7`` | ``GCCcore/12.2.0`` ``2.0.7`` | ``GCCcore/12.3.0`` ``2.0.8`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OPERA-MS.md b/docs/version-specific/supported-software/o/OPERA-MS.md index a13126594..d258fe155 100644 --- a/docs/version-specific/supported-software/o/OPERA-MS.md +++ b/docs/version-specific/supported-software/o/OPERA-MS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OPERA-MS is a hybrid metagenomic assembler which combines the advantages of sho version | versionsuffix | toolchain --------|---------------|---------- ``0.9.0-20200802`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OPERA.md b/docs/version-specific/supported-software/o/OPERA.md index 2b388aea4..6a48a77a8 100644 --- a/docs/version-specific/supported-software/o/OPERA.md +++ b/docs/version-specific/supported-software/o/OPERA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OPERA An optimal genome scaffolding program @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.6`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``2.0.6`` | ``-Perl-5.28.0`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OR-Tools.md b/docs/version-specific/supported-software/o/OR-Tools.md index 7b2b68692..8bc6d7d72 100644 --- a/docs/version-specific/supported-software/o/OR-Tools.md +++ b/docs/version-specific/supported-software/o/OR-Tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Google Optimization Tools (a.k.a., OR-Tools) is an open-source, fast and portabl version | versionsuffix | toolchain --------|---------------|---------- ``7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ORCA.md b/docs/version-specific/supported-software/o/ORCA.md index 3fa63d344..53ada53ad 100644 --- a/docs/version-specific/supported-software/o/ORCA.md +++ b/docs/version-specific/supported-software/o/ORCA.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``5.0.3`` | | ``gompi/2021b`` ``5.0.4`` | | ``gompi/2022a`` ``5.0.4`` | | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ORFfinder.md b/docs/version-specific/supported-software/o/ORFfinder.md index 4cb6815d8..6015be83b 100644 --- a/docs/version-specific/supported-software/o/ORFfinder.md +++ b/docs/version-specific/supported-software/o/ORFfinder.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ORF finder searches for open reading frames (ORFs) in the DNA sequence you ente version | toolchain --------|---------- ``0.4.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OSPRay.md b/docs/version-specific/supported-software/o/OSPRay.md index d8aab6420..2e5ef2c3e 100644 --- a/docs/version-specific/supported-software/o/OSPRay.md +++ b/docs/version-specific/supported-software/o/OSPRay.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OSPRay Open, Scalable, and Portable Ray Tracing Engine @@ -7,3 +11,6 @@ Open, Scalable, and Portable Ray Tracing Engine version | toolchain --------|---------- ``2.5.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md index 883348661..4aa1b6b08 100644 --- a/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md +++ b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OSU-Micro-Benchmarks OSU Micro-Benchmarks @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``7.2`` | ``-CUDA-12.1.1`` | ``gompi/2023a`` ``7.2`` | | ``gompi/2023b`` ``7.4`` | | ``gompi/2024.05`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OTF2.md b/docs/version-specific/supported-software/o/OTF2.md index a8e211d5d..e3fa211ad 100644 --- a/docs/version-specific/supported-software/o/OTF2.md +++ b/docs/version-specific/supported-software/o/OTF2.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``3.0.3`` | ``GCCcore/12.2.0`` ``3.0.3`` | ``GCCcore/12.3.0`` ``3.0.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OVITO.md b/docs/version-specific/supported-software/o/OVITO.md index e5e4ebf6e..7a98880a7 100644 --- a/docs/version-specific/supported-software/o/OVITO.md +++ b/docs/version-specific/supported-software/o/OVITO.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OVITO is a scientific visualization and data analysis solution for atomistic and version | versionsuffix | toolchain --------|---------------|---------- ``3.7.11`` | ``-basic`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Oases.md b/docs/version-specific/supported-software/o/Oases.md index af2dcb956..f707e11ec 100644 --- a/docs/version-specific/supported-software/o/Oases.md +++ b/docs/version-specific/supported-software/o/Oases.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.2.08`` | | ``foss/2016b`` ``0.2.08`` | ``-kmer_101`` | ``intel/2017b`` ``20180312`` | | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Octave.md b/docs/version-specific/supported-software/o/Octave.md index 558e164e0..eec4ade5c 100644 --- a/docs/version-specific/supported-software/o/Octave.md +++ b/docs/version-specific/supported-software/o/Octave.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Octave GNU Octave is a high-level interpreted language, primarily intended for numerical computations. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``foss/2019b`` ``6.2.0`` | | ``foss/2020b`` ``7.1.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Octopus-vcf.md b/docs/version-specific/supported-software/o/Octopus-vcf.md index 993e7ff95..cde82b16e 100644 --- a/docs/version-specific/supported-software/o/Octopus-vcf.md +++ b/docs/version-specific/supported-software/o/Octopus-vcf.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.7.1`` | ``foss/2020b`` ``0.7.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OmegaFold.md b/docs/version-specific/supported-software/o/OmegaFold.md index 33f55f1e4..93cd65164 100644 --- a/docs/version-specific/supported-software/o/OmegaFold.md +++ b/docs/version-specific/supported-software/o/OmegaFold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OmegaFold OmegaFold: High-resolution de novo Structure Prediction from Primary Sequence @@ -7,3 +11,6 @@ OmegaFold: High-resolution de novo Structure Prediction from Primary Sequence version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Omnipose.md b/docs/version-specific/supported-software/o/Omnipose.md index 6a81f9727..a1aa70b9f 100644 --- a/docs/version-specific/supported-software/o/Omnipose.md +++ b/docs/version-specific/supported-software/o/Omnipose.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.4`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + 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 index e80acac0c..f52642f8a 100644 --- a/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md +++ b/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Open Data Cube Core provides an integrated gridded data analysis environment version | versionsuffix | toolchain --------|---------------|---------- ``1.8.3`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenAI-Gym.md b/docs/version-specific/supported-software/o/OpenAI-Gym.md index 009418d1a..a96847a33 100644 --- a/docs/version-specific/supported-software/o/OpenAI-Gym.md +++ b/docs/version-specific/supported-software/o/OpenAI-Gym.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenAI-Gym A toolkit for developing and comparing reinforcement learning algorithms. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.17.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.21.0`` | | ``foss/2021b`` ``0.26.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenBLAS.md b/docs/version-specific/supported-software/o/OpenBLAS.md index 8294ee5c6..4cab3a2d5 100644 --- a/docs/version-specific/supported-software/o/OpenBLAS.md +++ b/docs/version-specific/supported-software/o/OpenBLAS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenBLAS OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``0.3.7`` | | ``GCC/8.3.0`` ``0.3.8`` | | ``GCC/9.2.0`` ``0.3.9`` | | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenBabel.md b/docs/version-specific/supported-software/o/OpenBabel.md index 5b11f5b67..e00ff12d2 100644 --- a/docs/version-specific/supported-software/o/OpenBabel.md +++ b/docs/version-specific/supported-software/o/OpenBabel.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``gompi/2022a`` ``3.1.1`` | | ``gompi/2023a`` ``3.1.1`` | ``-Python-3.8.2`` | ``iimpi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenCV.md b/docs/version-specific/supported-software/o/OpenCV.md index 35c1ac45a..c2c7351c0 100644 --- a/docs/version-specific/supported-software/o/OpenCV.md +++ b/docs/version-specific/supported-software/o/OpenCV.md @@ -1,3 +1,7 @@ +--- +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. @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``4.8.0`` | ``-contrib`` | ``foss/2022b`` ``4.8.1`` | ``-CUDA-12.1.1-contrib`` | ``foss/2023a`` ``4.8.1`` | ``-contrib`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenCensus-python.md b/docs/version-specific/supported-software/o/OpenCensus-python.md index 6263cb2ac..c3f70cdec 100644 --- a/docs/version-specific/supported-software/o/OpenCensus-python.md +++ b/docs/version-specific/supported-software/o/OpenCensus-python.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OpenCensus for Python. OpenCensus provides a framework to measure a server's res version | toolchain --------|---------- ``0.8.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenCoarrays.md b/docs/version-specific/supported-software/o/OpenCoarrays.md index b4a5531be..4435a10b5 100644 --- a/docs/version-specific/supported-software/o/OpenCoarrays.md +++ b/docs/version-specific/supported-software/o/OpenCoarrays.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.2.0`` | ``gompi/2018b`` ``2.8.0`` | ``gompi/2019b`` ``2.9.2`` | ``gompi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenColorIO.md b/docs/version-specific/supported-software/o/OpenColorIO.md index 986f9bb11..ae3ad9e8a 100644 --- a/docs/version-specific/supported-software/o/OpenColorIO.md +++ b/docs/version-specific/supported-software/o/OpenColorIO.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OpenColorIO (OCIO) is a complete color management solution geared towards motion version | toolchain --------|---------- ``1.1.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenEXR.md b/docs/version-specific/supported-software/o/OpenEXR.md index 694a69d5a..6117ee2ac 100644 --- a/docs/version-specific/supported-software/o/OpenEXR.md +++ b/docs/version-specific/supported-software/o/OpenEXR.md @@ -1,3 +1,7 @@ +--- +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 @@ -19,3 +23,6 @@ version | toolchain ``3.1.5`` | ``GCCcore/12.2.0`` ``3.1.7`` | ``GCCcore/12.3.0`` ``3.2.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenFAST.md b/docs/version-specific/supported-software/o/OpenFAST.md index f782ad377..55d75b95a 100644 --- a/docs/version-specific/supported-software/o/OpenFAST.md +++ b/docs/version-specific/supported-software/o/OpenFAST.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ OpenFAST is a wind turbine simulation tool which builds on FAST v8. FAST.Farm ex version | toolchain --------|---------- ``3.0.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenFOAM-Extend.md b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md index 58f18c57e..3903b397a 100644 --- a/docs/version-specific/supported-software/o/OpenFOAM-Extend.md +++ b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenFOAM.md b/docs/version-specific/supported-software/o/OpenFOAM.md index aae15f250..4927ef036 100644 --- a/docs/version-specific/supported-software/o/OpenFOAM.md +++ b/docs/version-specific/supported-software/o/OpenFOAM.md @@ -1,3 +1,7 @@ +--- +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. @@ -66,3 +70,6 @@ version | versionsuffix | toolchain ``v2206`` | | ``foss/2022a`` ``v2306`` | | ``foss/2022b`` ``v2312`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenFace.md b/docs/version-specific/supported-software/o/OpenFace.md index c2d572be6..53a3d27dd 100644 --- a/docs/version-specific/supported-software/o/OpenFace.md +++ b/docs/version-specific/supported-software/o/OpenFace.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.2.0`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenFold.md b/docs/version-specific/supported-software/o/OpenFold.md index f03ab0285..0c31a6a33 100644 --- a/docs/version-specific/supported-software/o/OpenFold.md +++ b/docs/version-specific/supported-software/o/OpenFold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenFold A faithful PyTorch reproduction of DeepMind's AlphaFold 2 @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenForceField.md b/docs/version-specific/supported-software/o/OpenForceField.md index 83c3a525b..c7e570baf 100644 --- a/docs/version-specific/supported-software/o/OpenForceField.md +++ b/docs/version-specific/supported-software/o/OpenForceField.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Simulation and Parameter Estimation in Geophysics - A python package for simula version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenImageIO.md b/docs/version-specific/supported-software/o/OpenImageIO.md index 99a32cda0..f5ee1997d 100644 --- a/docs/version-specific/supported-software/o/OpenImageIO.md +++ b/docs/version-specific/supported-software/o/OpenImageIO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenImageIO OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. @@ -16,3 +20,6 @@ version | toolchain ``2.1.12.0`` | ``iimpi/2020a`` ``2.3.17.0`` | ``GCC/11.3.0`` ``2.4.14.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenJPEG.md b/docs/version-specific/supported-software/o/OpenJPEG.md index 19801c727..a449ea198 100644 --- a/docs/version-specific/supported-software/o/OpenJPEG.md +++ b/docs/version-specific/supported-software/o/OpenJPEG.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.2.0`` ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenKIM-API.md b/docs/version-specific/supported-software/o/OpenKIM-API.md index c237ccefe..6c0ded41e 100644 --- a/docs/version-specific/supported-software/o/OpenKIM-API.md +++ b/docs/version-specific/supported-software/o/OpenKIM-API.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.9.7`` | ``foss/2018b`` ``1.9.7`` | ``intel/2018b`` ``1.9.7`` | ``iomkl/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMEEG.md b/docs/version-specific/supported-software/o/OpenMEEG.md index 51a71646a..467f8a433 100644 --- a/docs/version-specific/supported-software/o/OpenMEEG.md +++ b/docs/version-specific/supported-software/o/OpenMEEG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenMEEG The OpenMEEG software is a C++ package for solving the forward problems of electroencephalography (EEG) and magnetoencephalography (MEG). @@ -7,3 +11,6 @@ The OpenMEEG software is a C++ package for solving the forward problems of elect version | toolchain --------|---------- ``2.5.7`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMM-PLUMED.md b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md index f4aaace18..d2746f3e2 100644 --- a/docs/version-specific/supported-software/o/OpenMM-PLUMED.md +++ b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This project provides a connection between OpenMM and PLUMED. It allows you to b version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMM.md b/docs/version-specific/supported-software/o/OpenMM.md index 0683536c2..464853fc0 100644 --- a/docs/version-specific/supported-software/o/OpenMM.md +++ b/docs/version-specific/supported-software/o/OpenMM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenMM OpenMM is a toolkit for molecular simulation. @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``8.0.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``8.0.0`` | | ``foss/2022a`` ``8.0.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMMTools.md b/docs/version-specific/supported-software/o/OpenMMTools.md index 08add2d03..0be7e890d 100644 --- a/docs/version-specific/supported-software/o/OpenMMTools.md +++ b/docs/version-specific/supported-software/o/OpenMMTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A batteries-included toolkit for the GPU-accelerated OpenMM molecular simulation version | versionsuffix | toolchain --------|---------------|---------- ``0.20.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMPI.md b/docs/version-specific/supported-software/o/OpenMPI.md index 392afd363..6622749ea 100644 --- a/docs/version-specific/supported-software/o/OpenMPI.md +++ b/docs/version-specific/supported-software/o/OpenMPI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenMPI The Open MPI Project is an open source MPI-2 implementation. @@ -88,3 +92,6 @@ version | versionsuffix | toolchain ``4.1.6`` | | ``GCC/13.2.0`` ``5.0.3`` | | ``GCC/13.3.0`` ``system`` | | ``GCC/system-2.29`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMS.md b/docs/version-specific/supported-software/o/OpenMS.md index 07d006a46..44ee0460c 100644 --- a/docs/version-specific/supported-software/o/OpenMS.md +++ b/docs/version-specific/supported-software/o/OpenMS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ As part of the deNBI Center for integrative Bioinformatics, OpenMS offers an ope version | toolchain --------|---------- ``2.4.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenMolcas.md b/docs/version-specific/supported-software/o/OpenMolcas.md index 1115f0f6c..d4efec3af 100644 --- a/docs/version-specific/supported-software/o/OpenMolcas.md +++ b/docs/version-specific/supported-software/o/OpenMolcas.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenMolcas OpenMolcas is a quantum chemistry software package @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``22.10`` | ``-noGA`` | ``intel/2022a`` ``22.10`` | | ``intel/2022a`` ``23.06`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenNLP.md b/docs/version-specific/supported-software/o/OpenNLP.md index 50481f558..577dcc3f7 100644 --- a/docs/version-specific/supported-software/o/OpenNLP.md +++ b/docs/version-specific/supported-software/o/OpenNLP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenNLP The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text. @@ -7,3 +11,6 @@ The Apache OpenNLP library is a machine learning based toolkit for the processin version | toolchain --------|---------- ``1.8.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenPGM.md b/docs/version-specific/supported-software/o/OpenPGM.md index 6dd7dfa06..442531a40 100644 --- a/docs/version-specific/supported-software/o/OpenPGM.md +++ b/docs/version-specific/supported-software/o/OpenPGM.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``5.2.122`` | ``intel/2016a`` ``5.2.122`` | ``intel/2016b`` ``5.2.122`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenPIV.md b/docs/version-specific/supported-software/o/OpenPIV.md index 94288f842..d5d21e6d3 100644 --- a/docs/version-specific/supported-software/o/OpenPIV.md +++ b/docs/version-specific/supported-software/o/OpenPIV.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenPIV OpenPIV is an open source Particle Image Velocimetry analysis software @@ -7,3 +11,6 @@ OpenPIV is an open source Particle Image Velocimetry analysis software version | versionsuffix | toolchain --------|---------------|---------- ``0.21.8`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenRefine.md b/docs/version-specific/supported-software/o/OpenRefine.md index 131e78c29..53aca375a 100644 --- a/docs/version-specific/supported-software/o/OpenRefine.md +++ b/docs/version-specific/supported-software/o/OpenRefine.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.7`` | ``-Java-1.8.0_144`` | ``system`` ``3.4.1`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenSSL.md b/docs/version-specific/supported-software/o/OpenSSL.md index d27cfc3c9..a0e938b92 100644 --- a/docs/version-specific/supported-software/o/OpenSSL.md +++ b/docs/version-specific/supported-software/o/OpenSSL.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | toolchain ``1.1.1q`` | ``GCCcore/10.3.0`` ``1.1`` | ``system`` ``3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenSceneGraph.md b/docs/version-specific/supported-software/o/OpenSceneGraph.md index 069e6896b..13136ddb2 100644 --- a/docs/version-specific/supported-software/o/OpenSceneGraph.md +++ b/docs/version-specific/supported-software/o/OpenSceneGraph.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.6.5`` | ``foss/2021a`` ``3.6.5`` | ``foss/2021b`` ``3.6.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenSees.md b/docs/version-specific/supported-software/o/OpenSees.md index 89149eb1f..e4cac7416 100644 --- a/docs/version-specific/supported-software/o/OpenSees.md +++ b/docs/version-specific/supported-software/o/OpenSees.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenSees Open System for Earthquake Engineering Simulation @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2.0`` | ``-Python-3.8.2-parallel`` | ``intel/2020a`` ``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenSlide-Java.md b/docs/version-specific/supported-software/o/OpenSlide-Java.md index 7014844a8..e8d4fb403 100644 --- a/docs/version-specific/supported-software/o/OpenSlide-Java.md +++ b/docs/version-specific/supported-software/o/OpenSlide-Java.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OpenSlide-Java This is a Java binding to OpenSlide. @@ -7,3 +11,6 @@ This is a Java binding to OpenSlide. version | versionsuffix | toolchain --------|---------------|---------- ``0.12.4`` | ``-Java-17`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenSlide.md b/docs/version-specific/supported-software/o/OpenSlide.md index 4f273d069..59c555cb3 100644 --- a/docs/version-specific/supported-software/o/OpenSlide.md +++ b/docs/version-specific/supported-software/o/OpenSlide.md @@ -1,3 +1,7 @@ +--- +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). @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``3.4.1`` | ``-largefiles`` | ``GCCcore/12.3.0`` ``3.4.1`` | ``-largefiles`` | ``GCCcore/8.2.0`` ``3.4.1`` | | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OpenStackClient.md b/docs/version-specific/supported-software/o/OpenStackClient.md index 233748292..19ebe54ed 100644 --- a/docs/version-specific/supported-software/o/OpenStackClient.md +++ b/docs/version-specific/supported-software/o/OpenStackClient.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``5.5.0`` | ``GCCcore/10.2.0`` ``5.8.0`` | ``GCCcore/11.2.0`` ``6.0.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OptaDOS.md b/docs/version-specific/supported-software/o/OptaDOS.md index a292e4e15..88eb4e7f7 100644 --- a/docs/version-specific/supported-software/o/OptaDOS.md +++ b/docs/version-specific/supported-software/o/OptaDOS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OptaDOS is a program for calculating core-electron and low-loss electron energy version | toolchain --------|---------- ``1.2.380`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Optax.md b/docs/version-specific/supported-software/o/Optax.md index 39bb14b19..895ab5f71 100644 --- a/docs/version-specific/supported-software/o/Optax.md +++ b/docs/version-specific/supported-software/o/Optax.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Optax Optax is a gradient processing and optimization library for JAX. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.7`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OptiType.md b/docs/version-specific/supported-software/o/OptiType.md index 9448b207a..5045e10cc 100644 --- a/docs/version-specific/supported-software/o/OptiType.md +++ b/docs/version-specific/supported-software/o/OptiType.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.3.2`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OptiX.md b/docs/version-specific/supported-software/o/OptiX.md index cfc490f97..0216edb44 100644 --- a/docs/version-specific/supported-software/o/OptiX.md +++ b/docs/version-specific/supported-software/o/OptiX.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``3.9.0`` | ``GNU/4.9.3-2.25`` ``6.5.0`` | ``system`` ``7.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Optuna.md b/docs/version-specific/supported-software/o/Optuna.md index e19b0e128..2d4d4454a 100644 --- a/docs/version-specific/supported-software/o/Optuna.md +++ b/docs/version-specific/supported-software/o/Optuna.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.9.1`` | ``foss/2021a`` ``3.1.0`` | ``foss/2022a`` ``3.5.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OrfM.md b/docs/version-specific/supported-software/o/OrfM.md index 6ef709429..ef8f7d137 100644 --- a/docs/version-specific/supported-software/o/OrfM.md +++ b/docs/version-specific/supported-software/o/OrfM.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OrthoFinder.md b/docs/version-specific/supported-software/o/OrthoFinder.md index 106dea804..d01897800 100644 --- a/docs/version-specific/supported-software/o/OrthoFinder.md +++ b/docs/version-specific/supported-software/o/OrthoFinder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OrthoFinder OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.5.2`` | | ``foss/2020b`` ``2.5.4`` | | ``foss/2020b`` ``2.5.5`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/OrthoMCL.md b/docs/version-specific/supported-software/o/OrthoMCL.md index 334ca8b86..f40160369 100644 --- a/docs/version-specific/supported-software/o/OrthoMCL.md +++ b/docs/version-specific/supported-software/o/OrthoMCL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # OrthoMCL OrthoMCL is a genome-scale algorithm for grouping orthologous protein sequences. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``2.0.9`` | ``-Perl-5.24.0`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/Osi.md b/docs/version-specific/supported-software/o/Osi.md index 8bd043648..adeb79ed2 100644 --- a/docs/version-specific/supported-software/o/Osi.md +++ b/docs/version-specific/supported-software/o/Osi.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.108.7`` | ``GCC/11.2.0`` ``0.108.8`` | ``GCC/12.2.0`` ``0.108.9`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/index.md b/docs/version-specific/supported-software/o/index.md index 1e39e5cd4..d90bd892d 100644 --- a/docs/version-specific/supported-software/o/index.md +++ b/docs/version-specific/supported-software/o/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (o) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - *o* - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [Oases](Oases.md) * [OBITools](OBITools.md) * [OBITools3](OBITools3.md) diff --git a/docs/version-specific/supported-software/o/ocamlbuild.md b/docs/version-specific/supported-software/o/ocamlbuild.md index 5bf75d19b..5b76246d8 100644 --- a/docs/version-specific/supported-software/o/ocamlbuild.md +++ b/docs/version-specific/supported-software/o/ocamlbuild.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ocamlbuild OCamlbuild is a generic build tool, that has built-in rules for building OCaml library and programs. @@ -7,3 +11,6 @@ OCamlbuild is a generic build tool, that has built-in rules for building OCaml version | toolchain --------|---------- ``0.14.3`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/occt.md b/docs/version-specific/supported-software/o/occt.md index 7e6e4f26c..f06b2d956 100644 --- a/docs/version-specific/supported-software/o/occt.md +++ b/docs/version-specific/supported-software/o/occt.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``7.5.0p1`` | ``foss/2021a`` ``7.5.0p1`` | ``foss/2022a`` ``7.8.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/oceanspy.md b/docs/version-specific/supported-software/o/oceanspy.md index b6cbba39d..b3c4a4e8b 100644 --- a/docs/version-specific/supported-software/o/oceanspy.md +++ b/docs/version-specific/supported-software/o/oceanspy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # oceanspy OceanSpy - A Python package to facilitate ocean model data analysis and visualization. @@ -7,3 +11,6 @@ OceanSpy - A Python package to facilitate ocean model data analysis and visuali version | toolchain --------|---------- ``0.2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/olaFlow.md b/docs/version-specific/supported-software/o/olaFlow.md index 2bca5ebb3..5d5762d0c 100644 --- a/docs/version-specific/supported-software/o/olaFlow.md +++ b/docs/version-specific/supported-software/o/olaFlow.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ olaFlow CFD Suite is a free and open source project committed to bringing the la version | toolchain --------|---------- ``20210820`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/olego.md b/docs/version-specific/supported-software/o/olego.md index c1d724be4..039ccc61f 100644 --- a/docs/version-specific/supported-software/o/olego.md +++ b/docs/version-specific/supported-software/o/olego.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ OLego is a program specifically designed for de novo spliced mapping of mRNA-seq version | toolchain --------|---------- ``1.1.9`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/onedrive.md b/docs/version-specific/supported-software/o/onedrive.md index 1a976a5d6..a53e6764b 100644 --- a/docs/version-specific/supported-software/o/onedrive.md +++ b/docs/version-specific/supported-software/o/onedrive.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # onedrive A free Microsoft OneDrive Client which supports OneDrive Personal, OneDrive for Business, OneDrive for Office365 and SharePoint. @@ -9,3 +13,6 @@ version | toolchain ``2.4.11`` | ``GCCcore/10.2.0`` ``2.4.21`` | ``GCCcore/11.3.0`` ``2.4.25`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ont-fast5-api.md b/docs/version-specific/supported-software/o/ont-fast5-api.md index cc03b31e5..4b56f7614 100644 --- a/docs/version-specific/supported-software/o/ont-fast5-api.md +++ b/docs/version-specific/supported-software/o/ont-fast5-api.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ont-fast5-api ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore .fast5 file format. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``foss/2022a`` ``4.1.1`` | | ``foss/2022b`` ``4.1.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ont-guppy.md b/docs/version-specific/supported-software/o/ont-guppy.md index 428a6fed5..aa3be4707 100644 --- a/docs/version-specific/supported-software/o/ont-guppy.md +++ b/docs/version-specific/supported-software/o/ont-guppy.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``6.4.6`` | ``-CUDA-11.7.0`` | ``system`` ``6.4.6`` | | ``system`` ``6.4.8`` | ``-CUDA-11.7.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ont-remora.md b/docs/version-specific/supported-software/o/ont-remora.md index 397bb39ed..c2564643b 100644 --- a/docs/version-specific/supported-software/o/ont-remora.md +++ b/docs/version-specific/supported-software/o/ont-remora.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.1.2`` | | ``foss/2021a`` ``1.0.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.0`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/openCARP.md b/docs/version-specific/supported-software/o/openCARP.md index 4a9596de7..566c27809 100644 --- a/docs/version-specific/supported-software/o/openCARP.md +++ b/docs/version-specific/supported-software/o/openCARP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # openCARP openCARP is an open cardiac electrophysiology simulator for in-silico experiments. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``3.2`` | ``-Python-3.8.2`` | ``foss/2020a`` ``6.0`` | | ``foss/2020b`` ``8.2`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/openkim-models.md b/docs/version-specific/supported-software/o/openkim-models.md index fd0a1da29..a47b92fe5 100644 --- a/docs/version-specific/supported-software/o/openkim-models.md +++ b/docs/version-specific/supported-software/o/openkim-models.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``20210128`` | ``GCC/10.2.0`` ``20210811`` | ``GCC/12.3.0`` ``20210811`` | ``intel-compilers/2023.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/openpyxl.md b/docs/version-specific/supported-software/o/openpyxl.md index c14c7bb17..53862c07a 100644 --- a/docs/version-specific/supported-software/o/openpyxl.md +++ b/docs/version-specific/supported-software/o/openpyxl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # openpyxl A Python library to read/write Excel 2010 xlsx/xlsm files @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``3.1.2`` | | ``GCCcore/12.2.0`` ``3.1.2`` | | ``GCCcore/12.3.0`` ``3.1.2`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/openslide-python.md b/docs/version-specific/supported-software/o/openslide-python.md index 0299ac7b6..2eaa65703 100644 --- a/docs/version-specific/supported-software/o/openslide-python.md +++ b/docs/version-specific/supported-software/o/openslide-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # openslide-python OpenSlide Python is a Python interface to the OpenSlide library. @@ -11,3 +15,6 @@ version | toolchain ``1.1.2`` | ``GCCcore/11.2.0`` ``1.2.0`` | ``GCCcore/11.3.0`` ``1.3.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/optiSLang.md b/docs/version-specific/supported-software/o/optiSLang.md index 102878d84..b9ad4ed9d 100644 --- a/docs/version-specific/supported-software/o/optiSLang.md +++ b/docs/version-specific/supported-software/o/optiSLang.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Ansys optiSLang is a constantly evolving, leading-edge answer to the challenges version | toolchain --------|---------- ``2024R1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/orthAgogue.md b/docs/version-specific/supported-software/o/orthAgogue.md index 54bbb041b..12391d646 100644 --- a/docs/version-specific/supported-software/o/orthAgogue.md +++ b/docs/version-specific/supported-software/o/orthAgogue.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ orthAgogue: a tool for high speed estimation of homology relations within and be version | toolchain --------|---------- ``20141105`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/ownCloud.md b/docs/version-specific/supported-software/o/ownCloud.md index 793c556f7..ee8c6f4a9 100644 --- a/docs/version-specific/supported-software/o/ownCloud.md +++ b/docs/version-specific/supported-software/o/ownCloud.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ownCloud The ownCloud Desktop Client is a tool to synchronize files from ownCloud Server with your computer. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.4.3`` | ``foss/2018b`` ``2.5.4`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/oxDNA.md b/docs/version-specific/supported-software/o/oxDNA.md index d694b7717..447b165cf 100644 --- a/docs/version-specific/supported-software/o/oxDNA.md +++ b/docs/version-specific/supported-software/o/oxDNA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ oxDNA is a simulation code that was initially conceived as an implementation of version | versionsuffix | toolchain --------|---------------|---------- ``3.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/o/oxford_asl.md b/docs/version-specific/supported-software/o/oxford_asl.md index d7293cb78..b2f2a6330 100644 --- a/docs/version-specific/supported-software/o/oxford_asl.md +++ b/docs/version-specific/supported-software/o/oxford_asl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # oxford_asl A command line tool for quantification of perfusion from ASL data @@ -7,3 +11,6 @@ A command line tool for quantification of perfusion from ASL data version | versionsuffix | toolchain --------|---------------|---------- ``3.9.6`` | ``-centos7-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PAGAN2.md b/docs/version-specific/supported-software/p/PAGAN2.md index 57ba2a90a..d39f5ca3a 100644 --- a/docs/version-specific/supported-software/p/PAGAN2.md +++ b/docs/version-specific/supported-software/p/PAGAN2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PAGAN2 is a general-purpose method for the alignment of DNA, codon and amino-aci version | versionsuffix | toolchain --------|---------------|---------- ``1.53_20230824`` | ``-linux64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PAL2NAL.md b/docs/version-specific/supported-software/p/PAL2NAL.md index 2029c12be..5febf5195 100644 --- a/docs/version-specific/supported-software/p/PAL2NAL.md +++ b/docs/version-specific/supported-software/p/PAL2NAL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``14`` | ``GCCcore/10.2.0`` ``14`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PALEOMIX.md b/docs/version-specific/supported-software/p/PALEOMIX.md index e042731f0..f16921a6d 100644 --- a/docs/version-specific/supported-software/p/PALEOMIX.md +++ b/docs/version-specific/supported-software/p/PALEOMIX.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The PALEOMIX pipelines are a set of pipelines and tools designed to aid the rapi version | toolchain --------|---------- ``1.3.7`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PAML.md b/docs/version-specific/supported-software/p/PAML.md index fd90ab7ef..6b6243374 100644 --- a/docs/version-specific/supported-software/p/PAML.md +++ b/docs/version-specific/supported-software/p/PAML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PAML PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. @@ -13,3 +17,6 @@ version | toolchain ``4.9j`` | ``GCCcore/10.3.0`` ``4.9j`` | ``GCCcore/11.2.0`` ``4.9j`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PANDAseq.md b/docs/version-specific/supported-software/p/PANDAseq.md index ed68b42a1..6200bf67b 100644 --- a/docs/version-specific/supported-software/p/PANDAseq.md +++ b/docs/version-specific/supported-software/p/PANDAseq.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.11`` | ``foss/2017b`` ``2.11`` | ``intel/2017b`` ``2.11`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PAPI.md b/docs/version-specific/supported-software/p/PAPI.md index a4b85857f..61a9d6401 100644 --- a/docs/version-specific/supported-software/p/PAPI.md +++ b/docs/version-specific/supported-software/p/PAPI.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | toolchain ``7.0.1`` | ``GCCcore/12.2.0`` ``7.0.1`` | ``GCCcore/12.3.0`` ``7.1.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PARI-GP.md b/docs/version-specific/supported-software/p/PARI-GP.md index c9282ccdb..14ddf2a9f 100644 --- a/docs/version-specific/supported-software/p/PARI-GP.md +++ b/docs/version-specific/supported-software/p/PARI-GP.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.15.4`` | ``GCCcore/11.3.0`` ``2.15.5`` | ``GCCcore/13.2.0`` ``2.7.6`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PASA.md b/docs/version-specific/supported-software/p/PASA.md index a0ac4f87f..2512a2144 100644 --- a/docs/version-specific/supported-software/p/PASA.md +++ b/docs/version-specific/supported-software/p/PASA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PASA, acronym for Program to Assemble Spliced Alignments (and pronounced 'pass-u version | toolchain --------|---------- ``2.5.3`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PAUP.md b/docs/version-specific/supported-software/p/PAUP.md index f33e4af5a..109c06af8 100644 --- a/docs/version-specific/supported-software/p/PAUP.md +++ b/docs/version-specific/supported-software/p/PAUP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PAUP PAUP* (Phylogenetic Analysis Using Parsimony *and other methods) is a computational phylogenetics program for inferring evolutionary trees. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0a166`` | ``-centos64`` | ``system`` ``4.0a168`` | ``-centos64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PBSuite.md b/docs/version-specific/supported-software/p/PBSuite.md index 0a1493602..732f20923 100644 --- a/docs/version-specific/supported-software/p/PBSuite.md +++ b/docs/version-specific/supported-software/p/PBSuite.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PBJelly is a highly automated pipeline that aligns long sequencing reads (such a version | versionsuffix | toolchain --------|---------------|---------- ``15.8.24`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PBZIP2.md b/docs/version-specific/supported-software/p/PBZIP2.md index 79ace3359..3467117cd 100644 --- a/docs/version-specific/supported-software/p/PBZIP2.md +++ b/docs/version-specific/supported-software/p/PBZIP2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor version | toolchain --------|---------- ``1.1.13`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCAngsd.md b/docs/version-specific/supported-software/p/PCAngsd.md index b2e998a14..b2fa74db1 100644 --- a/docs/version-specific/supported-software/p/PCAngsd.md +++ b/docs/version-specific/supported-software/p/PCAngsd.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PCAngsd, which estimates the covariance matrix for low depth NGS data in an ite version | versionsuffix | toolchain --------|---------------|---------- ``0.97`` | ``-Python-2.7.14`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCC.md b/docs/version-specific/supported-software/p/PCC.md index d694204e4..5e3982a50 100644 --- a/docs/version-specific/supported-software/p/PCC.md +++ b/docs/version-specific/supported-software/p/PCC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The compiler is based on the original Portable C Compiler by S. C. Johnson, wri version | toolchain --------|---------- ``20131024`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCL.md b/docs/version-specific/supported-software/p/PCL.md index efc82eddf..65c9a4658 100644 --- a/docs/version-specific/supported-software/p/PCL.md +++ b/docs/version-specific/supported-software/p/PCL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.2`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.8.1`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCMSolver.md b/docs/version-specific/supported-software/p/PCMSolver.md index e4b909e2e..1c1d5a20f 100644 --- a/docs/version-specific/supported-software/p/PCMSolver.md +++ b/docs/version-specific/supported-software/p/PCMSolver.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PCMSolver An API for the Polarizable Continuum Model. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.2.3`` | ``-Python-3.7.4`` | ``iimpi/2019b`` ``1.2.3`` | | ``iimpi/2020b`` ``20160205`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCRE.md b/docs/version-specific/supported-software/p/PCRE.md index e3c2a2c0f..f82c5c092 100644 --- a/docs/version-specific/supported-software/p/PCRE.md +++ b/docs/version-specific/supported-software/p/PCRE.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | toolchain ``8.45`` | ``GCCcore/12.2.0`` ``8.45`` | ``GCCcore/12.3.0`` ``8.45`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCRE2.md b/docs/version-specific/supported-software/p/PCRE2.md index 1af9495e2..b0f4aa426 100644 --- a/docs/version-specific/supported-software/p/PCRE2.md +++ b/docs/version-specific/supported-software/p/PCRE2.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``10.42`` | ``GCCcore/12.3.0`` ``10.42`` | ``GCCcore/13.2.0`` ``10.43`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PCRaster.md b/docs/version-specific/supported-software/p/PCRaster.md index a2106dfd4..c64631b71 100644 --- a/docs/version-specific/supported-software/p/PCRaster.md +++ b/docs/version-specific/supported-software/p/PCRaster.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PCRaster PCRaster Is a collection of software targeted at the development and deployment of spatio-temporal environmental models. @@ -7,3 +11,6 @@ PCRaster Is a collection of software targeted at the development and deployment version | versionsuffix | toolchain --------|---------------|---------- ``4.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PDM.md b/docs/version-specific/supported-software/p/PDM.md index 654cea859..d5f6349ba 100644 --- a/docs/version-specific/supported-software/p/PDM.md +++ b/docs/version-specific/supported-software/p/PDM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PDM A modern Python package and dependency manager supporting the latest PEP standards. @@ -7,3 +11,6 @@ A modern Python package and dependency manager supporting the latest PEP standar version | toolchain --------|---------- ``2.12.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PDT.md b/docs/version-specific/supported-software/p/PDT.md index 55607c919..29a63fe6d 100644 --- a/docs/version-specific/supported-software/p/PDT.md +++ b/docs/version-specific/supported-software/p/PDT.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``3.25.1`` | ``GCCcore/12.3.0`` ``3.25.1`` | ``GCCcore/9.3.0`` ``3.25.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PEAR.md b/docs/version-specific/supported-software/p/PEAR.md index c31381c6d..3268a6d98 100644 --- a/docs/version-specific/supported-software/p/PEAR.md +++ b/docs/version-specific/supported-software/p/PEAR.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``0.9.11`` | ``foss/2018a`` ``0.9.8`` | ``foss/2016b`` ``0.9.8`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PEPT.md b/docs/version-specific/supported-software/p/PEPT.md index 9ec381ea4..0694c5278 100644 --- a/docs/version-specific/supported-software/p/PEPT.md +++ b/docs/version-specific/supported-software/p/PEPT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A Python library that integrates all the tools necessary to perform research usi version | toolchain --------|---------- ``0.4.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PEST++.md b/docs/version-specific/supported-software/p/PEST++.md index c0e9b0f19..1d1499bc8 100644 --- a/docs/version-specific/supported-software/p/PEST++.md +++ b/docs/version-specific/supported-software/p/PEST++.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PEST++ is a software suite aimed at supporting complex numerical models in the version | toolchain --------|---------- ``5.0.5`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PETSc.md b/docs/version-specific/supported-software/p/PETSc.md index 85a7a0ca1..9131cfa86 100644 --- a/docs/version-specific/supported-software/p/PETSc.md +++ b/docs/version-specific/supported-software/p/PETSc.md @@ -1,3 +1,7 @@ +--- +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. @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``3.9.1`` | ``-downloaded-deps`` | ``foss/2018a`` ``3.9.3`` | | ``foss/2018a`` ``3.9.3`` | | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PFFT.md b/docs/version-specific/supported-software/p/PFFT.md index 973d6ba69..439faa46e 100644 --- a/docs/version-specific/supported-software/p/PFFT.md +++ b/docs/version-specific/supported-software/p/PFFT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PFFT is a software library for computing massively parallel, fast Fourier transf version | toolchain --------|---------- ``20181230`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PGDSpider.md b/docs/version-specific/supported-software/p/PGDSpider.md index 4cec5dd31..1f1b1c4fc 100644 --- a/docs/version-specific/supported-software/p/PGDSpider.md +++ b/docs/version-specific/supported-software/p/PGDSpider.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PGDSpider An automated data conversion tool for connecting population genetics and genomics programs @@ -7,3 +11,6 @@ An automated data conversion tool for connecting population genetics and genomic version | versionsuffix | toolchain --------|---------------|---------- ``2.1.0.3`` | ``-Java-1.7.0_80`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PGI.md b/docs/version-specific/supported-software/p/PGI.md index e45cae219..642141216 100644 --- a/docs/version-specific/supported-software/p/PGI.md +++ b/docs/version-specific/supported-software/p/PGI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PGI C, C++ and Fortran compilers from The Portland Group - PGI @@ -26,3 +30,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PGPLOT.md b/docs/version-specific/supported-software/p/PGPLOT.md index b51f82187..9a4096794 100644 --- a/docs/version-specific/supported-software/p/PGPLOT.md +++ b/docs/version-specific/supported-software/p/PGPLOT.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``5.2.2`` | ``GCCcore/11.2.0`` ``5.2.2`` | ``GCCcore/11.3.0`` ``5.2.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PHANOTATE.md b/docs/version-specific/supported-software/p/PHANOTATE.md index 38969f652..d0b9a4d50 100644 --- a/docs/version-specific/supported-software/p/PHANOTATE.md +++ b/docs/version-specific/supported-software/p/PHANOTATE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PHANOTATE PHANOTATE: a tool to annotate phage genomes @@ -7,3 +11,6 @@ PHANOTATE: a tool to annotate phage genomes version | toolchain --------|---------- ``20190724`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PHASE.md b/docs/version-specific/supported-software/p/PHASE.md index 43859007b..cc315b06b 100644 --- a/docs/version-specific/supported-software/p/PHASE.md +++ b/docs/version-specific/supported-software/p/PHASE.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ The program PHASE implements a Bayesian statistical method for reconstructing h version | toolchain --------|---------- ``2.1.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PHAST.md b/docs/version-specific/supported-software/p/PHAST.md index ea12e40fc..cd37661cb 100644 --- a/docs/version-specific/supported-software/p/PHAST.md +++ b/docs/version-specific/supported-software/p/PHAST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PHAST PHAST is a freely available software package for comparative and evolutionary genomics. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PHLAT.md b/docs/version-specific/supported-software/p/PHLAT.md index beaede2af..d1978bc6c 100644 --- a/docs/version-specific/supported-software/p/PHLAT.md +++ b/docs/version-specific/supported-software/p/PHLAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PHLAT is a bioinformatics algorithm that offers HLA typing at four-digit resolut version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PHYLIP.md b/docs/version-specific/supported-software/p/PHYLIP.md index 5563cfdda..c37925890 100644 --- a/docs/version-specific/supported-software/p/PHYLIP.md +++ b/docs/version-specific/supported-software/p/PHYLIP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PHYLIP PHYLIP is a free package of programs for inferring phylogenies. @@ -12,3 +16,6 @@ version | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md index 28a38404d..6cceeec66 100644 --- a/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md +++ b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PICI-LIGGGHTS UoB Positron Imaging Centre's Improved LIGGGHTS distribution with an emphasis on the Python interface. @@ -7,3 +11,6 @@ UoB Positron Imaging Centre's Improved LIGGGHTS distribution with an emphasis o version | toolchain --------|---------- ``3.8.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PICRUSt2.md b/docs/version-specific/supported-software/p/PICRUSt2.md index 38d0170de..19620aca0 100644 --- a/docs/version-specific/supported-software/p/PICRUSt2.md +++ b/docs/version-specific/supported-software/p/PICRUSt2.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.5.2`` | ``foss/2022a`` ``2.5.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PIL.md b/docs/version-specific/supported-software/p/PIL.md index 0b31e0446..a47c2a766 100644 --- a/docs/version-specific/supported-software/p/PIL.md +++ b/docs/version-specific/supported-software/p/PIL.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PIMS.md b/docs/version-specific/supported-software/p/PIMS.md index dc7f50584..ab25f9356 100644 --- a/docs/version-specific/supported-software/p/PIMS.md +++ b/docs/version-specific/supported-software/p/PIMS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PIMS PIMS is a lazy-loading interface to sequential data with numpy-like slicing. @@ -7,3 +11,6 @@ PIMS is a lazy-loading interface to sequential data with numpy-like slicing. version | versionsuffix | toolchain --------|---------------|---------- ``0.4.1`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PIPITS.md b/docs/version-specific/supported-software/p/PIPITS.md index 8dfcbb1c5..ab5fb33e9 100644 --- a/docs/version-specific/supported-software/p/PIPITS.md +++ b/docs/version-specific/supported-software/p/PIPITS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PIPITS An automated pipeline for analyses of fungal internal transcribed spacer (ITS) sequences from the Illumina sequencing platform. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.8`` | | ``foss/2021a`` ``3.0`` | | ``foss/2021a`` ``3.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PIRATE.md b/docs/version-specific/supported-software/p/PIRATE.md index 2ab383011..c1a980543 100644 --- a/docs/version-specific/supported-software/p/PIRATE.md +++ b/docs/version-specific/supported-software/p/PIRATE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PIRATE A toolbox for pangenome analysis and threshold evaluation. @@ -7,3 +11,6 @@ A toolbox for pangenome analysis and threshold evaluation. version | versionsuffix | toolchain --------|---------------|---------- ``1.0.5`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLAMS.md b/docs/version-specific/supported-software/p/PLAMS.md index ae021e718..fda8bdfd8 100644 --- a/docs/version-specific/supported-software/p/PLAMS.md +++ b/docs/version-specific/supported-software/p/PLAMS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Python Library for Automating Molecular Simulation (PLAMS) is powerful and f version | toolchain --------|---------- ``1.5.1`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLAST.md b/docs/version-specific/supported-software/p/PLAST.md index e4193c4df..282d3c673 100644 --- a/docs/version-specific/supported-software/p/PLAST.md +++ b/docs/version-specific/supported-software/p/PLAST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PLAST PLAST is a parallel alignment search tool for comparing large protein banks @@ -7,3 +11,6 @@ PLAST is a parallel alignment search tool for comparing large protein banks version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Java-1.8.0_92`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLINK.md b/docs/version-specific/supported-software/p/PLINK.md index 135da6ee9..fe6c76bc0 100644 --- a/docs/version-specific/supported-software/p/PLINK.md +++ b/docs/version-specific/supported-software/p/PLINK.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | toolchain ``2.00a3.6`` | ``GCC/11.3.0`` ``2.00a3.7`` | ``foss/2022a`` ``2.00a3.7`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLINKSEQ.md b/docs/version-specific/supported-software/p/PLINKSEQ.md index cafcf74f0..ccaeb2fc6 100644 --- a/docs/version-specific/supported-software/p/PLINKSEQ.md +++ b/docs/version-specific/supported-software/p/PLINKSEQ.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.10`` | ``GCC/6.4.0-2.28`` ``0.10`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLUMED.md b/docs/version-specific/supported-software/p/PLUMED.md index a9c1a7ac4..c7c40354e 100644 --- a/docs/version-specific/supported-software/p/PLUMED.md +++ b/docs/version-specific/supported-software/p/PLUMED.md @@ -1,3 +1,7 @@ +--- +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. @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``2.8.1`` | | ``foss/2022a`` ``2.9.0`` | | ``foss/2022b`` ``2.9.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLY.md b/docs/version-specific/supported-software/p/PLY.md index 2847c1f58..c3613f024 100644 --- a/docs/version-specific/supported-software/p/PLY.md +++ b/docs/version-specific/supported-software/p/PLY.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PLY PLY is yet another implementation of lex and yacc for Python. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.11`` | | ``GCCcore/12.3.0`` ``3.11`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``3.11`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PLplot.md b/docs/version-specific/supported-software/p/PLplot.md index de20c719f..8f4c16e45 100644 --- a/docs/version-specific/supported-software/p/PLplot.md +++ b/docs/version-specific/supported-software/p/PLplot.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PMIx.md b/docs/version-specific/supported-software/p/PMIx.md index 136c20249..31f3b9e56 100644 --- a/docs/version-specific/supported-software/p/PMIx.md +++ b/docs/version-specific/supported-software/p/PMIx.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | toolchain ``4.2.4`` | ``GCCcore/12.3.0`` ``4.2.6`` | ``GCCcore/13.2.0`` ``5.0.2`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/POT.md b/docs/version-specific/supported-software/p/POT.md index d6fb16112..d1abaaed6 100644 --- a/docs/version-specific/supported-software/p/POT.md +++ b/docs/version-specific/supported-software/p/POT.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``0.9.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/POV-Ray.md b/docs/version-specific/supported-software/p/POV-Ray.md index 49124cdea..46d774f47 100644 --- a/docs/version-specific/supported-software/p/POV-Ray.md +++ b/docs/version-specific/supported-software/p/POV-Ray.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``3.7.0.7`` | ``intel/2018b`` ``3.7.0.8`` | ``GCC/10.2.0`` ``3.7.0.8`` | ``iccifort/2020.4.304`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PPanGGOLiN.md b/docs/version-specific/supported-software/p/PPanGGOLiN.md index ed37f30c0..e1cd58c46 100644 --- a/docs/version-specific/supported-software/p/PPanGGOLiN.md +++ b/docs/version-specific/supported-software/p/PPanGGOLiN.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PPanGGOLiN is a software suite used to create and manipulate prokaryotic pangeno version | toolchain --------|---------- ``1.1.136`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PPfold.md b/docs/version-specific/supported-software/p/PPfold.md index 26dcd77b4..5c80afe09 100644 --- a/docs/version-specific/supported-software/p/PPfold.md +++ b/docs/version-specific/supported-software/p/PPfold.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PPfold is a new implementation of pfold, written in Java 6.0. It can predict the version | versionsuffix | toolchain --------|---------------|---------- ``3.1.1`` | ``-Java-1.8.0_66`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PRANK.md b/docs/version-specific/supported-software/p/PRANK.md index 9b6cf16ae..d45b0a0e3 100644 --- a/docs/version-specific/supported-software/p/PRANK.md +++ b/docs/version-specific/supported-software/p/PRANK.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``170427`` | ``GCC/12.3.0`` ``170427`` | ``GCC/9.3.0`` ``170427`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PRC.md b/docs/version-specific/supported-software/p/PRC.md index cbc5f84fa..f7d807caa 100644 --- a/docs/version-specific/supported-software/p/PRC.md +++ b/docs/version-specific/supported-software/p/PRC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PRC is a stand-alone program for aligning and scoring two profile hidden Markov version | toolchain --------|---------- ``1.5.6`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PREQUAL.md b/docs/version-specific/supported-software/p/PREQUAL.md index 145a54e8d..6d1cd1ebd 100644 --- a/docs/version-specific/supported-software/p/PREQUAL.md +++ b/docs/version-specific/supported-software/p/PREQUAL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PREQUAL A program to identify and mask regions with non-homologous adjacent characters in FASTA files. @@ -7,3 +11,6 @@ A program to identify and mask regions with non-homologous adjacent characters i version | toolchain --------|---------- ``1.02`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PRINSEQ.md b/docs/version-specific/supported-software/p/PRINSEQ.md index 765bb116f..caaa0cc8f 100644 --- a/docs/version-specific/supported-software/p/PRINSEQ.md +++ b/docs/version-specific/supported-software/p/PRINSEQ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PRINSEQ A bioinformatics tool to PRe-process and show INformation of SEQuence data. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PRISMS-PF.md b/docs/version-specific/supported-software/p/PRISMS-PF.md index f7f3f6b71..166b0b27b 100644 --- a/docs/version-specific/supported-software/p/PRISMS-PF.md +++ b/docs/version-specific/supported-software/p/PRISMS-PF.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.1.1`` | ``foss/2019a`` ``2.1.1`` | ``intel/2019a`` ``2.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PROJ.md b/docs/version-specific/supported-software/p/PROJ.md index c67010f22..ecec12131 100644 --- a/docs/version-specific/supported-software/p/PROJ.md +++ b/docs/version-specific/supported-software/p/PROJ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PROJ Program proj is a standard Unix filter function which converts geographic longitude and latitude coordinates into cartesian coordinates @@ -31,3 +35,6 @@ version | toolchain ``9.1.1`` | ``GCCcore/12.2.0`` ``9.2.0`` | ``GCCcore/12.3.0`` ``9.3.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PRRTE.md b/docs/version-specific/supported-software/p/PRRTE.md index 79ca3bbf1..a75b6d5f1 100644 --- a/docs/version-specific/supported-software/p/PRRTE.md +++ b/docs/version-specific/supported-software/p/PRRTE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PRRTE PRRTE is the PMIx Reference RunTime Environment @@ -7,3 +11,6 @@ PRRTE is the PMIx Reference RunTime Environment version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PRSice.md b/docs/version-specific/supported-software/p/PRSice.md index 7769b25e9..ddb9ab3e3 100644 --- a/docs/version-specific/supported-software/p/PRSice.md +++ b/docs/version-specific/supported-software/p/PRSice.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/9.3.0`` ``2.3.5`` | ``GCCcore/11.3.0`` ``2.3.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSASS.md b/docs/version-specific/supported-software/p/PSASS.md index 40e5ac3a8..b1c5c700e 100644 --- a/docs/version-specific/supported-software/p/PSASS.md +++ b/docs/version-specific/supported-software/p/PSASS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PSASS (Pooled Sequencing Analysis for Sex Signal) is a software to compare poole version | toolchain --------|---------- ``3.1.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSI.md b/docs/version-specific/supported-software/p/PSI.md index 50b40291f..8316d830c 100644 --- a/docs/version-specific/supported-software/p/PSI.md +++ b/docs/version-specific/supported-software/p/PSI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PSI4 is an open-source suite of ab initio quantum chemistry programs designed fo version | versionsuffix | toolchain --------|---------------|---------- ``4.0b6-20160201`` | ``-mt-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSI4.md b/docs/version-specific/supported-software/p/PSI4.md index 4244db741..da428e282 100644 --- a/docs/version-specific/supported-software/p/PSI4.md +++ b/docs/version-specific/supported-software/p/PSI4.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.3.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.7`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSIPRED.md b/docs/version-specific/supported-software/p/PSIPRED.md index 2e57a5b69..a75513c76 100644 --- a/docs/version-specific/supported-software/p/PSIPRED.md +++ b/docs/version-specific/supported-software/p/PSIPRED.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PSIPRED Accurate protein secondary structure prediction @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.02`` | ``GCC/12.3.0`` ``4.02`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSM2.md b/docs/version-specific/supported-software/p/PSM2.md index 41d7419e7..5b34bf4db 100644 --- a/docs/version-specific/supported-software/p/PSM2.md +++ b/docs/version-specific/supported-software/p/PSM2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PSM2 Low-level user-space communications interface for the Intel(R) OPA family of products. @@ -13,3 +17,6 @@ version | toolchain ``12.0.1`` | ``GCCcore/12.3.0`` ``12.0.1`` | ``GCCcore/13.2.0`` ``12.0.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSORTb.md b/docs/version-specific/supported-software/p/PSORTb.md index eb8d4327f..fb41a0dc6 100644 --- a/docs/version-specific/supported-software/p/PSORTb.md +++ b/docs/version-specific/supported-software/p/PSORTb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PSORTb PSORTb v3.0.4 is the most precise bacterial localization prediction tool available. @@ -7,3 +11,6 @@ PSORTb v3.0.4 is the most precise bacterial localization prediction tool availab version | versionsuffix | toolchain --------|---------------|---------- ``3.0.4`` | ``-Perl-5.22.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PSolver.md b/docs/version-specific/supported-software/p/PSolver.md index 4dbb5c10c..3a4a25d0b 100644 --- a/docs/version-specific/supported-software/p/PSolver.md +++ b/docs/version-specific/supported-software/p/PSolver.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PSolver Poisson Solver from the BigDFT code compiled as a standalone library. @@ -18,3 +22,6 @@ version | toolchain ``1.8.3`` | ``intel/2020b`` ``1.8.3`` | ``intel/2021a`` ``1.8.3`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PTESFinder.md b/docs/version-specific/supported-software/p/PTESFinder.md index aa7cf5ddb..172689472 100644 --- a/docs/version-specific/supported-software/p/PTESFinder.md +++ b/docs/version-specific/supported-software/p/PTESFinder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PTESFinder Post-Transcriptional Exon Shuffling (PTES) Identification Pipeline @@ -7,3 +11,6 @@ Post-Transcriptional Exon Shuffling (PTES) Identification Pipeline version | toolchain --------|---------- ``1`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PYPOWER.md b/docs/version-specific/supported-software/p/PYPOWER.md index 72e12c083..c47cc4696 100644 --- a/docs/version-specific/supported-software/p/PYPOWER.md +++ b/docs/version-specific/supported-software/p/PYPOWER.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PYPOWER is a power flow and Optimal Power Flow (OPF) solver. It is a port of MAT version | toolchain --------|---------- ``5.1.15`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PYTHIA.md b/docs/version-specific/supported-software/p/PYTHIA.md index 9ccef9f73..5a8922ff6 100644 --- a/docs/version-specific/supported-software/p/PYTHIA.md +++ b/docs/version-specific/supported-software/p/PYTHIA.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.226`` | ``-Python-2.7.13`` | ``intel/2017a`` ``8.309`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PaStiX.md b/docs/version-specific/supported-software/p/PaStiX.md index b068ed105..107fa0840 100644 --- a/docs/version-specific/supported-software/p/PaStiX.md +++ b/docs/version-specific/supported-software/p/PaStiX.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PaStiX (Parallel Sparse matriX package) is a scientific library that provides a version | toolchain --------|---------- ``5.2.3`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pandoc.md b/docs/version-specific/supported-software/p/Pandoc.md index b293bc964..b441b59d8 100644 --- a/docs/version-specific/supported-software/p/Pandoc.md +++ b/docs/version-specific/supported-software/p/Pandoc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Pandoc If you need to convert files from one markup format into another, pandoc is your swiss-army knife @@ -11,3 +15,6 @@ version | toolchain ``2.13`` | ``system`` ``2.5`` | ``system`` ``3.1.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Panedr.md b/docs/version-specific/supported-software/p/Panedr.md index cae4abd65..fc6036f6a 100644 --- a/docs/version-specific/supported-software/p/Panedr.md +++ b/docs/version-specific/supported-software/p/Panedr.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Panedr uses the Pyedr library to read a Gromacs EDR binary energy XDR file and r version | toolchain --------|---------- ``0.7.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pango.md b/docs/version-specific/supported-software/p/Pango.md index a572de6f2..c337c2e08 100644 --- a/docs/version-specific/supported-software/p/Pango.md +++ b/docs/version-specific/supported-software/p/Pango.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | toolchain ``1.50.14`` | ``GCCcore/12.3.0`` ``1.50.7`` | ``GCCcore/11.3.0`` ``1.51.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ParMETIS.md b/docs/version-specific/supported-software/p/ParMETIS.md index ed6e4d632..8ddcd275a 100644 --- a/docs/version-specific/supported-software/p/ParMETIS.md +++ b/docs/version-specific/supported-software/p/ParMETIS.md @@ -1,3 +1,7 @@ +--- +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. @@ -34,3 +38,6 @@ version | toolchain ``4.0.3`` | ``intel/2017b`` ``4.0.3`` | ``intel/2018a`` ``4.0.3`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ParMGridGen.md b/docs/version-specific/supported-software/p/ParMGridGen.md index ee5b57ced..57fefb70b 100644 --- a/docs/version-specific/supported-software/p/ParMGridGen.md +++ b/docs/version-specific/supported-software/p/ParMGridGen.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.0`` | ``iimpi/2020a`` ``1.0`` | ``intel/2016a`` ``1.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ParaView.md b/docs/version-specific/supported-software/p/ParaView.md index c1e1f07d3..1d6a87aa2 100644 --- a/docs/version-specific/supported-software/p/ParaView.md +++ b/docs/version-specific/supported-software/p/ParaView.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ParaView ParaView is a scientific parallel visualizer. @@ -37,3 +41,6 @@ version | versionsuffix | toolchain ``5.9.1`` | ``-mpi`` | ``foss/2021a`` ``5.9.1`` | ``-mpi`` | ``foss/2021b`` ``5.9.1`` | ``-mpi`` | ``intel/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Parallel-Hashmap.md b/docs/version-specific/supported-software/p/Parallel-Hashmap.md index 099f492a5..08835e644 100644 --- a/docs/version-specific/supported-software/p/Parallel-Hashmap.md +++ b/docs/version-specific/supported-software/p/Parallel-Hashmap.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.3.12`` | ``GCCcore/12.3.0`` ``1.33`` | ``GCCcore/10.3.0`` ``1.36`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ParallelIO.md b/docs/version-specific/supported-software/p/ParallelIO.md index d2338392e..e215bb7d2 100644 --- a/docs/version-specific/supported-software/p/ParallelIO.md +++ b/docs/version-specific/supported-software/p/ParallelIO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ParallelIO A high-level Parallel I/O Library for structured grid applications @@ -9,3 +13,6 @@ version | toolchain ``2.2.2a`` | ``intel/2017a`` ``2.5.10`` | ``gompi/2022a`` ``2.5.10`` | ``iimpi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Paraver.md b/docs/version-specific/supported-software/p/Paraver.md index 4803228fb..e1ecbb0ef 100644 --- a/docs/version-specific/supported-software/p/Paraver.md +++ b/docs/version-specific/supported-software/p/Paraver.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.11.1`` | ``foss/2022a`` ``4.8.1`` | ``foss/2019a`` ``4.9.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Parcels.md b/docs/version-specific/supported-software/p/Parcels.md index de36485ca..3eae410fd 100644 --- a/docs/version-specific/supported-software/p/Parcels.md +++ b/docs/version-specific/supported-software/p/Parcels.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Parcels (Probably A Really Computationally Efficient Lagrangian Simulator) is a version | toolchain --------|---------- ``2.4.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ParmEd.md b/docs/version-specific/supported-software/p/ParmEd.md index 3b00db39f..06628649c 100644 --- a/docs/version-specific/supported-software/p/ParmEd.md +++ b/docs/version-specific/supported-software/p/ParmEd.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Parsl.md b/docs/version-specific/supported-software/p/Parsl.md index 74ee43b9d..aab0dd605 100644 --- a/docs/version-specific/supported-software/p/Parsl.md +++ b/docs/version-specific/supported-software/p/Parsl.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Parsl extends parallelism in Python beyond a single computer. You can use Parsl version | toolchain --------|---------- ``2023.7.17`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PartitionFinder.md b/docs/version-specific/supported-software/p/PartitionFinder.md index 868820b38..d8c6311ad 100644 --- a/docs/version-specific/supported-software/p/PartitionFinder.md +++ b/docs/version-specific/supported-software/p/PartitionFinder.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.1`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PennCNV.md b/docs/version-specific/supported-software/p/PennCNV.md index aeea9fcff..b3f3d8034 100644 --- a/docs/version-specific/supported-software/p/PennCNV.md +++ b/docs/version-specific/supported-software/p/PennCNV.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A free software tool for Copy Number Variation (CNV) detection from SNP genotypi version | toolchain --------|---------- ``1.0.5`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Percolator.md b/docs/version-specific/supported-software/p/Percolator.md index 34acd67c1..2bbbefcf7 100644 --- a/docs/version-specific/supported-software/p/Percolator.md +++ b/docs/version-specific/supported-software/p/Percolator.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Percolator Semi-supervised learning for peptide identification from shotgun proteomics datasets @@ -7,3 +11,6 @@ Semi-supervised learning for peptide identification from shotgun proteomics data version | toolchain --------|---------- ``3.4`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md index 66864c500..4a19c6bad 100644 --- a/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md +++ b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Perl-bundle-CPAN A set of common packages from CPAN @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.36.1`` | ``GCCcore/12.3.0`` ``5.38.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Perl.md b/docs/version-specific/supported-software/p/Perl.md index 0ae0ce967..84e7c032d 100644 --- a/docs/version-specific/supported-software/p/Perl.md +++ b/docs/version-specific/supported-software/p/Perl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Perl Larry Wall's Practical Extraction and Report Language @@ -58,3 +62,6 @@ version | versionsuffix | toolchain ``5.38.0`` | | ``GCCcore/13.2.0`` ``5.38.0`` | | ``system`` ``5.38.2`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Perl4-CoreLibs.md b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md index 693b913bf..e9cef29f4 100644 --- a/docs/version-specific/supported-software/p/Perl4-CoreLibs.md +++ b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Perl4-CoreLibs Libraries historically supplied with Perl 4 @@ -7,3 +11,6 @@ Libraries historically supplied with Perl 4 version | versionsuffix | toolchain --------|---------------|---------- ``0.003`` | ``-Perl-5.24.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Perseus.md b/docs/version-specific/supported-software/p/Perseus.md index 2e764341f..fd2d26417 100644 --- a/docs/version-specific/supported-software/p/Perseus.md +++ b/docs/version-specific/supported-software/p/Perseus.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Perseus The Perseus software platform supports biological and biomedical researchers in interpreting protein quantification, interaction and post-translational modification data. @@ -7,3 +11,6 @@ The Perseus software platform supports biological and biomedical researchers version | toolchain --------|---------- ``2.0.7.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PfamScan.md b/docs/version-specific/supported-software/p/PfamScan.md index 7f7ee624e..54b70ad44 100644 --- a/docs/version-specific/supported-software/p/PfamScan.md +++ b/docs/version-specific/supported-software/p/PfamScan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PfamScan PfamScan is used to search a FASTA sequence against a library of Pfam HMM. @@ -7,3 +11,6 @@ PfamScan is used to search a FASTA sequence against a library of Pfam HMM. version | toolchain --------|---------- ``1.6`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Phantompeakqualtools.md b/docs/version-specific/supported-software/p/Phantompeakqualtools.md index 655324e35..2f9b67143 100644 --- a/docs/version-specific/supported-software/p/Phantompeakqualtools.md +++ b/docs/version-specific/supported-software/p/Phantompeakqualtools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Phantompeakqualtools It computes informative enrichment and quality measures for ChIP-seq/DNase-seq/FAIRE-seq/MNase-seq data. @@ -7,3 +11,6 @@ It computes informative enrichment and quality measures for ChIP-seq/DNase-seq/F version | toolchain --------|---------- ``1.2.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PheWAS.md b/docs/version-specific/supported-software/p/PheWAS.md index e3fa99051..b424423ee 100644 --- a/docs/version-specific/supported-software/p/PheWAS.md +++ b/docs/version-specific/supported-software/p/PheWAS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PheWAS Provides an accessible R interface to the phenome wide association study. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PheWeb.md b/docs/version-specific/supported-software/p/PheWeb.md index 9b7c648ce..28d88ae04 100644 --- a/docs/version-specific/supported-software/p/PheWeb.md +++ b/docs/version-specific/supported-software/p/PheWeb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PheWeb A tool for building PheWAS websites from association files @@ -7,3 +11,6 @@ A tool for building PheWAS websites from association files version | versionsuffix | toolchain --------|---------------|---------- ``1.1.20`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Phenoflow.md b/docs/version-specific/supported-software/p/Phenoflow.md index 90bf6b2e5..340410e49 100644 --- a/docs/version-specific/supported-software/p/Phenoflow.md +++ b/docs/version-specific/supported-software/p/Phenoflow.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Phenoflow R package offering functionality for the advanced analysis of microbial flow cytometry data @@ -7,3 +11,6 @@ R package offering functionality for the advanced analysis of microbial flow cyt version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2-20200917`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PhiPack.md b/docs/version-specific/supported-software/p/PhiPack.md index d2ec6a230..4ae22be5e 100644 --- a/docs/version-specific/supported-software/p/PhiPack.md +++ b/docs/version-specific/supported-software/p/PhiPack.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The PhiPack software package implements (in C) a few tests for recombination and version | toolchain --------|---------- ``2016.06.14`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Philosopher.md b/docs/version-specific/supported-software/p/Philosopher.md index 6687e02f6..10929f228 100644 --- a/docs/version-specific/supported-software/p/Philosopher.md +++ b/docs/version-specific/supported-software/p/Philosopher.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Philosopher is a fast, easy-to-use, scalable, and versatile data analysis softw version | toolchain --------|---------- ``5.0.0`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PhyML.md b/docs/version-specific/supported-software/p/PhyML.md index 216df9539..7f19faa2d 100644 --- a/docs/version-specific/supported-software/p/PhyML.md +++ b/docs/version-specific/supported-software/p/PhyML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PhyML Phylogenetic estimation using (Maximum) Likelihood @@ -9,3 +13,6 @@ version | toolchain ``3.3.20190321`` | ``foss/2018b`` ``3.3.20200621`` | ``foss/2020b`` ``3.3.20220408`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PhyloBayes-MPI.md b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md index 07551a720..82d6f45dc 100644 --- a/docs/version-specific/supported-software/p/PhyloBayes-MPI.md +++ b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PhyloBayes-MPI A Bayesian software for phylogenetic reconstruction using mixture models @@ -7,3 +11,6 @@ A Bayesian software for phylogenetic reconstruction using mixture models version | toolchain --------|---------- ``20161021`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PhyloPhlAn.md b/docs/version-specific/supported-software/p/PhyloPhlAn.md index 928cda72c..54bc0c7b6 100644 --- a/docs/version-specific/supported-software/p/PhyloPhlAn.md +++ b/docs/version-specific/supported-software/p/PhyloPhlAn.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``3.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``3.0.2`` | | ``foss/2021a`` ``3.0.3`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PileOMeth.md b/docs/version-specific/supported-software/p/PileOMeth.md index 083c15868..b12b7271d 100644 --- a/docs/version-specific/supported-software/p/PileOMeth.md +++ b/docs/version-specific/supported-software/p/PileOMeth.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PileOMeth processes a coordinate-sorted and indexed BAM or CRAM file containing version | toolchain --------|---------- ``0.1.11`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pillow-SIMD.md b/docs/version-specific/supported-software/p/Pillow-SIMD.md index 677ddae36..d872550da 100644 --- a/docs/version-specific/supported-software/p/Pillow-SIMD.md +++ b/docs/version-specific/supported-software/p/Pillow-SIMD.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``9.2.0`` | | ``GCCcore/11.3.0`` ``9.5.0`` | | ``GCCcore/12.2.0`` ``9.5.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pillow.md b/docs/version-specific/supported-software/p/Pillow.md index 3b29083d4..49a18b3ab 100644 --- a/docs/version-specific/supported-software/p/Pillow.md +++ b/docs/version-specific/supported-software/p/Pillow.md @@ -1,3 +1,7 @@ +--- +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. @@ -45,3 +49,6 @@ version | versionsuffix | toolchain ``9.1.1`` | | ``GCCcore/11.3.0`` ``9.2.0`` | | ``GCCcore/10.2.0`` ``9.4.0`` | | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pilon.md b/docs/version-specific/supported-software/p/Pilon.md index de4001218..77971f2bd 100644 --- a/docs/version-specific/supported-software/p/Pilon.md +++ b/docs/version-specific/supported-software/p/Pilon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Pilon Pilon is an automated genome assembly improvement and variant detection tool @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.22`` | ``-Java-1.8`` | ``system`` ``1.23`` | ``-Java-1.8`` | ``system`` ``1.23`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pindel.md b/docs/version-specific/supported-software/p/Pindel.md index b6e1f3177..889bb32ed 100644 --- a/docs/version-specific/supported-software/p/Pindel.md +++ b/docs/version-specific/supported-software/p/Pindel.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pingouin.md b/docs/version-specific/supported-software/p/Pingouin.md index 6fa41c707..48ce9c3a7 100644 --- a/docs/version-specific/supported-software/p/Pingouin.md +++ b/docs/version-specific/supported-software/p/Pingouin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Pingouin Pingouin is an open-source statistical package written in Python 3 and based mostly on Pandas and NumPy. @@ -7,3 +11,6 @@ Pingouin is an open-source statistical package written in Python 3 and based mos version | versionsuffix | toolchain --------|---------------|---------- ``0.3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pint.md b/docs/version-specific/supported-software/p/Pint.md index 93abaf403..2ea86d926 100644 --- a/docs/version-specific/supported-software/p/Pint.md +++ b/docs/version-specific/supported-software/p/Pint.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.20.1`` | | ``GCCcore/10.3.0`` ``0.22`` | | ``GCCcore/11.3.0`` ``0.23`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pisces.md b/docs/version-specific/supported-software/p/Pisces.md index eb15b18e6..51094bce3 100644 --- a/docs/version-specific/supported-software/p/Pisces.md +++ b/docs/version-specific/supported-software/p/Pisces.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Pisces Somatic and germline variant caller for amplicon data. Recommended caller for tumor-only workflows. @@ -7,3 +11,6 @@ Somatic and germline variant caller for amplicon data. Recommended caller for tu version | toolchain --------|---------- ``5.2.7.47`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PlaScope.md b/docs/version-specific/supported-software/p/PlaScope.md index 1537c92ac..6ce59a248 100644 --- a/docs/version-specific/supported-software/p/PlaScope.md +++ b/docs/version-specific/supported-software/p/PlaScope.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PlaScope Plasmid exploration of bacterial genomes @@ -7,3 +11,6 @@ Plasmid exploration of bacterial genomes version | toolchain --------|---------- ``1.3.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PlasmaPy.md b/docs/version-specific/supported-software/p/PlasmaPy.md index b43aa4c9e..24c3acd3c 100644 --- a/docs/version-specific/supported-software/p/PlasmaPy.md +++ b/docs/version-specific/supported-software/p/PlasmaPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PlasmaPy Open source Python ecosystem for plasma research and education @@ -7,3 +11,6 @@ Open source Python ecosystem for plasma research and education version | versionsuffix | toolchain --------|---------------|---------- ``0.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Platanus.md b/docs/version-specific/supported-software/p/Platanus.md index 857c2589f..f1ea4979a 100644 --- a/docs/version-specific/supported-software/p/Platanus.md +++ b/docs/version-specific/supported-software/p/Platanus.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Platanus PLATform for Assembling NUcleotide Sequences @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.1`` | ``-linux-x86_64`` | ``system`` ``1.2.4`` | | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Platypus-Opt.md b/docs/version-specific/supported-software/p/Platypus-Opt.md index 2a03f51d1..8616415dc 100644 --- a/docs/version-specific/supported-software/p/Platypus-Opt.md +++ b/docs/version-specific/supported-software/p/Platypus-Opt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Platypus-Opt Platypus is a framework for evolutionary computing in Python with a focus on multiobjective evolutionary algorithms (MOEAs). @@ -7,3 +11,6 @@ Platypus is a framework for evolutionary computing in Python with a focus on mu version | toolchain --------|---------- ``1.1.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Platypus.md b/docs/version-specific/supported-software/p/Platypus.md index a2dfbbaa4..973143699 100644 --- a/docs/version-specific/supported-software/p/Platypus.md +++ b/docs/version-specific/supported-software/p/Platypus.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Platypus Platypus is a tool designed for efficient and accurate variant-detection in high-throughput sequencing data. @@ -7,3 +11,6 @@ Platypus is a tool designed for efficient and accurate variant-detection in hig version | versionsuffix | toolchain --------|---------------|---------- ``0.8.1`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Ploticus.md b/docs/version-specific/supported-software/p/Ploticus.md index d138e121e..922cccb46 100644 --- a/docs/version-specific/supported-software/p/Ploticus.md +++ b/docs/version-specific/supported-software/p/Ploticus.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ploticus Ploticus is a free GPL software utility that can produce various types of plots and graphs @@ -7,3 +11,6 @@ Ploticus is a free GPL software utility that can produce various types of plots version | toolchain --------|---------- ``2.42`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PnetCDF.md b/docs/version-specific/supported-software/p/PnetCDF.md index 9235fbc2f..c92048779 100644 --- a/docs/version-specific/supported-software/p/PnetCDF.md +++ b/docs/version-specific/supported-software/p/PnetCDF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PnetCDF Parallel netCDF: A Parallel I/O Library for NetCDF File Access @@ -24,3 +28,6 @@ version | toolchain ``1.13.0`` | ``iimpi/2023a`` ``1.8.1`` | ``intel/2017a`` ``1.9.0`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Porechop.md b/docs/version-specific/supported-software/p/Porechop.md index 5bb2af7e2..a3582562e 100644 --- a/docs/version-specific/supported-software/p/Porechop.md +++ b/docs/version-specific/supported-software/p/Porechop.md @@ -1,3 +1,7 @@ +--- +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 @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PortAudio.md b/docs/version-specific/supported-software/p/PortAudio.md index ad667b59b..38a7a172b 100644 --- a/docs/version-specific/supported-software/p/PortAudio.md +++ b/docs/version-specific/supported-software/p/PortAudio.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PortAudio is a free, cross-platform, open-source, audio I/O library. It lets yo version | toolchain --------|---------- ``19.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PortMidi.md b/docs/version-specific/supported-software/p/PortMidi.md index 0a7358017..9f7636da6 100644 --- a/docs/version-specific/supported-software/p/PortMidi.md +++ b/docs/version-specific/supported-software/p/PortMidi.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.4`` | ``GCCcore/11.3.0`` ``2.0.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Portcullis.md b/docs/version-specific/supported-software/p/Portcullis.md index 57d6edf27..547f77867 100644 --- a/docs/version-specific/supported-software/p/Portcullis.md +++ b/docs/version-specific/supported-software/p/Portcullis.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Portcullis stands for PORTable CULLing of Invalid Splice junctions from pre-alig version | versionsuffix | toolchain --------|---------------|---------- ``1.2.2`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PostgreSQL.md b/docs/version-specific/supported-software/p/PostgreSQL.md index 5e7e13ba6..d676ba62e 100644 --- a/docs/version-specific/supported-software/p/PostgreSQL.md +++ b/docs/version-specific/supported-software/p/PostgreSQL.md @@ -1,3 +1,7 @@ +--- +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. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Postgres-XL.md b/docs/version-specific/supported-software/p/Postgres-XL.md index eab98e771..dad110cfc 100644 --- a/docs/version-specific/supported-software/p/Postgres-XL.md +++ b/docs/version-specific/supported-software/p/Postgres-XL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Postgres-XL Postgres-XL is a horizontally scalable open source SQL database cluster, flexible enough to handle varying database workloads: @@ -7,3 +11,6 @@ Postgres-XL is a horizontally scalable open source SQL database cluster, flexibl version | versionsuffix | toolchain --------|---------------|---------- ``9.5r1`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Primer3.md b/docs/version-specific/supported-software/p/Primer3.md index 98d42588b..8fcd45ebc 100644 --- a/docs/version-specific/supported-software/p/Primer3.md +++ b/docs/version-specific/supported-software/p/Primer3.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ProBiS.md b/docs/version-specific/supported-software/p/ProBiS.md index a61516be2..3f9298928 100644 --- a/docs/version-specific/supported-software/p/ProBiS.md +++ b/docs/version-specific/supported-software/p/ProBiS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ProBiS ProBiS algorithm aligns and superimposes complete protein surfaces, surface motifs, or protein binding sites. @@ -7,3 +11,6 @@ ProBiS algorithm aligns and superimposes complete protein surfaces, surface moti version | toolchain --------|---------- ``20230403`` | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ProFit.md b/docs/version-specific/supported-software/p/ProFit.md index c3b73ddb9..0381c19a2 100644 --- a/docs/version-specific/supported-software/p/ProFit.md +++ b/docs/version-specific/supported-software/p/ProFit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ProFit (pronounced Pro-Fit, not profit!) is designed to be the ultimate program version | toolchain --------|---------- ``3.3`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ProbABEL.md b/docs/version-specific/supported-software/p/ProbABEL.md index 439461ba8..89d912b3c 100644 --- a/docs/version-specific/supported-software/p/ProbABEL.md +++ b/docs/version-specific/supported-software/p/ProbABEL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ProbABEL Tool for genome-wide association analysis of imputed genetic data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.5.0`` | ``GCCcore/9.3.0`` ``0.5.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ProjectQ.md b/docs/version-specific/supported-software/p/ProjectQ.md index d1a12b2f5..cd12c8b7a 100644 --- a/docs/version-specific/supported-software/p/ProjectQ.md +++ b/docs/version-specific/supported-software/p/ProjectQ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ProjectQ An open source software framework for quantum computing @@ -7,3 +11,6 @@ An open source software framework for quantum computing version | versionsuffix | toolchain --------|---------------|---------- ``0.4.2`` | ``-Python-3.6.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ProtHint.md b/docs/version-specific/supported-software/p/ProtHint.md index 5c72304fb..429c23748 100644 --- a/docs/version-specific/supported-software/p/ProtHint.md +++ b/docs/version-specific/supported-software/p/ProtHint.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ProteinMPNN.md b/docs/version-specific/supported-software/p/ProteinMPNN.md index 9af41463e..9d388da27 100644 --- a/docs/version-specific/supported-software/p/ProteinMPNN.md +++ b/docs/version-specific/supported-software/p/ProteinMPNN.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A deep learning based protein sequence design method is described that is widel version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1-20230627`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Proteinortho.md b/docs/version-specific/supported-software/p/Proteinortho.md index 8bc3eb217..85765b423 100644 --- a/docs/version-specific/supported-software/p/Proteinortho.md +++ b/docs/version-specific/supported-software/p/Proteinortho.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Proteinortho Proteinortho is a tool to detect orthologous genes within different species. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.16b`` | ``-Python-3.6.4-Perl-5.26.1`` | ``foss/2018a`` ``6.2.3`` | | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PsiCLASS.md b/docs/version-specific/supported-software/p/PsiCLASS.md index a2c10c5a0..d74ab62be 100644 --- a/docs/version-specific/supported-software/p/PsiCLASS.md +++ b/docs/version-specific/supported-software/p/PsiCLASS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PsiCLASS PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. @@ -7,3 +11,6 @@ PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA version | toolchain --------|---------- ``1.0.3`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PuLP.md b/docs/version-specific/supported-software/p/PuLP.md index 6e2a68e97..7455d333b 100644 --- a/docs/version-specific/supported-software/p/PuLP.md +++ b/docs/version-specific/supported-software/p/PuLP.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.5.1`` | ``foss/2021a`` ``2.7.0`` | ``foss/2022b`` ``2.8.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyAEDT.md b/docs/version-specific/supported-software/p/PyAEDT.md index 74d03149f..b1d96c424 100644 --- a/docs/version-specific/supported-software/p/PyAEDT.md +++ b/docs/version-specific/supported-software/p/PyAEDT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyAEDT is a Python library that interacts directly with the Ansys Electronics De version | toolchain --------|---------- ``0.8.7`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyAMG.md b/docs/version-specific/supported-software/p/PyAMG.md index 5a40f2543..ff716f025 100644 --- a/docs/version-specific/supported-software/p/PyAMG.md +++ b/docs/version-specific/supported-software/p/PyAMG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyAMG PyAMG is a library of Algebraic Multigrid (AMG) solvers with a convenient Python interface. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``4.0.0`` | | ``intel/2020b`` ``4.2.3`` | | ``foss/2021a`` ``5.1.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyAPS3.md b/docs/version-specific/supported-software/p/PyAPS3.md index 503cadd8b..3b34d48fb 100644 --- a/docs/version-specific/supported-software/p/PyAPS3.md +++ b/docs/version-specific/supported-software/p/PyAPS3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyAPS3 Python 3 Atmospheric Phase Screen @@ -7,3 +11,6 @@ Python 3 Atmospheric Phase Screen version | versionsuffix | toolchain --------|---------------|---------- ``20190407`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyAV.md b/docs/version-specific/supported-software/p/PyAV.md index a780690b7..fa223241e 100644 --- a/docs/version-specific/supported-software/p/PyAV.md +++ b/docs/version-specific/supported-software/p/PyAV.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyAV is a Pythonic binding for FFmpeg. We aim to provide all of the power and co version | toolchain --------|---------- ``10.0.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyBerny.md b/docs/version-specific/supported-software/p/PyBerny.md index af8a72aa2..d6445d8c3 100644 --- a/docs/version-specific/supported-software/p/PyBerny.md +++ b/docs/version-specific/supported-software/p/PyBerny.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyBerny PyBerny is an optimizer of molecular geometries with respect to the total energy, using nuclear gradient information. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.6.2`` | ``-Python-3.8.2`` | ``intel/2020a`` ``0.6.3`` | | ``foss/2022a`` ``0.6.3`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyBioLib.md b/docs/version-specific/supported-software/p/PyBioLib.md index dfd3a64fd..8d1f2fbf1 100644 --- a/docs/version-specific/supported-software/p/PyBioLib.md +++ b/docs/version-specific/supported-software/p/PyBioLib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyBioLib is a Python package for running BioLib applications from Python scripts version | toolchain --------|---------- ``1.1.988`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCUDA.md b/docs/version-specific/supported-software/p/PyCUDA.md index cda0aeb46..a6f6040aa 100644 --- a/docs/version-specific/supported-software/p/PyCUDA.md +++ b/docs/version-specific/supported-software/p/PyCUDA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyCUDA PyCUDA lets you access Nvidia’s CUDA parallel computation API from Python. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2019.1.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``2019.1.2`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` ``2020.1`` | | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCairo.md b/docs/version-specific/supported-software/p/PyCairo.md index 0b6c5ef5b..19fad288f 100644 --- a/docs/version-specific/supported-software/p/PyCairo.md +++ b/docs/version-specific/supported-software/p/PyCairo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyCairo Python bindings for the cairo library @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``1.24.0`` | | ``GCCcore/12.2.0`` ``1.25.0`` | | ``GCCcore/12.3.0`` ``1.25.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCalib.md b/docs/version-specific/supported-software/p/PyCalib.md index 438a05547..9c6279fe9 100644 --- a/docs/version-specific/supported-software/p/PyCalib.md +++ b/docs/version-specific/supported-software/p/PyCalib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyCalib Python library for classifier calibration @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1.0.dev0`` | ``foss/2021b`` ``20230531`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCharm.md b/docs/version-specific/supported-software/p/PyCharm.md index 27cd4f8eb..da8c2f083 100644 --- a/docs/version-specific/supported-software/p/PyCharm.md +++ b/docs/version-specific/supported-software/p/PyCharm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyCharm PyCharm Community Edition: Python IDE for Professional Developers @@ -11,3 +15,6 @@ version | toolchain ``2021.1.1`` | ``system`` ``2022.2.2`` | ``system`` ``2022.3.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCheMPS2.md b/docs/version-specific/supported-software/p/PyCheMPS2.md index f3fe63213..260e153fe 100644 --- a/docs/version-specific/supported-software/p/PyCheMPS2.md +++ b/docs/version-specific/supported-software/p/PyCheMPS2.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.8.12`` | ``foss/2022a`` ``1.8.12`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCifRW.md b/docs/version-specific/supported-software/p/PyCifRW.md index e0fdc2531..2f9200f62 100644 --- a/docs/version-specific/supported-software/p/PyCifRW.md +++ b/docs/version-specific/supported-software/p/PyCifRW.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyCifRW PyCIFRW provides support for reading and writing CIF (Crystallographic Information Format) files using Python. @@ -7,3 +11,6 @@ PyCIFRW provides support for reading and writing CIF (Crystallographic Informati version | toolchain --------|---------- ``4.4.2`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyClone.md b/docs/version-specific/supported-software/p/PyClone.md index c0b087210..aa6305129 100644 --- a/docs/version-specific/supported-software/p/PyClone.md +++ b/docs/version-specific/supported-software/p/PyClone.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyClone is a Python package that wraps rclone and provides a threaded interface version | toolchain --------|---------- ``2020.9b2`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyCogent.md b/docs/version-specific/supported-software/p/PyCogent.md index dd0fe0741..35d36b0d5 100644 --- a/docs/version-specific/supported-software/p/PyCogent.md +++ b/docs/version-specific/supported-software/p/PyCogent.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.9`` | ``-Python-2.7.12`` | ``foss/2016b`` ``1.9`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.9`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyDamage.md b/docs/version-specific/supported-software/p/PyDamage.md index 086942d51..4551c60aa 100644 --- a/docs/version-specific/supported-software/p/PyDamage.md +++ b/docs/version-specific/supported-software/p/PyDamage.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Pydamage, is a Python software to automate the process of contig damage identifi version | toolchain --------|---------- ``0.70`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyDatastream.md b/docs/version-specific/supported-software/p/PyDatastream.md index ec873b8d1..fe54ab3c1 100644 --- a/docs/version-specific/supported-software/p/PyDatastream.md +++ b/docs/version-specific/supported-software/p/PyDatastream.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyDatastream Lightweight SOAP client @@ -7,3 +11,6 @@ Lightweight SOAP client version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyEVTK.md b/docs/version-specific/supported-software/p/PyEVTK.md index 7e4ea5171..1be0a21bc 100644 --- a/docs/version-specific/supported-software/p/PyEVTK.md +++ b/docs/version-specific/supported-software/p/PyEVTK.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.4.1`` | ``foss/2021b`` ``2.0.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyEXR.md b/docs/version-specific/supported-software/p/PyEXR.md index f94a9fa54..0d015b078 100644 --- a/docs/version-specific/supported-software/p/PyEXR.md +++ b/docs/version-specific/supported-software/p/PyEXR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyEXR A simple EXR IO-library for Python that simplifies the use of OpenEXR. @@ -7,3 +11,6 @@ A simple EXR IO-library for Python that simplifies the use of OpenEXR. version | toolchain --------|---------- ``0.3.10`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyFFmpeg.md b/docs/version-specific/supported-software/p/PyFFmpeg.md index dea790620..947507516 100644 --- a/docs/version-specific/supported-software/p/PyFFmpeg.md +++ b/docs/version-specific/supported-software/p/PyFFmpeg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyFFmpeg Python FFmpeg wrapper @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1beta`` | ``-Python-2.7.10`` | ``gimkl/2.11.5`` ``2.1beta`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyFMI.md b/docs/version-specific/supported-software/p/PyFMI.md index 42a2d365b..3e129b5b4 100644 --- a/docs/version-specific/supported-software/p/PyFMI.md +++ b/docs/version-specific/supported-software/p/PyFMI.md @@ -1,3 +1,7 @@ +--- +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) @@ -7,3 +11,6 @@ PyFMI is a package for loading and interacting with Functional Mock-Up Units (FM version | versionsuffix | toolchain --------|---------------|---------- ``2.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyFR.md b/docs/version-specific/supported-software/p/PyFR.md index 4d78385b1..12f7c0fd1 100644 --- a/docs/version-specific/supported-software/p/PyFR.md +++ b/docs/version-specific/supported-software/p/PyFR.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyFoam.md b/docs/version-specific/supported-software/p/PyFoam.md index 412f27261..70f5b45d9 100644 --- a/docs/version-specific/supported-software/p/PyFoam.md +++ b/docs/version-specific/supported-software/p/PyFoam.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyFoam A Python library to control OpenFOAM-runs and manipulate OpenFOAM-data. @@ -7,3 +11,6 @@ A Python library to control OpenFOAM-runs and manipulate OpenFOAM-data. version | toolchain --------|---------- ``2020.5`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyFrag.md b/docs/version-specific/supported-software/p/PyFrag.md index bd61b1615..8640121a0 100644 --- a/docs/version-specific/supported-software/p/PyFrag.md +++ b/docs/version-specific/supported-software/p/PyFrag.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019-20220216`` | ``-ASA`` | ``intel/2020b`` ``2023-dev.20240220`` | ``-ASA`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyGEOS.md b/docs/version-specific/supported-software/p/PyGEOS.md index 1cfedf8fc..8b7abf939 100644 --- a/docs/version-specific/supported-software/p/PyGEOS.md +++ b/docs/version-specific/supported-software/p/PyGEOS.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.14`` | | ``gfbf/2023a`` ``0.7.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.8`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyGObject.md b/docs/version-specific/supported-software/p/PyGObject.md index d8be4f433..4362b6444 100644 --- a/docs/version-specific/supported-software/p/PyGObject.md +++ b/docs/version-specific/supported-software/p/PyGObject.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyGObject Python Bindings for GLib/GObject/GIO/GTK+ @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``3.44.1`` | | ``GCCcore/12.2.0`` ``3.46.0`` | | ``GCCcore/12.3.0`` ``3.46.0`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyGTK.md b/docs/version-specific/supported-software/p/PyGTK.md index d134d1803..92d7658e3 100644 --- a/docs/version-specific/supported-software/p/PyGTK.md +++ b/docs/version-specific/supported-software/p/PyGTK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyGTK PyGTK lets you to easily create programs with a graphical user interface using the Python programming language. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyGTS.md b/docs/version-specific/supported-software/p/PyGTS.md index 56ddf83f3..97e73762a 100644 --- a/docs/version-specific/supported-software/p/PyGTS.md +++ b/docs/version-specific/supported-software/p/PyGTS.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyGWAS.md b/docs/version-specific/supported-software/p/PyGWAS.md index ee7bd0aee..69a6fc24d 100644 --- a/docs/version-specific/supported-software/p/PyGWAS.md +++ b/docs/version-specific/supported-software/p/PyGWAS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyGWAS PyGWAS is a library for running Genome Wide Association studies. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyHMMER.md b/docs/version-specific/supported-software/p/PyHMMER.md index 4c67be775..c53a4ab67 100644 --- a/docs/version-specific/supported-software/p/PyHMMER.md +++ b/docs/version-specific/supported-software/p/PyHMMER.md @@ -1,3 +1,7 @@ +--- +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) @@ -7,3 +11,6 @@ HMMER is a biological sequence analysis tool that uses profile hidden Markov version | toolchain --------|---------- ``0.10.6`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyImageJ.md b/docs/version-specific/supported-software/p/PyImageJ.md index 39de32bd9..cfef5e573 100644 --- a/docs/version-specific/supported-software/p/PyImageJ.md +++ b/docs/version-specific/supported-software/p/PyImageJ.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyImageJ provides a set of wrapper functions for integration between ImageJ2 and version | toolchain --------|---------- ``1.3.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyInstaller.md b/docs/version-specific/supported-software/p/PyInstaller.md index 0a171266a..bc5548d98 100644 --- a/docs/version-specific/supported-software/p/PyInstaller.md +++ b/docs/version-specific/supported-software/p/PyInstaller.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyInstaller bundles a Python application and all its dependencies into a single version | toolchain --------|---------- ``6.3.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyMC.md b/docs/version-specific/supported-software/p/PyMC.md index c5e358030..82d4afffe 100644 --- a/docs/version-specific/supported-software/p/PyMC.md +++ b/docs/version-specific/supported-software/p/PyMC.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.3.8`` | ``foss/2021b`` ``2.3.8`` | ``intel/2021b`` ``5.9.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyMC3.md b/docs/version-specific/supported-software/p/PyMC3.md index 54e98f74b..93822a493 100644 --- a/docs/version-specific/supported-software/p/PyMC3.md +++ b/docs/version-specific/supported-software/p/PyMC3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyMC3 Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``3.11.1`` | | ``intel/2021b`` ``3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.8`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyMOL.md b/docs/version-specific/supported-software/p/PyMOL.md index 5dcfcb612..e35ab3e03 100644 --- a/docs/version-specific/supported-software/p/PyMOL.md +++ b/docs/version-specific/supported-software/p/PyMOL.md @@ -1,3 +1,7 @@ +--- +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! @@ -7,3 +11,6 @@ PyMOL is a Python-enhanced molecular graphics tool. It excels at 3D version | toolchain --------|---------- ``2.5.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyNAST.md b/docs/version-specific/supported-software/p/PyNAST.md index 9f144bf9d..80d1f8033 100644 --- a/docs/version-specific/supported-software/p/PyNAST.md +++ b/docs/version-specific/supported-software/p/PyNAST.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyOD.md b/docs/version-specific/supported-software/p/PyOD.md index ed4887396..760821f15 100644 --- a/docs/version-specific/supported-software/p/PyOD.md +++ b/docs/version-specific/supported-software/p/PyOD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyOD PyOD is a comprehensive and scalable Python toolkit for detecting outlying objects in multivariate data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.8.7`` | ``foss/2020b`` ``0.8.7`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyOpenCL.md b/docs/version-specific/supported-software/p/PyOpenCL.md index 687de8abb..89beb20f9 100644 --- a/docs/version-specific/supported-software/p/PyOpenCL.md +++ b/docs/version-specific/supported-software/p/PyOpenCL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyOpenCL PyOpenCL lets you access GPUs and other massively parallel compute devices from Python. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``2023.1.4`` | | ``foss/2022a`` ``2023.1.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2023.1.4`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyOpenGL.md b/docs/version-specific/supported-software/p/PyOpenGL.md index 1c20e0c62..4cfceaf6b 100644 --- a/docs/version-specific/supported-software/p/PyOpenGL.md +++ b/docs/version-specific/supported-software/p/PyOpenGL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyOpenGL PyOpenGL is the most common cross platform Python binding to OpenGL and related APIs. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``3.1.6`` | | ``GCCcore/11.2.0`` ``3.1.6`` | | ``GCCcore/11.3.0`` ``3.1.7`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyPSA.md b/docs/version-specific/supported-software/p/PyPSA.md index 4fb8c1607..b60f43331 100644 --- a/docs/version-specific/supported-software/p/PyPSA.md +++ b/docs/version-specific/supported-software/p/PyPSA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyPSA is an open source toolbox for simulating and optimising modern power syste version | toolchain --------|---------- ``0.17.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyPy.md b/docs/version-specific/supported-software/p/PyPy.md index 552c87794..1d1ec86c4 100644 --- a/docs/version-specific/supported-software/p/PyPy.md +++ b/docs/version-specific/supported-software/p/PyPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyPy A fast, compliant alternative implementation of Python @@ -7,3 +11,6 @@ A fast, compliant alternative implementation of Python version | versionsuffix | toolchain --------|---------------|---------- ``7.3.12`` | ``-3.10`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyQt-builder.md b/docs/version-specific/supported-software/p/PyQt-builder.md index c170d6793..fd0114b89 100644 --- a/docs/version-specific/supported-software/p/PyQt-builder.md +++ b/docs/version-specific/supported-software/p/PyQt-builder.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyQt-builder is the PEP 517 compliant build system for PyQt and projects that version | toolchain --------|---------- ``1.15.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyQt.md b/docs/version-specific/supported-software/p/PyQt.md index 5895abfa0..6d804dc56 100644 --- a/docs/version-specific/supported-software/p/PyQt.md +++ b/docs/version-specific/supported-software/p/PyQt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyQt PyQt is a set of Python v2 and v3 bindings for Digia's Qt application framework. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyQt5.md b/docs/version-specific/supported-software/p/PyQt5.md index 29d61f56e..eb2380177 100644 --- a/docs/version-specific/supported-software/p/PyQt5.md +++ b/docs/version-specific/supported-software/p/PyQt5.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyQt5 PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company. @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyQtGraph.md b/docs/version-specific/supported-software/p/PyQtGraph.md index b08eeabf9..53b92dd70 100644 --- a/docs/version-specific/supported-software/p/PyQtGraph.md +++ b/docs/version-specific/supported-software/p/PyQtGraph.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyQtGraph PyQtGraph is a pure-python graphics and GUI library built on PyQt4/PySide and numpy. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``0.12.3`` | | ``foss/2021a`` ``0.13.3`` | | ``foss/2022a`` ``0.13.7`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyRETIS.md b/docs/version-specific/supported-software/p/PyRETIS.md index 36b13e6e3..6decf420b 100644 --- a/docs/version-specific/supported-software/p/PyRETIS.md +++ b/docs/version-specific/supported-software/p/PyRETIS.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.5.0`` | | ``foss/2020b`` ``2.5.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.5.0`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyRe.md b/docs/version-specific/supported-software/p/PyRe.md index f93c36cfe..1d47b6f9d 100644 --- a/docs/version-specific/supported-software/p/PyRe.md +++ b/docs/version-specific/supported-software/p/PyRe.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyRe PyRe (Python Reliability) is a Python module for structural reliability analysis. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.0.3-20190221`` | ``-Python-3.7.4`` | ``foss/2019b`` ``5.0.3-20190221`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyRosetta.md b/docs/version-specific/supported-software/p/PyRosetta.md index 825fa71f6..0d403a6d0 100644 --- a/docs/version-specific/supported-software/p/PyRosetta.md +++ b/docs/version-specific/supported-software/p/PyRosetta.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PyRosetta is an interactive Python-based interface to the powerful Rosetta molec version | versionsuffix | toolchain --------|---------------|---------- ``4.release-292`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PySAT.md b/docs/version-specific/supported-software/p/PySAT.md index 5e181f349..a99aa6db6 100644 --- a/docs/version-specific/supported-software/p/PySAT.md +++ b/docs/version-specific/supported-software/p/PySAT.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6.dev11`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` ``0.1.7.dev1`` | | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PySCF.md b/docs/version-specific/supported-software/p/PySCF.md index fdb1fa243..6ceca0e7f 100644 --- a/docs/version-specific/supported-software/p/PySCF.md +++ b/docs/version-specific/supported-software/p/PySCF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PySCF PySCF is an open-source collection of electronic structure modules powered by Python. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.7.6`` | | ``gomkl/2021a`` ``2.1.1`` | | ``foss/2022a`` ``2.4.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PySINDy.md b/docs/version-specific/supported-software/p/PySINDy.md index 567526b42..179121d42 100644 --- a/docs/version-specific/supported-software/p/PySINDy.md +++ b/docs/version-specific/supported-software/p/PySINDy.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ version | toolchain --------|---------- ``1.7.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PySide2.md b/docs/version-specific/supported-software/p/PySide2.md index 388971053..4da452919 100644 --- a/docs/version-specific/supported-software/p/PySide2.md +++ b/docs/version-specific/supported-software/p/PySide2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PySide2 is the official Python module from the Qt for Python project, which version | toolchain --------|---------- ``5.14.2.3`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyStan.md b/docs/version-specific/supported-software/p/PyStan.md index 8797cbb8e..234b51bbe 100644 --- a/docs/version-specific/supported-software/p/PyStan.md +++ b/docs/version-specific/supported-software/p/PyStan.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.19.1.1`` | | ``foss/2020b`` ``2.19.1.1`` | | ``intel/2020b`` ``3.5.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTables.md b/docs/version-specific/supported-software/p/PyTables.md index c88272dee..8e59edb94 100644 --- a/docs/version-specific/supported-software/p/PyTables.md +++ b/docs/version-specific/supported-software/p/PyTables.md @@ -1,3 +1,7 @@ +--- +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. @@ -38,3 +42,6 @@ version | versionsuffix | toolchain ``3.8.0`` | | ``foss/2022b`` ``3.8.0`` | | ``foss/2023a`` ``3.9.2`` | | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTensor.md b/docs/version-specific/supported-software/p/PyTensor.md index f3ca99712..54ce2c8dd 100644 --- a/docs/version-specific/supported-software/p/PyTensor.md +++ b/docs/version-specific/supported-software/p/PyTensor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyTensor Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs @@ -7,3 +11,6 @@ Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs version | toolchain --------|---------- ``2.17.1`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch-Geometric.md b/docs/version-specific/supported-software/p/PyTorch-Geometric.md index f4ad72c5d..5fad74ddc 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Geometric.md +++ b/docs/version-specific/supported-software/p/PyTorch-Geometric.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyTorch-Geometric PyTorch Geometric (PyG) is a geometric deep learning extension library for PyTorch. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch-Ignite.md b/docs/version-specific/supported-software/p/PyTorch-Ignite.md index d4dda960f..7d86e58f9 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Ignite.md +++ b/docs/version-specific/supported-software/p/PyTorch-Ignite.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.4.12`` | | ``foss/2022a`` ``0.4.13`` | | ``foss/2023a`` ``0.4.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch-Image-Models.md b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md index df2000e66..d1aea7b6c 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Image-Models.md +++ b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.9.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch-Lightning.md b/docs/version-specific/supported-software/p/PyTorch-Lightning.md index 4aa69247f..92a8c0120 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Lightning.md +++ b/docs/version-specific/supported-software/p/PyTorch-Lightning.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyTorch-Lightning PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``foss/2022b`` ``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.2.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch-bundle.md b/docs/version-specific/supported-software/p/PyTorch-bundle.md index 2c09c78d3..123f67160 100644 --- a/docs/version-specific/supported-software/p/PyTorch-bundle.md +++ b/docs/version-specific/supported-software/p/PyTorch-bundle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyTorch-bundle PyTorch with compatible versions of official Torch extensions. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.13.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.1.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.1.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch.md b/docs/version-specific/supported-software/p/PyTorch.md index b939ffe80..bdc0b7bd7 100644 --- a/docs/version-specific/supported-software/p/PyTorch.md +++ b/docs/version-specific/supported-software/p/PyTorch.md @@ -1,3 +1,7 @@ +--- +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. @@ -57,3 +61,6 @@ version | versionsuffix | toolchain ``2.1.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.1.2`` | | ``foss/2023a`` ``2.1.2`` | | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorch3D.md b/docs/version-specific/supported-software/p/PyTorch3D.md index bac4ab8b3..ba76b8980 100644 --- a/docs/version-specific/supported-software/p/PyTorch3D.md +++ b/docs/version-specific/supported-software/p/PyTorch3D.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyTorch3D PyTorch3D is FAIR's library of reusable components for deep learning with 3D data. @@ -7,3 +11,6 @@ PyTorch3D is FAIR's library of reusable components for deep learning with 3D dat version | versionsuffix | toolchain --------|---------------|---------- ``0.4.0`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyTorchVideo.md b/docs/version-specific/supported-software/p/PyTorchVideo.md index 1970e8218..ff7d4177f 100644 --- a/docs/version-specific/supported-software/p/PyTorchVideo.md +++ b/docs/version-specific/supported-software/p/PyTorchVideo.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyVCF.md b/docs/version-specific/supported-software/p/PyVCF.md index 5a450a2b4..92a07a2f7 100644 --- a/docs/version-specific/supported-software/p/PyVCF.md +++ b/docs/version-specific/supported-software/p/PyVCF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyVCF A Variant Call Format reader for Python. @@ -7,3 +11,6 @@ A Variant Call Format reader for Python. version | versionsuffix | toolchain --------|---------------|---------- ``0.6.8`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyVCF3.md b/docs/version-specific/supported-software/p/PyVCF3.md index fe9ff6fa0..b108630f1 100644 --- a/docs/version-specific/supported-software/p/PyVCF3.md +++ b/docs/version-specific/supported-software/p/PyVCF3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A VCFv4.0 and 4.1 parser for Python. The intent of this module is to mimic the c version | toolchain --------|---------- ``1.0.3`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyVista.md b/docs/version-specific/supported-software/p/PyVista.md index 64d5ab2a9..e23b4965d 100644 --- a/docs/version-specific/supported-software/p/PyVista.md +++ b/docs/version-specific/supported-software/p/PyVista.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyVista 3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK) @@ -7,3 +11,6 @@ version | toolchain --------|---------- ``0.43.8`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyWBGT.md b/docs/version-specific/supported-software/p/PyWBGT.md index f999290ad..7769350d4 100644 --- a/docs/version-specific/supported-software/p/PyWBGT.md +++ b/docs/version-specific/supported-software/p/PyWBGT.md @@ -1,3 +1,7 @@ +--- +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) @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2021b`` ``1.0.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyWavelets.md b/docs/version-specific/supported-software/p/PyWavelets.md index 3f22f381c..5fe82d0f4 100644 --- a/docs/version-specific/supported-software/p/PyWavelets.md +++ b/docs/version-specific/supported-software/p/PyWavelets.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyWavelets PyWavelets is open source wavelet transform software for Python. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.1`` | | ``intelcuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyYAML.md b/docs/version-specific/supported-software/p/PyYAML.md index 8f1633793..cdeb30746 100644 --- a/docs/version-specific/supported-software/p/PyYAML.md +++ b/docs/version-specific/supported-software/p/PyYAML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyYAML PyYAML is a YAML parser and emitter for the Python programming language. @@ -40,3 +44,6 @@ version | versionsuffix | toolchain ``6.0`` | | ``GCCcore/12.2.0`` ``6.0`` | | ``GCCcore/12.3.0`` ``6.0.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PyZMQ.md b/docs/version-specific/supported-software/p/PyZMQ.md index 6d22e0794..ec2a37dd0 100644 --- a/docs/version-specific/supported-software/p/PyZMQ.md +++ b/docs/version-specific/supported-software/p/PyZMQ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # PyZMQ Python bindings for ZeroMQ @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``25.1.0`` | | ``GCCcore/12.2.0`` ``25.1.1`` | | ``GCCcore/12.3.0`` ``25.1.2`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/PycURL.md b/docs/version-specific/supported-software/p/PycURL.md index 559348c73..a656f92e8 100644 --- a/docs/version-specific/supported-software/p/PycURL.md +++ b/docs/version-specific/supported-software/p/PycURL.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``7.45.2`` | | ``GCCcore/12.2.0`` ``7.45.2`` | | ``GCCcore/12.3.0`` ``7.45.3`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pychopper.md b/docs/version-specific/supported-software/p/Pychopper.md index 9f3129a79..0eb2702fd 100644 --- a/docs/version-specific/supported-software/p/Pychopper.md +++ b/docs/version-specific/supported-software/p/Pychopper.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Pychopper A tool to identify, orient, trim and rescue full length cDNA reads. @@ -7,3 +11,6 @@ A tool to identify, orient, trim and rescue full length cDNA reads. version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pygments.md b/docs/version-specific/supported-software/p/Pygments.md index 9736da8a6..796a88179 100644 --- a/docs/version-specific/supported-software/p/Pygments.md +++ b/docs/version-specific/supported-software/p/Pygments.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.3`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.1.3`` | ``-Python-3.5.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pyke3.md b/docs/version-specific/supported-software/p/Pyke3.md index 360b49566..8b9a71dde 100644 --- a/docs/version-specific/supported-software/p/Pyke3.md +++ b/docs/version-specific/supported-software/p/Pyke3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Pyke introduces a form of Logic Programming (inspired by Prolog) to the Python version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pylint.md b/docs/version-specific/supported-software/p/Pylint.md index 53c45debc..50b8cd568 100644 --- a/docs/version-specific/supported-software/p/Pylint.md +++ b/docs/version-specific/supported-software/p/Pylint.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pyomo.md b/docs/version-specific/supported-software/p/Pyomo.md index d779f168a..e960a7996 100644 --- a/docs/version-specific/supported-software/p/Pyomo.md +++ b/docs/version-specific/supported-software/p/Pyomo.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``6.0.1`` | | ``foss/2021a`` ``6.4.2`` | | ``foss/2022a`` ``6.5.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pyro4.md b/docs/version-specific/supported-software/p/Pyro4.md index e07dd77d2..a028b0c63 100644 --- a/docs/version-specific/supported-software/p/Pyro4.md +++ b/docs/version-specific/supported-software/p/Pyro4.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Pyro means PYthon Remote Objects. It is a library that enables you to build appl version | versionsuffix | toolchain --------|---------------|---------- ``4.47`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pysam.md b/docs/version-specific/supported-software/p/Pysam.md index 1d5cf329e..248d2bc6c 100644 --- a/docs/version-specific/supported-software/p/Pysam.md +++ b/docs/version-specific/supported-software/p/Pysam.md @@ -1,3 +1,7 @@ +--- +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. @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Pysolar.md b/docs/version-specific/supported-software/p/Pysolar.md index 5083d9c7e..edb09aad0 100644 --- a/docs/version-specific/supported-software/p/Pysolar.md +++ b/docs/version-specific/supported-software/p/Pysolar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Pysolar Pysolar is a collection of Python libraries for simulating the irradiation of any point on earth by the sun. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Python-bundle-PyPI.md b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md index 0b1bdf818..a48bb3561 100644 --- a/docs/version-specific/supported-software/p/Python-bundle-PyPI.md +++ b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Python-bundle-PyPI Bundle of Python packages from PyPI @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2023.06`` | ``GCCcore/12.3.0`` ``2023.10`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Python-bundle.md b/docs/version-specific/supported-software/p/Python-bundle.md index 4a4b4cc3d..34db11e66 100644 --- a/docs/version-specific/supported-software/p/Python-bundle.md +++ b/docs/version-specific/supported-software/p/Python-bundle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Python-bundle Python distribution with a number of widely used extensions incl. NumPy, SciPy, Matplotlib, JupyterLab, MPI4PY, ... @@ -7,3 +11,6 @@ Python distribution with a number of widely used extensions incl. NumPy, SciPy, version | toolchain --------|---------- ``3.10.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/Python.md b/docs/version-specific/supported-software/p/Python.md index 5ce3484ed..7dcc0f7fe 100644 --- a/docs/version-specific/supported-software/p/Python.md +++ b/docs/version-specific/supported-software/p/Python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Python Python is a programming language that lets you work more quickly and integrate your systems more effectively. @@ -105,3 +109,6 @@ version | versionsuffix | toolchain ``3.9.5`` | | ``GCCcore/10.3.0`` ``3.9.6`` | ``-bare`` | ``GCCcore/11.2.0`` ``3.9.6`` | | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/index.md b/docs/version-specific/supported-software/p/index.md index 80e222f8f..fef7d20a1 100644 --- a/docs/version-specific/supported-software/p/index.md +++ b/docs/version-specific/supported-software/p/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (p) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - *p* - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [p11-kit](p11-kit.md) * [p4-phylogenetics](p4-phylogenetics.md) * [p4est](p4est.md) diff --git a/docs/version-specific/supported-software/p/p11-kit.md b/docs/version-specific/supported-software/p/p11-kit.md index 58bfcf78d..70f8ac2d9 100644 --- a/docs/version-specific/supported-software/p/p11-kit.md +++ b/docs/version-specific/supported-software/p/p11-kit.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``0.24.1`` | ``GCCcore/11.2.0`` ``0.24.1`` | ``GCCcore/11.3.0`` ``0.25.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/p4-phylogenetics.md b/docs/version-specific/supported-software/p/p4-phylogenetics.md index 558af5031..b114aa793 100644 --- a/docs/version-specific/supported-software/p/p4-phylogenetics.md +++ b/docs/version-specific/supported-software/p/p4-phylogenetics.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # p4-phylogenetics A Python phyloinformatic toolkit, and an implementation of tree-heterogeneous models of evolution. @@ -7,3 +11,6 @@ A Python phyloinformatic toolkit, and an implementation of tree-heterogeneous mo version | versionsuffix | toolchain --------|---------------|---------- ``1.4-20210322`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/p4est.md b/docs/version-specific/supported-software/p/p4est.md index 8b9a49e51..fdcf2a8fd 100644 --- a/docs/version-specific/supported-software/p/p4est.md +++ b/docs/version-specific/supported-software/p/p4est.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.2`` | ``intel/2019a`` ``2.8`` | ``foss/2021a`` ``2.8.6`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/p4vasp.md b/docs/version-specific/supported-software/p/p4vasp.md index bfc7d3a6a..157bb2d21 100644 --- a/docs/version-specific/supported-software/p/p4vasp.md +++ b/docs/version-specific/supported-software/p/p4vasp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # p4vasp Visualization suite for VASP @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/p7zip.md b/docs/version-specific/supported-software/p/p7zip.md index d50859d1c..d5a846e12 100644 --- a/docs/version-specific/supported-software/p/p7zip.md +++ b/docs/version-specific/supported-software/p/p7zip.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``17.04`` | ``GCCcore/12.3.0`` ``9.38.1`` | ``GCC/4.9.2`` ``9.38.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pFUnit.md b/docs/version-specific/supported-software/p/pFUnit.md index ade60431e..362cd1b46 100644 --- a/docs/version-specific/supported-software/p/pFUnit.md +++ b/docs/version-specific/supported-software/p/pFUnit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pFUnit pFUnit is a unit testing framework enabling JUnit-like testing of serial and MPI-parallel software written in Fortran. @@ -10,3 +14,6 @@ version | toolchain ``4.2.0`` | ``gompi/2020b`` ``4.2.0`` | ``iimpi/2021a`` ``4.7.3`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pIRS.md b/docs/version-specific/supported-software/p/pIRS.md index c79dfbe3b..cd8a00f23 100644 --- a/docs/version-specific/supported-software/p/pIRS.md +++ b/docs/version-specific/supported-software/p/pIRS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pIRS (profile based Illumina pair-end Reads Simulator) is a program for simulati version | toolchain --------|---------- ``2.0.2`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/packmol.md b/docs/version-specific/supported-software/p/packmol.md index 5be778178..81139854c 100644 --- a/docs/version-specific/supported-software/p/packmol.md +++ b/docs/version-specific/supported-software/p/packmol.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # packmol Packing Optimization for Molecular Dynamics Simulations @@ -11,3 +15,6 @@ version | toolchain ``18.013`` | ``intel/2018a`` ``20.2.2`` | ``GCC/10.2.0`` ``v20.2.2`` | ``iccifort/2020.1.217`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pagmo.md b/docs/version-specific/supported-software/p/pagmo.md index 6f226ccef..507237c15 100644 --- a/docs/version-specific/supported-software/p/pagmo.md +++ b/docs/version-specific/supported-software/p/pagmo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pagmo pagmo is a C++ scientific library for massively parallel optimization. @@ -10,3 +14,6 @@ version | toolchain ``2.18.0`` | ``foss/2021a`` ``2.18.0`` | ``foss/2021b`` ``2.18.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pairsnp.md b/docs/version-specific/supported-software/p/pairsnp.md index 3f8716a00..37bb7d8fa 100644 --- a/docs/version-specific/supported-software/p/pairsnp.md +++ b/docs/version-specific/supported-software/p/pairsnp.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A set of scripts for very quickly obtaining pairwise SNP distance matrices from version | toolchain --------|---------- ``0.0.7`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/paladin.md b/docs/version-specific/supported-software/p/paladin.md index 6620a17ff..bce6b5691 100644 --- a/docs/version-specific/supported-software/p/paladin.md +++ b/docs/version-specific/supported-software/p/paladin.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.4.6`` | ``GCCcore/10.3.0`` ``1.4.6`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/panaroo.md b/docs/version-specific/supported-software/p/panaroo.md index 0b5ddb59c..bda503e1b 100644 --- a/docs/version-specific/supported-software/p/panaroo.md +++ b/docs/version-specific/supported-software/p/panaroo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # panaroo A pangenome analysis pipeline. @@ -9,3 +13,6 @@ version | toolchain ``1.2.8`` | ``foss/2020b`` ``1.2.9`` | ``foss/2021a`` ``1.3.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pandapower.md b/docs/version-specific/supported-software/p/pandapower.md index f7e8aeb49..b03c7f7c5 100644 --- a/docs/version-specific/supported-software/p/pandapower.md +++ b/docs/version-specific/supported-software/p/pandapower.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ An easy to use open source tool for power system modeling, analysis and optimiza version | toolchain --------|---------- ``2.7.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pandas-datareader.md b/docs/version-specific/supported-software/p/pandas-datareader.md index 2d44e204f..eaaa4fa7b 100644 --- a/docs/version-specific/supported-software/p/pandas-datareader.md +++ b/docs/version-specific/supported-software/p/pandas-datareader.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pandas-datareader Up to date remote data access for pandas, works for multiple versions of pandas. @@ -7,3 +11,6 @@ Up to date remote data access for pandas, works for multiple versions of pandas. version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pandas.md b/docs/version-specific/supported-software/p/pandas.md index bb32f4d57..650f0ba66 100644 --- a/docs/version-specific/supported-software/p/pandas.md +++ b/docs/version-specific/supported-software/p/pandas.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pangolin.md b/docs/version-specific/supported-software/p/pangolin.md index 582c05307..175475a2c 100644 --- a/docs/version-specific/supported-software/p/pangolin.md +++ b/docs/version-specific/supported-software/p/pangolin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pangolin Software package for assigning SARS-CoV-2 genome sequences to global lineages. This module also contains the faToVcf tool @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/panito.md b/docs/version-specific/supported-software/p/panito.md index e8d1f7426..cecff70e7 100644 --- a/docs/version-specific/supported-software/p/panito.md +++ b/docs/version-specific/supported-software/p/panito.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # panito Calculate genome wide average nucleotide identity (gwANI) for a multiFASTA alignment. @@ -7,3 +11,6 @@ Calculate genome wide average nucleotide identity (gwANI) for a multiFASTA align version | toolchain --------|---------- ``0.0.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/parallel-fastq-dump.md b/docs/version-specific/supported-software/p/parallel-fastq-dump.md index e474dc48d..fadc4ad94 100644 --- a/docs/version-specific/supported-software/p/parallel-fastq-dump.md +++ b/docs/version-specific/supported-software/p/parallel-fastq-dump.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # parallel-fastq-dump parallel fastq-dump wrapper @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.6.6`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``0.6.7`` | | ``gompi/2020b`` ``0.6.7`` | | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/parallel.md b/docs/version-specific/supported-software/p/parallel.md index 635521a33..def2ccf2e 100644 --- a/docs/version-specific/supported-software/p/parallel.md +++ b/docs/version-specific/supported-software/p/parallel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # parallel parallel: Build and execute shell commands in parallel @@ -29,3 +33,6 @@ version | toolchain ``20230722`` | ``GCCcore/12.2.0`` ``20230722`` | ``GCCcore/12.3.0`` ``20240322`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/parameterized.md b/docs/version-specific/supported-software/p/parameterized.md index 5c1844a11..a23feb680 100644 --- a/docs/version-specific/supported-software/p/parameterized.md +++ b/docs/version-specific/supported-software/p/parameterized.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # parameterized Parameterized testing with any Python test framework @@ -9,3 +13,6 @@ version | toolchain ``0.8.1`` | ``GCCcore/10.3.0`` ``0.9.0`` | ``GCCcore/11.3.0`` ``0.9.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/paramiko.md b/docs/version-specific/supported-software/p/paramiko.md index f1c39e382..12161c213 100644 --- a/docs/version-specific/supported-software/p/paramiko.md +++ b/docs/version-specific/supported-software/p/paramiko.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol, providing version | toolchain --------|---------- ``3.2.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/parasail.md b/docs/version-specific/supported-software/p/parasail.md index eedce20a5..0e9a7c144 100644 --- a/docs/version-specific/supported-software/p/parasail.md +++ b/docs/version-specific/supported-software/p/parasail.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``2.6`` | ``GCC/11.3.0`` ``2.6.2`` | ``GCC/12.2.0`` ``2.6.2`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pasta.md b/docs/version-specific/supported-software/p/pasta.md index 8690c73b5..b103e655f 100644 --- a/docs/version-specific/supported-software/p/pasta.md +++ b/docs/version-specific/supported-software/p/pasta.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pasta PASTA (Practical Alignment using SATe and Transitivity) @@ -7,3 +11,6 @@ PASTA (Practical Alignment using SATe and Transitivity) version | versionsuffix | toolchain --------|---------------|---------- ``1.8.5`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pastml.md b/docs/version-specific/supported-software/p/pastml.md index c9fb9cea6..0da362a8a 100644 --- a/docs/version-specific/supported-software/p/pastml.md +++ b/docs/version-specific/supported-software/p/pastml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pastml Ancestor character reconstruction and visualisation for rooted phylogenetic trees @@ -7,3 +11,6 @@ Ancestor character reconstruction and visualisation for rooted phylogenetic tree version | toolchain --------|---------- ``1.9.34`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/patch.md b/docs/version-specific/supported-software/p/patch.md index 24592ae60..0160c8a63 100644 --- a/docs/version-specific/supported-software/p/patch.md +++ b/docs/version-specific/supported-software/p/patch.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Patch takes a patch file containing a difference listing produced by the diff pr version | toolchain --------|---------- ``2.7.6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/patchelf.md b/docs/version-specific/supported-software/p/patchelf.md index 14b62cd5c..aa5fcc652 100644 --- a/docs/version-specific/supported-software/p/patchelf.md +++ b/docs/version-specific/supported-software/p/patchelf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # patchelf PatchELF is a small utility to modify the dynamic linker and RPATH of ELF executables. @@ -20,3 +24,6 @@ version | toolchain ``0.8`` | ``GNU/4.9.3-2.25`` ``0.9`` | ``GCCcore/6.4.0`` ``0.9`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/path.py.md b/docs/version-specific/supported-software/p/path.py.md index de65829d3..406b04be1 100644 --- a/docs/version-specific/supported-software/p/path.py.md +++ b/docs/version-specific/supported-software/p/path.py.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pauvre.md b/docs/version-specific/supported-software/p/pauvre.md index ed2731946..8983a5b16 100644 --- a/docs/version-specific/supported-software/p/pauvre.md +++ b/docs/version-specific/supported-software/p/pauvre.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pauvre Tools for plotting Oxford Nanopore and other long-read data @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``0.2.3`` | | ``foss/2022a`` ``0.2.3`` | | ``foss/2022b`` ``0.2.3`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pbbam.md b/docs/version-specific/supported-software/p/pbbam.md index 3d4cb7c4e..714e7270a 100644 --- a/docs/version-specific/supported-software/p/pbbam.md +++ b/docs/version-specific/supported-software/p/pbbam.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pbbam The pbbam software package provides components to create, query, & edit PacBio BAM files and associated indices. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.6`` | ``gompi/2019a`` ``20170508`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pbcopper.md b/docs/version-specific/supported-software/p/pbcopper.md index ec046f609..2e3c19e3a 100644 --- a/docs/version-specific/supported-software/p/pbcopper.md +++ b/docs/version-specific/supported-software/p/pbcopper.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pbcopper The pbcopper library provides a suite of data structures, algorithms, and utilities for C++ applications. @@ -7,3 +11,6 @@ The pbcopper library provides a suite of data structures, algorithms, and utili version | toolchain --------|---------- ``1.3.0`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pbdagcon.md b/docs/version-specific/supported-software/p/pbdagcon.md index 515c99444..0627f12b6 100644 --- a/docs/version-specific/supported-software/p/pbdagcon.md +++ b/docs/version-specific/supported-software/p/pbdagcon.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pbdagcon is a tool that implements DAGCon (Directed Acyclic Graph Consensus) whi version | toolchain --------|---------- ``20170330`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pbipa.md b/docs/version-specific/supported-software/p/pbipa.md index 420a3f890..631ff7f1c 100644 --- a/docs/version-specific/supported-software/p/pbipa.md +++ b/docs/version-specific/supported-software/p/pbipa.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Improved Phased Assembler (IPA) is the official PacBio software for HiFi genome version | toolchain --------|---------- ``1.8.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pblat.md b/docs/version-specific/supported-software/p/pblat.md index 118472a75..b63ad3e26 100644 --- a/docs/version-specific/supported-software/p/pblat.md +++ b/docs/version-specific/supported-software/p/pblat.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ When the query file format is fasta, you can specify many threads to process it. version | toolchain --------|---------- ``2.5.1`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pbmm2.md b/docs/version-specific/supported-software/p/pbmm2.md index 6c325e1b9..5420c5873 100644 --- a/docs/version-specific/supported-software/p/pbmm2.md +++ b/docs/version-specific/supported-software/p/pbmm2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pbmm2 A minimap2 frontend for PacBio native data formats @@ -7,3 +11,6 @@ A minimap2 frontend for PacBio native data formats version | toolchain --------|---------- ``1.1.0`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pbs_python.md b/docs/version-specific/supported-software/p/pbs_python.md index b0bf65100..5f26d3d8e 100644 --- a/docs/version-specific/supported-software/p/pbs_python.md +++ b/docs/version-specific/supported-software/p/pbs_python.md @@ -1,3 +1,7 @@ +--- +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, ... @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``4.6.0`` | ``-Python-2.7.12`` | ``intel/2016b`` ``4.6.0`` | ``-Python-2.7.13`` | ``intel/2017a`` ``4.6.0`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pdf2docx.md b/docs/version-specific/supported-software/p/pdf2docx.md index 3ab9d9daa..a76f21f35 100644 --- a/docs/version-specific/supported-software/p/pdf2docx.md +++ b/docs/version-specific/supported-software/p/pdf2docx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pdf2docx Open source Python library converting pdf to docx. @@ -7,3 +11,6 @@ Open source Python library converting pdf to docx. version | toolchain --------|---------- ``0.5.8`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pdsh.md b/docs/version-specific/supported-software/p/pdsh.md index c6ba4a343..c1c7de48d 100644 --- a/docs/version-specific/supported-software/p/pdsh.md +++ b/docs/version-specific/supported-software/p/pdsh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pdsh A high performance, parallel remote shell utility @@ -9,3 +13,6 @@ version | toolchain ``2.34`` | ``GCCcore/11.3.0`` ``2.34`` | ``GCCcore/12.2.0`` ``2.34`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/peakdetect.md b/docs/version-specific/supported-software/p/peakdetect.md index 49ec601ff..b3cc80b6a 100644 --- a/docs/version-specific/supported-software/p/peakdetect.md +++ b/docs/version-specific/supported-software/p/peakdetect.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # peakdetect Simple peak detection library for Python based on Billauer's work and this gist. @@ -7,3 +11,6 @@ Simple peak detection library for Python based on Billauer's work and this gist. version | toolchain --------|---------- ``1.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/perl-app-cpanminus.md b/docs/version-specific/supported-software/p/perl-app-cpanminus.md index 2c5c27e9a..b6e4136a0 100644 --- a/docs/version-specific/supported-software/p/perl-app-cpanminus.md +++ b/docs/version-specific/supported-software/p/perl-app-cpanminus.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # perl-app-cpanminus cpanm - get, unpack build and install modules from CPAN @@ -7,3 +11,6 @@ cpanm - get, unpack build and install modules from CPAN version | toolchain --------|---------- ``1.7039`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/petsc4py.md b/docs/version-specific/supported-software/p/petsc4py.md index 95369b2e4..b8dee9365 100644 --- a/docs/version-specific/supported-software/p/petsc4py.md +++ b/docs/version-specific/supported-software/p/petsc4py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # petsc4py petsc4py are Python bindings for PETSc, the Portable, Extensible Toolchain for Scientific Computation. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.15.0`` | | ``foss/2021a`` ``3.20.3`` | | ``foss/2023a`` ``3.9.1`` | ``-Python-3.6.4`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pfind.md b/docs/version-specific/supported-software/p/pfind.md index 9018bf6bd..f5548a16c 100644 --- a/docs/version-specific/supported-software/p/pfind.md +++ b/docs/version-specific/supported-software/p/pfind.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pfind Drop-in replacement for find, implemented for using parallel access and MPI. @@ -7,3 +11,6 @@ Drop-in replacement for find, implemented for using parallel access and MPI. version | toolchain --------|---------- ``20220613`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pftoolsV3.md b/docs/version-specific/supported-software/p/pftoolsV3.md index db083ff1c..7da8b205f 100644 --- a/docs/version-specific/supported-software/p/pftoolsV3.md +++ b/docs/version-specific/supported-software/p/pftoolsV3.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``3.2.11`` | ``foss/2021a`` ``3.2.12`` | ``GCCcore/11.2.0`` ``3.2.12`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phonemizer.md b/docs/version-specific/supported-software/p/phonemizer.md index 7eb77333d..1130d528e 100644 --- a/docs/version-specific/supported-software/p/phonemizer.md +++ b/docs/version-specific/supported-software/p/phonemizer.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.1`` | ``-Python-3.8.2`` | ``gompi/2020a`` ``3.2.1`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phono3py.md b/docs/version-specific/supported-software/p/phono3py.md index 2206fcf85..c2e34f2d3 100644 --- a/docs/version-specific/supported-software/p/phono3py.md +++ b/docs/version-specific/supported-software/p/phono3py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # phono3py phono3py calculates phonon-phonon interaction and related properties using the supercell approach. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phonopy.md b/docs/version-specific/supported-software/p/phonopy.md index 32d24e8b1..f90bd4b77 100644 --- a/docs/version-specific/supported-software/p/phonopy.md +++ b/docs/version-specific/supported-software/p/phonopy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # phonopy Phonopy is an open source package of phonon calculations based on the supercell approach. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``2.20.0`` | | ``foss/2023a`` ``2.7.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``2.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/photontorch.md b/docs/version-specific/supported-software/p/photontorch.md index dd50d0494..c0299d28e 100644 --- a/docs/version-specific/supported-software/p/photontorch.md +++ b/docs/version-specific/supported-software/p/photontorch.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.4.1`` | ``foss/2020b`` ``0.4.1`` | ``foss/2022a`` ``0.4.1`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phototonic.md b/docs/version-specific/supported-software/p/phototonic.md index 91542bd32..0e91cca2c 100644 --- a/docs/version-specific/supported-software/p/phototonic.md +++ b/docs/version-specific/supported-software/p/phototonic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # phototonic Phototonic is an image viewer and organizer @@ -7,3 +11,6 @@ Phototonic is an image viewer and organizer version | toolchain --------|---------- ``2.1`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phylokit.md b/docs/version-specific/supported-software/p/phylokit.md index 603fc812e..8978f4492 100644 --- a/docs/version-specific/supported-software/p/phylokit.md +++ b/docs/version-specific/supported-software/p/phylokit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # phylokit C++ library for high performance phylogenetics @@ -7,3 +11,6 @@ C++ library for high performance phylogenetics version | toolchain --------|---------- ``1.0`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phylonaut.md b/docs/version-specific/supported-software/p/phylonaut.md index 04903fc6f..ce8adb3c9 100644 --- a/docs/version-specific/supported-software/p/phylonaut.md +++ b/docs/version-specific/supported-software/p/phylonaut.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # phylonaut Dynamic programming for phylogenetics applications @@ -7,3 +11,6 @@ Dynamic programming for phylogenetics applications version | toolchain --------|---------- ``20190626`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phyluce.md b/docs/version-specific/supported-software/p/phyluce.md index f53c1984b..2aa1f9d13 100644 --- a/docs/version-specific/supported-software/p/phyluce.md +++ b/docs/version-specific/supported-software/p/phyluce.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ phyluce is a software package for working with data generated from sequence capt version | toolchain --------|---------- ``1.7.3`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/phyx.md b/docs/version-specific/supported-software/p/phyx.md index f3b118c2f..062dc98f0 100644 --- a/docs/version-specific/supported-software/p/phyx.md +++ b/docs/version-specific/supported-software/p/phyx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # phyx phyx performs phylogenetics analyses on trees and sequences. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.01`` | ``foss/2019a`` ``1.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/piSvM-JSC.md b/docs/version-specific/supported-software/p/piSvM-JSC.md index 495baa68a..c5404ba3c 100644 --- a/docs/version-specific/supported-software/p/piSvM-JSC.md +++ b/docs/version-specific/supported-software/p/piSvM-JSC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ piSvM is a parallel implementation of the Support Vector Machine (SVM) algorithm version | toolchain --------|---------- ``1.2-20150622`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/piSvM.md b/docs/version-specific/supported-software/p/piSvM.md index f73e1fef5..f0fa8621d 100644 --- a/docs/version-specific/supported-software/p/piSvM.md +++ b/docs/version-specific/supported-software/p/piSvM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ piSvM is a parallel implementation of the Support Vector Machine (SVM) algorithm version | toolchain --------|---------- ``1.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/picard.md b/docs/version-specific/supported-software/p/picard.md index a11d4b940..4357e1fe8 100644 --- a/docs/version-specific/supported-software/p/picard.md +++ b/docs/version-specific/supported-software/p/picard.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # picard A set of tools (in Java) for working with next generation sequencing data in the BAM format. @@ -35,3 +39,6 @@ version | versionsuffix | toolchain ``2.26.10`` | ``-Java-15`` | ``system`` ``2.6.0`` | ``-Java-1.8.0_131`` | ``system`` ``3.0.0`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pigz.md b/docs/version-specific/supported-software/p/pigz.md index f9cd80580..633498835 100644 --- a/docs/version-specific/supported-software/p/pigz.md +++ b/docs/version-specific/supported-software/p/pigz.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | toolchain ``2.7`` | ``GCCcore/12.2.0`` ``2.8`` | ``GCCcore/12.3.0`` ``2.8`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pip.md b/docs/version-specific/supported-software/p/pip.md index 35cdbd3b4..93eb430e9 100644 --- a/docs/version-specific/supported-software/p/pip.md +++ b/docs/version-specific/supported-software/p/pip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pip The PyPA recommended tool for installing Python packages. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pixman.md b/docs/version-specific/supported-software/p/pixman.md index 89fd51e63..e8551a914 100644 --- a/docs/version-specific/supported-software/p/pixman.md +++ b/docs/version-specific/supported-software/p/pixman.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``0.42.2`` | ``GCCcore/12.2.0`` ``0.42.2`` | ``GCCcore/12.3.0`` ``0.42.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pizzly.md b/docs/version-specific/supported-software/p/pizzly.md index 87ce76bb3..b35f17467 100644 --- a/docs/version-specific/supported-software/p/pizzly.md +++ b/docs/version-specific/supported-software/p/pizzly.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pizzly Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. @@ -7,3 +11,6 @@ Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer sampl version | toolchain --------|---------- ``0.37.3`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pkg-config.md b/docs/version-specific/supported-software/p/pkg-config.md index 062e9e4cf..54ac73613 100644 --- a/docs/version-specific/supported-software/p/pkg-config.md +++ b/docs/version-specific/supported-software/p/pkg-config.md @@ -1,3 +1,7 @@ +--- +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). @@ -36,3 +40,6 @@ version | toolchain ``0.29.2`` | ``GCCcore/9.3.0`` ``0.29.2`` | ``intel/2017a`` ``0.29.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pkgconf.md b/docs/version-specific/supported-software/p/pkgconf.md index 5dda3447c..4b7f2ca5a 100644 --- a/docs/version-specific/supported-software/p/pkgconf.md +++ b/docs/version-specific/supported-software/p/pkgconf.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``2.0.3`` | ``GCCcore/13.2.0`` ``2.2.0`` | ``GCCcore/13.3.0`` ``2.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pkgconfig.md b/docs/version-specific/supported-software/p/pkgconfig.md index cad0c4ad8..b2a2f013a 100644 --- a/docs/version-specific/supported-software/p/pkgconfig.md +++ b/docs/version-specific/supported-software/p/pkgconfig.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pkgconfig pkgconfig is a Python module to interface with the pkg-config command line tool @@ -43,3 +47,6 @@ version | versionsuffix | toolchain ``1.5.5`` | ``-python`` | ``GCCcore/12.2.0`` ``1.5.5`` | ``-python`` | ``GCCcore/12.3.0`` ``1.5.5`` | ``-python`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/planarity.md b/docs/version-specific/supported-software/p/planarity.md index df061666e..26ffcd1f8 100644 --- a/docs/version-specific/supported-software/p/planarity.md +++ b/docs/version-specific/supported-software/p/planarity.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # planarity A library for implementing graph algorithms @@ -7,3 +11,6 @@ A library for implementing graph algorithms version | toolchain --------|---------- ``3.0.2.0`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plantcv.md b/docs/version-specific/supported-software/p/plantcv.md index fd7aabb8d..692021a79 100644 --- a/docs/version-specific/supported-software/p/plantcv.md +++ b/docs/version-specific/supported-software/p/plantcv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # plantcv PlantCV: Plant phenotyping using computer vision. @@ -7,3 +11,6 @@ PlantCV: Plant phenotyping using computer vision. version | versionsuffix | toolchain --------|---------------|---------- ``3.8.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plantri.md b/docs/version-specific/supported-software/p/plantri.md index 09804e274..0df205ff9 100644 --- a/docs/version-specific/supported-software/p/plantri.md +++ b/docs/version-specific/supported-software/p/plantri.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Plantri is a program that generates certain types of graphs that are imbedded on version | toolchain --------|---------- ``5.4`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plc.md b/docs/version-specific/supported-software/p/plc.md index e08cf5489..5fcce2afa 100644 --- a/docs/version-specific/supported-software/p/plc.md +++ b/docs/version-specific/supported-software/p/plc.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``3.10`` | | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plinkQC.md b/docs/version-specific/supported-software/p/plinkQC.md index e0b4d4671..f00f60fcd 100644 --- a/docs/version-specific/supported-software/p/plinkQC.md +++ b/docs/version-specific/supported-software/p/plinkQC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ plinkQC is a R/CRAN package for genotype quality control in genetic association version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plinkliftover.md b/docs/version-specific/supported-software/p/plinkliftover.md index 99e3c40bb..da9a5eb3c 100644 --- a/docs/version-specific/supported-software/p/plinkliftover.md +++ b/docs/version-specific/supported-software/p/plinkliftover.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PLINKLiftOver is a utility enabling liftOver to work on genomics files from PLIN version | toolchain --------|---------- ``0.3.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plmc.md b/docs/version-specific/supported-software/p/plmc.md index 7024cec33..82e6c9945 100644 --- a/docs/version-specific/supported-software/p/plmc.md +++ b/docs/version-specific/supported-software/p/plmc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # plmc Inference of couplings in proteins and RNAs from sequence variation. @@ -7,3 +11,6 @@ Inference of couplings in proteins and RNAs from sequence variation. version | versionsuffix | toolchain --------|---------------|---------- ``20230121`` | ``-32bit`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plot1cell.md b/docs/version-specific/supported-software/p/plot1cell.md index 6c6f67ebe..d935aeb44 100644 --- a/docs/version-specific/supported-software/p/plot1cell.md +++ b/docs/version-specific/supported-software/p/plot1cell.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # plot1cell plot1cell: a package for advanced single cell data visualization @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plotly-orca.md b/docs/version-specific/supported-software/p/plotly-orca.md index d153e031d..2f842bc88 100644 --- a/docs/version-specific/supported-software/p/plotly-orca.md +++ b/docs/version-specific/supported-software/p/plotly-orca.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.3.0`` | ``GCCcore/8.3.0`` ``1.3.1`` | ``GCCcore/10.2.0`` ``1.3.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plotly.md b/docs/version-specific/supported-software/p/plotly.md index 8cb819da7..5e58281f0 100644 --- a/docs/version-specific/supported-software/p/plotly.md +++ b/docs/version-specific/supported-software/p/plotly.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.7.1`` | ``-R-3.4.0`` | ``intel/2017a`` ``4.8.0`` | ``-R-3.4.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plotly.py.md b/docs/version-specific/supported-software/p/plotly.py.md index 7c8e3a7b1..a334b8454 100644 --- a/docs/version-specific/supported-software/p/plotly.py.md +++ b/docs/version-specific/supported-software/p/plotly.py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # plotly.py An open-source, interactive graphing library for Python @@ -17,3 +21,6 @@ version | toolchain ``5.16.0`` | ``GCCcore/12.3.0`` ``5.18.0`` | ``GCCcore/13.2.0`` ``5.4.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/plotutils.md b/docs/version-specific/supported-software/p/plotutils.md index 5b2547343..7a1b18e5c 100644 --- a/docs/version-specific/supported-software/p/plotutils.md +++ b/docs/version-specific/supported-software/p/plotutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The GNU plotutils package contains software for both programmers and technical version | toolchain --------|---------- ``2.6`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pmt.md b/docs/version-specific/supported-software/p/pmt.md index 1f1e799b8..2988e983f 100644 --- a/docs/version-specific/supported-software/p/pmt.md +++ b/docs/version-specific/supported-software/p/pmt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pmt PMT is a high-level software library capable of collecting power consumption measurements on various hardware. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pmx.md b/docs/version-specific/supported-software/p/pmx.md index 4307b5c2c..78dbc8f03 100644 --- a/docs/version-specific/supported-software/p/pmx.md +++ b/docs/version-specific/supported-software/p/pmx.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pmx (formerly pymacs) is a small bunch of classes to read structure files such a version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-Python-2.7.18`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pocl.md b/docs/version-specific/supported-software/p/pocl.md index 7c3b56f2b..1339c6e10 100644 --- a/docs/version-specific/supported-software/p/pocl.md +++ b/docs/version-specific/supported-software/p/pocl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pocl Pocl is a portable open source (MIT-licensed) implementation of the OpenCL standard @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``1.8`` | | ``GCC/11.3.0`` ``4.0`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` ``4.0`` | | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pod5-file-format.md b/docs/version-specific/supported-software/p/pod5-file-format.md index 07317c5d8..f06d2f597 100644 --- a/docs/version-specific/supported-software/p/pod5-file-format.md +++ b/docs/version-specific/supported-software/p/pod5-file-format.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ POD5 is a file format for storing nanopore dna data in an easily accessible way. version | toolchain --------|---------- ``0.1.8`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/poetry.md b/docs/version-specific/supported-software/p/poetry.md index 5c42381eb..85d4e53f5 100644 --- a/docs/version-specific/supported-software/p/poetry.md +++ b/docs/version-specific/supported-software/p/poetry.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # poetry Python packaging and dependency management made easy @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.5.1`` | | ``GCCcore/12.3.0`` ``1.6.1`` | | ``GCCcore/13.2.0`` ``1.7.1`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/polars.md b/docs/version-specific/supported-software/p/polars.md index 0f46843cd..776aae2ea 100644 --- a/docs/version-specific/supported-software/p/polars.md +++ b/docs/version-specific/supported-software/p/polars.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # polars Lightning-fast DataFrame library for Rust and Python. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.15.6`` | ``foss/2022a`` ``0.20.2`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/polymake.md b/docs/version-specific/supported-software/p/polymake.md index bf3129d37..3eb7198a7 100644 --- a/docs/version-specific/supported-software/p/polymake.md +++ b/docs/version-specific/supported-software/p/polymake.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.0r1`` | ``foss/2019b`` ``4.8`` | ``foss/2021b`` ``4.8`` | ``gfbf/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pomkl.md b/docs/version-specific/supported-software/p/pomkl.md index 368610bd1..5520efb0c 100644 --- a/docs/version-specific/supported-software/p/pomkl.md +++ b/docs/version-specific/supported-software/p/pomkl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pomkl Toolchain with PGI C, C++ and Fortran compilers, alongside Intel MKL & OpenMPI. @@ -9,3 +13,6 @@ version | toolchain ``2016.03`` | ``system`` ``2016.04`` | ``system`` ``2016.09`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pompi.md b/docs/version-specific/supported-software/p/pompi.md index d2db734cc..12a92d6d7 100644 --- a/docs/version-specific/supported-software/p/pompi.md +++ b/docs/version-specific/supported-software/p/pompi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pompi Toolchain with PGI C, C++ and Fortran compilers, alongside OpenMPI. @@ -9,3 +13,6 @@ version | toolchain ``2016.03`` | ``system`` ``2016.04`` | ``system`` ``2016.09`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/poppler.md b/docs/version-specific/supported-software/p/poppler.md index cafb1141c..7810d0760 100644 --- a/docs/version-specific/supported-software/p/poppler.md +++ b/docs/version-specific/supported-software/p/poppler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # poppler Poppler is a PDF rendering library based on the xpdf-3.0 code base. @@ -14,3 +18,6 @@ version | toolchain ``22.12.0`` | ``GCC/11.3.0`` ``23.09.0`` | ``GCC/12.3.0`` ``24.04.0`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/poppunk.md b/docs/version-specific/supported-software/p/poppunk.md index b572f8892..10e90cb19 100644 --- a/docs/version-specific/supported-software/p/poppunk.md +++ b/docs/version-specific/supported-software/p/poppunk.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ PopPUNK is a tool for clustering genomes. We refer to the clusters as variable- version | toolchain --------|---------- ``2.6.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/popscle.md b/docs/version-specific/supported-software/p/popscle.md index 0e74d2713..87a666e57 100644 --- a/docs/version-specific/supported-software/p/popscle.md +++ b/docs/version-specific/supported-software/p/popscle.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1-beta-20210505`` | ``GCC/11.3.0`` ``0.1-beta`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/popt.md b/docs/version-specific/supported-software/p/popt.md index 8232ed4dc..05605eab8 100644 --- a/docs/version-specific/supported-software/p/popt.md +++ b/docs/version-specific/supported-software/p/popt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # popt Popt is a C library for parsing command line parameters. @@ -10,3 +14,6 @@ version | toolchain ``1.16`` | ``GCC/10.2.0`` ``1.16`` | ``GCC/4.9.2`` ``1.16`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/porefoam.md b/docs/version-specific/supported-software/p/porefoam.md index 6ed76437f..17179a75f 100644 --- a/docs/version-specific/supported-software/p/porefoam.md +++ b/docs/version-specific/supported-software/p/porefoam.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # porefoam Direct pore-scale simulation of single- and two-phase flow through confined media @@ -7,3 +11,6 @@ Direct pore-scale simulation of single- and two-phase flow through confined medi version | toolchain --------|---------- ``2021-09-21`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/poretools.md b/docs/version-specific/supported-software/p/poretools.md index 0035208ce..81e17fc54 100644 --- a/docs/version-specific/supported-software/p/poretools.md +++ b/docs/version-specific/supported-software/p/poretools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # poretools A toolkit for working with nanopore sequencing data from Oxford Nanopore. @@ -7,3 +11,6 @@ A toolkit for working with nanopore sequencing data from Oxford Nanopore. version | versionsuffix | toolchain --------|---------------|---------- ``0.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/powerlaw.md b/docs/version-specific/supported-software/p/powerlaw.md index 3e97dfdfc..42bbcb82c 100644 --- a/docs/version-specific/supported-software/p/powerlaw.md +++ b/docs/version-specific/supported-software/p/powerlaw.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # powerlaw powerlaw: A Python Package for Analysis of Heavy-Tailed Distributions @@ -7,3 +11,6 @@ powerlaw: A Python Package for Analysis of Heavy-Tailed Distributions version | toolchain --------|---------- ``1.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pp-sketchlib.md b/docs/version-specific/supported-software/p/pp-sketchlib.md index 0435d8c8e..f9283fc00 100644 --- a/docs/version-specific/supported-software/p/pp-sketchlib.md +++ b/docs/version-specific/supported-software/p/pp-sketchlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pp-sketchlib Library of sketching functions used by PopPUNK @@ -7,3 +11,6 @@ Library of sketching functions used by PopPUNK version | toolchain --------|---------- ``2.1.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ppl.md b/docs/version-specific/supported-software/p/ppl.md index 076280b7b..c534093db 100644 --- a/docs/version-specific/supported-software/p/ppl.md +++ b/docs/version-specific/supported-software/p/ppl.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``GCCcore/11.3.0`` ``1.2`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pplacer.md b/docs/version-specific/supported-software/p/pplacer.md index 44e51c9c4..fdba8177d 100644 --- a/docs/version-specific/supported-software/p/pplacer.md +++ b/docs/version-specific/supported-software/p/pplacer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Pplacer places query sequences on a fixed reference phylogenetic tree to maximiz version | toolchain --------|---------- ``1.1.alpha19`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pplpy.md b/docs/version-specific/supported-software/p/pplpy.md index 6c9295d69..1a0744da7 100644 --- a/docs/version-specific/supported-software/p/pplpy.md +++ b/docs/version-specific/supported-software/p/pplpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pplpy This Python package provides a wrapper to the C++ Parma Polyhedra Library (PPL). @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/preCICE.md b/docs/version-specific/supported-software/p/preCICE.md index ab58f52b6..35e3ab733 100644 --- a/docs/version-specific/supported-software/p/preCICE.md +++ b/docs/version-specific/supported-software/p/preCICE.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.5.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/premailer.md b/docs/version-specific/supported-software/p/premailer.md index e7cbafbcc..9f9c4e9a0 100644 --- a/docs/version-specific/supported-software/p/premailer.md +++ b/docs/version-specific/supported-software/p/premailer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # premailer CSS blocks into inline style attributes for HTML emails @@ -7,3 +11,6 @@ CSS blocks into inline style attributes for HTML emails version | toolchain --------|---------- ``3.10.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/preseq.md b/docs/version-specific/supported-software/p/preseq.md index 0b5049740..a9c756a99 100644 --- a/docs/version-specific/supported-software/p/preseq.md +++ b/docs/version-specific/supported-software/p/preseq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # preseq Software for predicting library complexity and genome coverage in high-throughput sequencing. @@ -13,3 +17,6 @@ version | toolchain ``3.1.2`` | ``GCC/11.2.0`` ``3.2.0`` | ``GCC/11.3.0`` ``3.2.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/presto.md b/docs/version-specific/supported-software/p/presto.md index 86db2bd63..a2c5f489a 100644 --- a/docs/version-specific/supported-software/p/presto.md +++ b/docs/version-specific/supported-software/p/presto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # presto Presto performs a fast Wilcoxon rank sum test and auROC analysis. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pretty-yaml.md b/docs/version-specific/supported-software/p/pretty-yaml.md index 6ccdc29cf..2d60fd506 100644 --- a/docs/version-specific/supported-software/p/pretty-yaml.md +++ b/docs/version-specific/supported-software/p/pretty-yaml.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | toolchain ``20.4.0`` | ``GCCcore/9.3.0`` ``21.10.1`` | ``GCCcore/10.3.0`` ``23.9.5`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/primecount.md b/docs/version-specific/supported-software/p/primecount.md index b57c8e14d..c940c126a 100644 --- a/docs/version-specific/supported-software/p/primecount.md +++ b/docs/version-specific/supported-software/p/primecount.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ primecount is a command-line program and C/C++ library that counts the number of version | toolchain --------|---------- ``7.9`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/primecountpy.md b/docs/version-specific/supported-software/p/primecountpy.md index b593775d7..d6e62f11d 100644 --- a/docs/version-specific/supported-software/p/primecountpy.md +++ b/docs/version-specific/supported-software/p/primecountpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # primecountpy This is a Cython interface to the C++ library primecount. @@ -7,3 +11,6 @@ This is a Cython interface to the C++ library primecount. version | toolchain --------|---------- ``0.1.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/printproto.md b/docs/version-specific/supported-software/p/printproto.md index d38d88166..f83049d78 100644 --- a/docs/version-specific/supported-software/p/printproto.md +++ b/docs/version-specific/supported-software/p/printproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # printproto X.org PrintProto protocol headers. @@ -7,3 +11,6 @@ X.org PrintProto protocol headers. version | toolchain --------|---------- ``1.0.5`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/prodigal.md b/docs/version-specific/supported-software/p/prodigal.md index 62094ede4..b812cf878 100644 --- a/docs/version-specific/supported-software/p/prodigal.md +++ b/docs/version-specific/supported-software/p/prodigal.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``2.6.3`` | ``GCCcore/8.2.0`` ``2.6.3`` | ``GCCcore/8.3.0`` ``2.6.3`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/prokka.md b/docs/version-specific/supported-software/p/prokka.md index bfe38cc5a..47a8ccd67 100644 --- a/docs/version-specific/supported-software/p/prokka.md +++ b/docs/version-specific/supported-software/p/prokka.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # prokka Prokka is a software tool for the rapid annotation of prokaryotic genomes. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``1.14.5`` | | ``gompi/2021b`` ``1.14.5`` | | ``gompi/2022a`` ``1.14.5`` | | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/prompt-toolkit.md b/docs/version-specific/supported-software/p/prompt-toolkit.md index 17a15d733..ad09924db 100644 --- a/docs/version-specific/supported-software/p/prompt-toolkit.md +++ b/docs/version-specific/supported-software/p/prompt-toolkit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # prompt-toolkit prompt_toolkit is a Python library for building powerful interactive command lines and terminal applications. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``1.0.6`` | ``-Python-3.5.2`` | ``intel/2016b`` ``3.0.36`` | | ``GCCcore/12.2.0`` ``3.0.36`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/proovread.md b/docs/version-specific/supported-software/p/proovread.md index 5121eb5cf..156173c15 100644 --- a/docs/version-specific/supported-software/p/proovread.md +++ b/docs/version-specific/supported-software/p/proovread.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # proovread PacBio hybrid error correction through iterative short read consensus @@ -7,3 +11,6 @@ PacBio hybrid error correction through iterative short read consensus version | toolchain --------|---------- ``2.14.1`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/propy.md b/docs/version-specific/supported-software/p/propy.md index 9b917a70a..e1ef56e63 100644 --- a/docs/version-specific/supported-software/p/propy.md +++ b/docs/version-specific/supported-software/p/propy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Propy is a protein description software. It allows analyzing sequence-derived st version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/protobuf-python.md b/docs/version-specific/supported-software/p/protobuf-python.md index 0f3d9e1d1..0e558e443 100644 --- a/docs/version-specific/supported-software/p/protobuf-python.md +++ b/docs/version-specific/supported-software/p/protobuf-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # protobuf-python Python Protocol Buffers runtime library. @@ -33,3 +37,6 @@ version | versionsuffix | toolchain ``4.23.0`` | | ``GCCcore/12.2.0`` ``4.24.0`` | | ``GCCcore/12.3.0`` ``4.25.3`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/protobuf.md b/docs/version-specific/supported-software/p/protobuf.md index c1640230f..44928baae 100644 --- a/docs/version-specific/supported-software/p/protobuf.md +++ b/docs/version-specific/supported-software/p/protobuf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # protobuf Google Protocol Buffers @@ -36,3 +40,6 @@ version | toolchain ``3.6.1.2`` | ``GCCcore/8.2.0`` ``3.7.1`` | ``GCCcore/8.2.0`` ``3.7.1`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/protozero.md b/docs/version-specific/supported-software/p/protozero.md index 0d3103096..5d5a37951 100644 --- a/docs/version-specific/supported-software/p/protozero.md +++ b/docs/version-specific/supported-software/p/protozero.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # protozero Minimalistic protocol buffer decoder and encoder in C++. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.6.8`` | ``GCCcore/7.3.0`` ``1.7.0`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pscom.md b/docs/version-specific/supported-software/p/pscom.md index cd3109dc1..3ddf0ad76 100644 --- a/docs/version-specific/supported-software/p/pscom.md +++ b/docs/version-specific/supported-software/p/pscom.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``5.0.43`` | ``GCC/4.8.2`` ``5.0.44-1`` | ``GCC/4.9.2`` ``5.0.48-1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psmc.md b/docs/version-specific/supported-software/p/psmc.md index 2d5f62637..5d9fd6aff 100644 --- a/docs/version-specific/supported-software/p/psmc.md +++ b/docs/version-specific/supported-software/p/psmc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # psmc This software package infers population size history from a diploid sequence using the Pairwise Sequentially Markovian Coalescent (PSMC) model. @@ -9,3 +13,6 @@ version | toolchain ``0.6.5`` | ``foss/2016a`` ``0.6.5`` | ``foss/2018a`` ``0.6.5_20221121`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psmpi.md b/docs/version-specific/supported-software/p/psmpi.md index 8373b524f..28ce7512e 100644 --- a/docs/version-specific/supported-software/p/psmpi.md +++ b/docs/version-specific/supported-software/p/psmpi.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psmpi2.md b/docs/version-specific/supported-software/p/psmpi2.md index 039a1402b..c4ec761c0 100644 --- a/docs/version-specific/supported-software/p/psmpi2.md +++ b/docs/version-specific/supported-software/p/psmpi2.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.0.29`` | ``-mt`` | ``GCC/4.8.2`` ``5.0.29`` | | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psrecord.md b/docs/version-specific/supported-software/p/psrecord.md index 37361ff7f..3b2d25a6e 100644 --- a/docs/version-specific/supported-software/p/psrecord.md +++ b/docs/version-specific/supported-software/p/psrecord.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pstoedit.md b/docs/version-specific/supported-software/p/pstoedit.md index 629120037..3b33598fd 100644 --- a/docs/version-specific/supported-software/p/pstoedit.md +++ b/docs/version-specific/supported-software/p/pstoedit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pstoedit pstoedit translates PostScript and PDF graphics into other vector formats @@ -9,3 +13,6 @@ version | toolchain ``3.70`` | ``GCCcore/6.3.0`` ``3.70`` | ``GCCcore/6.4.0`` ``3.78`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psutil.md b/docs/version-specific/supported-software/p/psutil.md index f26e9265e..3cb014852 100644 --- a/docs/version-specific/supported-software/p/psutil.md +++ b/docs/version-specific/supported-software/p/psutil.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # psutil A cross-platform process and system utilities module for Python @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``5.9.4`` | | ``GCCcore/11.2.0`` ``5.9.5`` | | ``GCCcore/12.2.0`` ``5.9.8`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psycopg.md b/docs/version-specific/supported-software/p/psycopg.md index 22e380063..34dd6ebd4 100644 --- a/docs/version-specific/supported-software/p/psycopg.md +++ b/docs/version-specific/supported-software/p/psycopg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # psycopg Psycopg is the most popular PostgreSQL adapter for the Python programming language. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.1.18`` | ``GCCcore/12.2.0`` ``3.1.18`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/psycopg2.md b/docs/version-specific/supported-software/p/psycopg2.md index f9472ea35..039e799cc 100644 --- a/docs/version-specific/supported-software/p/psycopg2.md +++ b/docs/version-specific/supported-software/p/psycopg2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # psycopg2 Psycopg is the most popular PostgreSQL adapter for the Python programming language. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.9.5`` | | ``GCCcore/11.2.0`` ``2.9.6`` | | ``GCCcore/11.3.0`` ``2.9.9`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/ptemcee.md b/docs/version-specific/supported-software/p/ptemcee.md index fa715a7ed..eb87b1342 100644 --- a/docs/version-specific/supported-software/p/ptemcee.md +++ b/docs/version-specific/supported-software/p/ptemcee.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ptemcee, pronounced "tem-cee", is fork of Daniel Foreman-Mackey's wonderful emce version | toolchain --------|---------- ``1.0.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pubtcrs.md b/docs/version-specific/supported-software/p/pubtcrs.md index 92959752e..d2ac0cba6 100644 --- a/docs/version-specific/supported-software/p/pubtcrs.md +++ b/docs/version-specific/supported-software/p/pubtcrs.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This repository contains C++ source code for the TCR clustering and correlation version | toolchain --------|---------- ``20180622`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pugixml.md b/docs/version-specific/supported-software/p/pugixml.md index 635e3f8d6..53cd41b22 100644 --- a/docs/version-specific/supported-software/p/pugixml.md +++ b/docs/version-specific/supported-software/p/pugixml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pugixml pugixml is a light-weight C++ XML processing library @@ -9,3 +13,6 @@ version | toolchain ``1.11.4`` | ``GCCcore/10.3.0`` ``1.12.1`` | ``GCCcore/11.2.0`` ``1.12.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pullseq.md b/docs/version-specific/supported-software/p/pullseq.md index 7a294aa98..fdee3bf15 100644 --- a/docs/version-specific/supported-software/p/pullseq.md +++ b/docs/version-specific/supported-software/p/pullseq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pullseq Utility program for extracting sequences from a fasta/fastq file @@ -9,3 +13,6 @@ version | toolchain ``1.0.2`` | ``GCCcore/10.3.0`` ``1.0.2`` | ``GCCcore/11.2.0`` ``1.0.2`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/purge_dups.md b/docs/version-specific/supported-software/p/purge_dups.md index 276900199..917551609 100644 --- a/docs/version-specific/supported-software/p/purge_dups.md +++ b/docs/version-specific/supported-software/p/purge_dups.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # purge_dups purge haplotigs and overlaps in an assembly based on read depth @@ -7,3 +11,6 @@ purge haplotigs and overlaps in an assembly based on read depth version | toolchain --------|---------- ``1.2.5`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pv.md b/docs/version-specific/supported-software/p/pv.md index 1512ea71a..56464584e 100644 --- a/docs/version-specific/supported-software/p/pv.md +++ b/docs/version-specific/supported-software/p/pv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pv Pipe Viewer - monitor the progress of data through a pipe @@ -7,3 +11,6 @@ Pipe Viewer - monitor the progress of data through a pipe version | toolchain --------|---------- ``1.7.24`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/py-aiger-bdd.md b/docs/version-specific/supported-software/p/py-aiger-bdd.md index 90d3483af..c6194cb34 100644 --- a/docs/version-specific/supported-software/p/py-aiger-bdd.md +++ b/docs/version-specific/supported-software/p/py-aiger-bdd.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # py-aiger-bdd Aiger to BDD bridge. @@ -7,3 +11,6 @@ Aiger to BDD bridge. version | versionsuffix | toolchain --------|---------------|---------- ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/py-aiger.md b/docs/version-specific/supported-software/p/py-aiger.md index 1b819dae6..4c0cd79a9 100644 --- a/docs/version-specific/supported-software/p/py-aiger.md +++ b/docs/version-specific/supported-software/p/py-aiger.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.1.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``6.1.14`` | | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/py-c3d.md b/docs/version-specific/supported-software/p/py-c3d.md index 4c369bb8c..d144c688c 100644 --- a/docs/version-specific/supported-software/p/py-c3d.md +++ b/docs/version-specific/supported-software/p/py-c3d.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is a small library for reading and writing C3D binary files. C3D files are version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/py-cpuinfo.md b/docs/version-specific/supported-software/p/py-cpuinfo.md index ae6a1eff4..63231c9a4 100644 --- a/docs/version-specific/supported-software/p/py-cpuinfo.md +++ b/docs/version-specific/supported-software/p/py-cpuinfo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # py-cpuinfo py-cpuinfo gets CPU info with pure Python. @@ -13,3 +17,6 @@ version | toolchain ``9.0.0`` | ``GCCcore/12.2.0`` ``9.0.0`` | ``GCCcore/12.3.0`` ``9.0.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/py.md b/docs/version-specific/supported-software/p/py.md index 0f4ec531e..cdad9cac8 100644 --- a/docs/version-specific/supported-software/p/py.md +++ b/docs/version-specific/supported-software/p/py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # py library with cross-python path, ini-parsing, io, code, log facilities @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.31`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.4.31`` | ``-Python-3.5.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/py3Dmol.md b/docs/version-specific/supported-software/p/py3Dmol.md index 4a0a5484a..a642e8b88 100644 --- a/docs/version-specific/supported-software/p/py3Dmol.md +++ b/docs/version-specific/supported-software/p/py3Dmol.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # py3Dmol A simple IPython/Jupyter widget to embed an interactive 3Dmol.js viewer in a notebook. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.1.post1`` | ``GCCcore/11.3.0`` ``2.1.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyABC.md b/docs/version-specific/supported-software/p/pyABC.md index 840cbd02a..1b18eac04 100644 --- a/docs/version-specific/supported-software/p/pyABC.md +++ b/docs/version-specific/supported-software/p/pyABC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Massively parallel, distributed and scalable ABC-SMC (Approximate Bayesian Compu version | versionsuffix | toolchain --------|---------------|---------- ``0.10.4`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyBigWig.md b/docs/version-specific/supported-software/p/pyBigWig.md index 3bcf86965..62721e653 100644 --- a/docs/version-specific/supported-software/p/pyBigWig.md +++ b/docs/version-specific/supported-software/p/pyBigWig.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.3.18`` | | ``foss/2022a`` ``0.3.22`` | | ``foss/2022b`` ``0.3.22`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyEGA3.md b/docs/version-specific/supported-software/p/pyEGA3.md index 209d1fb3d..229e00e19 100644 --- a/docs/version-specific/supported-software/p/pyEGA3.md +++ b/docs/version-specific/supported-software/p/pyEGA3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyEGA3 A basic Python-based EGA download client @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyFAI.md b/docs/version-specific/supported-software/p/pyFAI.md index 5b288b119..1f7113ebe 100644 --- a/docs/version-specific/supported-software/p/pyFAI.md +++ b/docs/version-specific/supported-software/p/pyFAI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyFAI Python implementation of fast azimuthal integration. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.20.0`` | | ``foss/2020b`` ``0.20.0`` | | ``fosscuda/2020b`` ``0.21.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyFFTW.md b/docs/version-specific/supported-software/p/pyFFTW.md index f2b01975c..2ebba46e7 100644 --- a/docs/version-specific/supported-software/p/pyFFTW.md +++ b/docs/version-specific/supported-software/p/pyFFTW.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyFFTW A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.12.0`` | | ``foss/2020b`` ``0.12.0`` | | ``fosscuda/2020b`` ``0.13.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyGAM.md b/docs/version-specific/supported-software/p/pyGAM.md index 91f058762..440bedbb0 100644 --- a/docs/version-specific/supported-software/p/pyGAM.md +++ b/docs/version-specific/supported-software/p/pyGAM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pyGAM is a package for building Generalized Additive Models in Python, with an e version | toolchain --------|---------- ``0.9.1`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyGIMLi.md b/docs/version-specific/supported-software/p/pyGIMLi.md index 4da95762a..6e0e258a3 100644 --- a/docs/version-specific/supported-software/p/pyGIMLi.md +++ b/docs/version-specific/supported-software/p/pyGIMLi.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160803`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160803`` | ``-Python-3.5.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyGenomeTracks.md b/docs/version-specific/supported-software/p/pyGenomeTracks.md index a9eec4510..4f08067e3 100644 --- a/docs/version-specific/supported-software/p/pyGenomeTracks.md +++ b/docs/version-specific/supported-software/p/pyGenomeTracks.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyGenomeTracks pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.7`` | ``foss/2021b`` ``3.8`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyMannKendall.md b/docs/version-specific/supported-software/p/pyMannKendall.md index e35b064ef..77521efc9 100644 --- a/docs/version-specific/supported-software/p/pyMannKendall.md +++ b/docs/version-specific/supported-software/p/pyMannKendall.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyMannKendall A python package for non parametric Mann Kendall family of trend tests. @@ -7,3 +11,6 @@ A python package for non parametric Mann Kendall family of trend tests. version | toolchain --------|---------- ``1.4.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pySCENIC.md b/docs/version-specific/supported-software/p/pySCENIC.md index b02af41d6..f60dbdacb 100644 --- a/docs/version-specific/supported-software/p/pySCENIC.md +++ b/docs/version-specific/supported-software/p/pySCENIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.10.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``0.12.1-20240311`` | | ``foss/2023a`` ``0.12.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyScaf.md b/docs/version-specific/supported-software/p/pyScaf.md index 023d53120..d02c161c0 100644 --- a/docs/version-specific/supported-software/p/pyScaf.md +++ b/docs/version-specific/supported-software/p/pyScaf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyScaf pyScaf orders contigs from genome assemblies utilising several types of information @@ -7,3 +11,6 @@ pyScaf orders contigs from genome assemblies utilising several types of informat version | versionsuffix | toolchain --------|---------------|---------- ``0.12a4`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyWannier90.md b/docs/version-specific/supported-software/p/pyWannier90.md index 034016e31..7318cb9bd 100644 --- a/docs/version-specific/supported-software/p/pyWannier90.md +++ b/docs/version-specific/supported-software/p/pyWannier90.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyWannier90 A Wannier90 Python interface for VASP and PySCF @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2021-12-07`` | ``foss/2021a`` ``2021-12-07`` | ``gomkl/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyXDF.md b/docs/version-specific/supported-software/p/pyXDF.md index 15d036c43..a68f80d50 100644 --- a/docs/version-specific/supported-software/p/pyXDF.md +++ b/docs/version-specific/supported-software/p/pyXDF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyXDF Python package for working with XDF files. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.16.3`` | ``foss/2021a`` ``1.16.5`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pybedtools.md b/docs/version-specific/supported-software/p/pybedtools.md index 55ed85cba..b7ed51fdd 100644 --- a/docs/version-specific/supported-software/p/pybedtools.md +++ b/docs/version-specific/supported-software/p/pybedtools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pybedtools pybedtools wraps and extends BEDTools and offers feature-level manipulations from within Python. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``GCC/11.3.0`` ``0.9.0`` | | ``GCC/12.2.0`` ``0.9.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pybind11-stubgen.md b/docs/version-specific/supported-software/p/pybind11-stubgen.md index 1ff14645e..ebb15a100 100644 --- a/docs/version-specific/supported-software/p/pybind11-stubgen.md +++ b/docs/version-specific/supported-software/p/pybind11-stubgen.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Static analysis tools and IDE usually struggle to understand python binary version | toolchain --------|---------- ``2.5.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pybind11.md b/docs/version-specific/supported-software/p/pybind11.md index 32fdb3bb5..1d0165c1d 100644 --- a/docs/version-specific/supported-software/p/pybind11.md +++ b/docs/version-specific/supported-software/p/pybind11.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pybinding.md b/docs/version-specific/supported-software/p/pybinding.md index 883dc69c4..e66190e2d 100644 --- a/docs/version-specific/supported-software/p/pybinding.md +++ b/docs/version-specific/supported-software/p/pybinding.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pybinding Pybinding is a Python package for numerical tight-binding calculations in solid state physics. @@ -7,3 +11,6 @@ Pybinding is a Python package for numerical tight-binding calculations in solid version | toolchain --------|---------- ``0.9.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyccel.md b/docs/version-specific/supported-software/p/pyccel.md index 285620cc9..5c9381519 100644 --- a/docs/version-specific/supported-software/p/pyccel.md +++ b/docs/version-specific/supported-software/p/pyccel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyccel Python extension language using accelerators @@ -7,3 +11,6 @@ Python extension language using accelerators version | toolchain --------|---------- ``1.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pycma.md b/docs/version-specific/supported-software/p/pycma.md index 29705d048..01d9f074a 100644 --- a/docs/version-specific/supported-software/p/pycma.md +++ b/docs/version-specific/supported-software/p/pycma.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A stochastic numerical optimization algorithm for difficult (non-convex, ill-con version | toolchain --------|---------- ``2.7.0`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pycoQC.md b/docs/version-specific/supported-software/p/pycoQC.md index 482e83776..c6c1ed7c4 100644 --- a/docs/version-specific/supported-software/p/pycoQC.md +++ b/docs/version-specific/supported-software/p/pycoQC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pycoQC PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. @@ -7,3 +11,6 @@ PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore version | toolchain --------|---------- ``2.5.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pycocotools.md b/docs/version-specific/supported-software/p/pycocotools.md index a67f93325..7986b13cf 100644 --- a/docs/version-specific/supported-software/p/pycocotools.md +++ b/docs/version-specific/supported-software/p/pycocotools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pycocotools Tools for working with the MSCOCO dataset @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``2.0.2`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` ``2.0.4`` | | ``foss/2021a`` ``2.0.6`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pycodestyle.md b/docs/version-specific/supported-software/p/pycodestyle.md index 9d0dc31a8..b8ae0a10a 100644 --- a/docs/version-specific/supported-software/p/pycodestyle.md +++ b/docs/version-specific/supported-software/p/pycodestyle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pycodestyle pycodestyle is a tool to check your Python code against some of the style conventions in PEP 8. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.11.1`` | | ``foss/2022a`` ``2.11.1`` | | ``foss/2023a`` ``2.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pycubescd.md b/docs/version-specific/supported-software/p/pycubescd.md index b584656ca..bac87424c 100644 --- a/docs/version-specific/supported-software/p/pycubescd.md +++ b/docs/version-specific/supported-software/p/pycubescd.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pycubescd Charge-displacement analysis via natural orbitals for chemical valence in the four-component relativistic framework @@ -7,3 +11,6 @@ Charge-displacement analysis via natural orbitals for chemical valence in the fo version | toolchain --------|---------- ``20220704`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pydantic.md b/docs/version-specific/supported-software/p/pydantic.md index 030ef8b45..65c260367 100644 --- a/docs/version-specific/supported-software/p/pydantic.md +++ b/docs/version-specific/supported-software/p/pydantic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pydantic Data validation and settings management using Python type hinting. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.5.3`` | | ``GCCcore/12.2.0`` ``2.5.3`` | | ``GCCcore/12.3.0`` ``2.6.4`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pydicom-seg.md b/docs/version-specific/supported-software/p/pydicom-seg.md index a1a8d1670..525a07908 100644 --- a/docs/version-specific/supported-software/p/pydicom-seg.md +++ b/docs/version-specific/supported-software/p/pydicom-seg.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pydicom-seg Reading and writing of DICOM-SEG medical image segmentation storage files using pydicom as DICOM serialization/deserialization library. @@ -7,3 +11,6 @@ Reading and writing of DICOM-SEG medical image segmentation storage files using version | toolchain --------|---------- ``0.4.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pydicom.md b/docs/version-specific/supported-software/p/pydicom.md index a66452e41..7e75e5c80 100644 --- a/docs/version-specific/supported-software/p/pydicom.md +++ b/docs/version-specific/supported-software/p/pydicom.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pydicom Read, modify and write DICOM files with python code @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.2.2`` | | ``GCCcore/11.2.0`` ``2.3.0`` | | ``GCCcore/11.3.0`` ``2.4.4`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pydlpoly.md b/docs/version-specific/supported-software/p/pydlpoly.md index 759dae2e7..60008579f 100644 --- a/docs/version-specific/supported-software/p/pydlpoly.md +++ b/docs/version-specific/supported-software/p/pydlpoly.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20150225`` | ``-Python-2.7.12`` | ``intel/2016b`` ``20150225`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pydot.md b/docs/version-specific/supported-software/p/pydot.md index 1a18d1d52..880b8063c 100644 --- a/docs/version-specific/supported-software/p/pydot.md +++ b/docs/version-specific/supported-software/p/pydot.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pydot Python interface to Graphviz's Dot language. @@ -13,3 +17,6 @@ version | toolchain ``1.4.2`` | ``GCCcore/11.2.0`` ``1.4.2`` | ``GCCcore/11.3.0`` ``2.0.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyenchant.md b/docs/version-specific/supported-software/p/pyenchant.md index 345d19f0f..f85a4af39 100644 --- a/docs/version-specific/supported-software/p/pyenchant.md +++ b/docs/version-specific/supported-software/p/pyenchant.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyenchant PyEnchant is a spellchecking library for Python, based on the excellent Enchant library. @@ -7,3 +11,6 @@ PyEnchant is a spellchecking library for Python, based on the excellent Enchant version | versionsuffix | toolchain --------|---------------|---------- ``1.6.8`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyfaidx.md b/docs/version-specific/supported-software/p/pyfaidx.md index ad5a1af46..a78c77a25 100644 --- a/docs/version-specific/supported-software/p/pyfaidx.md +++ b/docs/version-specific/supported-software/p/pyfaidx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyfaidx pyfaidx: efficient pythonic random access to fasta subsequences @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``0.7.2.1`` | | ``GCCcore/12.2.0`` ``0.8.1.1`` | | ``GCCcore/12.3.0`` ``0.8.1.1`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyfasta.md b/docs/version-specific/supported-software/p/pyfasta.md index 8d82c22ee..12e8b66d7 100644 --- a/docs/version-specific/supported-software/p/pyfasta.md +++ b/docs/version-specific/supported-software/p/pyfasta.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyfasta fast, memory-efficient, pythonic (and command-line) access to fasta sequence files @@ -7,3 +11,6 @@ fast, memory-efficient, pythonic (and command-line) access to fasta sequence fil version | toolchain --------|---------- ``0.5.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyfits.md b/docs/version-specific/supported-software/p/pyfits.md index 7cf03aaea..ca0ad0756 100644 --- a/docs/version-specific/supported-software/p/pyfits.md +++ b/docs/version-specific/supported-software/p/pyfits.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyfits The PyFITS module is a Python library providing access to FITS (Flexible Image Transport System) @@ -7,3 +11,6 @@ The PyFITS module is a Python library providing access to FITS (Flexible Image T version | versionsuffix | toolchain --------|---------------|---------- ``3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pygame.md b/docs/version-specific/supported-software/p/pygame.md index be2a52819..3c63763a0 100644 --- a/docs/version-specific/supported-software/p/pygame.md +++ b/docs/version-specific/supported-software/p/pygame.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.1.0`` | ``GCCcore/11.3.0`` ``2.5.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pygccxml.md b/docs/version-specific/supported-software/p/pygccxml.md index ad44563ef..e96311dd9 100644 --- a/docs/version-specific/supported-software/p/pygccxml.md +++ b/docs/version-specific/supported-software/p/pygccxml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pygccxml Python package for easy C++ declarations navigation. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160706`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160706`` | ``-Python-3.5.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pygmo.md b/docs/version-specific/supported-software/p/pygmo.md index b87196cec..287f1d37e 100644 --- a/docs/version-specific/supported-software/p/pygmo.md +++ b/docs/version-specific/supported-software/p/pygmo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pygmo pygmo is a scientific Python library for massively parallel optimization. @@ -10,3 +14,6 @@ version | toolchain ``2.18.0`` | ``foss/2021a`` ``2.18.0`` | ``foss/2021b`` ``2.18.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pygraphviz.md b/docs/version-specific/supported-software/p/pygraphviz.md index 43ad7f0cb..af064ada5 100644 --- a/docs/version-specific/supported-software/p/pygraphviz.md +++ b/docs/version-specific/supported-software/p/pygraphviz.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.5`` | ``foss/2019b`` ``1.7`` | ``foss/2020b`` ``1.7`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pygrib.md b/docs/version-specific/supported-software/p/pygrib.md index 55d487c24..3319cc162 100644 --- a/docs/version-specific/supported-software/p/pygrib.md +++ b/docs/version-specific/supported-software/p/pygrib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pygrib Python interface for reading and writing GRIB data @@ -7,3 +11,6 @@ Python interface for reading and writing GRIB data version | toolchain --------|---------- ``2.0.4`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyhdf.md b/docs/version-specific/supported-software/p/pyhdf.md index df7a8669d..d616bdef7 100644 --- a/docs/version-specific/supported-software/p/pyhdf.md +++ b/docs/version-specific/supported-software/p/pyhdf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyhdf Python wrapper around the NCSA HDF version 4 library @@ -7,3 +11,6 @@ Python wrapper around the NCSA HDF version 4 library version | toolchain --------|---------- ``0.10.1`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyiron.md b/docs/version-specific/supported-software/p/pyiron.md index 8c912a11c..83694fc84 100644 --- a/docs/version-specific/supported-software/p/pyiron.md +++ b/docs/version-specific/supported-software/p/pyiron.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyiron An integrated development environment (IDE) for computational materials science. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pylift.md b/docs/version-specific/supported-software/p/pylift.md index 0e1e6a40c..289ffef4d 100644 --- a/docs/version-specific/supported-software/p/pylift.md +++ b/docs/version-specific/supported-software/p/pylift.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pylift pylift is an uplift library that provides, primarily: (1) Fast uplift modeling implementations and (2) Evaluation tools (UpliftEval class). @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pylipid.md b/docs/version-specific/supported-software/p/pylipid.md index 989fa944c..d5c61714b 100644 --- a/docs/version-specific/supported-software/p/pylipid.md +++ b/docs/version-specific/supported-software/p/pylipid.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pylipid PyLipID is a python package for analyzing lipid interactions with membrane proteins from Molecular Dynamics Simulations. @@ -7,3 +11,6 @@ PyLipID is a python package for analyzing lipid interactions with version | toolchain --------|---------- ``1.5.14`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pymatgen-db.md b/docs/version-specific/supported-software/p/pymatgen-db.md index d3361b65d..a4acecd2e 100644 --- a/docs/version-specific/supported-software/p/pymatgen-db.md +++ b/docs/version-specific/supported-software/p/pymatgen-db.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pymatgen-db Pymatgen-db is a database add-on for the Python Materials Genomics (pymatgen) materials analysis library. @@ -7,3 +11,6 @@ Pymatgen-db is a database add-on for the Python Materials Genomics (pymatgen) m version | versionsuffix | toolchain --------|---------------|---------- ``0.6.5`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pymatgen.md b/docs/version-specific/supported-software/p/pymatgen.md index 74ace4813..e68bec135 100644 --- a/docs/version-specific/supported-software/p/pymatgen.md +++ b/docs/version-specific/supported-software/p/pymatgen.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pymbar.md b/docs/version-specific/supported-software/p/pymbar.md index ee9a2062c..4389f778f 100644 --- a/docs/version-specific/supported-software/p/pymbar.md +++ b/docs/version-specific/supported-software/p/pymbar.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.3`` | ``-Python-3.6.3`` | ``intel/2017b`` ``3.0.3`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pymca.md b/docs/version-specific/supported-software/p/pymca.md index d1a5679cc..511d38c43 100644 --- a/docs/version-specific/supported-software/p/pymca.md +++ b/docs/version-specific/supported-software/p/pymca.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pymca The PyMca X-Ray Fluorescence Toolkit, including PyMca5 and fisx. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``5.6.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``5.6.3`` | | ``fosscuda/2020b`` ``5.7.6`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pymemcache.md b/docs/version-specific/supported-software/p/pymemcache.md index dbd73f41d..9b83a5147 100644 --- a/docs/version-specific/supported-software/p/pymemcache.md +++ b/docs/version-specific/supported-software/p/pymemcache.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pymemcache A comprehensive, fast, pure-Python memcached client. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyobjcryst.md b/docs/version-specific/supported-software/p/pyobjcryst.md index 1bf9a5587..f19e64d0b 100644 --- a/docs/version-specific/supported-software/p/pyobjcryst.md +++ b/docs/version-specific/supported-software/p/pyobjcryst.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyobjcryst Python bindings to ObjCryst++, the Object-Oriented Crystallographic Library. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.0.post2`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.2.1`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyodbc.md b/docs/version-specific/supported-software/p/pyodbc.md index 19ad8553d..0200be2b6 100644 --- a/docs/version-specific/supported-software/p/pyodbc.md +++ b/docs/version-specific/supported-software/p/pyodbc.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pyodbc is an open source Python module that makes accessing ODBC databases simp version | toolchain --------|---------- ``4.0.39`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyparsing.md b/docs/version-specific/supported-software/p/pyparsing.md index 8af2a6af6..a0da4f486 100644 --- a/docs/version-specific/supported-software/p/pyparsing.md +++ b/docs/version-specific/supported-software/p/pyparsing.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyperf.md b/docs/version-specific/supported-software/p/pyperf.md index 9325c9b1a..d7d01fbbb 100644 --- a/docs/version-specific/supported-software/p/pyperf.md +++ b/docs/version-specific/supported-software/p/pyperf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyperf The Python pyperf module is a toolkit to write, run and analyze benchmarks @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``GCCcore/11.3.0`` ``2.6.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyplusplus.md b/docs/version-specific/supported-software/p/pyplusplus.md index 24947f74f..ed656fdc7 100644 --- a/docs/version-specific/supported-software/p/pyplusplus.md +++ b/docs/version-specific/supported-software/p/pyplusplus.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160707`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160707`` | ``-Python-3.5.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pypmt.md b/docs/version-specific/supported-software/p/pypmt.md index e0d392fa1..c82583431 100644 --- a/docs/version-specific/supported-software/p/pypmt.md +++ b/docs/version-specific/supported-software/p/pypmt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pypmt PMT is a high-level software library capable of collecting power consumption measurements on various hardware. @@ -10,3 +14,6 @@ version | toolchain ``1.1.0`` | ``gfbf/2023a`` ``1.2.0`` | ``foss/2022a`` ``1.2.0`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyproj.md b/docs/version-specific/supported-software/p/pyproj.md index 056b67a07..75b051a44 100644 --- a/docs/version-specific/supported-software/p/pyproj.md +++ b/docs/version-specific/supported-software/p/pyproj.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyproj Python interface to PROJ4 library for cartographic transformations @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``3.4.0`` | | ``GCCcore/11.3.0`` ``3.5.0`` | | ``GCCcore/12.2.0`` ``3.6.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyqstem.md b/docs/version-specific/supported-software/p/pyqstem.md index 97f17ac85..897790d9c 100644 --- a/docs/version-specific/supported-software/p/pyqstem.md +++ b/docs/version-specific/supported-software/p/pyqstem.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyradiomics.md b/docs/version-specific/supported-software/p/pyradiomics.md index 6bf5d421d..d9b13f23f 100644 --- a/docs/version-specific/supported-software/p/pyradiomics.md +++ b/docs/version-specific/supported-software/p/pyradiomics.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyradiomics Open-source python package for the extraction of Radiomics features from 2D and 3D images and binary masks. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.0.1`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyringe.md b/docs/version-specific/supported-software/p/pyringe.md index 49dae2583..9220b4de9 100644 --- a/docs/version-specific/supported-software/p/pyringe.md +++ b/docs/version-specific/supported-software/p/pyringe.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyringe Debugger capable of attaching to and injecting code into python processes. @@ -7,3 +11,6 @@ Debugger capable of attaching to and injecting code into python processes. version | versionsuffix | toolchain --------|---------------|---------- ``1.0.2`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyro-api.md b/docs/version-specific/supported-software/p/pyro-api.md index efd776dff..6badc9450 100644 --- a/docs/version-specific/supported-software/p/pyro-api.md +++ b/docs/version-specific/supported-software/p/pyro-api.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyro-api Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. @@ -7,3 +11,6 @@ Pyro is a flexible, scalable deep probabilistic programming library built on PyT version | toolchain --------|---------- ``0.1.2`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyro-ppl.md b/docs/version-specific/supported-software/p/pyro-ppl.md index 76f3c2cca..c984fca36 100644 --- a/docs/version-specific/supported-software/p/pyro-ppl.md +++ b/docs/version-specific/supported-software/p/pyro-ppl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyro-ppl Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.8.4`` | | ``foss/2022a`` ``1.9.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``1.9.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pysamstats.md b/docs/version-specific/supported-software/p/pysamstats.md index 84bc66d82..fddd2c3dd 100644 --- a/docs/version-specific/supported-software/p/pysamstats.md +++ b/docs/version-specific/supported-software/p/pysamstats.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pysamstats A Python utility for calculating statistics against genome positions based on sequence alignments from a SAM or BAM file. @@ -7,3 +11,6 @@ A Python utility for calculating statistics against genome positions based on se version | toolchain --------|---------- ``1.1.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyseer.md b/docs/version-specific/supported-software/p/pyseer.md index 6430d46bf..0b8e0b094 100644 --- a/docs/version-specific/supported-software/p/pyseer.md +++ b/docs/version-specific/supported-software/p/pyseer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pyseer was first written a python reimplementation of seer, which was written in version | toolchain --------|---------- ``1.3.11`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pysheds.md b/docs/version-specific/supported-software/p/pysheds.md index 2268dd7fe..52fa5a443 100644 --- a/docs/version-specific/supported-software/p/pysheds.md +++ b/docs/version-specific/supported-software/p/pysheds.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pysheds Simple and fast watershed delineation in python. @@ -7,3 +11,6 @@ Simple and fast watershed delineation in python. version | toolchain --------|---------- ``0.2.7.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyshp.md b/docs/version-specific/supported-software/p/pyshp.md index 7b19b0cf5..b262be488 100644 --- a/docs/version-specific/supported-software/p/pyshp.md +++ b/docs/version-specific/supported-software/p/pyshp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyshp Pure Python read/write support for ESRI Shapefile format @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.12`` | ``-Python-3.6.2`` | ``foss/2017b`` ``2.1.3`` | | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyslim.md b/docs/version-specific/supported-software/p/pyslim.md index 12bb1258f..5c0415ee8 100644 --- a/docs/version-specific/supported-software/p/pyslim.md +++ b/docs/version-specific/supported-software/p/pyslim.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2021b`` ``1.0.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pysndfx.md b/docs/version-specific/supported-software/p/pysndfx.md index 464f227d9..5acc86150 100644 --- a/docs/version-specific/supported-software/p/pysndfx.md +++ b/docs/version-specific/supported-software/p/pysndfx.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A lightweight Python wrapper for SoX - Sound eXchange. Supported effects range version | versionsuffix | toolchain --------|---------------|---------- ``0.3.6`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pyspoa.md b/docs/version-specific/supported-software/p/pyspoa.md index 954a0f988..df06d39b6 100644 --- a/docs/version-specific/supported-software/p/pyspoa.md +++ b/docs/version-specific/supported-software/p/pyspoa.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pyspoa Python bindings to spoa. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``0.0.9`` | | ``GCC/11.3.0`` ``0.0.9`` | | ``GCC/12.2.0`` ``0.2.1`` | | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pysqlite.md b/docs/version-specific/supported-software/p/pysqlite.md index c68153a85..3fe21b1dc 100644 --- a/docs/version-specific/supported-software/p/pysqlite.md +++ b/docs/version-specific/supported-software/p/pysqlite.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ pysqlite is an interface to the SQLite 3.x embedded relational database engine. version | versionsuffix | toolchain --------|---------------|---------- ``2.8.2`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pysteps.md b/docs/version-specific/supported-software/p/pysteps.md index 170c6dde4..bc9bf2137 100644 --- a/docs/version-specific/supported-software/p/pysteps.md +++ b/docs/version-specific/supported-software/p/pysteps.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Pysteps is an open-source and community-driven Python library for probabilistic version | toolchain --------|---------- ``1.7.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pystran.md b/docs/version-specific/supported-software/p/pystran.md index bfaa914c0..662956d17 100644 --- a/docs/version-specific/supported-software/p/pystran.md +++ b/docs/version-specific/supported-software/p/pystran.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pystran Toolset of dynamical model STRucture ANalysis algorithms @@ -7,3 +11,6 @@ Toolset of dynamical model STRucture ANalysis algorithms version | versionsuffix | toolchain --------|---------------|---------- ``2017.04.20`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytesseract.md b/docs/version-specific/supported-software/p/pytesseract.md index 7eee1b310..9d8863735 100644 --- a/docs/version-specific/supported-software/p/pytesseract.md +++ b/docs/version-specific/supported-software/p/pytesseract.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Python-tesseract is an optical character recognition (OCR) tool for python. That version | toolchain --------|---------- ``0.3.10`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-benchmark.md b/docs/version-specific/supported-software/p/pytest-benchmark.md index 2e951389c..40ade228e 100644 --- a/docs/version-specific/supported-software/p/pytest-benchmark.md +++ b/docs/version-specific/supported-software/p/pytest-benchmark.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pytest-benchmark A pytest fixture for benchmarking code. @@ -7,3 +11,6 @@ A pytest fixture for benchmarking code. version | toolchain --------|---------- ``3.4.1`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-cpp.md b/docs/version-specific/supported-software/p/pytest-cpp.md index a4b6d8327..d72063ffb 100644 --- a/docs/version-specific/supported-software/p/pytest-cpp.md +++ b/docs/version-specific/supported-software/p/pytest-cpp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pytest-cpp Use pytest runner to discover and execute C++ tests. @@ -7,3 +11,6 @@ Use pytest runner to discover and execute C++ tests. version | toolchain --------|---------- ``2.3.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-flakefinder.md b/docs/version-specific/supported-software/p/pytest-flakefinder.md index 9df32d307..02302fc8c 100644 --- a/docs/version-specific/supported-software/p/pytest-flakefinder.md +++ b/docs/version-specific/supported-software/p/pytest-flakefinder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pytest-flakefinder Runs tests multiple times to expose flakiness. @@ -10,3 +14,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/12.2.0`` ``1.1.0`` | ``GCCcore/12.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-rerunfailures.md b/docs/version-specific/supported-software/p/pytest-rerunfailures.md index 4a7cc2098..0a7f07962 100644 --- a/docs/version-specific/supported-software/p/pytest-rerunfailures.md +++ b/docs/version-specific/supported-software/p/pytest-rerunfailures.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pytest-rerunfailures pytest plugin to re-run tests to eliminate flaky failures. @@ -10,3 +14,6 @@ version | toolchain ``12.0`` | ``GCCcore/12.2.0`` ``12.0`` | ``GCCcore/12.3.0`` ``14.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-shard.md b/docs/version-specific/supported-software/p/pytest-shard.md index 5fe9f31b3..c1ded852a 100644 --- a/docs/version-specific/supported-software/p/pytest-shard.md +++ b/docs/version-specific/supported-software/p/pytest-shard.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | toolchain ``0.1.2`` | ``GCCcore/12.2.0`` ``0.1.2`` | ``GCCcore/12.3.0`` ``0.1.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-workflow.md b/docs/version-specific/supported-software/p/pytest-workflow.md index 72d5b80e3..c86bb1b89 100644 --- a/docs/version-specific/supported-software/p/pytest-workflow.md +++ b/docs/version-specific/supported-software/p/pytest-workflow.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.1`` | ``GCCcore/12.2.0`` ``2.1.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest-xdist.md b/docs/version-specific/supported-software/p/pytest-xdist.md index 21e8c94ef..6d2dd6527 100644 --- a/docs/version-specific/supported-software/p/pytest-xdist.md +++ b/docs/version-specific/supported-software/p/pytest-xdist.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/11.2.0`` ``2.5.0`` | ``GCCcore/11.3.0`` ``3.3.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytest.md b/docs/version-specific/supported-software/p/pytest.md index 8c0d27883..efd3ce552 100644 --- a/docs/version-specific/supported-software/p/pytest.md +++ b/docs/version-specific/supported-software/p/pytest.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pytest pytest: simple powerful testing with Python @@ -27,3 +31,6 @@ version | versionsuffix | toolchain ``7.1.3`` | | ``GCCcore/11.2.0`` ``7.2.2`` | | ``GCCcore/11.2.0`` ``7.4.2`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pythermalcomfort.md b/docs/version-specific/supported-software/p/pythermalcomfort.md index 965f87fff..76285f10e 100644 --- a/docs/version-specific/supported-software/p/pythermalcomfort.md +++ b/docs/version-specific/supported-software/p/pythermalcomfort.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pythermalcomfort Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adaptive) and convert physical variables. @@ -7,3 +11,6 @@ Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adapt version | toolchain --------|---------- ``2.8.10`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-Levenshtein.md b/docs/version-specific/supported-software/p/python-Levenshtein.md index 268c8779c..b7709dc7c 100644 --- a/docs/version-specific/supported-software/p/python-Levenshtein.md +++ b/docs/version-specific/supported-software/p/python-Levenshtein.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-Levenshtein Python extension for computing string edit distances and similarities. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-casacore.md b/docs/version-specific/supported-software/p/python-casacore.md index be900c7b7..6a4a4829c 100644 --- a/docs/version-specific/supported-software/p/python-casacore.md +++ b/docs/version-specific/supported-software/p/python-casacore.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Python-casacore is a set of Python bindings for casacore, a c++ library used in version | toolchain --------|---------- ``3.5.2`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-docx.md b/docs/version-specific/supported-software/p/python-docx.md index 48d677a4c..48e0b3845 100644 --- a/docs/version-specific/supported-software/p/python-docx.md +++ b/docs/version-specific/supported-software/p/python-docx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-docx python-docx is a Python library for creating and updating Microsoft Word (.docx) files @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.8.11`` | ``GCCcore/10.2.0`` ``0.8.11`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-hl7.md b/docs/version-specific/supported-software/p/python-hl7.md index 6090cf931..176eb0db9 100644 --- a/docs/version-specific/supported-software/p/python-hl7.md +++ b/docs/version-specific/supported-software/p/python-hl7.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-hl7 A simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects. @@ -7,3 +11,6 @@ A simple library for parsing messages of Health Level 7 (HL7) version 2.x into P version | versionsuffix | toolchain --------|---------------|---------- ``0.3.4`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-igraph.md b/docs/version-specific/supported-software/p/python-igraph.md index ed7271d28..1a86369bc 100644 --- a/docs/version-specific/supported-software/p/python-igraph.md +++ b/docs/version-specific/supported-software/p/python-igraph.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-igraph Python interface to the igraph high performance graph library, primarily aimed at complex network research and analysis. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``fosscuda/2020b`` ``0.9.6`` | | ``foss/2021a`` ``0.9.8`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-irodsclient.md b/docs/version-specific/supported-software/p/python-irodsclient.md index a18d0d2f7..fe97c8e56 100644 --- a/docs/version-specific/supported-software/p/python-irodsclient.md +++ b/docs/version-specific/supported-software/p/python-irodsclient.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-irodsclient A python API for iRODS @@ -9,3 +13,6 @@ version | toolchain ``1.1.4`` | ``GCCcore/10.3.0`` ``1.1.4`` | ``GCCcore/11.2.0`` ``2.0.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-isal.md b/docs/version-specific/supported-software/p/python-isal.md index c7dc98669..ceaf79dd7 100644 --- a/docs/version-specific/supported-software/p/python-isal.md +++ b/docs/version-specific/supported-software/p/python-isal.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-isal Faster zlib and gzip compatible compression and decompression by providing python bindings for the isa-l library. @@ -13,3 +17,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/12.2.0`` ``1.1.0`` | ``GCCcore/12.3.0`` ``1.6.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-libsbml.md b/docs/version-specific/supported-software/p/python-libsbml.md index b90bdd733..b96e2fd37 100644 --- a/docs/version-specific/supported-software/p/python-libsbml.md +++ b/docs/version-specific/supported-software/p/python-libsbml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-libsbml LibSBML Python API. @@ -9,3 +13,6 @@ version | toolchain ``5.19.7`` | ``foss/2021a`` ``5.20.2`` | ``foss/2021b`` ``5.20.2`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-louvain.md b/docs/version-specific/supported-software/p/python-louvain.md index f2686b144..9d17f92d0 100644 --- a/docs/version-specific/supported-software/p/python-louvain.md +++ b/docs/version-specific/supported-software/p/python-louvain.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-louvain Louvain algorithm for community detection @@ -9,3 +13,6 @@ version | toolchain ``0.15`` | ``foss/2021b`` ``0.16`` | ``foss/2022a`` ``0.16`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-mujoco.md b/docs/version-specific/supported-software/p/python-mujoco.md index 1a055b688..8f1b3a2d2 100644 --- a/docs/version-specific/supported-software/p/python-mujoco.md +++ b/docs/version-specific/supported-software/p/python-mujoco.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.2`` | ``foss/2022a`` ``3.1.4`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-parasail.md b/docs/version-specific/supported-software/p/python-parasail.md index 499c35588..2367c7177 100644 --- a/docs/version-specific/supported-software/p/python-parasail.md +++ b/docs/version-specific/supported-software/p/python-parasail.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-parasail This package contains Python bindings for parasail. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``1.3.3`` | | ``foss/2022a`` ``1.3.4`` | | ``foss/2022b`` ``1.3.4`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-telegram-bot.md b/docs/version-specific/supported-software/p/python-telegram-bot.md index ede0f1c83..fd31b88f4 100644 --- a/docs/version-specific/supported-software/p/python-telegram-bot.md +++ b/docs/version-specific/supported-software/p/python-telegram-bot.md @@ -1,3 +1,7 @@ +--- +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+. @@ -7,3 +11,6 @@ This library provides a pure Python, asynchronous interface for the Telegram Bot version | toolchain --------|---------- ``20.0a0`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-weka-wrapper3.md b/docs/version-specific/supported-software/p/python-weka-wrapper3.md index 49e528132..67e3e82ad 100644 --- a/docs/version-specific/supported-software/p/python-weka-wrapper3.md +++ b/docs/version-specific/supported-software/p/python-weka-wrapper3.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-weka-wrapper3 Python3 wrapper for the Weka Machine Learning Workbench @@ -7,3 +11,6 @@ Python3 wrapper for the Weka Machine Learning Workbench version | versionsuffix | toolchain --------|---------------|---------- ``0.1.11`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/python-xxhash.md b/docs/version-specific/supported-software/p/python-xxhash.md index ab7d34089..5dfaa98dd 100644 --- a/docs/version-specific/supported-software/p/python-xxhash.md +++ b/docs/version-specific/supported-software/p/python-xxhash.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # python-xxhash Python bindings for xxHash. xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit. @@ -11,3 +15,6 @@ version | toolchain ``3.2.0`` | ``GCCcore/12.2.0`` ``3.4.1`` | ``GCCcore/12.3.0`` ``3.4.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pythran.md b/docs/version-specific/supported-software/p/pythran.md index ca5cb92c8..a1a9fe9bb 100644 --- a/docs/version-specific/supported-software/p/pythran.md +++ b/docs/version-specific/supported-software/p/pythran.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Pythran is an ahead of time compiler for a subset of the Python language, with a version | versionsuffix | toolchain --------|---------------|---------- ``0.9.4.post1`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytorch-3dunet.md b/docs/version-specific/supported-software/p/pytorch-3dunet.md index badea745e..ac4098f8d 100644 --- a/docs/version-specific/supported-software/p/pytorch-3dunet.md +++ b/docs/version-specific/supported-software/p/pytorch-3dunet.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ PyTorch implementation of 3D U-Net and its variants: - UNet3D: Standard 3D U-Ne version | versionsuffix | toolchain --------|---------------|---------- ``1.6.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md index f56636747..29404684b 100644 --- a/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md +++ b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # pytorch-CycleGAN-pix2pix PyTorch implementations for both unpaired and paired image-to-image translation. @@ -7,3 +11,6 @@ PyTorch implementations for both unpaired and paired image-to-image translation. version | versionsuffix | toolchain --------|---------------|---------- ``20230314`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Q6.md b/docs/version-specific/supported-software/q/Q6.md index 52f0323aa..c09bcb86a 100644 --- a/docs/version-specific/supported-software/q/Q6.md +++ b/docs/version-specific/supported-software/q/Q6.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Q6 EVB, FEP and LIE simulator. @@ -7,3 +11,6 @@ EVB, FEP and LIE simulator. version | toolchain --------|---------- ``20180205`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QCA.md b/docs/version-specific/supported-software/q/QCA.md index 029f429af..b967e2121 100644 --- a/docs/version-specific/supported-software/q/QCA.md +++ b/docs/version-specific/supported-software/q/QCA.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.1.3`` | ``foss/2016b`` ``2.1.3`` | ``intel/2016b`` ``2.3.5`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QCG-PilotJob.md b/docs/version-specific/supported-software/q/QCG-PilotJob.md index 7beb97943..d36ada947 100644 --- a/docs/version-specific/supported-software/q/QCG-PilotJob.md +++ b/docs/version-specific/supported-software/q/QCG-PilotJob.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QCG-PilotJob A python service for easy execution of many tasks inside a single allocation. @@ -10,3 +14,6 @@ version | toolchain ``0.13.1`` | ``foss/2022a`` ``0.13.1`` | ``gfbf/2022b`` ``0.13.1`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QCxMS.md b/docs/version-specific/supported-software/q/QCxMS.md index a37fc7d26..f7f1ecc11 100644 --- a/docs/version-specific/supported-software/q/QCxMS.md +++ b/docs/version-specific/supported-software/q/QCxMS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ QCxMS is a quantum chemical based program to calculate electron ionization (EI) version | toolchain --------|---------- ``5.0.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QD.md b/docs/version-specific/supported-software/q/QD.md index eec5b6425..0d09e035f 100644 --- a/docs/version-specific/supported-software/q/QD.md +++ b/docs/version-specific/supported-software/q/QD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QD QD-Engineering Python Library for CAE @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.9`` | | ``foss/2021a`` ``2.3.17`` | ``-20160110`` | ``NVHPC/21.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QDD.md b/docs/version-specific/supported-software/q/QDD.md index e194db594..de12e94e4 100644 --- a/docs/version-specific/supported-software/q/QDD.md +++ b/docs/version-specific/supported-software/q/QDD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QDD A user-friendly program to select microsatellite markers and design primers from large sequencing projects. @@ -7,3 +11,6 @@ A user-friendly program to select microsatellite markers and design primers fro version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QEMU.md b/docs/version-specific/supported-software/q/QEMU.md index 729090c11..0952766ab 100644 --- a/docs/version-specific/supported-software/q/QEMU.md +++ b/docs/version-specific/supported-software/q/QEMU.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QEMU QEMU is a generic and open source machine emulator and virtualizer. @@ -7,3 +11,6 @@ QEMU is a generic and open source machine emulator and virtualizer. version | toolchain --------|---------- ``2.10.1`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QGIS.md b/docs/version-specific/supported-software/q/QGIS.md index a1e352c71..1487fc0bb 100644 --- a/docs/version-specific/supported-software/q/QGIS.md +++ b/docs/version-specific/supported-software/q/QGIS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QGIS QGIS is a user friendly Open Source Geographic Information System (GIS) @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.18.4`` | ``-Python-2.7.12`` | ``foss/2016b`` ``3.28.1`` | | ``foss/2021b`` ``3.4.12`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QIIME.md b/docs/version-specific/supported-software/q/QIIME.md index e7e689ce8..6e694323e 100644 --- a/docs/version-specific/supported-software/q/QIIME.md +++ b/docs/version-specific/supported-software/q/QIIME.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QIIME QIIME is an open-source bioinformatics pipeline for performing microbiome analysis from raw DNA sequencing data. @@ -7,3 +11,6 @@ QIIME is an open-source bioinformatics pipeline for performing microbiome analys version | toolchain --------|---------- ``1.9.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QIIME2.md b/docs/version-specific/supported-software/q/QIIME2.md index 92b65e2d9..1d9264d16 100644 --- a/docs/version-specific/supported-software/q/QIIME2.md +++ b/docs/version-specific/supported-software/q/QIIME2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QIIME2 QIIME is an open-source bioinformatics pipeline for performing microbiome analysis from raw DNA sequencing data. @@ -17,3 +21,6 @@ version | toolchain ``2022.8`` | ``system`` ``2023.5.1`` | ``foss/2022a`` ``2023.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QJson.md b/docs/version-specific/supported-software/q/QJson.md index bd40d25e6..806eee998 100644 --- a/docs/version-specific/supported-software/q/QJson.md +++ b/docs/version-specific/supported-software/q/QJson.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QJson QJson is a Qt-based library that maps JSON data to QVariant objects and vice versa. @@ -10,3 +14,6 @@ version | toolchain ``0.9.0`` | ``GCCcore/8.2.0`` ``0.9.0`` | ``foss/2016b`` ``0.9.0`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QML.md b/docs/version-specific/supported-software/q/QML.md index f3d022984..00b37e55a 100644 --- a/docs/version-specific/supported-software/q/QML.md +++ b/docs/version-specific/supported-software/q/QML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QML QML is a Python2/3-compatible toolkit for representation learning of properties of molecules and solids. @@ -7,3 +11,6 @@ QML is a Python2/3-compatible toolkit for representation learning of properties version | versionsuffix | toolchain --------|---------------|---------- ``0.2.10`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QScintilla.md b/docs/version-specific/supported-software/q/QScintilla.md index ad72b82f9..37436dd38 100644 --- a/docs/version-specific/supported-software/q/QScintilla.md +++ b/docs/version-specific/supported-software/q/QScintilla.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QScintilla QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QTLtools.md b/docs/version-specific/supported-software/q/QTLtools.md index ad7417ba7..2fc2f4f59 100644 --- a/docs/version-specific/supported-software/q/QTLtools.md +++ b/docs/version-specific/supported-software/q/QTLtools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``intel/2016b`` ``1.3.1`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QUAST.md b/docs/version-specific/supported-software/q/QUAST.md index b62521661..197278a75 100644 --- a/docs/version-specific/supported-software/q/QUAST.md +++ b/docs/version-specific/supported-software/q/QUAST.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``5.0.2`` | | ``foss/2021a`` ``5.0.2`` | | ``foss/2021b`` ``5.2.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qhull.md b/docs/version-specific/supported-software/q/Qhull.md index de79a370a..19e7acf2e 100644 --- a/docs/version-specific/supported-software/q/Qhull.md +++ b/docs/version-specific/supported-software/q/Qhull.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | toolchain ``2020.2`` | ``GCCcore/12.2.0`` ``2020.2`` | ``GCCcore/12.3.0`` ``2020.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qiskit.md b/docs/version-specific/supported-software/q/Qiskit.md index 307bee345..ea6a7061e 100644 --- a/docs/version-specific/supported-software/q/Qiskit.md +++ b/docs/version-specific/supported-software/q/Qiskit.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qt.md b/docs/version-specific/supported-software/q/Qt.md index f16e1d635..4822c4d13 100644 --- a/docs/version-specific/supported-software/q/Qt.md +++ b/docs/version-specific/supported-software/q/Qt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Qt Qt is a comprehensive cross-platform C++ application framework. @@ -24,3 +28,6 @@ version | versionsuffix | toolchain ``4.8.7`` | | ``intel/2017a`` ``4.8.7`` | | ``intel/2017b`` ``4.8.7`` | | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qt5.md b/docs/version-specific/supported-software/q/Qt5.md index 728d06aad..33b123af7 100644 --- a/docs/version-specific/supported-software/q/Qt5.md +++ b/docs/version-specific/supported-software/q/Qt5.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Qt5 Qt is a comprehensive cross-platform C++ application framework. @@ -36,3 +40,6 @@ version | toolchain ``5.8.0`` | ``intel/2017b`` ``5.9.3`` | ``foss/2017b`` ``5.9.8`` | ``fosscuda/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qt5Webkit.md b/docs/version-specific/supported-software/q/Qt5Webkit.md index cd206a847..717bb5695 100644 --- a/docs/version-specific/supported-software/q/Qt5Webkit.md +++ b/docs/version-specific/supported-software/q/Qt5Webkit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Qt5Webkit Qt Port of WebKit. WebKit is an open source web browser engine. @@ -10,3 +14,6 @@ version | toolchain ``5.212.0-alpha4`` | ``GCCcore/10.2.0`` ``5.212.0-alpha4`` | ``GCCcore/11.2.0`` ``5.212.0-alpha4`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qt6.md b/docs/version-specific/supported-software/q/Qt6.md index 7202a5614..148faab62 100644 --- a/docs/version-specific/supported-software/q/Qt6.md +++ b/docs/version-specific/supported-software/q/Qt6.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Qt6 Qt is a comprehensive cross-platform C++ application framework. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.5.2`` | ``GCCcore/12.3.0`` ``6.6.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QtKeychain.md b/docs/version-specific/supported-software/q/QtKeychain.md index 95d6c9379..3eedf9489 100644 --- a/docs/version-specific/supported-software/q/QtKeychain.md +++ b/docs/version-specific/supported-software/q/QtKeychain.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QtKeychain Platform-independent Qt API for storing passwords securely. @@ -9,3 +13,6 @@ version | toolchain ``0.13.2`` | ``GCCcore/11.2.0`` ``0.9.1`` | ``GCCcore/8.2.0`` ``0.9.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QtPy.md b/docs/version-specific/supported-software/q/QtPy.md index 606e92ffd..895e3c190 100644 --- a/docs/version-specific/supported-software/q/QtPy.md +++ b/docs/version-specific/supported-software/q/QtPy.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``2.2.1`` | | ``GCCcore/11.2.0`` ``2.3.0`` | | ``GCCcore/11.3.0`` ``2.4.1`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qtconsole.md b/docs/version-specific/supported-software/q/Qtconsole.md index 7862113df..5040faf83 100644 --- a/docs/version-specific/supported-software/q/Qtconsole.md +++ b/docs/version-specific/supported-software/q/Qtconsole.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``5.3.2`` | | ``GCCcore/11.2.0`` ``5.4.0`` | | ``GCCcore/11.3.0`` ``5.5.1`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuPath.md b/docs/version-specific/supported-software/q/QuPath.md index 6668f305e..a70a33de7 100644 --- a/docs/version-specific/supported-software/q/QuPath.md +++ b/docs/version-specific/supported-software/q/QuPath.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ QuPath is open source software for bioimage analysis. QuPath is often used for d version | versionsuffix | toolchain --------|---------------|---------- ``0.5.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuTiP.md b/docs/version-specific/supported-software/q/QuTiP.md index 2e1754640..a98d2f74a 100644 --- a/docs/version-specific/supported-software/q/QuTiP.md +++ b/docs/version-specific/supported-software/q/QuTiP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QuTiP QuTiP is open-source software for simulating the dynamics of open quantum systems. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuaZIP.md b/docs/version-specific/supported-software/q/QuaZIP.md index e16371c4b..52074cde7 100644 --- a/docs/version-specific/supported-software/q/QuaZIP.md +++ b/docs/version-specific/supported-software/q/QuaZIP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QuaZIP QuaZIP is the C++ wrapper for Gilles Vollant's ZIP/UNZIP package (AKA Minizip) using Trolltech's Qt library. @@ -7,3 +11,6 @@ QuaZIP is the C++ wrapper for Gilles Vollant's ZIP/UNZIP package (AKA Minizip) version | toolchain --------|---------- ``0.8.1`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qualimap.md b/docs/version-specific/supported-software/q/Qualimap.md index 1a021223a..a167b5f35 100644 --- a/docs/version-specific/supported-software/q/Qualimap.md +++ b/docs/version-specific/supported-software/q/Qualimap.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Quandl.md b/docs/version-specific/supported-software/q/Quandl.md index e019c3699..5c88d0d02 100644 --- a/docs/version-specific/supported-software/q/Quandl.md +++ b/docs/version-specific/supported-software/q/Quandl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Quandl A Python library for Quandl’s RESTful API. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.4.8`` | | ``foss/2019a`` ``3.6.1`` | | ``foss/2020b`` ``3.6.1`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuantumESPRESSO.md b/docs/version-specific/supported-software/q/QuantumESPRESSO.md index 6eeac3fac..6f1713002 100644 --- a/docs/version-specific/supported-software/q/QuantumESPRESSO.md +++ b/docs/version-specific/supported-software/q/QuantumESPRESSO.md @@ -1,3 +1,7 @@ +--- +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). @@ -41,3 +45,6 @@ version | versionsuffix | toolchain ``7.2`` | | ``intel/2022b`` ``7.3`` | | ``foss/2023a`` ``7.3`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuickFF.md b/docs/version-specific/supported-software/q/QuickFF.md index 038155bf4..dcc276123 100644 --- a/docs/version-specific/supported-software/q/QuickFF.md +++ b/docs/version-specific/supported-software/q/QuickFF.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2.2.4`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.2.7`` | | ``foss/2023a`` ``2.2.7`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuickPIC.md b/docs/version-specific/supported-software/q/QuickPIC.md index a658b7fcc..3e486cc49 100644 --- a/docs/version-specific/supported-software/q/QuickPIC.md +++ b/docs/version-specific/supported-software/q/QuickPIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ QuickPIC is a 3D parallel (MPI & OpenMP Hybrid) Quasi-Static PIC code, which is version | toolchain --------|---------- ``20210224`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QuickTree.md b/docs/version-specific/supported-software/q/QuickTree.md index ee82c68f8..8a399f279 100644 --- a/docs/version-specific/supported-software/q/QuickTree.md +++ b/docs/version-specific/supported-software/q/QuickTree.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ QuickTree is an efficient implementation of the Neighbor-Joining algorithm (PMID version | toolchain --------|---------- ``2.5`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Quip.md b/docs/version-specific/supported-software/q/Quip.md index 6eb6b023a..2968f12c9 100644 --- a/docs/version-specific/supported-software/q/Quip.md +++ b/docs/version-specific/supported-software/q/Quip.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Quip compresses next-generation sequencing data with extreme prejudice. It supp version | toolchain --------|---------- ``1.1.8`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Quorum.md b/docs/version-specific/supported-software/q/Quorum.md index c93c934f8..4171c4f30 100644 --- a/docs/version-specific/supported-software/q/Quorum.md +++ b/docs/version-specific/supported-software/q/Quorum.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Quorum QuorUM is an error corrector for Illumina reads @@ -7,3 +11,6 @@ QuorUM is an error corrector for Illumina reads version | toolchain --------|---------- ``1.1.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/Qwt.md b/docs/version-specific/supported-software/q/Qwt.md index 94d4a23ca..42cde025f 100644 --- a/docs/version-specific/supported-software/q/Qwt.md +++ b/docs/version-specific/supported-software/q/Qwt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Qwt The Qwt library contains GUI Components and utility classes which are primarily useful for programs with a technical background. @@ -17,3 +21,6 @@ version | toolchain ``6.2.0`` | ``GCCcore/10.3.0`` ``6.2.0`` | ``GCCcore/11.2.0`` ``6.2.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/QwtPolar.md b/docs/version-specific/supported-software/q/QwtPolar.md index 0b12aff53..ced60fd34 100644 --- a/docs/version-specific/supported-software/q/QwtPolar.md +++ b/docs/version-specific/supported-software/q/QwtPolar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # QwtPolar The QwtPolar library contains classes for displaying values on a polar coordinate system. @@ -10,3 +14,6 @@ version | toolchain ``1.1.1`` | ``GCCcore/8.2.0`` ``1.1.1`` | ``foss/2016b`` ``1.1.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/index.md b/docs/version-specific/supported-software/q/index.md index 93379a4e7..fe52dfaa7 100644 --- a/docs/version-specific/supported-software/q/index.md +++ b/docs/version-specific/supported-software/q/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (q) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - *q* - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [q2-krona](q2-krona.md) * [Q6](Q6.md) * [QCA](QCA.md) diff --git a/docs/version-specific/supported-software/q/q2-krona.md b/docs/version-specific/supported-software/q/q2-krona.md index 8180298d3..03f9df289 100644 --- a/docs/version-specific/supported-software/q/q2-krona.md +++ b/docs/version-specific/supported-software/q/q2-krona.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # q2-krona QIIME2 plugin for creating Krona plots @@ -7,3 +11,6 @@ QIIME2 plugin for creating Krona plots version | toolchain --------|---------- ``20220124`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qcat.md b/docs/version-specific/supported-software/q/qcat.md index 66a0d4a2c..6b0df4e7d 100644 --- a/docs/version-specific/supported-software/q/qcat.md +++ b/docs/version-specific/supported-software/q/qcat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # qcat qcat is a Python command-line tool for demultiplexing Oxford Nanopore reads from FASTQ files @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.1.0`` | | ``foss/2022b`` ``1.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qcint.md b/docs/version-specific/supported-software/q/qcint.md index 258c38139..ec89f21d7 100644 --- a/docs/version-specific/supported-software/q/qcint.md +++ b/docs/version-specific/supported-software/q/qcint.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ libcint is an open source library for analytical Gaussian integrals. qcint is an version | toolchain --------|---------- ``3.0.18`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qforce.md b/docs/version-specific/supported-software/q/qforce.md index 0e81fe1b8..90c3d0d4b 100644 --- a/docs/version-specific/supported-software/q/qforce.md +++ b/docs/version-specific/supported-software/q/qforce.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Quantum Mechanically augmented molecular force fields. Q-Force is a software pac version | toolchain --------|---------- ``0.6.11`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qmflows.md b/docs/version-specific/supported-software/q/qmflows.md index 29570787e..b61f9d2b6 100644 --- a/docs/version-specific/supported-software/q/qmflows.md +++ b/docs/version-specific/supported-software/q/qmflows.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This library tackles the construction and efficient execution of computational version | toolchain --------|---------- ``1.0.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qnorm.md b/docs/version-specific/supported-software/q/qnorm.md index 558ee4603..ce458db6c 100644 --- a/docs/version-specific/supported-software/q/qnorm.md +++ b/docs/version-specific/supported-software/q/qnorm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # qnorm Fast-ish (and correct!) quantile normalization in Python @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.8.1`` | ``foss/2022a`` ``0.8.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qpth.md b/docs/version-specific/supported-software/q/qpth.md index ecbe756e6..489b4ccc0 100644 --- a/docs/version-specific/supported-software/q/qpth.md +++ b/docs/version-specific/supported-software/q/qpth.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # qpth A fast and differentiable QP solver for PyTorch. @@ -7,3 +11,6 @@ A fast and differentiable QP solver for PyTorch. version | versionsuffix | toolchain --------|---------------|---------- ``0.0.13-20190626`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qrupdate.md b/docs/version-specific/supported-software/q/qrupdate.md index 7df560196..ed6d41519 100644 --- a/docs/version-specific/supported-software/q/qrupdate.md +++ b/docs/version-specific/supported-software/q/qrupdate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # qrupdate qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. @@ -19,3 +23,6 @@ version | toolchain ``1.1.2`` | ``intel/2016a`` ``1.1.2`` | ``intel/2016b`` ``1.1.2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/q/qtop.md b/docs/version-specific/supported-software/q/qtop.md index 767e7e62b..960ba5527 100644 --- a/docs/version-specific/supported-software/q/qtop.md +++ b/docs/version-specific/supported-software/q/qtop.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ qtop is a nifty command-line tool for monitoring queueing systems, esp. PBS/torq version | versionsuffix | toolchain --------|---------------|---------- ``53`` | ``-1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-INLA.md b/docs/version-specific/supported-software/r/R-INLA.md index 685438850..e4aef9daf 100644 --- a/docs/version-specific/supported-software/r/R-INLA.md +++ b/docs/version-specific/supported-software/r/R-INLA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-INLA R-INLA is a package in R that do approximate Bayesian inference for Latent Gaussian Models. @@ -7,3 +11,6 @@ R-INLA is a package in R that do approximate Bayesian inference for Latent Gauss version | versionsuffix | toolchain --------|---------------|---------- ``21.05.02`` | ``-R-4.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-MXM.md b/docs/version-specific/supported-software/r/R-MXM.md index 43c3c85b1..259dcc9c8 100644 --- a/docs/version-specific/supported-software/r/R-MXM.md +++ b/docs/version-specific/supported-software/r/R-MXM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-MXM MXM: Feature Selection (Including Multiple Solutions) and Bayesian Networks @@ -7,3 +11,6 @@ MXM: Feature Selection (Including Multiple Solutions) and Bayesian Networks version | toolchain --------|---------- ``1.5.5`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md index 216678ca7..1791e4d83 100644 --- a/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md +++ b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-bundle-Bioconductor Bioconductor provides tools for the analysis and coprehension of high-throughput genomic data. @@ -26,3 +30,6 @@ version | versionsuffix | toolchain ``3.7`` | ``-R-3.5.0`` | ``iomkl/2018a`` ``3.8`` | ``-R-3.5.1`` | ``foss/2018b`` ``3.9`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-bundle-CRAN.md b/docs/version-specific/supported-software/r/R-bundle-CRAN.md index ceb4afaee..9d90e1382 100644 --- a/docs/version-specific/supported-software/r/R-bundle-CRAN.md +++ b/docs/version-specific/supported-software/r/R-bundle-CRAN.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-bundle-CRAN Bundle of R packages from CRAN @@ -7,3 +11,6 @@ Bundle of R packages from CRAN version | toolchain --------|---------- ``2023.12`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-keras.md b/docs/version-specific/supported-software/r/R-keras.md index fd8cd73b0..934a75b2d 100644 --- a/docs/version-specific/supported-software/r/R-keras.md +++ b/docs/version-specific/supported-software/r/R-keras.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-keras Interface to 'Keras' , a high-level neural networks 'API'. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-opencv.md b/docs/version-specific/supported-software/r/R-opencv.md index 88223919d..18837c450 100644 --- a/docs/version-specific/supported-software/r/R-opencv.md +++ b/docs/version-specific/supported-software/r/R-opencv.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Experimenting with computer vision and machine learning in R. This package expos version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-tesseract.md b/docs/version-specific/supported-software/r/R-tesseract.md index 899f06b33..e42cf8450 100644 --- a/docs/version-specific/supported-software/r/R-tesseract.md +++ b/docs/version-specific/supported-software/r/R-tesseract.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-tesseract The R extension for using tesseract @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0`` | ``-R-3.5.1`` | ``foss/2018b`` ``5.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R-transport.md b/docs/version-specific/supported-software/r/R-transport.md index 9cf34fb3e..02883f66a 100644 --- a/docs/version-specific/supported-software/r/R-transport.md +++ b/docs/version-specific/supported-software/r/R-transport.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R-transport transport: Computation of Optimal Transport Plans and Wasserstein Distances @@ -7,3 +11,6 @@ transport: Computation of Optimal Transport Plans and Wasserstein Distances version | toolchain --------|---------- ``0.13-0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R.md b/docs/version-specific/supported-software/r/R.md index b9cb1a4ff..4e01675f0 100644 --- a/docs/version-specific/supported-software/r/R.md +++ b/docs/version-specific/supported-software/r/R.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R R is a free software environment for statistical computing and graphics. @@ -53,3 +57,6 @@ version | versionsuffix | toolchain ``4.2.2`` | | ``foss/2022b`` ``4.3.2`` | | ``gfbf/2023a`` ``4.3.3`` | | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/R2jags.md b/docs/version-specific/supported-software/r/R2jags.md index 09f294503..1070f01b9 100644 --- a/docs/version-specific/supported-software/r/R2jags.md +++ b/docs/version-specific/supported-software/r/R2jags.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # R2jags Providing wrapper functions to implement Bayesian analysis in JAGS. @@ -7,3 +11,6 @@ Providing wrapper functions to implement Bayesian analysis in JAGS. version | versionsuffix | toolchain --------|---------------|---------- ``0.7-1`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RAPSearch2.md b/docs/version-specific/supported-software/r/RAPSearch2.md index 8c62c61f9..42f96160b 100644 --- a/docs/version-specific/supported-software/r/RAPSearch2.md +++ b/docs/version-specific/supported-software/r/RAPSearch2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RAPSearch2 RAPSearch stands for Reduced Alphabet based Protein similarity Search @@ -7,3 +11,6 @@ RAPSearch stands for Reduced Alphabet based Protein similarity Search version | toolchain --------|---------- ``2.24`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RASPA2.md b/docs/version-specific/supported-software/r/RASPA2.md index 0cee2e6c4..7b5ae1ac8 100644 --- a/docs/version-specific/supported-software/r/RASPA2.md +++ b/docs/version-specific/supported-software/r/RASPA2.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.0.3`` | ``-Python-2.7.12`` | ``intel/2016b`` ``2.0.41`` | | ``foss/2020b`` ``2.0.47`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RAxML-NG.md b/docs/version-specific/supported-software/r/RAxML-NG.md index 4a995faf0..3dbc36228 100644 --- a/docs/version-specific/supported-software/r/RAxML-NG.md +++ b/docs/version-specific/supported-software/r/RAxML-NG.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``1.1.0`` | ``GCC/11.2.0`` ``1.2.0`` | ``GCC/12.2.0`` ``1.2.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RAxML.md b/docs/version-specific/supported-software/r/RAxML.md index fb10092d4..886710f2c 100644 --- a/docs/version-specific/supported-software/r/RAxML.md +++ b/docs/version-specific/supported-software/r/RAxML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RAxML RAxML search algorithm for maximum likelihood based inference of phylogenetic trees. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``8.2.12`` | ``-hybrid-avx2`` | ``intel/2019a`` ``8.2.4`` | ``-hybrid-avx2`` | ``foss/2016a`` ``8.2.9`` | ``-hybrid-avx2`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RBFOpt.md b/docs/version-specific/supported-software/r/RBFOpt.md index 8e8a6beef..6e7abd1c8 100644 --- a/docs/version-specific/supported-software/r/RBFOpt.md +++ b/docs/version-specific/supported-software/r/RBFOpt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RBFOpt RBFOpt is a Python library for black-box optimization (also known as derivative-free optimization). @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``4.1.1`` | | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RCall.md b/docs/version-specific/supported-software/r/RCall.md index 61b82718c..7af9de68e 100644 --- a/docs/version-specific/supported-software/r/RCall.md +++ b/docs/version-specific/supported-software/r/RCall.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This package facilitates communication between R and Julia and allows the version | versionsuffix | toolchain --------|---------------|---------- ``0.13.17`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RDFlib.md b/docs/version-specific/supported-software/r/RDFlib.md index b719e62ed..a37c64899 100644 --- a/docs/version-specific/supported-software/r/RDFlib.md +++ b/docs/version-specific/supported-software/r/RDFlib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RDFlib RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. @@ -12,3 +16,6 @@ version | toolchain ``6.2.0`` | ``GCCcore/10.3.0`` ``6.2.0`` | ``GCCcore/11.3.0`` ``7.0.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RDKit.md b/docs/version-specific/supported-software/r/RDKit.md index e6ca3220c..0c28ae677 100644 --- a/docs/version-specific/supported-software/r/RDKit.md +++ b/docs/version-specific/supported-software/r/RDKit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RDKit RDKit is a collection of cheminformatics and machine-learning software written in C++ and Python. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2022.03.5`` | | ``foss/2021b`` ``2022.09.4`` | | ``foss/2022a`` ``2023.03.3`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RDP-Classifier.md b/docs/version-specific/supported-software/r/RDP-Classifier.md index 4ced5795d..9f069b748 100644 --- a/docs/version-specific/supported-software/r/RDP-Classifier.md +++ b/docs/version-specific/supported-software/r/RDP-Classifier.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.13`` | ``-Java-11`` | ``system`` ``2.13`` | ``-Java-17`` | ``system`` ``2.7`` | ``-Java-1.7.0_60`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RE2.md b/docs/version-specific/supported-software/r/RE2.md index ec2ba32c6..5fa1b06c0 100644 --- a/docs/version-specific/supported-software/r/RE2.md +++ b/docs/version-specific/supported-software/r/RE2.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``2023-03-01`` | ``GCCcore/12.2.0`` ``2023-08-01`` | ``GCCcore/12.3.0`` ``2024-03-01`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RECON.md b/docs/version-specific/supported-software/r/RECON.md index 223a0741f..99feddd35 100644 --- a/docs/version-specific/supported-software/r/RECON.md +++ b/docs/version-specific/supported-software/r/RECON.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RECON Patched version of RECON to be used with RepeatModeler. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.08`` | ``GCC/10.2.0`` ``1.08`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RELION.md b/docs/version-specific/supported-software/r/RELION.md index eee8be71b..bb2cb4784 100644 --- a/docs/version-specific/supported-software/r/RELION.md +++ b/docs/version-specific/supported-software/r/RELION.md @@ -1,3 +1,7 @@ +--- +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). @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``3.0.4`` | | ``intel/2017b`` ``3.0_beta.2018.08.02`` | | ``fosscuda/2018a`` ``3.0_beta.2018.08.02`` | | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/REMORA.md b/docs/version-specific/supported-software/r/REMORA.md index 5a8b049e6..63491019a 100644 --- a/docs/version-specific/supported-software/r/REMORA.md +++ b/docs/version-specific/supported-software/r/REMORA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # REMORA REsource MOnitoring for Remote Applications @@ -11,3 +15,6 @@ version | toolchain ``1.8.2`` | ``intel/2017a`` ``1.8.2`` | ``intel/2018a`` ``1.8.3`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RERconverge.md b/docs/version-specific/supported-software/r/RERconverge.md index fb9936947..ae35d2ffa 100644 --- a/docs/version-specific/supported-software/r/RERconverge.md +++ b/docs/version-specific/supported-software/r/RERconverge.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-3.4.3`` | ``foss/2017b`` ``0.1.0`` | ``-R-3.4.3`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RFdiffusion.md b/docs/version-specific/supported-software/r/RFdiffusion.md index bf323da5e..1cab66dd4 100644 --- a/docs/version-specific/supported-software/r/RFdiffusion.md +++ b/docs/version-specific/supported-software/r/RFdiffusion.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.1.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RHEIA.md b/docs/version-specific/supported-software/r/RHEIA.md index c7b8e34b5..1c3b38b47 100644 --- a/docs/version-specific/supported-software/r/RHEIA.md +++ b/docs/version-specific/supported-software/r/RHEIA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RHEIA Robust design optimization of renewable Hydrogen and dErIved energy cArrier systems @@ -7,3 +11,6 @@ Robust design optimization of renewable Hydrogen and dErIved energy cArrier syst version | toolchain --------|---------- ``1.1.6`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RInChI.md b/docs/version-specific/supported-software/r/RInChI.md index ef6a39cc6..314daaa1f 100644 --- a/docs/version-specific/supported-software/r/RInChI.md +++ b/docs/version-specific/supported-software/r/RInChI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The reaction IUPAC International Chemical Identifier (RInChI TM) is a non-propri version | versionsuffix | toolchain --------|---------------|---------- ``1.00`` | ``-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RLCard.md b/docs/version-specific/supported-software/r/RLCard.md index 2ecbb2098..069bed98e 100644 --- a/docs/version-specific/supported-software/r/RLCard.md +++ b/docs/version-specific/supported-software/r/RLCard.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RLCard RLCard is a toolkit for Reinforcement Learning (RL) in card games. @@ -7,3 +11,6 @@ RLCard is a toolkit for Reinforcement Learning (RL) in card games. version | toolchain --------|---------- ``1.0.9`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RMBlast.md b/docs/version-specific/supported-software/r/RMBlast.md index 488c20d0c..bdd6dd97e 100644 --- a/docs/version-specific/supported-software/r/RMBlast.md +++ b/docs/version-specific/supported-software/r/RMBlast.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2.14.0`` | | ``gompi/2021a`` ``2.2.28`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.9.0`` | | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNA-Bloom.md b/docs/version-specific/supported-software/r/RNA-Bloom.md index af573d4ee..7188ab7eb 100644 --- a/docs/version-specific/supported-software/r/RNA-Bloom.md +++ b/docs/version-specific/supported-software/r/RNA-Bloom.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RNA-Bloom RNA-Bloom is a fast and memory-efficient de novo transcript sequence assembler. @@ -9,3 +13,6 @@ version | toolchain ``1.2.3`` | ``GCC/8.3.0`` ``1.4.3`` | ``GCC/11.2.0`` ``2.0.1`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNA-SeQC.md b/docs/version-specific/supported-software/r/RNA-SeQC.md index 96a8a3e5b..aaa4eead7 100644 --- a/docs/version-specific/supported-software/r/RNA-SeQC.md +++ b/docs/version-specific/supported-software/r/RNA-SeQC.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``1.1.8`` | ``-Java-1.8`` | ``foss/2018b`` ``2.4.2`` | | ``foss/2021a`` ``2.4.2`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNAIndel.md b/docs/version-specific/supported-software/r/RNAIndel.md index b3a6be37b..8fd0563b4 100644 --- a/docs/version-specific/supported-software/r/RNAIndel.md +++ b/docs/version-specific/supported-software/r/RNAIndel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RNAIndel RNAIndel calls coding indels and classifies them into somatic, germline, and artifact from tumor RNA-Seq data. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNAclust.md b/docs/version-specific/supported-software/r/RNAclust.md index 88b6d5f20..ee1d98c78 100644 --- a/docs/version-specific/supported-software/r/RNAclust.md +++ b/docs/version-specific/supported-software/r/RNAclust.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3`` | ``-Perl-5.24.0`` | ``foss/2016b`` ``1.3`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNAcode.md b/docs/version-specific/supported-software/r/RNAcode.md index 25a87d2eb..1fc86ed90 100644 --- a/docs/version-specific/supported-software/r/RNAcode.md +++ b/docs/version-specific/supported-software/r/RNAcode.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RNAcode RNAcode - Analyze the protein coding potential in multiple sequence alignments @@ -7,3 +11,6 @@ RNAcode - Analyze the protein coding potential in multiple sequence alignments version | toolchain --------|---------- ``0.3`` | ``foss/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNAmmer.md b/docs/version-specific/supported-software/r/RNAmmer.md index 7ba9948f1..c201cad9f 100644 --- a/docs/version-specific/supported-software/r/RNAmmer.md +++ b/docs/version-specific/supported-software/r/RNAmmer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RNAmmer This is an example description. @@ -7,3 +11,6 @@ This is an example description. version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RNAz.md b/docs/version-specific/supported-software/r/RNAz.md index df1170980..c2952cbb8 100644 --- a/docs/version-specific/supported-software/r/RNAz.md +++ b/docs/version-specific/supported-software/r/RNAz.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RNAz RNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2016b`` ``2.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROCR-Runtime.md b/docs/version-specific/supported-software/r/ROCR-Runtime.md index 3a6d753df..886b4b0fe 100644 --- a/docs/version-specific/supported-software/r/ROCR-Runtime.md +++ b/docs/version-specific/supported-software/r/ROCR-Runtime.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ The user-mode API interfaces and libraries necessary for host applications to la version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md index 9701a8aab..20b1769e1 100644 --- a/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md +++ b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ROCT-Thunk-Interface The user-mode API interfaces used to interact with the ROCk driver @@ -7,3 +11,6 @@ The user-mode API interfaces used to interact with the ROCk driver version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md index 403823dee..e607a185e 100644 --- a/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md +++ b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ROCm-CompilerSupport The compiler support repository provides various Lightning Compiler related services @@ -7,3 +11,6 @@ The compiler support repository provides various Lightning Compiler related serv version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROCm.md b/docs/version-specific/supported-software/r/ROCm.md index abc9772b6..0b8a34b55 100644 --- a/docs/version-specific/supported-software/r/ROCm.md +++ b/docs/version-specific/supported-software/r/ROCm.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ AMD ROCm is the first open-source software development platform for HPC/Hypersca version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROI_PAC.md b/docs/version-specific/supported-software/r/ROI_PAC.md index e93759214..7fc903c40 100644 --- a/docs/version-specific/supported-software/r/ROI_PAC.md +++ b/docs/version-specific/supported-software/r/ROI_PAC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ROI_PAC Repeat Orbit Interferometry PACkage (ROI_PAC), software for processing synthetic aperture radar data to produce differential interferograms @@ -7,3 +11,6 @@ Repeat Orbit Interferometry PACkage (ROI_PAC), software for processing synthetic version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROME.md b/docs/version-specific/supported-software/r/ROME.md index c082b43fd..92f8ecf3e 100644 --- a/docs/version-specific/supported-software/r/ROME.md +++ b/docs/version-specific/supported-software/r/ROME.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The ROME (Refinement and Optimization via Machine Learning for cryo-EM) Softwar version | toolchain --------|---------- ``1.1.2`` | ``intel/2019.02`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ROOT.md b/docs/version-specific/supported-software/r/ROOT.md index 6a9adc1a8..41b787e81 100644 --- a/docs/version-specific/supported-software/r/ROOT.md +++ b/docs/version-specific/supported-software/r/ROOT.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RPostgreSQL.md b/docs/version-specific/supported-software/r/RPostgreSQL.md index 0bf6e49d4..f3c46ff26 100644 --- a/docs/version-specific/supported-software/r/RPostgreSQL.md +++ b/docs/version-specific/supported-software/r/RPostgreSQL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.7-5`` | ``foss/2022a`` ``0.7-6`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RQGIS3.md b/docs/version-specific/supported-software/r/RQGIS3.md index 12fec6d5d..9d3a39545 100644 --- a/docs/version-specific/supported-software/r/RQGIS3.md +++ b/docs/version-specific/supported-software/r/RQGIS3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ RQGIS3 establishes an interface between R and QGIS3, i.e., it allows the user t version | versionsuffix | toolchain --------|---------------|---------- ``20190903`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RSEM.md b/docs/version-specific/supported-software/r/RSEM.md index acd1360ed..396e9e6a1 100644 --- a/docs/version-specific/supported-software/r/RSEM.md +++ b/docs/version-specific/supported-software/r/RSEM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RSEM RNA-Seq by Expectation-Maximization) @@ -18,3 +22,6 @@ version | toolchain ``1.3.3`` | ``foss/2019b`` ``1.3.3`` | ``foss/2021b`` ``1.3.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RSeQC.md b/docs/version-specific/supported-software/r/RSeQC.md index 52ec4f33f..b0b693706 100644 --- a/docs/version-specific/supported-software/r/RSeQC.md +++ b/docs/version-specific/supported-software/r/RSeQC.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``4.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``4.0.0`` | | ``foss/2021a`` ``4.0.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RStan.md b/docs/version-specific/supported-software/r/RStan.md index c3df7c717..5f0e95448 100644 --- a/docs/version-specific/supported-software/r/RStan.md +++ b/docs/version-specific/supported-software/r/RStan.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RStudio-Server.md b/docs/version-specific/supported-software/r/RStudio-Server.md index f4f3d88fb..1cf2ddaed 100644 --- a/docs/version-specific/supported-software/r/RStudio-Server.md +++ b/docs/version-specific/supported-software/r/RStudio-Server.md @@ -1,3 +1,7 @@ +--- +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) @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RTG-Tools.md b/docs/version-specific/supported-software/r/RTG-Tools.md index f4c87da74..131e2f882 100644 --- a/docs/version-specific/supported-software/r/RTG-Tools.md +++ b/docs/version-specific/supported-software/r/RTG-Tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.12.1`` | ``-Java-11`` | ``system`` ``3.9.1`` | ``-Java-1.8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RaGOO.md b/docs/version-specific/supported-software/r/RaGOO.md index c417ab5d9..6ae2a7b2a 100644 --- a/docs/version-specific/supported-software/r/RaGOO.md +++ b/docs/version-specific/supported-software/r/RaGOO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RaGOO A tool to order and orient genome assembly contigs via Minimap2 alignments to a reference genome @@ -7,3 +11,6 @@ A tool to order and orient genome assembly contigs via Minimap2 alignments to a version | versionsuffix | toolchain --------|---------------|---------- ``1.11`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Racon.md b/docs/version-specific/supported-software/r/Racon.md index 561aa65ea..303d23a07 100644 --- a/docs/version-specific/supported-software/r/Racon.md +++ b/docs/version-specific/supported-software/r/Racon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Racon Ultrafast consensus module for raw de novo genome assembly of long uncorrected reads. @@ -18,3 +22,6 @@ version | toolchain ``1.5.0`` | ``GCCcore/11.3.0`` ``1.5.0`` | ``GCCcore/12.2.0`` ``1.5.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RagTag.md b/docs/version-specific/supported-software/r/RagTag.md index abec76212..4210edee0 100644 --- a/docs/version-specific/supported-software/r/RagTag.md +++ b/docs/version-specific/supported-software/r/RagTag.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.1`` | ``foss/2020b`` ``2.1.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Ragout.md b/docs/version-specific/supported-software/r/Ragout.md index b39300203..7678c2416 100644 --- a/docs/version-specific/supported-software/r/Ragout.md +++ b/docs/version-specific/supported-software/r/Ragout.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.3`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RapidJSON.md b/docs/version-specific/supported-software/r/RapidJSON.md index d45ff5db1..b765f28ba 100644 --- a/docs/version-specific/supported-software/r/RapidJSON.md +++ b/docs/version-specific/supported-software/r/RapidJSON.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RapidJSON A fast JSON parser/generator for C++ with both SAX/DOM style API @@ -16,3 +20,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/8.2.0`` ``1.1.0`` | ``GCCcore/8.3.0`` ``1.1.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Raptor.md b/docs/version-specific/supported-software/r/Raptor.md index c190fb1c6..85ad59701 100644 --- a/docs/version-specific/supported-software/r/Raptor.md +++ b/docs/version-specific/supported-software/r/Raptor.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Set of parsers and serializers that generate Resource Description Framework (RDF version | toolchain --------|---------- ``2.0.16`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rascaf.md b/docs/version-specific/supported-software/r/Rascaf.md index 73d3c0718..c2c925b88 100644 --- a/docs/version-specific/supported-software/r/Rascaf.md +++ b/docs/version-specific/supported-software/r/Rascaf.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Rascaf (RnA-seq SCAFfolder) uses continuity and order information from paired-en version | toolchain --------|---------- ``1.0.2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Ratatosk.md b/docs/version-specific/supported-software/r/Ratatosk.md index b81eb8cbf..d73dd5687 100644 --- a/docs/version-specific/supported-software/r/Ratatosk.md +++ b/docs/version-specific/supported-software/r/Ratatosk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ratatosk Phased hybrid error correction of long reads using colored de Bruijn graphs @@ -7,3 +11,6 @@ Phased hybrid error correction of long reads using colored de Bruijn graphs version | toolchain --------|---------- ``0.4`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Raven.md b/docs/version-specific/supported-software/r/Raven.md index ee04efc26..67a237486 100644 --- a/docs/version-specific/supported-software/r/Raven.md +++ b/docs/version-specific/supported-software/r/Raven.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Raven Raven is a de novo genome assembler for long uncorrected reads. @@ -7,3 +11,6 @@ Raven is a de novo genome assembler for long uncorrected reads. version | toolchain --------|---------- ``1.8.1`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Ray-assembler.md b/docs/version-specific/supported-software/r/Ray-assembler.md index eeb767b16..e7e3e4520 100644 --- a/docs/version-specific/supported-software/r/Ray-assembler.md +++ b/docs/version-specific/supported-software/r/Ray-assembler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ray-assembler Parallel genome assemblies for parallel DNA sequencing @@ -7,3 +11,6 @@ Parallel genome assemblies for parallel DNA sequencing version | toolchain --------|---------- ``2.3.1`` | ``iimpi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Ray-project.md b/docs/version-specific/supported-software/r/Ray-project.md index 0e44a2518..2906a154d 100644 --- a/docs/version-specific/supported-software/r/Ray-project.md +++ b/docs/version-specific/supported-software/r/Ray-project.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ray-project Ray is a fast and simple framework for building and running distributed applications. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.13.0`` | | ``foss/2021b`` ``1.9.2`` | | ``foss/2021b`` ``2.2.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Raysect.md b/docs/version-specific/supported-software/r/Raysect.md index 54a1c55d4..b402f5de4 100644 --- a/docs/version-specific/supported-software/r/Raysect.md +++ b/docs/version-specific/supported-software/r/Raysect.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Raysect Raysect is an OOP ray-tracing framework for Python @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.6.0`` | ``-Python-3.6.6`` | ``intel/2018b`` ``0.7.1`` | | ``foss/2020b`` ``0.7.1`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rcorrector.md b/docs/version-specific/supported-software/r/Rcorrector.md index 7a3edfd8c..1b5df6a77 100644 --- a/docs/version-specific/supported-software/r/Rcorrector.md +++ b/docs/version-specific/supported-software/r/Rcorrector.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Rcorrector Rcorrector(RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data. @@ -7,3 +11,6 @@ Rcorrector(RNA-seq error CORRECTOR) is a kmer-based error correction method for version | toolchain --------|---------- ``1.0.2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RcppGSL.md b/docs/version-specific/supported-software/r/RcppGSL.md index 944a12817..9990d39fc 100644 --- a/docs/version-specific/supported-software/r/RcppGSL.md +++ b/docs/version-specific/supported-software/r/RcppGSL.md @@ -1,3 +1,7 @@ +--- +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++. @@ -7,3 +11,6 @@ The 'RcppGSL' package provides an easy-to-use interface between 'GSL' data stru version | versionsuffix | toolchain --------|---------------|---------- ``0.3.8`` | ``-R-4.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ReFrame.md b/docs/version-specific/supported-software/r/ReFrame.md index 75f549c08..a7f992cf1 100644 --- a/docs/version-specific/supported-software/r/ReFrame.md +++ b/docs/version-specific/supported-software/r/ReFrame.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ReFrame ReFrame is a framework for writing regression tests for HPC systems. @@ -33,3 +37,6 @@ version | toolchain ``4.2.0`` | ``system`` ``4.3.2`` | ``system`` ``4.3.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ReMatCh.md b/docs/version-specific/supported-software/r/ReMatCh.md index 3bdc3f715..bb25acdc7 100644 --- a/docs/version-specific/supported-software/r/ReMatCh.md +++ b/docs/version-specific/supported-software/r/ReMatCh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ReMatCh Reads mapping against target sequences, checking mapping and consensus sequences production @@ -7,3 +11,6 @@ Reads mapping against target sequences, checking mapping and consensus sequences version | versionsuffix | toolchain --------|---------------|---------- ``3.2`` | ``-Python-2.7.12`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Reads2snp.md b/docs/version-specific/supported-software/r/Reads2snp.md index a3787850e..0ea614ba5 100644 --- a/docs/version-specific/supported-software/r/Reads2snp.md +++ b/docs/version-specific/supported-software/r/Reads2snp.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ reads2snp is a SNP and genotype caller: it predicts the genotype of distinct ind version | toolchain --------|---------- ``2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Reapr.md b/docs/version-specific/supported-software/r/Reapr.md index b351227c5..624f7b66b 100644 --- a/docs/version-specific/supported-software/r/Reapr.md +++ b/docs/version-specific/supported-software/r/Reapr.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A tool that evaluates the accuracy of a genome assembly using mapped paired end version | toolchain --------|---------- ``1.0.18`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ReaxFF.md b/docs/version-specific/supported-software/r/ReaxFF.md index 41b1e9e94..101d68373 100644 --- a/docs/version-specific/supported-software/r/ReaxFF.md +++ b/docs/version-specific/supported-software/r/ReaxFF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ReaxFF parameter generation code for the REAXFF Reactive force field program @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-param`` | ``GCC/11.3.0`` ``2.0`` | ``-sim`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Red.md b/docs/version-specific/supported-software/r/Red.md index 93fd4ec80..ac251e7a8 100644 --- a/docs/version-specific/supported-software/r/Red.md +++ b/docs/version-specific/supported-software/r/Red.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Red Red (REpeat Detector) @@ -7,3 +11,6 @@ Red (REpeat Detector) version | toolchain --------|---------- ``2015-05-22`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Redis.md b/docs/version-specific/supported-software/r/Redis.md index 6d3775bf9..2754b0290 100644 --- a/docs/version-specific/supported-software/r/Redis.md +++ b/docs/version-specific/supported-software/r/Redis.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``7.0.8`` | ``GCC/11.3.0`` ``7.2.3`` | ``GCCcore/12.3.0`` ``7.2.4`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Redundans.md b/docs/version-specific/supported-software/r/Redundans.md index 8b95f1bb5..b46d5e650 100644 --- a/docs/version-specific/supported-software/r/Redundans.md +++ b/docs/version-specific/supported-software/r/Redundans.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Redundans Redundans is a pipeline that assists an assembly of heterozygous/polymorphic genomes. @@ -7,3 +11,6 @@ Redundans is a pipeline that assists an assembly of heterozygous/polymorphic gen version | toolchain --------|---------- ``0.13c`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RegTools.md b/docs/version-specific/supported-software/r/RegTools.md index 85376259a..465f30c8e 100644 --- a/docs/version-specific/supported-software/r/RegTools.md +++ b/docs/version-specific/supported-software/r/RegTools.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``0.5.2`` | ``foss/2020b`` ``0.5.2`` | ``foss/2021b`` ``1.0.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Relate.md b/docs/version-specific/supported-software/r/Relate.md index 78763e98f..b13dad2e6 100644 --- a/docs/version-specific/supported-software/r/Relate.md +++ b/docs/version-specific/supported-software/r/Relate.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Relate Software for estimating genome-wide genealogies for thousands of samples @@ -7,3 +11,6 @@ Software for estimating genome-wide genealogies for thousands of samples version | versionsuffix | toolchain --------|---------------|---------- ``20211123`` | ``-R-4.0.3`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RepastHPC.md b/docs/version-specific/supported-software/r/RepastHPC.md index 2a1a58d87..03f1f7c24 100644 --- a/docs/version-specific/supported-software/r/RepastHPC.md +++ b/docs/version-specific/supported-software/r/RepastHPC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Repast Suite is a family of advanced, free, and open source agent-based mode version | toolchain --------|---------- ``2.2.0`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RepeatMasker.md b/docs/version-specific/supported-software/r/RepeatMasker.md index abc5d70d5..6d389f6e2 100644 --- a/docs/version-specific/supported-software/r/RepeatMasker.md +++ b/docs/version-specific/supported-software/r/RepeatMasker.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RepeatMasker RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``4.1.4`` | | ``foss/2022a`` ``4.1.5`` | | ``foss/2021a`` ``4.1.5`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RepeatModeler.md b/docs/version-specific/supported-software/r/RepeatModeler.md index a7200013c..eb75cbef8 100644 --- a/docs/version-specific/supported-software/r/RepeatModeler.md +++ b/docs/version-specific/supported-software/r/RepeatModeler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # RepeatModeler RepeatModeler is a de novo transposable element (TE) family identification and modeling package. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.2a`` | ``foss/2020b`` ``2.0.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RepeatScout.md b/docs/version-specific/supported-software/r/RepeatScout.md index 1b3aae1bd..b23a76930 100644 --- a/docs/version-specific/supported-software/r/RepeatScout.md +++ b/docs/version-specific/supported-software/r/RepeatScout.md @@ -1,3 +1,7 @@ +--- +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 ) @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.6`` | ``GCC/10.2.0`` ``1.0.6`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ResistanceGA.md b/docs/version-specific/supported-software/r/ResistanceGA.md index ca86ce88b..488de4102 100644 --- a/docs/version-specific/supported-software/r/ResistanceGA.md +++ b/docs/version-specific/supported-software/r/ResistanceGA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ResistanceGA An R package to optimize resistance surfaces using Genetic Algorithms. @@ -7,3 +11,6 @@ An R package to optimize resistance surfaces using Genetic Algorithms. version | versionsuffix | toolchain --------|---------------|---------- ``4.2-5`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Restrander.md b/docs/version-specific/supported-software/r/Restrander.md index 6d8cecb5d..026e51424 100644 --- a/docs/version-specific/supported-software/r/Restrander.md +++ b/docs/version-specific/supported-software/r/Restrander.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Restrander A fast, accurate program for orienting and quality-checking cDNA sequencing reads. @@ -7,3 +11,6 @@ A fast, accurate program for orienting and quality-checking cDNA sequencing read version | toolchain --------|---------- ``20230713`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RevBayes.md b/docs/version-specific/supported-software/r/RevBayes.md index eb2cba43f..2dae3e69e 100644 --- a/docs/version-specific/supported-software/r/RevBayes.md +++ b/docs/version-specific/supported-software/r/RevBayes.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.1.1`` | ``GCC/10.2.0`` ``1.1.1`` | ``GCC/11.2.0`` ``1.2.1`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rgurobi.md b/docs/version-specific/supported-software/r/Rgurobi.md index 1c6e6a5a9..64d989c67 100644 --- a/docs/version-specific/supported-software/r/Rgurobi.md +++ b/docs/version-specific/supported-software/r/Rgurobi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Rgurobi Gurobi Optimizer 9.1 interface @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.1.2`` | ``-R-4.1.0`` | ``foss/2021a`` ``9.5.0`` | ``-R-4.1.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RheoTool.md b/docs/version-specific/supported-software/r/RheoTool.md index 250089ccf..7332cd0d1 100644 --- a/docs/version-specific/supported-software/r/RheoTool.md +++ b/docs/version-specific/supported-software/r/RheoTool.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ RheoTool is an open-source toolbox based on OpenFOAM to simulate Generalized New version | toolchain --------|---------- ``5.0`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rhodium.md b/docs/version-specific/supported-software/r/Rhodium.md index d27bd5a0b..a6a3502ae 100644 --- a/docs/version-specific/supported-software/r/Rhodium.md +++ b/docs/version-specific/supported-software/r/Rhodium.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Rhodium is an open source Python library for robust decision making (RDM) and m version | toolchain --------|---------- ``1.2.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rivet.md b/docs/version-specific/supported-software/r/Rivet.md index 0499647d0..4ec82f12b 100644 --- a/docs/version-specific/supported-software/r/Rivet.md +++ b/docs/version-specific/supported-software/r/Rivet.md @@ -1,3 +1,7 @@ +--- +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`. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.7`` | ``-HepMC3-3.2.5`` | ``gompi/2022a`` ``3.1.9`` | ``-HepMC3-3.2.6`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rmath.md b/docs/version-specific/supported-software/r/Rmath.md index 7b4e65193..4213e5287 100644 --- a/docs/version-specific/supported-software/r/Rmath.md +++ b/docs/version-specific/supported-software/r/Rmath.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.3.1`` | ``intel/2016b`` ``4.0.4`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/RnBeads.md b/docs/version-specific/supported-software/r/RnBeads.md index f018c2b28..1b76d55ba 100644 --- a/docs/version-specific/supported-software/r/RnBeads.md +++ b/docs/version-specific/supported-software/r/RnBeads.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.14.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``2.6.0`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Roary.md b/docs/version-specific/supported-software/r/Roary.md index bb20b2342..8bcfe3dba 100644 --- a/docs/version-specific/supported-software/r/Roary.md +++ b/docs/version-specific/supported-software/r/Roary.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Roary Rapid large-scale prokaryote pan genome analysis @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``3.13.0`` | | ``foss/2020a`` ``3.13.0`` | | ``foss/2021a`` ``3.13.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rosetta.md b/docs/version-specific/supported-software/r/Rosetta.md index 7128598f5..98ff540ad 100644 --- a/docs/version-specific/supported-software/r/Rosetta.md +++ b/docs/version-specific/supported-software/r/Rosetta.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2016.13.58602`` | ``foss/2016a`` ``2016.46.59086`` | ``foss/2016b`` ``3.7`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rtree.md b/docs/version-specific/supported-software/r/Rtree.md index 14db82440..eba0ba978 100644 --- a/docs/version-specific/supported-software/r/Rtree.md +++ b/docs/version-specific/supported-software/r/Rtree.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Ruby-Tk.md b/docs/version-specific/supported-software/r/Ruby-Tk.md index b4bd94344..7bb4f45f4 100644 --- a/docs/version-specific/supported-software/r/Ruby-Tk.md +++ b/docs/version-specific/supported-software/r/Ruby-Tk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Ruby-Tk Ruby Tk interface module using tcltklib @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``0.2.0`` | ``-Ruby-2.5.1`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Ruby.md b/docs/version-specific/supported-software/r/Ruby.md index 8744202ff..8a9ecb7f2 100644 --- a/docs/version-specific/supported-software/r/Ruby.md +++ b/docs/version-specific/supported-software/r/Ruby.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | toolchain ``3.0.5`` | ``GCCcore/11.3.0`` ``3.2.2`` | ``GCCcore/12.2.0`` ``3.3.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/Rust.md b/docs/version-specific/supported-software/r/Rust.md index 0a7e770a6..8bae1bec6 100644 --- a/docs/version-specific/supported-software/r/Rust.md +++ b/docs/version-specific/supported-software/r/Rust.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Rust Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. @@ -34,3 +38,6 @@ version | toolchain ``1.76.0`` | ``GCCcore/13.2.0`` ``1.78.0`` | ``GCCcore/13.3.0`` ``1.8.0`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/index.md b/docs/version-specific/supported-software/r/index.md index 267ce203c..90d90f8eb 100644 --- a/docs/version-specific/supported-software/r/index.md +++ b/docs/version-specific/supported-software/r/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (r) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - *r* - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [R](R.md) * [R-bundle-Bioconductor](R-bundle-Bioconductor.md) * [R-bundle-CRAN](R-bundle-CRAN.md) diff --git a/docs/version-specific/supported-software/r/rCUDA.md b/docs/version-specific/supported-software/r/rCUDA.md index 880b9137b..c73555bdb 100644 --- a/docs/version-specific/supported-software/r/rCUDA.md +++ b/docs/version-specific/supported-software/r/rCUDA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rCUDA The rCUDA Framework enables the concurrent usage of CUDA-compatible devices remotely. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.1`` | ``_linux_64_Ubuntu10.04`` | ``system`` ``5.0`` | ``_linux_64_scientificLinux6`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rMATS-turbo.md b/docs/version-specific/supported-software/r/rMATS-turbo.md index 4b77cab41..81ae4979c 100644 --- a/docs/version-specific/supported-software/r/rMATS-turbo.md +++ b/docs/version-specific/supported-software/r/rMATS-turbo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rMATS-turbo rMATS turbo is the C/Cython version of rMATS (refer to http://rnaseq-mats.sourceforge.net). @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``4.1.1`` | ``foss/2020b`` ``4.2.0`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/radeontop.md b/docs/version-specific/supported-software/r/radeontop.md index bbcdac4eb..d54daf980 100644 --- a/docs/version-specific/supported-software/r/radeontop.md +++ b/docs/version-specific/supported-software/r/radeontop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # radeontop View your GPU utilization, both for the total activity percent and individual blocks. @@ -7,3 +11,6 @@ View your GPU utilization, both for the total activity percent and individual bl version | toolchain --------|---------- ``1.3`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/radian.md b/docs/version-specific/supported-software/r/radian.md index b10c8bf5c..79f9b5f07 100644 --- a/docs/version-specific/supported-software/r/radian.md +++ b/docs/version-specific/supported-software/r/radian.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # radian radian is an alternative console for the R program with multiline editing and rich syntax highlight. @@ -7,3 +11,6 @@ radian is an alternative console for the R program with multiline editing and ri version | toolchain --------|---------- ``0.6.9`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rampart.md b/docs/version-specific/supported-software/r/rampart.md index e3165fd1e..66a0b6dff 100644 --- a/docs/version-specific/supported-software/r/rampart.md +++ b/docs/version-specific/supported-software/r/rampart.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rampart Read Assignment, Mapping, and Phylogenetic Analysis in Real Time. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | | ``foss/2020b`` ``1.2.0rc3`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/randfold.md b/docs/version-specific/supported-software/r/randfold.md index 8df2ec8bb..e7ff06805 100644 --- a/docs/version-specific/supported-software/r/randfold.md +++ b/docs/version-specific/supported-software/r/randfold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # randfold Minimum free energy of folding randomization test software @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.1`` | ``foss/2018b`` ``2.0.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/randrproto.md b/docs/version-specific/supported-software/r/randrproto.md index 7179a6a93..552193bce 100644 --- a/docs/version-specific/supported-software/r/randrproto.md +++ b/docs/version-specific/supported-software/r/randrproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # randrproto Xrandr protocol and ancillary headers @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2016a`` ``1.5.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rapidNJ.md b/docs/version-specific/supported-software/r/rapidNJ.md index ba404b79a..ae1bcd01b 100644 --- a/docs/version-specific/supported-software/r/rapidNJ.md +++ b/docs/version-specific/supported-software/r/rapidNJ.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ RapidNJ is an algorithmic engineered implementation of canonical neighbour-join version | toolchain --------|---------- ``2.3.3`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rapidcsv.md b/docs/version-specific/supported-software/r/rapidcsv.md index d963828e2..1bd13b5c4 100644 --- a/docs/version-specific/supported-software/r/rapidcsv.md +++ b/docs/version-specific/supported-software/r/rapidcsv.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``8.62`` | ``GCCcore/11.2.0`` ``8.64`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rapidtide.md b/docs/version-specific/supported-software/r/rapidtide.md index 2f0e74100..b0c1fcb17 100644 --- a/docs/version-specific/supported-software/r/rapidtide.md +++ b/docs/version-specific/supported-software/r/rapidtide.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Rapidtide is a suite of python programs used to perform time delay analysis on f version | versionsuffix | toolchain --------|---------------|---------- ``1.8.0`` | ``-Python-3.7.2`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rasterio.md b/docs/version-specific/supported-software/r/rasterio.md index f6e581abb..cca7e2aa6 100644 --- a/docs/version-specific/supported-software/r/rasterio.md +++ b/docs/version-specific/supported-software/r/rasterio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rasterio Rasterio reads and writes geospatial raster data. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.3.4`` | | ``foss/2022a`` ``1.3.8`` | | ``foss/2022b`` ``1.3.9`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rasterstats.md b/docs/version-specific/supported-software/r/rasterstats.md index 6201bedbf..2ebed9d6b 100644 --- a/docs/version-specific/supported-software/r/rasterstats.md +++ b/docs/version-specific/supported-software/r/rasterstats.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rasterstats rasterstats is a Python module for summarizing geospatial raster datasets based on vector geometries. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.15.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.19.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rclone.md b/docs/version-specific/supported-software/r/rclone.md index edef57a45..4a7f6834a 100644 --- a/docs/version-specific/supported-software/r/rclone.md +++ b/docs/version-specific/supported-software/r/rclone.md @@ -1,3 +1,7 @@ +--- +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 @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``1.63.1`` | ``-amd64`` | ``system`` ``1.65.2`` | | ``system`` ``1.66.0`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/re2c.md b/docs/version-specific/supported-software/r/re2c.md index aaeeb7b66..92cc7026a 100644 --- a/docs/version-specific/supported-software/r/re2c.md +++ b/docs/version-specific/supported-software/r/re2c.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``3.0`` | ``GCCcore/12.2.0`` ``3.1`` | ``GCCcore/12.3.0`` ``3.1`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/redis-py.md b/docs/version-specific/supported-software/r/redis-py.md index 0af6b9dab..af47ff7cd 100644 --- a/docs/version-specific/supported-software/r/redis-py.md +++ b/docs/version-specific/supported-software/r/redis-py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # redis-py The Python interface to the Redis key-value store. @@ -10,3 +14,6 @@ version | toolchain ``4.3.3`` | ``foss/2021b`` ``4.5.1`` | ``foss/2022a`` ``5.0.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/regionmask.md b/docs/version-specific/supported-software/r/regionmask.md index 641184936..b4aa143ca 100644 --- a/docs/version-specific/supported-software/r/regionmask.md +++ b/docs/version-specific/supported-software/r/regionmask.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # regionmask regionmask creates masks of geographical regions. It determines to which geographic region each grid point belongs. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.9.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.9.0`` | | ``foss/2021b`` ``0.9.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/remake.md b/docs/version-specific/supported-software/r/remake.md index 785a8359e..122c033c2 100644 --- a/docs/version-specific/supported-software/r/remake.md +++ b/docs/version-specific/supported-software/r/remake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # remake remake is an enhanced version of GNU Make that adds improved error reporting, better tracing, profiling and a debugger @@ -7,3 +11,6 @@ remake is an enhanced version of GNU Make that adds improved error reporting, be version | toolchain --------|---------- ``4.3+dbg-1.6`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/renderproto.md b/docs/version-specific/supported-software/r/renderproto.md index 0a64fa9d5..5291f6b93 100644 --- a/docs/version-specific/supported-software/r/renderproto.md +++ b/docs/version-specific/supported-software/r/renderproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # renderproto Xrender protocol and ancillary headers @@ -10,3 +14,6 @@ version | toolchain ``0.11`` | ``gimkl/2.11.5`` ``0.11`` | ``intel/2016a`` ``0.11`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/request.md b/docs/version-specific/supported-software/r/request.md index 047f0a20e..d3a07140d 100644 --- a/docs/version-specific/supported-software/r/request.md +++ b/docs/version-specific/supported-software/r/request.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Request is designed to be the simplest way possible to make http calls. It version | versionsuffix | toolchain --------|---------------|---------- ``2.88.1`` | ``-nodejs-12.19.0`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/requests.md b/docs/version-specific/supported-software/r/requests.md index 461749d3b..f276b998c 100644 --- a/docs/version-specific/supported-software/r/requests.md +++ b/docs/version-specific/supported-software/r/requests.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # requests Python http for humans @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/resolos.md b/docs/version-specific/supported-software/r/resolos.md index dfdb2354e..47af01acc 100644 --- a/docs/version-specific/supported-software/r/resolos.md +++ b/docs/version-specific/supported-software/r/resolos.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Resolos is a toolkit written in Python for maintaining reproducible environments version | toolchain --------|---------- ``0.3.5`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rethinking.md b/docs/version-specific/supported-software/r/rethinking.md index 405ab8f59..6397c4189 100644 --- a/docs/version-specific/supported-software/r/rethinking.md +++ b/docs/version-specific/supported-software/r/rethinking.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ R package that contains tools for conducting both quick quadratic approximation version | versionsuffix | toolchain --------|---------------|---------- ``2.40-20230914`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/retworkx.md b/docs/version-specific/supported-software/r/retworkx.md index 3731350c3..781ec9b16 100644 --- a/docs/version-specific/supported-software/r/retworkx.md +++ b/docs/version-specific/supported-software/r/retworkx.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ retworkx is a general purpose graph library for python3 written in Rust to take version | toolchain --------|---------- ``0.9.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rgdal.md b/docs/version-specific/supported-software/r/rgdal.md index 80d856564..c2da33dd5 100644 --- a/docs/version-specific/supported-software/r/rgdal.md +++ b/docs/version-specific/supported-software/r/rgdal.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``1.5-23`` | ``-R-4.0.4`` | ``foss/2020b`` ``1.5-23`` | ``-R-4.1.0`` | ``foss/2021a`` ``1.6-6`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rgeos.md b/docs/version-specific/supported-software/r/rgeos.md index 44a86b7d4..06346d858 100644 --- a/docs/version-specific/supported-software/r/rgeos.md +++ b/docs/version-specific/supported-software/r/rgeos.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rgeos R interface to Geometry Engine - Open Source (GEOS) using the C API for topology operations on geometries @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rhdf5.md b/docs/version-specific/supported-software/r/rhdf5.md index 9c40f299a..9d5a8651c 100644 --- a/docs/version-specific/supported-software/r/rhdf5.md +++ b/docs/version-specific/supported-software/r/rhdf5.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rhdf5 This R/Bioconductor package provides an interface between HDF5 and R. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.16.0`` | ``-R-3.2.3`` | ``intel/2016a`` ``2.18.0`` | ``-R-3.3.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rickflow.md b/docs/version-specific/supported-software/r/rickflow.md index c9c58e122..cf7485f40 100644 --- a/docs/version-specific/supported-software/r/rickflow.md +++ b/docs/version-specific/supported-software/r/rickflow.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rickflow Running and Analyzing OpenMM Jobs @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0-20200529`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rioxarray.md b/docs/version-specific/supported-software/r/rioxarray.md index 09617817e..e360e6170 100644 --- a/docs/version-specific/supported-software/r/rioxarray.md +++ b/docs/version-specific/supported-software/r/rioxarray.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rioxarray geospatial xarray extension powered by rasterio @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``0.11.1`` | | ``foss/2021b`` ``0.14.0`` | | ``foss/2022a`` ``0.15.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ripunzip.md b/docs/version-specific/supported-software/r/ripunzip.md index e62c23df1..a1c14206a 100644 --- a/docs/version-specific/supported-software/r/ripunzip.md +++ b/docs/version-specific/supported-software/r/ripunzip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ripunzip A tool to unzip files in parallel. @@ -7,3 +11,6 @@ A tool to unzip files in parallel. version | toolchain --------|---------- ``0.4.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rising.md b/docs/version-specific/supported-software/r/rising.md index 32f5a97e7..1fd7b60fe 100644 --- a/docs/version-specific/supported-software/r/rising.md +++ b/docs/version-specific/supported-software/r/rising.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rising Provides everything needed for high performance data loading and augmentation in PyTorch. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.2.2`` | | ``foss/2021a`` ``0.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rjags.md b/docs/version-specific/supported-software/r/rjags.md index 46c9fd7f5..0f0bfc058 100644 --- a/docs/version-specific/supported-software/r/rjags.md +++ b/docs/version-specific/supported-software/r/rjags.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rjags The rjags package is an interface to the JAGS library. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``4-6`` | ``-R-3.4.3`` | ``intel/2017b`` ``4-8`` | ``-R-3.5.1`` | ``foss/2018b`` ``4-9`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rmarkdown.md b/docs/version-specific/supported-software/r/rmarkdown.md index d484de9bf..49a6d8540 100644 --- a/docs/version-specific/supported-software/r/rmarkdown.md +++ b/docs/version-specific/supported-software/r/rmarkdown.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rmarkdown Convert R Markdown documents into a variety of formats. @@ -7,3 +11,6 @@ Convert R Markdown documents into a variety of formats. version | versionsuffix | toolchain --------|---------------|---------- ``2.20`` | ``-R-4.1.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rnaQUAST.md b/docs/version-specific/supported-software/r/rnaQUAST.md index 787fbda7c..b13a9b841 100644 --- a/docs/version-specific/supported-software/r/rnaQUAST.md +++ b/docs/version-specific/supported-software/r/rnaQUAST.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rocm-cmake.md b/docs/version-specific/supported-software/r/rocm-cmake.md index 97405d880..f3603c209 100644 --- a/docs/version-specific/supported-software/r/rocm-cmake.md +++ b/docs/version-specific/supported-software/r/rocm-cmake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rocm-cmake ROCM cmake modules provides cmake modules for common build tasks needed for the ROCM software stack @@ -7,3 +11,6 @@ ROCM cmake modules provides cmake modules for common build tasks needed for the version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rocm-smi.md b/docs/version-specific/supported-software/r/rocm-smi.md index 3461789b3..23bcf9d1a 100644 --- a/docs/version-specific/supported-software/r/rocm-smi.md +++ b/docs/version-specific/supported-software/r/rocm-smi.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``4.5.0`` | ``GCCcore/11.2.0`` ``5.4.4`` | ``GCCcore/11.3.0`` ``5.6.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rocminfo.md b/docs/version-specific/supported-software/r/rocminfo.md index f1f81bb03..0796c8283 100644 --- a/docs/version-specific/supported-software/r/rocminfo.md +++ b/docs/version-specific/supported-software/r/rocminfo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # rocminfo ROCm Application for Reporting System Info @@ -7,3 +11,6 @@ ROCm Application for Reporting System Info version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/root_numpy.md b/docs/version-specific/supported-software/r/root_numpy.md index 585ac3717..90984977d 100644 --- a/docs/version-specific/supported-software/r/root_numpy.md +++ b/docs/version-specific/supported-software/r/root_numpy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ root_numpy is a Python extension module that provides an efficient interface bet version | versionsuffix | toolchain --------|---------------|---------- ``4.8.0`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rootpy.md b/docs/version-specific/supported-software/r/rootpy.md index 904e2862e..b3161c850 100644 --- a/docs/version-specific/supported-software/r/rootpy.md +++ b/docs/version-specific/supported-software/r/rootpy.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.0`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rpmrebuild.md b/docs/version-specific/supported-software/r/rpmrebuild.md index 2be619a10..43084f97e 100644 --- a/docs/version-specific/supported-software/r/rpmrebuild.md +++ b/docs/version-specific/supported-software/r/rpmrebuild.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ rpmrebuild is a tool to build an RPM file from a package that has already been version | toolchain --------|---------- ``2.11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rpy2.md b/docs/version-specific/supported-software/r/rpy2.md index 29aaf7894..87e214e67 100644 --- a/docs/version-specific/supported-software/r/rpy2.md +++ b/docs/version-specific/supported-software/r/rpy2.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``3.4.5`` | | ``foss/2021a`` ``3.4.5`` | | ``foss/2021b`` ``3.5.15`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rstanarm.md b/docs/version-specific/supported-software/r/rstanarm.md index 5d348bdb3..cafc69ecd 100644 --- a/docs/version-specific/supported-software/r/rstanarm.md +++ b/docs/version-specific/supported-software/r/rstanarm.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Estimates previously compiled regression models using the 'rstan' package, which version | versionsuffix | toolchain --------|---------------|---------- ``2.19.3`` | ``-R-3.6.2`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ruamel.yaml.md b/docs/version-specific/supported-software/r/ruamel.yaml.md index fa92ce87f..69e53ebe8 100644 --- a/docs/version-specific/supported-software/r/ruamel.yaml.md +++ b/docs/version-specific/supported-software/r/ruamel.yaml.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ruamel.yaml ruamel.yaml is a YAML 1.2 loader/dumper package for Python. @@ -12,3 +16,6 @@ version | toolchain ``0.17.21`` | ``GCCcore/12.2.0`` ``0.17.32`` | ``GCCcore/12.3.0`` ``0.18.6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ruffus.md b/docs/version-specific/supported-software/r/ruffus.md index f26e18cb4..8dd944de9 100644 --- a/docs/version-specific/supported-software/r/ruffus.md +++ b/docs/version-specific/supported-software/r/ruffus.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.8.4`` | ``GCCcore/11.3.0`` ``2.8.4`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/ruptures.md b/docs/version-specific/supported-software/r/ruptures.md index 5b6ae5320..bfb906db3 100644 --- a/docs/version-specific/supported-software/r/ruptures.md +++ b/docs/version-specific/supported-software/r/ruptures.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ruptures is a Python library for off-line change point detection. This package p version | toolchain --------|---------- ``1.1.8`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/r/rustworkx.md b/docs/version-specific/supported-software/r/rustworkx.md index 4acb9fecd..a5bbadf8c 100644 --- a/docs/version-specific/supported-software/r/rustworkx.md +++ b/docs/version-specific/supported-software/r/rustworkx.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ rustworkx (previously retworkx) is a general purpose graph library for Python wr version | toolchain --------|---------- ``0.12.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/S-Lang.md b/docs/version-specific/supported-software/s/S-Lang.md index 1747c1287..0240a3e9e 100644 --- a/docs/version-specific/supported-software/s/S-Lang.md +++ b/docs/version-specific/supported-software/s/S-Lang.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ S-Lang is a multi-platform programmer's library designed to allow a developer t version | toolchain --------|---------- ``2.3.0`` | ``GCC/4.9.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/S4.md b/docs/version-specific/supported-software/s/S4.md index 6807d9082..55a82720e 100644 --- a/docs/version-specific/supported-software/s/S4.md +++ b/docs/version-specific/supported-software/s/S4.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ S4 stands for Stanford Stratified Structure Solver, a frequency domain code to version | toolchain --------|---------- ``1.1.1-20180610`` | ``foss/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SAGE.md b/docs/version-specific/supported-software/s/SAGE.md index 0af2cdc58..86a793f6e 100644 --- a/docs/version-specific/supported-software/s/SAGE.md +++ b/docs/version-specific/supported-software/s/SAGE.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.3`` | ``system`` ``6.4`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SALMON-TDDFT.md b/docs/version-specific/supported-software/s/SALMON-TDDFT.md index 8e62d0e31..5c0fdd2b8 100644 --- a/docs/version-specific/supported-software/s/SALMON-TDDFT.md +++ b/docs/version-specific/supported-software/s/SALMON-TDDFT.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2018b`` ``1.2.1`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SALib.md b/docs/version-specific/supported-software/s/SALib.md index fc519a04d..baffe5c2b 100644 --- a/docs/version-specific/supported-software/s/SALib.md +++ b/docs/version-specific/supported-software/s/SALib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SALib Sensitivity Analysis Library in Python (Numpy). Contains Sobol, Morris, Fractional Factorial and FAST methods. @@ -7,3 +11,6 @@ Sensitivity Analysis Library in Python (Numpy). Contains Sobol, Morris, Fraction version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-2.7.14`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SAMtools.md b/docs/version-specific/supported-software/s/SAMtools.md index 305c42c2c..207e46e14 100644 --- a/docs/version-specific/supported-software/s/SAMtools.md +++ b/docs/version-specific/supported-software/s/SAMtools.md @@ -1,3 +1,7 @@ +--- +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. @@ -67,3 +71,6 @@ version | versionsuffix | toolchain ``1.9`` | | ``foss/2018b`` ``1.9`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SAP.md b/docs/version-specific/supported-software/s/SAP.md index b33b11051..e7d861a04 100644 --- a/docs/version-specific/supported-software/s/SAP.md +++ b/docs/version-specific/supported-software/s/SAP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SAP SAP is a pairwise structure alignment via double dynamic programming @@ -7,3 +11,6 @@ SAP is a pairwise structure alignment via double dynamic programming version | toolchain --------|---------- ``1.1.3`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SAS.md b/docs/version-specific/supported-software/s/SAS.md index 2be30be4c..e6cb2979b 100644 --- a/docs/version-specific/supported-software/s/SAS.md +++ b/docs/version-specific/supported-software/s/SAS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SAS SAS is a software suite for advanced analytics, multivariate analyses, business intelligence, data management, and predictive analytics. @@ -7,3 +11,6 @@ SAS is a software suite for advanced analytics, multivariate analyses, business version | toolchain --------|---------- ``9.4`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SBCL.md b/docs/version-specific/supported-software/s/SBCL.md index e27cf7d99..bff5b2dc4 100644 --- a/docs/version-specific/supported-software/s/SBCL.md +++ b/docs/version-specific/supported-software/s/SBCL.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.2.1`` | ``GCCcore/10.3.0`` ``2.3.11`` | ``GCCcore/11.3.0`` ``2.4.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCALCE.md b/docs/version-specific/supported-software/s/SCALCE.md index 769e29e0b..85c88d73d 100644 --- a/docs/version-specific/supported-software/s/SCALCE.md +++ b/docs/version-specific/supported-software/s/SCALCE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SCALCE [skeɪlz] is a FASTQ compression tool that uses locally consistet parsing version | toolchain --------|---------- ``2.7`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCENIC.md b/docs/version-specific/supported-software/s/SCENIC.md index a7629182c..b03e3f8d5 100644 --- a/docs/version-specific/supported-software/s/SCENIC.md +++ b/docs/version-specific/supported-software/s/SCENIC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SCENIC SCENIC Suite is a set of tools to study and decipher gene regulation. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCGid.md b/docs/version-specific/supported-software/s/SCGid.md index e6edc3ba0..d8bdf90a5 100644 --- a/docs/version-specific/supported-software/s/SCGid.md +++ b/docs/version-specific/supported-software/s/SCGid.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SCGid A consensus approach to contig filtering and genome prediction from single-cell sequencing libraries @@ -7,3 +11,6 @@ A consensus approach to contig filtering and genome prediction from single-cell version | toolchain --------|---------- ``0.9b0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCIP.md b/docs/version-specific/supported-software/s/SCIP.md index ef66f8bef..bfda04152 100644 --- a/docs/version-specific/supported-software/s/SCIP.md +++ b/docs/version-specific/supported-software/s/SCIP.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SCIP is currently one of the fastest non-commercial solvers for mixed integer pr version | toolchain --------|---------- ``3.2.1`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCIPhI.md b/docs/version-specific/supported-software/s/SCIPhI.md index d7d32fbbc..a8ed5476b 100644 --- a/docs/version-specific/supported-software/s/SCIPhI.md +++ b/docs/version-specific/supported-software/s/SCIPhI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Single-cell mutation identification via phylogenetic inference (SCIPhI) is a new version | toolchain --------|---------- ``0.1.3`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCOOP.md b/docs/version-specific/supported-software/s/SCOOP.md index 1db38c6a7..3a81e7834 100644 --- a/docs/version-specific/supported-software/s/SCOOP.md +++ b/docs/version-specific/supported-software/s/SCOOP.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCOTCH.md b/docs/version-specific/supported-software/s/SCOTCH.md index ba8d8129e..a0ab1aa77 100644 --- a/docs/version-specific/supported-software/s/SCOTCH.md +++ b/docs/version-specific/supported-software/s/SCOTCH.md @@ -1,3 +1,7 @@ +--- +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. @@ -39,3 +43,6 @@ version | versionsuffix | toolchain ``7.0.3`` | | ``gompi/2022b`` ``7.0.3`` | | ``gompi/2023a`` ``7.0.4`` | | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCReadCounts.md b/docs/version-specific/supported-software/s/SCReadCounts.md index 8404eee4b..c8a81e1e0 100644 --- a/docs/version-specific/supported-software/s/SCReadCounts.md +++ b/docs/version-specific/supported-software/s/SCReadCounts.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SCReadCounts is a computational tool for a cell-level assessment of the read cou version | toolchain --------|---------- ``1.4.0`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCnorm.md b/docs/version-specific/supported-software/s/SCnorm.md index bf1dc4749..97aa0fc19 100644 --- a/docs/version-specific/supported-software/s/SCnorm.md +++ b/docs/version-specific/supported-software/s/SCnorm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SCnorm This package implements SCnorm — a method to normalize single-cell RNA-seq data. @@ -7,3 +11,6 @@ This package implements SCnorm — a method to normalize single-cell RNA-seq dat version | versionsuffix | toolchain --------|---------------|---------- ``0.99.7`` | ``-R-3.4.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCons.md b/docs/version-specific/supported-software/s/SCons.md index c251660a3..6d331530f 100644 --- a/docs/version-specific/supported-software/s/SCons.md +++ b/docs/version-specific/supported-software/s/SCons.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SCons SCons is a software construction tool. @@ -38,3 +42,6 @@ version | versionsuffix | toolchain ``4.4.0`` | | ``GCCcore/11.3.0`` ``4.5.2`` | | ``GCCcore/12.3.0`` ``4.6.0`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SCopeLoomR.md b/docs/version-specific/supported-software/s/SCopeLoomR.md index 85ea26089..fc139c27c 100644 --- a/docs/version-specific/supported-software/s/SCopeLoomR.md +++ b/docs/version-specific/supported-software/s/SCopeLoomR.md @@ -1,3 +1,7 @@ +--- +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, ... @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.13.0`` | ``-R-4.1.2`` | ``foss/2021b`` ``0.13.0_20220408`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDCC.md b/docs/version-specific/supported-software/s/SDCC.md index fdea9b49c..c9049cb12 100644 --- a/docs/version-specific/supported-software/s/SDCC.md +++ b/docs/version-specific/supported-software/s/SDCC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SDCC is a retargettable, optimizing ANSI - C compiler suite that targets the In version | toolchain --------|---------- ``3.3.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL.md b/docs/version-specific/supported-software/s/SDL.md index bdd0dcc29..d08e93955 100644 --- a/docs/version-specific/supported-software/s/SDL.md +++ b/docs/version-specific/supported-software/s/SDL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SDL SDL: Simple DirectMedia Layer, a cross-platform multimedia library @@ -7,3 +11,6 @@ SDL: Simple DirectMedia Layer, a cross-platform multimedia library version | toolchain --------|---------- ``1.2.15`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL2.md b/docs/version-specific/supported-software/s/SDL2.md index a589a53bb..242f0956f 100644 --- a/docs/version-specific/supported-software/s/SDL2.md +++ b/docs/version-specific/supported-software/s/SDL2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SDL2 SDL: Simple DirectMedia Layer, a cross-platform multimedia library @@ -23,3 +27,6 @@ version | toolchain ``2.26.3`` | ``GCCcore/12.2.0`` ``2.28.2`` | ``GCCcore/12.3.0`` ``2.28.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL2_gfx.md b/docs/version-specific/supported-software/s/SDL2_gfx.md index 2ccb1ab07..328b929a2 100644 --- a/docs/version-specific/supported-software/s/SDL2_gfx.md +++ b/docs/version-specific/supported-software/s/SDL2_gfx.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SDL2_gfx Graphics drawing primitives library for SDL2 @@ -7,3 +11,6 @@ Graphics drawing primitives library for SDL2 version | toolchain --------|---------- ``1.0.4`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL2_image.md b/docs/version-specific/supported-software/s/SDL2_image.md index 232f9a6c0..64815f1b4 100644 --- a/docs/version-specific/supported-software/s/SDL2_image.md +++ b/docs/version-specific/supported-software/s/SDL2_image.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SDL2_image SDL_image is an image file loading library. @@ -9,3 +13,6 @@ version | toolchain ``2.0.3`` | ``GCCcore/6.4.0`` ``2.6.3`` | ``GCCcore/11.3.0`` ``2.8.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL2_mixer.md b/docs/version-specific/supported-software/s/SDL2_mixer.md index d523c3c70..9fe059aa5 100644 --- a/docs/version-specific/supported-software/s/SDL2_mixer.md +++ b/docs/version-specific/supported-software/s/SDL2_mixer.md @@ -1,3 +1,7 @@ +--- +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.) @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.6.3`` | ``GCCcore/11.3.0`` ``2.8.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL2_ttf.md b/docs/version-specific/supported-software/s/SDL2_ttf.md index c0b393de2..95485d736 100644 --- a/docs/version-specific/supported-software/s/SDL2_ttf.md +++ b/docs/version-specific/supported-software/s/SDL2_ttf.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.20.2`` | ``GCCcore/11.3.0`` ``2.22.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDL_image.md b/docs/version-specific/supported-software/s/SDL_image.md index d3a73eb60..fce83e900 100644 --- a/docs/version-specific/supported-software/s/SDL_image.md +++ b/docs/version-specific/supported-software/s/SDL_image.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SDL_image SDL_image is an image file loading library. @@ -7,3 +11,6 @@ SDL_image is an image file loading library. version | toolchain --------|---------- ``1.2.12`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SDSL.md b/docs/version-specific/supported-software/s/SDSL.md index 73b3dd83f..4d8afd4fa 100644 --- a/docs/version-specific/supported-software/s/SDSL.md +++ b/docs/version-specific/supported-software/s/SDSL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SDSL The Succinct Data Structure Library (SDSL) is a powerful and flexible C++11 library implementing succinct data structures. @@ -7,3 +11,6 @@ The Succinct Data Structure Library (SDSL) is a powerful and flexible C++11 libr version | toolchain --------|---------- ``2.1.1-20191211`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SEACells.md b/docs/version-specific/supported-software/s/SEACells.md index 410a93072..04a177138 100644 --- a/docs/version-specific/supported-software/s/SEACells.md +++ b/docs/version-specific/supported-software/s/SEACells.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SEACells SEACells algorithm for Inference of transcriptional and epigenomic cellular states from single-cell genomics data @@ -7,3 +11,6 @@ SEACells algorithm for Inference of transcriptional and epigenomic cellular stat version | toolchain --------|---------- ``20230731`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SECAPR.md b/docs/version-specific/supported-software/s/SECAPR.md index d15fccd1a..f1cbaf23f 100644 --- a/docs/version-specific/supported-software/s/SECAPR.md +++ b/docs/version-specific/supported-software/s/SECAPR.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ SECAPR is a bioinformatics pipeline for the rapid and user-friendly processing o version | versionsuffix | toolchain --------|---------------|---------- ``1.1.15`` | ``-Python-2.7.16`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SELFIES.md b/docs/version-specific/supported-software/s/SELFIES.md index 4b0cb0c23..37ee00a60 100644 --- a/docs/version-specific/supported-software/s/SELFIES.md +++ b/docs/version-specific/supported-software/s/SELFIES.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SELFIES Robust representation of semantically constrained graphs, in particular for molecules in chemistry @@ -7,3 +11,6 @@ Robust representation of semantically constrained graphs, in particular for mole version | toolchain --------|---------- ``2.1.1`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SEPP.md b/docs/version-specific/supported-software/s/SEPP.md index b5f34a2b3..6fc746cc5 100644 --- a/docs/version-specific/supported-software/s/SEPP.md +++ b/docs/version-specific/supported-software/s/SEPP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SEPP SATe-enabled Phylogenetic Placement - addresses the problem of phylogenetic placement of short reads into reference alignments and trees. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``4.5.1`` | | ``foss/2021b`` ``4.5.1`` | | ``foss/2022a`` ``4.5.1`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SHAP.md b/docs/version-specific/supported-software/s/SHAP.md index 7b0b604ee..1245b78b2 100644 --- a/docs/version-specific/supported-software/s/SHAP.md +++ b/docs/version-specific/supported-software/s/SHAP.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.41.0`` | | ``foss/2022a`` ``0.42.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.42.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SHAPEIT.md b/docs/version-specific/supported-software/s/SHAPEIT.md index 03c7f9b29..a087e75af 100644 --- a/docs/version-specific/supported-software/s/SHAPEIT.md +++ b/docs/version-specific/supported-software/s/SHAPEIT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SHAPEIT SHAPEIT is a fast and accurate method for estimation of haplotypes (aka phasing) from genotype or sequencing data. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.r837`` | ``.GLIBCv2.12`` | ``system`` ``2.r904`` | ``.glibcv2.17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SHAPEIT4.md b/docs/version-specific/supported-software/s/SHAPEIT4.md index 676f7d333..93ca42259 100644 --- a/docs/version-specific/supported-software/s/SHAPEIT4.md +++ b/docs/version-specific/supported-software/s/SHAPEIT4.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``4.2.0`` | ``foss/2020b`` ``4.2.2`` | ``foss/2020b`` ``4.2.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SHORE.md b/docs/version-specific/supported-software/s/SHORE.md index 8004641b0..4f6d3778e 100644 --- a/docs/version-specific/supported-software/s/SHORE.md +++ b/docs/version-specific/supported-software/s/SHORE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SHORE SHORE, for Short Read, is a mapping and analysis pipeline for short read data produced on the Illumina platform. @@ -7,3 +11,6 @@ SHORE, for Short Read, is a mapping and analysis pipeline for short read data pr version | toolchain --------|---------- ``0.9.3`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SHTns.md b/docs/version-specific/supported-software/s/SHTns.md index 6d33b0bce..fcb859a00 100644 --- a/docs/version-specific/supported-software/s/SHTns.md +++ b/docs/version-specific/supported-software/s/SHTns.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SHTns Spherical Harmonic Transform library aimed at high performance numerical simulations in spherical geometries. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.7`` | ``foss/2021b`` ``3.5.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SICER2.md b/docs/version-specific/supported-software/s/SICER2.md index c62aebd71..e3ede2bef 100644 --- a/docs/version-specific/supported-software/s/SICER2.md +++ b/docs/version-specific/supported-software/s/SICER2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SICER2 Redesigned and improved ChIP-seq broad peak calling tool SICER @@ -7,3 +11,6 @@ Redesigned and improved ChIP-seq broad peak calling tool SICER version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SIMPLE.md b/docs/version-specific/supported-software/s/SIMPLE.md index c28c870df..fa4f5e0c5 100644 --- a/docs/version-specific/supported-software/s/SIMPLE.md +++ b/docs/version-specific/supported-software/s/SIMPLE.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.5`` | ``foss/2018a`` ``3.0.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SIONlib.md b/docs/version-specific/supported-software/s/SIONlib.md index 8909e74ea..f29482c4b 100644 --- a/docs/version-specific/supported-software/s/SIONlib.md +++ b/docs/version-specific/supported-software/s/SIONlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``1.7.7`` | ``-tools`` | ``GCCcore/12.2.0`` ``1.7.7`` | ``-tools`` | ``GCCcore/12.3.0`` ``1.7.7`` | ``-tools`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SIP.md b/docs/version-specific/supported-software/s/SIP.md index dade2d7b4..d5870f707 100644 --- a/docs/version-specific/supported-software/s/SIP.md +++ b/docs/version-specific/supported-software/s/SIP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SIP SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SISSO++.md b/docs/version-specific/supported-software/s/SISSO++.md index 1c129a30e..01a3c1361 100644 --- a/docs/version-specific/supported-software/s/SISSO++.md +++ b/docs/version-specific/supported-software/s/SISSO++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SISSO++ C++ implementation of SISSO with built in Python bindings for an efficient python interface @@ -7,3 +11,6 @@ C++ implementation of SISSO with built in Python bindings for an efficient pytho version | toolchain --------|---------- ``1.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SISSO.md b/docs/version-specific/supported-software/s/SISSO.md index e54356e50..b5b15f684 100644 --- a/docs/version-specific/supported-software/s/SISSO.md +++ b/docs/version-specific/supported-software/s/SISSO.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SISSO A data-driven method combining symbolic regression and compressed sensing toward accurate & interpretable models. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.0.2`` | ``iimpi/2021b`` ``3.1-20220324`` | ``iimpi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SKESA.md b/docs/version-specific/supported-software/s/SKESA.md index 6b96c767b..84d2c7504 100644 --- a/docs/version-specific/supported-software/s/SKESA.md +++ b/docs/version-specific/supported-software/s/SKESA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SKESA SKESA is a de-novo sequence read assembler for cultured single isolate genomes based on DeBruijn graphs. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.2`` | | ``foss/2018a`` ``2.3.0`` | | ``foss/2018b`` ``2.4.0`` | ``_saute.1.3.0_1`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SLATEC.md b/docs/version-specific/supported-software/s/SLATEC.md index a55b27295..18daff209 100644 --- a/docs/version-specific/supported-software/s/SLATEC.md +++ b/docs/version-specific/supported-software/s/SLATEC.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SLEPc.md b/docs/version-specific/supported-software/s/SLEPc.md index d7d7737f7..f8265353f 100644 --- a/docs/version-specific/supported-software/s/SLEPc.md +++ b/docs/version-specific/supported-software/s/SLEPc.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``3.20.1`` | | ``foss/2023a`` ``3.8.3`` | | ``foss/2017b`` ``3.9.2`` | | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SLiM.md b/docs/version-specific/supported-software/s/SLiM.md index a5934526d..ac540a6f2 100644 --- a/docs/version-specific/supported-software/s/SLiM.md +++ b/docs/version-specific/supported-software/s/SLiM.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.4`` | ``GCC/9.3.0`` ``4.0`` | ``GCC/11.2.0`` ``4.0.1`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SMAP.md b/docs/version-specific/supported-software/s/SMAP.md index 8fdede495..29d4ca0d6 100644 --- a/docs/version-specific/supported-software/s/SMAP.md +++ b/docs/version-specific/supported-software/s/SMAP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SMAP SMAP is an analysis tool for stack-based NGS read mapping @@ -7,3 +11,6 @@ SMAP is an analysis tool for stack-based NGS read mapping version | toolchain --------|---------- ``4.6.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SMARTdenovo.md b/docs/version-specific/supported-software/s/SMARTdenovo.md index a12c0ec03..8dc7eb109 100644 --- a/docs/version-specific/supported-software/s/SMARTdenovo.md +++ b/docs/version-specific/supported-software/s/SMARTdenovo.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SMARTdenovo is a de novo assembler for PacBio and Oxford Nanopore (ONT) data. It version | toolchain --------|---------- ``20180219`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SMC++.md b/docs/version-specific/supported-software/s/SMC++.md index ab902e9c4..96edb2fc1 100644 --- a/docs/version-specific/supported-software/s/SMC++.md +++ b/docs/version-specific/supported-software/s/SMC++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SMC++ SMC++ is a program for estimating the size history of populations from whole genome sequence data. @@ -7,3 +11,6 @@ SMC++ is a program for estimating the size history of populations from whole gen version | toolchain --------|---------- ``1.15.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SMRT-Link.md b/docs/version-specific/supported-software/s/SMRT-Link.md index 6d754ec98..42b51f886 100644 --- a/docs/version-specific/supported-software/s/SMRT-Link.md +++ b/docs/version-specific/supported-software/s/SMRT-Link.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SMV.md b/docs/version-specific/supported-software/s/SMV.md index 8f5d99805..96174ba83 100644 --- a/docs/version-specific/supported-software/s/SMV.md +++ b/docs/version-specific/supported-software/s/SMV.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SMV Smokeview is a visualization program that displays output of FDS and CFAST simulations. @@ -7,3 +11,6 @@ Smokeview is a visualization program that displays output of FDS and CFAST simul version | toolchain --------|---------- ``6.7.17`` | ``iccifort/2020.4.304`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNAP-ESA-python.md b/docs/version-specific/supported-software/s/SNAP-ESA-python.md index 247fa8f3c..f5616a990 100644 --- a/docs/version-specific/supported-software/s/SNAP-ESA-python.md +++ b/docs/version-specific/supported-software/s/SNAP-ESA-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SNAP-ESA-python Python interface to the Sentinel Application Platform (SNAP) API @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNAP-ESA.md b/docs/version-specific/supported-software/s/SNAP-ESA.md index f6a47d38b..36d605cc7 100644 --- a/docs/version-specific/supported-software/s/SNAP-ESA.md +++ b/docs/version-specific/supported-software/s/SNAP-ESA.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.0`` | ``-Java-1.8`` | ``system`` ``9.0.0`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNAP-HMM.md b/docs/version-specific/supported-software/s/SNAP-HMM.md index 7076c485a..09f115641 100644 --- a/docs/version-specific/supported-software/s/SNAP-HMM.md +++ b/docs/version-specific/supported-software/s/SNAP-HMM.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2013-11-29`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``20190603`` | ``GCC/10.2.0`` ``20221022`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNAP.md b/docs/version-specific/supported-software/s/SNAP.md index a90b9c3c1..84ca4b7d1 100644 --- a/docs/version-specific/supported-software/s/SNAP.md +++ b/docs/version-specific/supported-software/s/SNAP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SNAP Scalable Nucleotide Alignment Program -- a fast and accurate read aligner for high-throughput sequencing data @@ -10,3 +14,6 @@ version | toolchain ``2.0.1`` | ``GCC/11.2.0`` ``2.0.1`` | ``GCC/11.3.0`` ``2.0.1`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNAPE-pooled.md b/docs/version-specific/supported-software/s/SNAPE-pooled.md index 145a52117..ecc9b6a0e 100644 --- a/docs/version-specific/supported-software/s/SNAPE-pooled.md +++ b/docs/version-specific/supported-software/s/SNAPE-pooled.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20150707`` | ``GCC/11.3.0`` ``r32`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNPhylo.md b/docs/version-specific/supported-software/s/SNPhylo.md index 8b5063215..c12432a67 100644 --- a/docs/version-specific/supported-software/s/SNPhylo.md +++ b/docs/version-specific/supported-software/s/SNPhylo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SNPhylo SNPhylo: a pipeline to generate a phylogenetic tree from huge SNP data @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SNPomatic.md b/docs/version-specific/supported-software/s/SNPomatic.md index 772ed0ef5..2f60ff809 100644 --- a/docs/version-specific/supported-software/s/SNPomatic.md +++ b/docs/version-specific/supported-software/s/SNPomatic.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ High throughput sequencing technologies generate large amounts of short reads. version | toolchain --------|---------- ``1.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SOAPaligner.md b/docs/version-specific/supported-software/s/SOAPaligner.md index 1cf62db93..d47fa201c 100644 --- a/docs/version-specific/supported-software/s/SOAPaligner.md +++ b/docs/version-specific/supported-software/s/SOAPaligner.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SOAPaligner/soap2 is a member of the SOAP (Short Oligonucleotide Analysis Pack version | versionsuffix | toolchain --------|---------------|---------- ``2.21`` | ``_Linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md index c5a00d3cc..9f3d43c7c 100644 --- a/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md +++ b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``intel/2017a`` ``1.0.5`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SOAPdenovo2.md b/docs/version-specific/supported-software/s/SOAPdenovo2.md index d03154186..a3743cd44 100644 --- a/docs/version-specific/supported-software/s/SOAPdenovo2.md +++ b/docs/version-specific/supported-software/s/SOAPdenovo2.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``r241`` | ``foss/2018a`` ``r241`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``r241`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SOAPfuse.md b/docs/version-specific/supported-software/s/SOAPfuse.md index 1d5767344..bd61cb95f 100644 --- a/docs/version-specific/supported-software/s/SOAPfuse.md +++ b/docs/version-specific/supported-software/s/SOAPfuse.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.27`` | ``-Perl-5.24.0`` | ``foss/2016b`` ``1.27`` | ``-Perl-5.28.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SOCI.md b/docs/version-specific/supported-software/s/SOCI.md index ea57f4cc7..e6ac07f1d 100644 --- a/docs/version-specific/supported-software/s/SOCI.md +++ b/docs/version-specific/supported-software/s/SOCI.md @@ -1,3 +1,7 @@ +--- +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++. @@ -13,3 +17,6 @@ version | toolchain ``4.0.3`` | ``GCC/11.3.0`` ``4.0.3`` | ``GCC/12.2.0`` ``4.0.3`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPAdes.md b/docs/version-specific/supported-software/s/SPAdes.md index 7df131a2c..6a0f1c57c 100644 --- a/docs/version-specific/supported-software/s/SPAdes.md +++ b/docs/version-specific/supported-software/s/SPAdes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SPAdes Genome assembler for single-cell and isolates data sets @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``3.15.5`` | | ``GCC/11.3.0`` ``3.9.0`` | | ``foss/2016a`` ``3.9.0`` | | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPEI.md b/docs/version-specific/supported-software/s/SPEI.md index 5e7a7b8d2..994feef06 100644 --- a/docs/version-specific/supported-software/s/SPEI.md +++ b/docs/version-specific/supported-software/s/SPEI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SPEI A simple Python package to calculate drought indices for time series such as the SPI, SPEI and SGI. @@ -7,3 +11,6 @@ A simple Python package to calculate drought indices for time series such as the version | toolchain --------|---------- ``0.3.5`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPLASH.md b/docs/version-specific/supported-software/s/SPLASH.md index bffa7c935..05123f07c 100644 --- a/docs/version-specific/supported-software/s/SPLASH.md +++ b/docs/version-specific/supported-software/s/SPLASH.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SPLASH SPLASH is a free and open source visualisation tool for Smoothed Particle Hydrodynamics (SPH) simulations. @@ -7,3 +11,6 @@ SPLASH is a free and open source visualisation tool for Smoothed Particle Hydro version | toolchain --------|---------- ``2.8.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPM.md b/docs/version-specific/supported-software/s/SPM.md index bbbe7363a..bc5dd004c 100644 --- a/docs/version-specific/supported-software/s/SPM.md +++ b/docs/version-specific/supported-software/s/SPM.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``12.5_r7771`` | ``-MATLAB-2021a`` | ``system`` ``12.5_r7771`` | ``-MATLAB-2021b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPOOLES.md b/docs/version-specific/supported-software/s/SPOOLES.md index 31c28466e..0056d753c 100644 --- a/docs/version-specific/supported-software/s/SPOOLES.md +++ b/docs/version-specific/supported-software/s/SPOOLES.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.2`` | ``gompi/2021a`` ``2.2`` | ``gompi/2022b`` ``2.2`` | ``gompi/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPOTPY.md b/docs/version-specific/supported-software/s/SPOTPY.md index 14322dbf6..9953cba8e 100644 --- a/docs/version-specific/supported-software/s/SPOTPY.md +++ b/docs/version-specific/supported-software/s/SPOTPY.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SPOTPY is a Python framework that enables the use of Computational optimization version | toolchain --------|---------- ``1.5.14`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SPRNG.md b/docs/version-specific/supported-software/s/SPRNG.md index 1cd1e6790..3c8a5acc7 100644 --- a/docs/version-specific/supported-software/s/SPRNG.md +++ b/docs/version-specific/supported-software/s/SPRNG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SPRNG Scalable Parallel Pseudo Random Number Generators Library @@ -7,3 +11,6 @@ Scalable Parallel Pseudo Random Number Generators Library version | toolchain --------|---------- ``2.0b`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SQLAlchemy.md b/docs/version-specific/supported-software/s/SQLAlchemy.md index a52376f54..10abd26cb 100644 --- a/docs/version-specific/supported-software/s/SQLAlchemy.md +++ b/docs/version-specific/supported-software/s/SQLAlchemy.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``2.0.25`` | ``GCCcore/12.3.0`` ``2.0.29`` | ``GCCcore/12.2.0`` ``2.0.29`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SQLite.md b/docs/version-specific/supported-software/s/SQLite.md index 8bc459c48..ab95b1617 100644 --- a/docs/version-specific/supported-software/s/SQLite.md +++ b/docs/version-specific/supported-software/s/SQLite.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SQLite SQLite: SQL Database Engine in a C Library @@ -46,3 +50,6 @@ version | toolchain ``3.9.2`` | ``intel/2016a`` ``3.9.2`` | ``iomkl/2016.07`` ``3.9.2`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SRA-Toolkit.md b/docs/version-specific/supported-software/s/SRA-Toolkit.md index 1674ca4dd..0cdc43120 100644 --- a/docs/version-specific/supported-software/s/SRA-Toolkit.md +++ b/docs/version-specific/supported-software/s/SRA-Toolkit.md @@ -1,3 +1,7 @@ +--- +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 @@ -24,3 +28,6 @@ version | versionsuffix | toolchain ``3.0.3`` | | ``gompi/2022a`` ``3.0.5`` | | ``gompi/2021a`` ``3.0.5`` | | ``gompi/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SRPRISM.md b/docs/version-specific/supported-software/s/SRPRISM.md index 885098ebc..86b9f72b8 100644 --- a/docs/version-specific/supported-software/s/SRPRISM.md +++ b/docs/version-specific/supported-software/s/SRPRISM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SRPRISM Single Read Paired Read Indel Substitution Minimizer @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``3.0.0`` | | ``foss/2018b`` ``3.1.1`` | ``-Java-11`` | ``GCCcore/8.2.0`` ``3.1.2`` | | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SRST2.md b/docs/version-specific/supported-software/s/SRST2.md index 9107c000f..b88e910bf 100644 --- a/docs/version-specific/supported-software/s/SRST2.md +++ b/docs/version-specific/supported-software/s/SRST2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SRST2 Short Read Sequence Typing for Bacterial Pathogens @@ -7,3 +11,6 @@ Short Read Sequence Typing for Bacterial Pathogens version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0-20210620`` | ``-Python-2.7.18`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SSAHA2.md b/docs/version-specific/supported-software/s/SSAHA2.md index 1ab4e98c3..1b84f37a8 100644 --- a/docs/version-specific/supported-software/s/SSAHA2.md +++ b/docs/version-specific/supported-software/s/SSAHA2.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.5`` | ``-i686`` | ``system`` ``2.5.5`` | ``-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SSN.md b/docs/version-specific/supported-software/s/SSN.md index a1fd04ddd..f247a625a 100644 --- a/docs/version-specific/supported-software/s/SSN.md +++ b/docs/version-specific/supported-software/s/SSN.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Spatial statistical modeling and prediction for data on stream networks, includi version | versionsuffix | toolchain --------|---------------|---------- ``1.1.14`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SSPACE_Basic.md b/docs/version-specific/supported-software/s/SSPACE_Basic.md index d582947f3..e81e1c9b0 100644 --- a/docs/version-specific/supported-software/s/SSPACE_Basic.md +++ b/docs/version-specific/supported-software/s/SSPACE_Basic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SSPACE_Basic SSPACE Basic, SSAKE-based Scaffolding of Pre-Assembled Contigs after Extension @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SSW.md b/docs/version-specific/supported-software/s/SSW.md index efac3a3cc..3a7e112d1 100644 --- a/docs/version-specific/supported-software/s/SSW.md +++ b/docs/version-specific/supported-software/s/SSW.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.1`` | ``GCCcore/12.3.0`` ``1.1`` | ``GCCcore/9.3.0`` ``1.2.4`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STACEY.md b/docs/version-specific/supported-software/s/STACEY.md index cda679dab..c1db3f6f9 100644 --- a/docs/version-specific/supported-software/s/STACEY.md +++ b/docs/version-specific/supported-software/s/STACEY.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The BEAST2 package STACEY can be used for species delimitation and species tree version | toolchain --------|---------- ``1.2.5`` | ``GCC/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STAMP.md b/docs/version-specific/supported-software/s/STAMP.md index d9b880a62..193d0f66f 100644 --- a/docs/version-specific/supported-software/s/STAMP.md +++ b/docs/version-specific/supported-software/s/STAMP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # STAMP STAMP is a tool for characterizing similarities between transcription factor binding motifs @@ -9,3 +13,6 @@ version | toolchain ``1.2`` | ``intel/2016a`` ``1.3`` | ``intel/2016a`` ``1.3`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STAR-CCM+.md b/docs/version-specific/supported-software/s/STAR-CCM+.md index eb8b155bc..62ac6f1f7 100644 --- a/docs/version-specific/supported-software/s/STAR-CCM+.md +++ b/docs/version-specific/supported-software/s/STAR-CCM+.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``2302`` | | ``system`` ``2310`` | ``-r8`` | ``system`` ``2310`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STAR-Fusion.md b/docs/version-specific/supported-software/s/STAR-Fusion.md index 544ab2f21..775977e52 100644 --- a/docs/version-specific/supported-software/s/STAR-Fusion.md +++ b/docs/version-specific/supported-software/s/STAR-Fusion.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STAR.md b/docs/version-specific/supported-software/s/STAR.md index db826fe24..4bb02168d 100644 --- a/docs/version-specific/supported-software/s/STAR.md +++ b/docs/version-specific/supported-software/s/STAR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # STAR STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays. @@ -44,3 +48,6 @@ version | toolchain ``2.7.8a`` | ``GCC/10.2.0`` ``2.7.9a`` | ``GCC/10.3.0`` ``2.7.9a`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STEAK.md b/docs/version-specific/supported-software/s/STEAK.md index 5d9dc81a9..b842c0f72 100644 --- a/docs/version-specific/supported-software/s/STEAK.md +++ b/docs/version-specific/supported-software/s/STEAK.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.09.12`` | ``-Python-2.7.16`` | ``foss/2019b`` ``2019.09.12`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STIR.md b/docs/version-specific/supported-software/s/STIR.md index fc2486541..450c1f886 100644 --- a/docs/version-specific/supported-software/s/STIR.md +++ b/docs/version-specific/supported-software/s/STIR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # STIR Software for Tomographic Image Reconstruction @@ -7,3 +11,6 @@ Software for Tomographic Image Reconstruction version | toolchain --------|---------- ``3.0`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STREAM.md b/docs/version-specific/supported-software/s/STREAM.md index ea705a814..69e77dcad 100644 --- a/docs/version-specific/supported-software/s/STREAM.md +++ b/docs/version-specific/supported-software/s/STREAM.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``5.10`` | ``intel/2016b`` ``5.10`` | ``intel/2018b`` ``5.10`` | ``intel-compilers/2022.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STRUMPACK.md b/docs/version-specific/supported-software/s/STRUMPACK.md index 5d889e935..889469c55 100644 --- a/docs/version-specific/supported-software/s/STRUMPACK.md +++ b/docs/version-specific/supported-software/s/STRUMPACK.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.1.0`` | ``foss/2020b`` ``6.1.0`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/STRique.md b/docs/version-specific/supported-software/s/STRique.md index 6327004c7..bd19b2bb8 100644 --- a/docs/version-specific/supported-software/s/STRique.md +++ b/docs/version-specific/supported-software/s/STRique.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ STRique is a python package to analyze repeat expansion and methylation states o version | toolchain --------|---------- ``0.4.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SUMACLUST.md b/docs/version-specific/supported-software/s/SUMACLUST.md index 14de79c38..7e1512276 100644 --- a/docs/version-specific/supported-software/s/SUMACLUST.md +++ b/docs/version-specific/supported-software/s/SUMACLUST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SUMACLUST SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. @@ -7,3 +11,6 @@ SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. version | toolchain --------|---------- ``1.0.20`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SUMATRA.md b/docs/version-specific/supported-software/s/SUMATRA.md index 154d9a5e5..4130ba6b3 100644 --- a/docs/version-specific/supported-software/s/SUMATRA.md +++ b/docs/version-specific/supported-software/s/SUMATRA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SUMATRA SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. @@ -7,3 +11,6 @@ SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. version | toolchain --------|---------- ``1.0.20`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SUMO.md b/docs/version-specific/supported-software/s/SUMO.md index 15e41dd4d..82e8a861b 100644 --- a/docs/version-specific/supported-software/s/SUMO.md +++ b/docs/version-specific/supported-software/s/SUMO.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SUNDIALS.md b/docs/version-specific/supported-software/s/SUNDIALS.md index 28a798b99..164efbec5 100644 --- a/docs/version-specific/supported-software/s/SUNDIALS.md +++ b/docs/version-specific/supported-software/s/SUNDIALS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SUNDIALS SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``6.6.0`` | | ``foss/2022b`` ``6.6.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``6.6.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SUPPA.md b/docs/version-specific/supported-software/s/SUPPA.md index a07efbfd6..b2977f873 100644 --- a/docs/version-specific/supported-software/s/SUPPA.md +++ b/docs/version-specific/supported-software/s/SUPPA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SUPPA Fast, accurate, and uncertainty-aware differential splicing analysis across multiple conditions. @@ -7,3 +11,6 @@ Fast, accurate, and uncertainty-aware differential splicing analysis across mul version | toolchain --------|---------- ``2.3-20231005`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SURVIVOR.md b/docs/version-specific/supported-software/s/SURVIVOR.md index 9e874096f..77d00cee7 100644 --- a/docs/version-specific/supported-software/s/SURVIVOR.md +++ b/docs/version-specific/supported-software/s/SURVIVOR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SURVIVOR Toolset for SV simulation, comparison and filtering @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.7-19-ged1ca51`` | ``GCC/11.2.0`` ``1.0.7-19-ged1ca51`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SVDetect.md b/docs/version-specific/supported-software/s/SVDetect.md index 18f6e6b13..a1b698c7f 100644 --- a/docs/version-specific/supported-software/s/SVDetect.md +++ b/docs/version-specific/supported-software/s/SVDetect.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SVDquest.md b/docs/version-specific/supported-software/s/SVDquest.md index 99b6ef8b9..ac41f7ee0 100644 --- a/docs/version-specific/supported-software/s/SVDquest.md +++ b/docs/version-specific/supported-software/s/SVDquest.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SVDquest SVDquartets-based species trees @@ -7,3 +11,6 @@ SVDquartets-based species trees version | toolchain --------|---------- ``20190627`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SVG.md b/docs/version-specific/supported-software/s/SVG.md index 4fe948fe6..34e34e0ec 100644 --- a/docs/version-specific/supported-software/s/SVG.md +++ b/docs/version-specific/supported-software/s/SVG.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SVG Perl binding for SVG @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.87`` | | ``GCC/11.2.0`` ``2.87`` | | ``GCC/11.3.0`` ``2.87`` | | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SVIM.md b/docs/version-specific/supported-software/s/SVIM.md index ccaa94ca8..52c2017a3 100644 --- a/docs/version-specific/supported-software/s/SVIM.md +++ b/docs/version-specific/supported-software/s/SVIM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SVIM (pronounced swim) is a structural variant caller for third-generation seque version | toolchain --------|---------- ``2.0.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SVclone.md b/docs/version-specific/supported-software/s/SVclone.md index 9a444e36f..236cc9aeb 100644 --- a/docs/version-specific/supported-software/s/SVclone.md +++ b/docs/version-specific/supported-software/s/SVclone.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SVclone Cluster structural variants of similar cancer cell fraction (CCF). @@ -7,3 +11,6 @@ Cluster structural variants of similar cancer cell fraction (CCF). version | toolchain --------|---------- ``1.1.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SWASH.md b/docs/version-specific/supported-software/s/SWASH.md index 31b17ad9c..e155f3ed0 100644 --- a/docs/version-specific/supported-software/s/SWASH.md +++ b/docs/version-specific/supported-software/s/SWASH.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``3.14`` | ``-mpi`` | ``intel/2016b`` ``3.14`` | ``-mpi`` | ``intel/2017a`` ``4.01`` | ``-mpi`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SWAT+.md b/docs/version-specific/supported-software/s/SWAT+.md index 2f148c4d3..27e37032a 100644 --- a/docs/version-specific/supported-software/s/SWAT+.md +++ b/docs/version-specific/supported-software/s/SWAT+.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``60.4.1`` | ``GCC/9.3.0`` ``60.5.1`` | ``iccifort/2020.4.304`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SWIG.md b/docs/version-specific/supported-software/s/SWIG.md index c8bdd24d7..90ebca05d 100644 --- a/docs/version-specific/supported-software/s/SWIG.md +++ b/docs/version-specific/supported-software/s/SWIG.md @@ -1,3 +1,7 @@ +--- +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. @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``GCCcore/12.3.0`` ``4.1.1`` | | ``GCCcore/13.2.0`` ``4.2.1`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SWIPE.md b/docs/version-specific/supported-software/s/SWIPE.md index f02b837f1..6edff1c5a 100644 --- a/docs/version-specific/supported-software/s/SWIPE.md +++ b/docs/version-specific/supported-software/s/SWIPE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SWIPE Smith-Waterman database searches with inter-sequence SIMD parallelisation @@ -7,3 +11,6 @@ Smith-Waterman database searches with inter-sequence SIMD parallelisation version | toolchain --------|---------- ``2.1.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SYMMETRICA.md b/docs/version-specific/supported-software/s/SYMMETRICA.md index 9704a75f8..d5487f98e 100644 --- a/docs/version-specific/supported-software/s/SYMMETRICA.md +++ b/docs/version-specific/supported-software/s/SYMMETRICA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SYMMETRICA Symmetrica is a Collection of C routines for representation theory. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``GCCcore/11.3.0`` ``2.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SYMPHONY.md b/docs/version-specific/supported-software/s/SYMPHONY.md index 50b6dc930..83dff8b30 100644 --- a/docs/version-specific/supported-software/s/SYMPHONY.md +++ b/docs/version-specific/supported-software/s/SYMPHONY.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SYMPHONY SYMPHONY is an open-source solver for mixed-integer linear programs (MILPs) written in C. @@ -7,3 +11,6 @@ SYMPHONY is an open-source solver for mixed-integer linear programs (MILPs) writ version | toolchain --------|---------- ``5.6.16`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sabre.md b/docs/version-specific/supported-software/s/Sabre.md index 7e9817877..1bb09f7e9 100644 --- a/docs/version-specific/supported-software/s/Sabre.md +++ b/docs/version-specific/supported-software/s/Sabre.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Sabre is a tool that will demultiplex barcoded reads into separate files. It wi version | toolchain --------|---------- ``2013-09-28`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Safetensors.md b/docs/version-specific/supported-software/s/Safetensors.md index 15e60f0d2..681e1b9c0 100644 --- a/docs/version-specific/supported-software/s/Safetensors.md +++ b/docs/version-specific/supported-software/s/Safetensors.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sailfish.md b/docs/version-specific/supported-software/s/Sailfish.md index 5158a2d54..48d94f108 100644 --- a/docs/version-specific/supported-software/s/Sailfish.md +++ b/docs/version-specific/supported-software/s/Sailfish.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.10.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``0.10.1`` | | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Salmon.md b/docs/version-specific/supported-software/s/Salmon.md index c1f77744a..36be7b9fb 100644 --- a/docs/version-specific/supported-software/s/Salmon.md +++ b/docs/version-specific/supported-software/s/Salmon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Salmon Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq data. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``GCC/11.2.0`` ``1.4.0`` | | ``gompi/2020b`` ``1.9.0`` | | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sambamba.md b/docs/version-specific/supported-software/s/Sambamba.md index 45a684ce8..7c56dba3f 100644 --- a/docs/version-specific/supported-software/s/Sambamba.md +++ b/docs/version-specific/supported-software/s/Sambamba.md @@ -1,3 +1,7 @@ +--- +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 @@ -11,3 +15,6 @@ version | toolchain ``0.8.0`` | ``GCC/10.2.0`` ``0.8.2`` | ``GCC/10.3.0`` ``1.0.1`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Samcef.md b/docs/version-specific/supported-software/s/Samcef.md index 69918d86d..c1bc71f50 100644 --- a/docs/version-specific/supported-software/s/Samcef.md +++ b/docs/version-specific/supported-software/s/Samcef.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Samcef FEM solver solution suite for basic linear structures to advanced, flexible nonlinear mechanisms and thermal applications. @@ -7,3 +11,6 @@ FEM solver solution suite for basic linear structures to advanced, flexible nonl version | toolchain --------|---------- ``17.0-03`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Satsuma2.md b/docs/version-specific/supported-software/s/Satsuma2.md index 3df338c8b..73573f66a 100644 --- a/docs/version-specific/supported-software/s/Satsuma2.md +++ b/docs/version-specific/supported-software/s/Satsuma2.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Satsuma2 is an optimised version of Satsuma, a tool to reliably align large and version | toolchain --------|---------- ``20220304`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Saxon-HE.md b/docs/version-specific/supported-software/s/Saxon-HE.md index 09d593995..b23f46a9e 100644 --- a/docs/version-specific/supported-software/s/Saxon-HE.md +++ b/docs/version-specific/supported-software/s/Saxon-HE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Saxon-HE Open Source SAXON XSLT processor developed by Saxonica Limited. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/ScaFaCoS.md b/docs/version-specific/supported-software/s/ScaFaCoS.md index 14fe8f047..4e37ccc36 100644 --- a/docs/version-specific/supported-software/s/ScaFaCoS.md +++ b/docs/version-specific/supported-software/s/ScaFaCoS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ScaFaCoS ScaFaCoS is a library of scalable fast coulomb solvers. @@ -14,3 +18,6 @@ version | toolchain ``1.0.4`` | ``foss/2022a`` ``1.0.4`` | ``foss/2022b`` ``1.0.4`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/ScaLAPACK.md b/docs/version-specific/supported-software/s/ScaLAPACK.md index c3bcc62cd..01222f969 100644 --- a/docs/version-specific/supported-software/s/ScaLAPACK.md +++ b/docs/version-specific/supported-software/s/ScaLAPACK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ScaLAPACK The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers. @@ -53,3 +57,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-fb`` | ``gompi/2023b`` ``2.2.0`` | ``-fb`` | ``gompi/2024.05`` ``2.2.0`` | ``-fb`` | ``nvompi/2022.07`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Scalasca.md b/docs/version-specific/supported-software/s/Scalasca.md index 17e358898..a8f174bdc 100644 --- a/docs/version-specific/supported-software/s/Scalasca.md +++ b/docs/version-specific/supported-software/s/Scalasca.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``2.6`` | ``gompi/2021a`` ``2.6`` | ``gompic/2020b`` ``2.6.1`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Scalene.md b/docs/version-specific/supported-software/s/Scalene.md index 50a697007..f43881bf6 100644 --- a/docs/version-specific/supported-software/s/Scalene.md +++ b/docs/version-specific/supported-software/s/Scalene.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.5.26`` | ``GCCcore/12.2.0`` ``1.5.26`` | ``GCCcore/12.3.0`` ``1.5.35`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Schrodinger.md b/docs/version-specific/supported-software/s/Schrodinger.md index d4398ec3d..aebebec5d 100644 --- a/docs/version-specific/supported-software/s/Schrodinger.md +++ b/docs/version-specific/supported-software/s/Schrodinger.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2022-1`` | ``system`` ``2022-2`` | ``system`` ``2022-3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SciPy-bundle.md b/docs/version-specific/supported-software/s/SciPy-bundle.md index 73c4299e3..4920533bb 100644 --- a/docs/version-specific/supported-software/s/SciPy-bundle.md +++ b/docs/version-specific/supported-software/s/SciPy-bundle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SciPy-bundle Bundle of Python packages for scientific software @@ -45,3 +49,6 @@ version | versionsuffix | toolchain ``2023.07`` | | ``iimkl/2023a`` ``2023.11`` | | ``gfbf/2023.09`` ``2023.11`` | | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SciTools-Iris.md b/docs/version-specific/supported-software/s/SciTools-Iris.md index 9172e3686..ef7d4b38a 100644 --- a/docs/version-specific/supported-software/s/SciTools-Iris.md +++ b/docs/version-specific/supported-software/s/SciTools-Iris.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SciTools-Iris A powerful, format-agnostic, community-driven Python package for analysing and visualising Earth science data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.2.1`` | ``foss/2022a`` ``3.9.0`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/ScientificPython.md b/docs/version-specific/supported-software/s/ScientificPython.md index 7b4f0a468..eac281891 100644 --- a/docs/version-specific/supported-software/s/ScientificPython.md +++ b/docs/version-specific/supported-software/s/ScientificPython.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.9.4`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.9.4`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Scoary.md b/docs/version-specific/supported-software/s/Scoary.md index 9f2fab709..cda399c45 100644 --- a/docs/version-specific/supported-software/s/Scoary.md +++ b/docs/version-specific/supported-software/s/Scoary.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Scoary Microbial pan-GWAS using the output from Roary @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.16`` | | ``foss/2021a`` ``1.6.16`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Score-P.md b/docs/version-specific/supported-software/s/Score-P.md index 5d27cea03..582bd2525 100644 --- a/docs/version-specific/supported-software/s/Score-P.md +++ b/docs/version-specific/supported-software/s/Score-P.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``8.3`` | | ``gompi/2022b`` ``8.4`` | ``-CUDA-12.4.0`` | ``gompi/2023b`` ``8.4`` | | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Scrappie.md b/docs/version-specific/supported-software/s/Scrappie.md index 50e9b5686..1cf7a375f 100644 --- a/docs/version-specific/supported-software/s/Scrappie.md +++ b/docs/version-specific/supported-software/s/Scrappie.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Scrappie Scrappie is a technology demonstrator for the Oxford Nanopore Research Algorithms group. @@ -7,3 +11,6 @@ Scrappie is a technology demonstrator for the Oxford Nanopore Research Algorithm version | toolchain --------|---------- ``1.3.2`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Scythe.md b/docs/version-specific/supported-software/s/Scythe.md index 9ff31e4b2..f8d15d859 100644 --- a/docs/version-specific/supported-software/s/Scythe.md +++ b/docs/version-specific/supported-software/s/Scythe.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Scythe uses a Naive Bayesian approach to classify contaminant substrings in seq version | toolchain --------|---------- ``0.994`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeaView.md b/docs/version-specific/supported-software/s/SeaView.md index d9033e47e..a188730b4 100644 --- a/docs/version-specific/supported-software/s/SeaView.md +++ b/docs/version-specific/supported-software/s/SeaView.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SeaView SeaView is a multiplatform, graphical user interface for multiple sequence alignment and molecular phylogeny. @@ -7,3 +11,6 @@ SeaView is a multiplatform, graphical user interface for multiple sequence align version | toolchain --------|---------- ``5.0.5`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Seaborn.md b/docs/version-specific/supported-software/s/Seaborn.md index b9470c5b6..76b3d930d 100644 --- a/docs/version-specific/supported-software/s/Seaborn.md +++ b/docs/version-specific/supported-software/s/Seaborn.md @@ -1,3 +1,7 @@ +--- +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. @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SearchGUI.md b/docs/version-specific/supported-software/s/SearchGUI.md index 8c3b464e7..4a5743401 100644 --- a/docs/version-specific/supported-software/s/SearchGUI.md +++ b/docs/version-specific/supported-software/s/SearchGUI.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SearchGUI is a user-friendly open-source graphical user interface for configurin version | versionsuffix | toolchain --------|---------------|---------- ``3.3.3`` | ``-Java-1.8.0_152`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Seeder.md b/docs/version-specific/supported-software/s/Seeder.md index caa538332..ee2a34139 100644 --- a/docs/version-specific/supported-software/s/Seeder.md +++ b/docs/version-specific/supported-software/s/Seeder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Seeder Seeder is a framework for DNA motif discovery. @@ -7,3 +11,6 @@ Seeder is a framework for DNA motif discovery. version | versionsuffix | toolchain --------|---------------|---------- ``0.01`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeisSol.md b/docs/version-specific/supported-software/s/SeisSol.md index f207f2ded..b481f61a1 100644 --- a/docs/version-specific/supported-software/s/SeisSol.md +++ b/docs/version-specific/supported-software/s/SeisSol.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ SeisSol is a software package for simulating wave propagation and dynamic ruptur version | versionsuffix | toolchain --------|---------------|---------- ``201703`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SelEstim.md b/docs/version-specific/supported-software/s/SelEstim.md index 0a7b6c557..ad4424512 100644 --- a/docs/version-specific/supported-software/s/SelEstim.md +++ b/docs/version-specific/supported-software/s/SelEstim.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ SelEstim is aimed at distinguishing neutral from selected polymorphisms and esti version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-Linux-64bits`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SemiBin.md b/docs/version-specific/supported-software/s/SemiBin.md index 5986e87fd..cb2a3522b 100644 --- a/docs/version-specific/supported-software/s/SemiBin.md +++ b/docs/version-specific/supported-software/s/SemiBin.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SemiBin SemiBin: Metagenomic Binning Using Siamese Neural Networks for short and long reads @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.0.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sentence-Transformers.md b/docs/version-specific/supported-software/s/Sentence-Transformers.md index e4e8f55b7..6e1fcd001 100644 --- a/docs/version-specific/supported-software/s/Sentence-Transformers.md +++ b/docs/version-specific/supported-software/s/Sentence-Transformers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Sentence-Transformers Sentence Transformers provides an easy method to compute dense vector representations for sentences, paragraphs, and images @@ -7,3 +11,6 @@ Sentence Transformers provides an easy method to compute dense vector representa version | toolchain --------|---------- ``2.2.2`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SentencePiece.md b/docs/version-specific/supported-software/s/SentencePiece.md index baaccda09..49588abee 100644 --- a/docs/version-specific/supported-software/s/SentencePiece.md +++ b/docs/version-specific/supported-software/s/SentencePiece.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SentencePiece Unsupervised text tokenizer for Neural Network-based text generation. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``0.1.97`` | | ``GCC/11.3.0`` ``0.1.99`` | | ``GCC/12.2.0`` ``0.2.0`` | | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Seq-Gen.md b/docs/version-specific/supported-software/s/Seq-Gen.md index 120d7e9d0..6a53f9cba 100644 --- a/docs/version-specific/supported-software/s/Seq-Gen.md +++ b/docs/version-specific/supported-software/s/Seq-Gen.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Seq-Gen is a program that will simulate the evolution of nucleotide or amino aci version | toolchain --------|---------- ``1.3.4`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeqAn.md b/docs/version-specific/supported-software/s/SeqAn.md index 4cefcac49..4ccf91021 100644 --- a/docs/version-specific/supported-software/s/SeqAn.md +++ b/docs/version-specific/supported-software/s/SeqAn.md @@ -1,3 +1,7 @@ +--- +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 @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.4.0`` | | ``GCCcore/9.3.0`` ``2.4.0`` | | ``foss/2018b`` ``2.4.0`` | | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeqAn3.md b/docs/version-specific/supported-software/s/SeqAn3.md index e37f0c1b6..b04025063 100644 --- a/docs/version-specific/supported-software/s/SeqAn3.md +++ b/docs/version-specific/supported-software/s/SeqAn3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SeqAn is an open source C++ library of efficient algorithms and data structure version | toolchain --------|---------- ``3.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeqKit.md b/docs/version-specific/supported-software/s/SeqKit.md index 1c92b4739..bd7c5bb83 100644 --- a/docs/version-specific/supported-software/s/SeqKit.md +++ b/docs/version-specific/supported-software/s/SeqKit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SeqKit SeqKit - a cross-platform and ultrafast toolkit for FASTA/Q file manipulation @@ -11,3 +15,6 @@ version | toolchain ``2.1.0`` | ``system`` ``2.2.0`` | ``system`` ``2.3.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeqLib.md b/docs/version-specific/supported-software/s/SeqLib.md index d5634d5eb..0693e3fb8 100644 --- a/docs/version-specific/supported-software/s/SeqLib.md +++ b/docs/version-specific/supported-software/s/SeqLib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SeqLib C++ interface to HTSlib, BWA-MEM and Fermi. @@ -11,3 +15,6 @@ version | toolchain ``1.2.0`` | ``GCC/11.2.0`` ``1.2.0`` | ``GCC/12.3.0`` ``1.2.0`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeqPrep.md b/docs/version-specific/supported-software/s/SeqPrep.md index 9df8cab7b..284e4d814 100644 --- a/docs/version-specific/supported-software/s/SeqPrep.md +++ b/docs/version-specific/supported-software/s/SeqPrep.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SeqPrep Tool for stripping adaptors and/or merging paired reads with overlap into single reads. @@ -7,3 +11,6 @@ Tool for stripping adaptors and/or merging paired reads with overlap into single version | toolchain --------|---------- ``1.3.2`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Seqmagick.md b/docs/version-specific/supported-software/s/Seqmagick.md index d826b487e..8583f2228 100644 --- a/docs/version-specific/supported-software/s/Seqmagick.md +++ b/docs/version-specific/supported-software/s/Seqmagick.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Serf.md b/docs/version-specific/supported-software/s/Serf.md index 19808a2fd..99f8a3270 100644 --- a/docs/version-specific/supported-software/s/Serf.md +++ b/docs/version-specific/supported-software/s/Serf.md @@ -1,3 +1,7 @@ +--- +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 @@ -16,3 +20,6 @@ version | toolchain ``1.3.9`` | ``foss/2017b`` ``1.3.9`` | ``intel/2017b`` ``1.3.9`` | ``iomkl/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Seurat.md b/docs/version-specific/supported-software/s/Seurat.md index ccf4ac984..b655163a2 100644 --- a/docs/version-specific/supported-software/s/Seurat.md +++ b/docs/version-specific/supported-software/s/Seurat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Seurat Seurat is an R package designed for QC, analysis, and exploration of single cell RNA-seq data. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeuratData.md b/docs/version-specific/supported-software/s/SeuratData.md index 5b2f6b962..55a45f193 100644 --- a/docs/version-specific/supported-software/s/SeuratData.md +++ b/docs/version-specific/supported-software/s/SeuratData.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SeuratData is a mechanism for distributing datasets in the form of Seurat object version | versionsuffix | toolchain --------|---------------|---------- ``20210514`` | ``-R-4.0.3`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeuratDisk.md b/docs/version-specific/supported-software/s/SeuratDisk.md index f06d8a10f..18107831a 100644 --- a/docs/version-specific/supported-software/s/SeuratDisk.md +++ b/docs/version-specific/supported-software/s/SeuratDisk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SeuratDisk Interfaces for HDF5-based Single Cell File Formats @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.0.9020`` | ``-R-4.2.1`` | ``foss/2022a`` ``20231104`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SeuratWrappers.md b/docs/version-specific/supported-software/s/SeuratWrappers.md index 7fd031f2b..919d00f87 100644 --- a/docs/version-specific/supported-software/s/SeuratWrappers.md +++ b/docs/version-specific/supported-software/s/SeuratWrappers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SeuratWrappers SeuratWrappers is a collection of community-provided methods and extensions for Seurat @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210528`` | ``-R-4.0.3`` | ``foss/2020b`` ``20221022`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Shannon.md b/docs/version-specific/supported-software/s/Shannon.md index b6bbce12d..95b74412d 100644 --- a/docs/version-specific/supported-software/s/Shannon.md +++ b/docs/version-specific/supported-software/s/Shannon.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Shannon Shannon is a program for assembling transcripts from RNA-Seq data @@ -7,3 +11,6 @@ Shannon is a program for assembling transcripts from RNA-Seq data version | versionsuffix | toolchain --------|---------------|---------- ``20170511`` | ``-Python-2.7.13`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Shapely.md b/docs/version-specific/supported-software/s/Shapely.md index 0fe82c40c..104500998 100644 --- a/docs/version-specific/supported-software/s/Shapely.md +++ b/docs/version-specific/supported-software/s/Shapely.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``1.8a1`` | | ``iccifort/2020.4.304`` ``2.0.1`` | | ``foss/2022b`` ``2.0.1`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Shasta.md b/docs/version-specific/supported-software/s/Shasta.md index 53b8e9b50..01887b1ab 100644 --- a/docs/version-specific/supported-software/s/Shasta.md +++ b/docs/version-specific/supported-software/s/Shasta.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ The goal of the Shasta long read assembler is to rapidly produce accurate assemb version | toolchain --------|---------- ``0.8.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/ShengBTE.md b/docs/version-specific/supported-software/s/ShengBTE.md index 0272678da..707f1c5f7 100644 --- a/docs/version-specific/supported-software/s/ShengBTE.md +++ b/docs/version-specific/supported-software/s/ShengBTE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ShengBTE A solver for the Boltzmann transport equation for phonons. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2021a`` ``1.5.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Short-Pair.md b/docs/version-specific/supported-software/s/Short-Pair.md index fe00fd559..10c03a997 100644 --- a/docs/version-specific/supported-software/s/Short-Pair.md +++ b/docs/version-specific/supported-software/s/Short-Pair.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Short-Pair Sensitive Short Read Homology Search for Paired-End Reads @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170125`` | ``-Python-2.7.15`` | ``foss/2018b`` ``20170125`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SiNVICT.md b/docs/version-specific/supported-software/s/SiNVICT.md index ccaf7fd47..1edf5f1f3 100644 --- a/docs/version-specific/supported-software/s/SiNVICT.md +++ b/docs/version-specific/supported-software/s/SiNVICT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SiNVICT is a tool for the detection of SNVs and indels from cfDNA/ctDNA samples version | toolchain --------|---------- ``1.0-20180817`` | ``GCC/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sibelia.md b/docs/version-specific/supported-software/s/Sibelia.md index 8ad3bbca0..743150d0d 100644 --- a/docs/version-specific/supported-software/s/Sibelia.md +++ b/docs/version-specific/supported-software/s/Sibelia.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.0.6`` | ``foss/2016b`` ``3.0.7`` | ``foss/2018b`` ``3.0.7`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Siesta.md b/docs/version-specific/supported-software/s/Siesta.md index 5e3e2269f..52252c245 100644 --- a/docs/version-specific/supported-software/s/Siesta.md +++ b/docs/version-specific/supported-software/s/Siesta.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | versionsuffix | toolchain ``4.1.5`` | | ``foss/2022a`` ``4.1.5`` | | ``intel/2020a`` ``4.1.5`` | | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SignalP.md b/docs/version-specific/supported-software/s/SignalP.md index 379bd08fb..2b5f8a9c1 100644 --- a/docs/version-specific/supported-software/s/SignalP.md +++ b/docs/version-specific/supported-software/s/SignalP.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SignalP SignalP predicts the presence and location of signal peptide cleavage sites in amino acid sequences from different organisms @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``6.0g`` | ``-fast-CUDA-11.7.0`` | ``foss/2022a`` ``6.0g`` | ``-fast`` | ``foss/2022a`` ``6.0h`` | ``-fast`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SimNIBS.md b/docs/version-specific/supported-software/s/SimNIBS.md index bcf09943d..85388c759 100644 --- a/docs/version-specific/supported-software/s/SimNIBS.md +++ b/docs/version-specific/supported-software/s/SimNIBS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SimNIBS SimNIBS is a free and open source software package for the Simulation of Non-invasive Brain Stimulation. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.2.4`` | ``foss/2020b`` ``4.0.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SimPEG.md b/docs/version-specific/supported-software/s/SimPEG.md index bac4d0ba4..3c601fcb1 100644 --- a/docs/version-specific/supported-software/s/SimPEG.md +++ b/docs/version-specific/supported-software/s/SimPEG.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.18.1`` | | ``foss/2021b`` ``0.18.1`` | | ``intel/2021b`` ``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SimVascular.md b/docs/version-specific/supported-software/s/SimVascular.md index 60787068a..b09b4eebc 100644 --- a/docs/version-specific/supported-software/s/SimVascular.md +++ b/docs/version-specific/supported-software/s/SimVascular.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SimVascular is an open source software suite for cardiovascular simulation, prov version | toolchain --------|---------- ``2.16.0406`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Simple-DFTD3.md b/docs/version-specific/supported-software/s/Simple-DFTD3.md index 2a6bde5e0..77d69d57b 100644 --- a/docs/version-specific/supported-software/s/Simple-DFTD3.md +++ b/docs/version-specific/supported-software/s/Simple-DFTD3.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Reimplementation of the D3 dispersion correction. The s-dftd3 project aims to pr version | toolchain --------|---------- ``0.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SimpleElastix.md b/docs/version-specific/supported-software/s/SimpleElastix.md index 56124d815..5f6167ce1 100644 --- a/docs/version-specific/supported-software/s/SimpleElastix.md +++ b/docs/version-specific/supported-software/s/SimpleElastix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SimpleElastix Multi-lingual medical image registration library. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SimpleITK.md b/docs/version-specific/supported-software/s/SimpleITK.md index e6a5473a0..f11f46f20 100644 --- a/docs/version-specific/supported-software/s/SimpleITK.md +++ b/docs/version-specific/supported-software/s/SimpleITK.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``2.1.1.2`` | | ``foss/2021b`` ``2.1.1.2`` | | ``foss/2022a`` ``2.3.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Simstrat.md b/docs/version-specific/supported-software/s/Simstrat.md index 0cc36eebc..3e866c593 100644 --- a/docs/version-specific/supported-software/s/Simstrat.md +++ b/docs/version-specific/supported-software/s/Simstrat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Simstrat Simstrat is a one-dimensional physical lake model for the simulation of stratification and mixing in deep stratified lakes. @@ -7,3 +11,6 @@ Simstrat is a one-dimensional physical lake model for the simulation of stratifi version | toolchain --------|---------- ``3.01`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SingleM.md b/docs/version-specific/supported-software/s/SingleM.md index 1738a043c..fdae3e344 100644 --- a/docs/version-specific/supported-software/s/SingleM.md +++ b/docs/version-specific/supported-software/s/SingleM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SingleM is a tool to find the abundances of discrete operational taxonomic units version | versionsuffix | toolchain --------|---------------|---------- ``0.12.1`` | ``-Python-2.7.15`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Singular.md b/docs/version-specific/supported-software/s/Singular.md index 3a5c056ea..66c343912 100644 --- a/docs/version-specific/supported-software/s/Singular.md +++ b/docs/version-specific/supported-software/s/Singular.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``4.1.2`` | ``system`` ``4.3.2p10`` | ``gfbf/2022a`` ``4.4.0`` | ``gfbf/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SlamDunk.md b/docs/version-specific/supported-software/s/SlamDunk.md index 7fb96ef09..d423c1cb7 100644 --- a/docs/version-specific/supported-software/s/SlamDunk.md +++ b/docs/version-specific/supported-software/s/SlamDunk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SlamDunk SlamDunk is a novel, fully automated software tool for automated, robust, scalable and reproducible SLAMseq data analysis. @@ -7,3 +11,6 @@ SlamDunk is a novel, fully automated software tool for automated, robust, scalab version | toolchain --------|---------- ``0.4.3`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Smoldyn.md b/docs/version-specific/supported-software/s/Smoldyn.md index 6578dad8c..aced860b6 100644 --- a/docs/version-specific/supported-software/s/Smoldyn.md +++ b/docs/version-specific/supported-software/s/Smoldyn.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Smoldyn is a computer program for cell-scale biochemical simulations. It simulat version | toolchain --------|---------- ``2.48`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sniffles.md b/docs/version-specific/supported-software/s/Sniffles.md index 2a8bd01d8..523c41fd8 100644 --- a/docs/version-specific/supported-software/s/Sniffles.md +++ b/docs/version-specific/supported-software/s/Sniffles.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A fast structural variant caller for long-read sequencing, Sniffles2 accurately version | toolchain --------|---------- ``2.0.7`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SoPlex.md b/docs/version-specific/supported-software/s/SoPlex.md index b425bb018..17b8f4d34 100644 --- a/docs/version-specific/supported-software/s/SoPlex.md +++ b/docs/version-specific/supported-software/s/SoPlex.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SoPlex is an optimization package for solving linear programming problems (LPs) version | toolchain --------|---------- ``2.2.1`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SoQt.md b/docs/version-specific/supported-software/s/SoQt.md index 8e1598add..9d2e39b3c 100644 --- a/docs/version-specific/supported-software/s/SoQt.md +++ b/docs/version-specific/supported-software/s/SoQt.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.6.0`` | ``GCC/10.3.0`` ``1.6.0`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SoX.md b/docs/version-specific/supported-software/s/SoX.md index 4fe73244c..a10a26b49 100644 --- a/docs/version-specific/supported-software/s/SoX.md +++ b/docs/version-specific/supported-software/s/SoX.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``14.4.2`` | ``GCC/8.3.0`` ``14.4.2`` | ``GCCcore/11.3.0`` ``14.4.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SoXt.md b/docs/version-specific/supported-software/s/SoXt.md index aace06c27..8e5e5cc46 100644 --- a/docs/version-specific/supported-software/s/SoXt.md +++ b/docs/version-specific/supported-software/s/SoXt.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SoXt is an Xt/Motif glue library for Coin. It can also be used on top of the SG version | toolchain --------|---------- ``1.4.0`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SolexaQA++.md b/docs/version-specific/supported-software/s/SolexaQA++.md index b612c67bf..38193e6b0 100644 --- a/docs/version-specific/supported-software/s/SolexaQA++.md +++ b/docs/version-specific/supported-software/s/SolexaQA++.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SolexaQA calculates sequence quality statistics and creates visual representatio version | toolchain --------|---------- ``3.1.5`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SortMeRNA.md b/docs/version-specific/supported-software/s/SortMeRNA.md index 056f5eb1b..f47177c72 100644 --- a/docs/version-specific/supported-software/s/SortMeRNA.md +++ b/docs/version-specific/supported-software/s/SortMeRNA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SortMeRNA SortMeRNA is a biological sequence analysis tool for filtering, mapping and OTU-picking NGS reads. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.1`` | ``GCC/9.3.0`` ``2.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SoupX.md b/docs/version-specific/supported-software/s/SoupX.md index 6db95bb1c..3e49841b4 100644 --- a/docs/version-specific/supported-software/s/SoupX.md +++ b/docs/version-specific/supported-software/s/SoupX.md @@ -1,3 +1,7 @@ +--- +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) . @@ -7,3 +11,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SpaceRanger.md b/docs/version-specific/supported-software/s/SpaceRanger.md index 9bd0b5a81..0c6a75b02 100644 --- a/docs/version-specific/supported-software/s/SpaceRanger.md +++ b/docs/version-specific/supported-software/s/SpaceRanger.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | toolchain ``2.0.1`` | ``GCC/11.3.0`` ``2.1.0`` | ``GCC/11.3.0`` ``2.1.0`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Spack.md b/docs/version-specific/supported-software/s/Spack.md index fb929b299..d1431a226 100644 --- a/docs/version-specific/supported-software/s/Spack.md +++ b/docs/version-specific/supported-software/s/Spack.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.17.0`` | ``system`` ``0.17.2`` | ``system`` ``0.21.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Spark.md b/docs/version-specific/supported-software/s/Spark.md index 8bd4969dc..6dfdb6e7d 100644 --- a/docs/version-specific/supported-software/s/Spark.md +++ b/docs/version-specific/supported-software/s/Spark.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Spark Spark is Hadoop MapReduce done in memory @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``3.3.1`` | | ``foss/2022a`` ``3.5.0`` | | ``foss/2023a`` ``3.5.1`` | ``-Java-17`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SpatialDE.md b/docs/version-specific/supported-software/s/SpatialDE.md index eeb945c3d..74bb6e2ef 100644 --- a/docs/version-specific/supported-software/s/SpatialDE.md +++ b/docs/version-specific/supported-software/s/SpatialDE.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SpatialDE is a method to identify genes which significantly depend on spatial co version | toolchain --------|---------- ``1.1.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SpectrA.md b/docs/version-specific/supported-software/s/SpectrA.md index d48de1428..b2aa647ef 100644 --- a/docs/version-specific/supported-software/s/SpectrA.md +++ b/docs/version-specific/supported-software/s/SpectrA.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.0.1`` | ``GCCcore/11.2.0`` ``1.0.1`` | ``GCCcore/11.3.0`` ``1.0.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md index 38d7ad70d..d4c148b54 100644 --- a/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md +++ b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Sphinx theme designed to provide a great reader experience for documentation us version | toolchain --------|---------- ``1.1.1`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Sphinx.md b/docs/version-specific/supported-software/s/Sphinx.md index e76a33d1e..d30a34f20 100644 --- a/docs/version-specific/supported-software/s/Sphinx.md +++ b/docs/version-specific/supported-software/s/Sphinx.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SpiceyPy.md b/docs/version-specific/supported-software/s/SpiceyPy.md index 6705a9438..8769fdd7a 100644 --- a/docs/version-specific/supported-software/s/SpiceyPy.md +++ b/docs/version-specific/supported-software/s/SpiceyPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SpiceyPy SpiceyPy is a Python wrapper for the NAIF C SPICE Toolkit (N65) @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SpiecEasi.md b/docs/version-specific/supported-software/s/SpiecEasi.md index c114e4b86..d873f03b7 100644 --- a/docs/version-specific/supported-software/s/SpiecEasi.md +++ b/docs/version-specific/supported-software/s/SpiecEasi.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SpiecEasi Sparse InversE Covariance estimation for Ecological Association and Statistical Inference @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SplAdder.md b/docs/version-specific/supported-software/s/SplAdder.md index cd6be024d..8a4f568ed 100644 --- a/docs/version-specific/supported-software/s/SplAdder.md +++ b/docs/version-specific/supported-software/s/SplAdder.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Splicing Adder is a toolbox for alternative splicing analysis based on RNA-Seq a version | versionsuffix | toolchain --------|---------------|---------- ``2.4.2`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SpliceMap.md b/docs/version-specific/supported-software/s/SpliceMap.md index af404b25d..26205e704 100644 --- a/docs/version-specific/supported-software/s/SpliceMap.md +++ b/docs/version-specific/supported-software/s/SpliceMap.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SpliceMap is a de novo splice junction discovery and alignment tool. It offers version | toolchain --------|---------- ``3.3.5.2`` | ``GCC/7.3.0-2.30`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Spyder.md b/docs/version-specific/supported-software/s/Spyder.md index 9fa219d47..94610ca31 100644 --- a/docs/version-specific/supported-software/s/Spyder.md +++ b/docs/version-specific/supported-software/s/Spyder.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Spyder Spyder is an interactive Python development environment providing MATLAB-like features in a simple and light-weighted software. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SqueezeMeta.md b/docs/version-specific/supported-software/s/SqueezeMeta.md index 46d63c883..866037ac4 100644 --- a/docs/version-specific/supported-software/s/SqueezeMeta.md +++ b/docs/version-specific/supported-software/s/SqueezeMeta.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SqueezeMeta SqueezeMeta is a full automatic pipeline for metagenomics/metatranscriptomics, covering all steps of the analysis. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Squidpy.md b/docs/version-specific/supported-software/s/Squidpy.md index 60faf740e..704d219ef 100644 --- a/docs/version-specific/supported-software/s/Squidpy.md +++ b/docs/version-specific/supported-software/s/Squidpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Squidpy Squidpy is a tool for the analysis and visualization of spatial molecular data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2021b`` ``1.4.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/StaMPS.md b/docs/version-specific/supported-software/s/StaMPS.md index 0561c111f..6b0e7e5ef 100644 --- a/docs/version-specific/supported-software/s/StaMPS.md +++ b/docs/version-specific/supported-software/s/StaMPS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # StaMPS A software package to extract ground displacements from time series of synthetic aperture radar (SAR) acquisitions. @@ -7,3 +11,6 @@ A software package to extract ground displacements from time series of synthetic version | versionsuffix | toolchain --------|---------------|---------- ``3.3b1`` | ``-Perl-5.24.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Stack.md b/docs/version-specific/supported-software/s/Stack.md index 365873cd3..764230757 100644 --- a/docs/version-specific/supported-software/s/Stack.md +++ b/docs/version-specific/supported-software/s/Stack.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Stack Stack is a cross-platform program for developing Haskell projects. It is intended for Haskellers both new and experienced. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``2.11.1`` | ``-x86_64`` | ``system`` ``2.13.1`` | ``-x86_64`` | ``system`` ``2.3.3`` | ``-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Stacks.md b/docs/version-specific/supported-software/s/Stacks.md index 4c99013a0..ec2741c1f 100644 --- a/docs/version-specific/supported-software/s/Stacks.md +++ b/docs/version-specific/supported-software/s/Stacks.md @@ -1,3 +1,7 @@ +--- +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. @@ -31,3 +35,6 @@ version | toolchain ``2.53`` | ``iccifort/2019.5.281`` ``2.54`` | ``foss/2020a`` ``2.62`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Stampy.md b/docs/version-specific/supported-software/s/Stampy.md index 96ff38858..71acaa269 100644 --- a/docs/version-specific/supported-software/s/Stampy.md +++ b/docs/version-specific/supported-software/s/Stampy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Stampy Stampy is a package for the mapping of short reads from illumina sequencing machines onto a reference genome. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.31`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.0.32`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Stata.md b/docs/version-specific/supported-software/s/Stata.md index 1f22deb79..a4b22f591 100644 --- a/docs/version-specific/supported-software/s/Stata.md +++ b/docs/version-specific/supported-software/s/Stata.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``15`` | | ``system`` ``16`` | ``-legacy`` | ``system`` ``17`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Statistics-R.md b/docs/version-specific/supported-software/s/Statistics-R.md index 23e309422..cf17ade17 100644 --- a/docs/version-specific/supported-software/s/Statistics-R.md +++ b/docs/version-specific/supported-software/s/Statistics-R.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Statistics-R Perl interface with the R statistical program @@ -7,3 +11,6 @@ Perl interface with the R statistical program version | toolchain --------|---------- ``0.34`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Strainberry.md b/docs/version-specific/supported-software/s/Strainberry.md index 919cfcb17..3a05191e0 100644 --- a/docs/version-specific/supported-software/s/Strainberry.md +++ b/docs/version-specific/supported-software/s/Strainberry.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Strainberry is a method that performs strain separation in low-complexity metage version | toolchain --------|---------- ``1.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/StringTie.md b/docs/version-specific/supported-software/s/StringTie.md index d7d7692d6..1ac032298 100644 --- a/docs/version-specific/supported-software/s/StringTie.md +++ b/docs/version-specific/supported-software/s/StringTie.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # StringTie StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Structure.md b/docs/version-specific/supported-software/s/Structure.md index efaafacb4..477642437 100644 --- a/docs/version-specific/supported-software/s/Structure.md +++ b/docs/version-specific/supported-software/s/Structure.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Structure The program structure is a free software package for using multi-locus genotype data to investigate population structure. @@ -11,3 +15,6 @@ version | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Structure_threader.md b/docs/version-specific/supported-software/s/Structure_threader.md index 4a5d83801..379517eaa 100644 --- a/docs/version-specific/supported-software/s/Structure_threader.md +++ b/docs/version-specific/supported-software/s/Structure_threader.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Structure_threader A program to parallelize the runs of Structure, fastStructure, MavericK and ALStructure software. @@ -7,3 +11,6 @@ A program to parallelize the runs of Structure, fastStructure, MavericK and ALS version | toolchain --------|---------- ``1.3.10`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SuAVE-biomat.md b/docs/version-specific/supported-software/s/SuAVE-biomat.md index 1a7a23d32..56b74dd43 100644 --- a/docs/version-specific/supported-software/s/SuAVE-biomat.md +++ b/docs/version-specific/supported-software/s/SuAVE-biomat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SuAVE-biomat Surface Assessment via Grid Evaluation (SuAVE) for Every Surface Curvature and Cavity Shape @@ -7,3 +11,6 @@ Surface Assessment via Grid Evaluation (SuAVE) for Every Surface Curvature and C version | toolchain --------|---------- ``2.0.0-20230815`` | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Subread.md b/docs/version-specific/supported-software/s/Subread.md index 3551f69e1..f4437aa82 100644 --- a/docs/version-specific/supported-software/s/Subread.md +++ b/docs/version-specific/supported-software/s/Subread.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Subread High performance read alignment, quantification and mutation discovery @@ -17,3 +21,6 @@ version | toolchain ``2.0.3`` | ``GCC/11.2.0`` ``2.0.3`` | ``GCC/9.3.0`` ``2.0.4`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Subversion.md b/docs/version-specific/supported-software/s/Subversion.md index a825a1c79..746feb68b 100644 --- a/docs/version-specific/supported-software/s/Subversion.md +++ b/docs/version-specific/supported-software/s/Subversion.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Subversion Subversion is an open source version control system. @@ -16,3 +20,6 @@ version | toolchain ``1.14.2`` | ``GCCcore/11.3.0`` ``1.9.7`` | ``iomkl/2018a`` ``1.9.9`` | ``GCCcore/7.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SuiteSparse.md b/docs/version-specific/supported-software/s/SuiteSparse.md index da85911dd..3ffa0fcbb 100644 --- a/docs/version-specific/supported-software/s/SuiteSparse.md +++ b/docs/version-specific/supported-software/s/SuiteSparse.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SuiteSparse SuiteSparse is a collection of libraries manipulate sparse matrices. @@ -49,3 +53,6 @@ version | versionsuffix | toolchain ``5.8.1`` | ``-METIS-5.1.0`` | ``foss/2020b`` ``5.8.1`` | ``-METIS-5.1.0`` | ``intel/2020b`` ``7.1.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SunPy.md b/docs/version-specific/supported-software/s/SunPy.md index e9d7eb8ab..d5d323e95 100644 --- a/docs/version-specific/supported-software/s/SunPy.md +++ b/docs/version-specific/supported-software/s/SunPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SunPy The community-developed, free and open-source solar data analysis environment for Python. @@ -7,3 +11,6 @@ The community-developed, free and open-source solar data analysis environment fo version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SuperLU.md b/docs/version-specific/supported-software/s/SuperLU.md index a78ce0876..6a9beb2ff 100644 --- a/docs/version-specific/supported-software/s/SuperLU.md +++ b/docs/version-specific/supported-software/s/SuperLU.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``5.3.0`` | ``foss/2022a`` ``5.3.0`` | ``intel/2020b`` ``5.3.0`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SuperLU_DIST.md b/docs/version-specific/supported-software/s/SuperLU_DIST.md index 706617e28..ea50c9843 100644 --- a/docs/version-specific/supported-software/s/SuperLU_DIST.md +++ b/docs/version-specific/supported-software/s/SuperLU_DIST.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``8.1.0`` | | ``foss/2022a`` ``8.1.2`` | | ``foss/2022b`` ``8.1.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SyRI.md b/docs/version-specific/supported-software/s/SyRI.md index 4bf79dc98..ad8bc95ba 100644 --- a/docs/version-specific/supported-software/s/SyRI.md +++ b/docs/version-specific/supported-software/s/SyRI.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SyRI Synteny and Rearrangement Identifier (SyRI). @@ -7,3 +11,6 @@ Synteny and Rearrangement Identifier (SyRI). version | toolchain --------|---------- ``1.4`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SymEngine-python.md b/docs/version-specific/supported-software/s/SymEngine-python.md index 085d54ec0..e4de16ddd 100644 --- a/docs/version-specific/supported-software/s/SymEngine-python.md +++ b/docs/version-specific/supported-software/s/SymEngine-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SymEngine-python Python wrappers to the C++ library SymEngine, a fast C++ symbolic manipulation library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.11.0`` | ``gfbf/2023b`` ``0.7.2`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/SymEngine.md b/docs/version-specific/supported-software/s/SymEngine.md index 0a236f5f3..f06a62e8e 100644 --- a/docs/version-specific/supported-software/s/SymEngine.md +++ b/docs/version-specific/supported-software/s/SymEngine.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # SymEngine SymEngine is a standalone fast C++ symbolic manipulation library @@ -10,3 +14,6 @@ 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/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/Szip.md b/docs/version-specific/supported-software/s/Szip.md index 22705a9e0..18983291b 100644 --- a/docs/version-specific/supported-software/s/Szip.md +++ b/docs/version-specific/supported-software/s/Szip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Szip Szip compression software, providing lossless compression of scientific data @@ -34,3 +38,6 @@ version | toolchain ``2.1.1`` | ``GCCcore/8.2.0`` ``2.1.1`` | ``GCCcore/8.3.0`` ``2.1.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/index.md b/docs/version-specific/supported-software/s/index.md index 9cc604ff9..6df25fe7e 100644 --- a/docs/version-specific/supported-software/s/index.md +++ b/docs/version-specific/supported-software/s/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (s) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - *s* - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [S-Lang](S-Lang.md) * [s3fs](s3fs.md) * [S4](S4.md) diff --git a/docs/version-specific/supported-software/s/s3fs.md b/docs/version-specific/supported-software/s/s3fs.md index 27a927edf..8f61dd41d 100644 --- a/docs/version-specific/supported-software/s/s3fs.md +++ b/docs/version-specific/supported-software/s/s3fs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # s3fs S3FS builds on aiobotocore to provide a convenient Python filesystem interface for S3.. @@ -7,3 +11,6 @@ S3FS builds on aiobotocore to provide a convenient Python filesystem interface f version | toolchain --------|---------- ``2023.12.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/safestringlib.md b/docs/version-specific/supported-software/s/safestringlib.md index 8e56e21a9..90459d388 100644 --- a/docs/version-specific/supported-software/s/safestringlib.md +++ b/docs/version-specific/supported-software/s/safestringlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Secure Development Lifecycle (SDL) recommends banning certain C Library func version | toolchain --------|---------- ``20240228`` | ``intel-compilers/2023.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/samblaster.md b/docs/version-specific/supported-software/s/samblaster.md index 9f6d039cb..034f8f694 100644 --- a/docs/version-specific/supported-software/s/samblaster.md +++ b/docs/version-specific/supported-software/s/samblaster.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # samblaster samblaster is a fast and flexible program for marking duplicates in read-id grouped1 paired-end SAM files. @@ -10,3 +14,6 @@ version | toolchain ``0.1.26`` | ``GCC/10.2.0`` ``0.1.26`` | ``GCC/10.3.0`` ``0.1.26`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/samclip.md b/docs/version-specific/supported-software/s/samclip.md index f02ba2b7b..4278813f7 100644 --- a/docs/version-specific/supported-software/s/samclip.md +++ b/docs/version-specific/supported-software/s/samclip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # samclip Filter SAM file for soft and hard clipped alignments @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``GCCcore/10.2.0`` ``0.4.0`` | | ``GCCcore/11.2.0`` ``0.4.0`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/samplot.md b/docs/version-specific/supported-software/s/samplot.md index dd7b815ee..06929e5e6 100644 --- a/docs/version-specific/supported-software/s/samplot.md +++ b/docs/version-specific/supported-software/s/samplot.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # samplot Plot structural variant signals from many BAMs and CRAMs. @@ -7,3 +11,6 @@ Plot structural variant signals from many BAMs and CRAMs. version | toolchain --------|---------- ``1.3.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sansa.md b/docs/version-specific/supported-software/s/sansa.md index e0eb7e4a2..15ae5a8f8 100644 --- a/docs/version-specific/supported-software/s/sansa.md +++ b/docs/version-specific/supported-software/s/sansa.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sansa Structural variant (SV) annotation, a companion to the 'dolly' tool. @@ -7,3 +11,6 @@ Structural variant (SV) annotation, a companion to the 'dolly' tool. version | toolchain --------|---------- ``0.0.7`` | ``gompi/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/savvy.md b/docs/version-specific/supported-software/s/savvy.md index 5528b5b62..1234ddf11 100644 --- a/docs/version-specific/supported-software/s/savvy.md +++ b/docs/version-specific/supported-software/s/savvy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # savvy Interface to various variant calling formats. @@ -7,3 +11,6 @@ Interface to various variant calling formats. version | toolchain --------|---------- ``1.3.0`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sbt.md b/docs/version-specific/supported-software/s/sbt.md index 89fa1f4ee..042148f52 100644 --- a/docs/version-specific/supported-software/s/sbt.md +++ b/docs/version-specific/supported-software/s/sbt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sbt sbt is a build tool for Scala, Java, and more. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.3.13`` | ``-Java-1.8`` | ``system`` ``1.3.13`` | ``-Java-8`` | ``system`` ``1.6.2`` | ``-Java-8`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scArches.md b/docs/version-specific/supported-software/s/scArches.md index 08b93ebc9..f3309181f 100644 --- a/docs/version-specific/supported-software/s/scArches.md +++ b/docs/version-specific/supported-software/s/scArches.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scArches Single-cell architecture surgery (scArches) is a package for reference-based analysis of single-cell data. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.5.6`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scCODA.md b/docs/version-specific/supported-software/s/scCODA.md index b5c008b88..1f22c73bf 100644 --- a/docs/version-specific/supported-software/s/scCODA.md +++ b/docs/version-specific/supported-software/s/scCODA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scCODA scCODA allows for identification of compositional changes in high-throughput sequencing count data, especially cell compositions from scRNA-seq. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1.9`` | ``foss/2021a`` ``0.1.9`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scGSVA.md b/docs/version-specific/supported-software/s/scGSVA.md index ada0a9494..321ce6c74 100644 --- a/docs/version-specific/supported-software/s/scGSVA.md +++ b/docs/version-specific/supported-software/s/scGSVA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ scGSVA provides wrap functions to do GSVA analysis for single cell data. And scG version | versionsuffix | toolchain --------|---------------|---------- ``0.0.14`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scGeneFit.md b/docs/version-specific/supported-software/s/scGeneFit.md index fd932424e..8fee303a0 100644 --- a/docs/version-specific/supported-software/s/scGeneFit.md +++ b/docs/version-specific/supported-software/s/scGeneFit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scGeneFit Python code for genetic marker selection using linear programming. @@ -7,3 +11,6 @@ Python code for genetic marker selection using linear programming. version | toolchain --------|---------- ``1.0.2`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scHiCExplorer.md b/docs/version-specific/supported-software/s/scHiCExplorer.md index f82ea2887..e0ce6bbb4 100644 --- a/docs/version-specific/supported-software/s/scHiCExplorer.md +++ b/docs/version-specific/supported-software/s/scHiCExplorer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scHiCExplorer The scHiCExplorer is a software to demultiplex, process, correct, normalize, manipulate, analyse and visualize single-cell Hi-C data. @@ -7,3 +11,6 @@ The scHiCExplorer is a software to demultiplex, process, correct, normalize, man version | toolchain --------|---------- ``7`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scPred.md b/docs/version-specific/supported-software/s/scPred.md index 2b24f341f..4936e5997 100644 --- a/docs/version-specific/supported-software/s/scPred.md +++ b/docs/version-specific/supported-software/s/scPred.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scPred scPred package for cell type prediction from scRNA-seq data @@ -7,3 +11,6 @@ scPred package for cell type prediction from scRNA-seq data version | versionsuffix | toolchain --------|---------------|---------- ``1.9.2`` | ``-R-4.1.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scVelo.md b/docs/version-specific/supported-software/s/scVelo.md index e6fe03e73..2928dc10b 100644 --- a/docs/version-specific/supported-software/s/scVelo.md +++ b/docs/version-specific/supported-software/s/scVelo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scVelo scVelo is a scalable toolkit for estimating and analyzing RNA velocities in single cells using dynamical modeling. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.1.24`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.2.3`` | | ``foss/2021a`` ``0.3.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scanpy.md b/docs/version-specific/supported-software/s/scanpy.md index 4e037a66d..d47a53c7f 100644 --- a/docs/version-specific/supported-software/s/scanpy.md +++ b/docs/version-specific/supported-software/s/scanpy.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.9.1`` | ``foss/2021b`` ``1.9.1`` | ``foss/2022a`` ``1.9.8`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sceasy.md b/docs/version-specific/supported-software/s/sceasy.md index 42f8866ac..d1cb9f651 100644 --- a/docs/version-specific/supported-software/s/sceasy.md +++ b/docs/version-specific/supported-software/s/sceasy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sceasy sceasy is a package that helps easy conversion of different single-cell data formats to each other @@ -7,3 +11,6 @@ sceasy is a package that helps easy conversion of different single-cell data for version | versionsuffix | toolchain --------|---------------|---------- ``0.0.7`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sciClone.md b/docs/version-specific/supported-software/s/sciClone.md index 15965a1b6..076d74fcc 100644 --- a/docs/version-specific/supported-software/s/sciClone.md +++ b/docs/version-specific/supported-software/s/sciClone.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sciClone An R package for inferring the subclonal architecture of tumors @@ -7,3 +11,6 @@ An R package for inferring the subclonal architecture of tumors version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scib-metrics.md b/docs/version-specific/supported-software/s/scib-metrics.md index 7cd7e1435..5e64ae9d8 100644 --- a/docs/version-specific/supported-software/s/scib-metrics.md +++ b/docs/version-specific/supported-software/s/scib-metrics.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scib-metrics Accelerated and Python-only metrics for benchmarking single-cell integration outputs @@ -7,3 +11,6 @@ Accelerated and Python-only metrics for benchmarking single-cell integration out version | toolchain --------|---------- ``0.3.3`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scib.md b/docs/version-specific/supported-software/s/scib.md index b6506897a..12869d752 100644 --- a/docs/version-specific/supported-software/s/scib.md +++ b/docs/version-specific/supported-software/s/scib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scib Benchmarking atlas-level data integration in single-cell genomics. @@ -9,3 +13,6 @@ version | toolchain ``1.1.1`` | ``foss/2022a`` ``1.1.3`` | ``foss/2021a`` ``1.1.4`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-allel.md b/docs/version-specific/supported-software/s/scikit-allel.md index 1b969d69b..245b38e46 100644 --- a/docs/version-specific/supported-software/s/scikit-allel.md +++ b/docs/version-specific/supported-software/s/scikit-allel.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.3.2`` | | ``foss/2020b`` ``1.3.3`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-bio.md b/docs/version-specific/supported-software/s/scikit-bio.md index b0b4c7d34..a766bd171 100644 --- a/docs/version-specific/supported-software/s/scikit-bio.md +++ b/docs/version-specific/supported-software/s/scikit-bio.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``0.5.7`` | | ``foss/2021b`` ``0.5.7`` | | ``foss/2022a`` ``0.6.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-build-core.md b/docs/version-specific/supported-software/s/scikit-build-core.md index e2f167973..096199069 100644 --- a/docs/version-specific/supported-software/s/scikit-build-core.md +++ b/docs/version-specific/supported-software/s/scikit-build-core.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.5.0`` | ``GCCcore/12.3.0`` ``0.9.3`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-build.md b/docs/version-specific/supported-software/s/scikit-build.md index 76fc53cb9..b10d66d9e 100644 --- a/docs/version-specific/supported-software/s/scikit-build.md +++ b/docs/version-specific/supported-software/s/scikit-build.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scikit-build Scikit-Build, or skbuild, is an improved build system generator for CPython C/C++/Fortran/Cython extensions. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``0.17.2`` | | ``GCCcore/12.2.0`` ``0.17.6`` | | ``GCCcore/12.3.0`` ``0.17.6`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-cuda.md b/docs/version-specific/supported-software/s/scikit-cuda.md index 1d64fa5bb..fff73997e 100644 --- a/docs/version-specific/supported-software/s/scikit-cuda.md +++ b/docs/version-specific/supported-software/s/scikit-cuda.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ SciKit-cuda, a.k.a. skcuda, provides Python interfaces to many of the functions version | versionsuffix | toolchain --------|---------------|---------- ``0.5.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-extremes.md b/docs/version-specific/supported-software/s/scikit-extremes.md index b432796ac..c9376e271 100644 --- a/docs/version-specific/supported-software/s/scikit-extremes.md +++ b/docs/version-specific/supported-software/s/scikit-extremes.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scikit-extremes scikit-extremes is a basic statistical package to perform univariate extreme value calculations using Python @@ -7,3 +11,6 @@ scikit-extremes is a basic statistical package to perform univariate extreme va version | toolchain --------|---------- ``2022.4.10`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-image.md b/docs/version-specific/supported-software/s/scikit-image.md index 120804f90..788e11a83 100644 --- a/docs/version-specific/supported-software/s/scikit-image.md +++ b/docs/version-specific/supported-software/s/scikit-image.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scikit-image scikit-image is a collection of algorithms for image processing. @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``0.19.3`` | | ``foss/2022a`` ``0.21.0`` | | ``foss/2022b`` ``0.22.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-learn.md b/docs/version-specific/supported-software/s/scikit-learn.md index 587977cff..963ed011f 100644 --- a/docs/version-specific/supported-software/s/scikit-learn.md +++ b/docs/version-specific/supported-software/s/scikit-learn.md @@ -1,3 +1,7 @@ +--- +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. @@ -71,3 +75,6 @@ version | versionsuffix | toolchain ``1.3.2`` | | ``gfbf/2023b`` ``1.4.0`` | | ``gfbf/2023b`` ``1.4.2`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-lego.md b/docs/version-specific/supported-software/s/scikit-lego.md index 451d8b248..1f335de2e 100644 --- a/docs/version-specific/supported-software/s/scikit-lego.md +++ b/docs/version-specific/supported-software/s/scikit-lego.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.6.16`` | ``foss/2022a`` ``0.7.4`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-misc.md b/docs/version-specific/supported-software/s/scikit-misc.md index 484fdcb74..7f25a5879 100644 --- a/docs/version-specific/supported-software/s/scikit-misc.md +++ b/docs/version-specific/supported-software/s/scikit-misc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scikit-misc Miscellaneous tools for data analysis and scientific computing @@ -9,3 +13,6 @@ version | toolchain ``0.1.4`` | ``foss/2021a`` ``0.1.4`` | ``foss/2022a`` ``0.3.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-multilearn.md b/docs/version-specific/supported-software/s/scikit-multilearn.md index 520e1df38..27ef76015 100644 --- a/docs/version-specific/supported-software/s/scikit-multilearn.md +++ b/docs/version-specific/supported-software/s/scikit-multilearn.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Scikit-multilearn is a BSD-licensed library for multi-label classification that version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-optimize.md b/docs/version-specific/supported-software/s/scikit-optimize.md index ca6cd656d..ddb0c8f67 100644 --- a/docs/version-specific/supported-software/s/scikit-optimize.md +++ b/docs/version-specific/supported-software/s/scikit-optimize.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.9.0`` | | ``foss/2021a`` ``0.9.0`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-plot.md b/docs/version-specific/supported-software/s/scikit-plot.md index f7b5b2342..434876463 100644 --- a/docs/version-specific/supported-software/s/scikit-plot.md +++ b/docs/version-specific/supported-software/s/scikit-plot.md @@ -1,3 +1,7 @@ +--- +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*. @@ -7,3 +11,6 @@ Scikit-plot is the result of an unartistic data scientist's dreadful realization version | toolchain --------|---------- ``0.3.7`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scikit-uplift.md b/docs/version-specific/supported-software/s/scikit-uplift.md index a008ae68f..834739b6a 100644 --- a/docs/version-specific/supported-software/s/scikit-uplift.md +++ b/docs/version-specific/supported-software/s/scikit-uplift.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ scikit-uplift is a Python module for classic approaches for uplift modeling buil version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scipy.md b/docs/version-specific/supported-software/s/scipy.md index b0f496d77..a34c6d1fa 100644 --- a/docs/version-specific/supported-software/s/scipy.md +++ b/docs/version-specific/supported-software/s/scipy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scipy SciPy is a collection of mathematical algorithms and convenience functions built on the Numpy extension for Python. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scp.md b/docs/version-specific/supported-software/s/scp.md index 1fff0ff17..eec5aaaee 100644 --- a/docs/version-specific/supported-software/s/scp.md +++ b/docs/version-specific/supported-software/s/scp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scp The scp.py module uses a paramiko transport to send and recieve files via the scp1 protocol. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scrublet.md b/docs/version-specific/supported-software/s/scrublet.md index 0fbff48ba..ae4d181cd 100644 --- a/docs/version-specific/supported-software/s/scrublet.md +++ b/docs/version-specific/supported-software/s/scrublet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # scrublet Single-Cell Remover of Doublets - Python code for identifying doublets in single-cell RNA-seq data @@ -7,3 +11,6 @@ Single-Cell Remover of Doublets - Python code for identifying doublets in single version | toolchain --------|---------- ``0.2.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/scvi-tools.md b/docs/version-specific/supported-software/s/scvi-tools.md index f68d4d9f9..d28609a12 100644 --- a/docs/version-specific/supported-software/s/scvi-tools.md +++ b/docs/version-specific/supported-software/s/scvi-tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.16.4`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.16.4`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/segemehl.md b/docs/version-specific/supported-software/s/segemehl.md index 0ec74a4bc..c259b2238 100644 --- a/docs/version-specific/supported-software/s/segemehl.md +++ b/docs/version-specific/supported-software/s/segemehl.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | toolchain ``0.3.4`` | ``GCC/8.3.0`` ``0.3.4`` | ``foss/2018b`` ``0.3.4`` | ``iccifort/2020.4.304`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/segment-anything.md b/docs/version-specific/supported-software/s/segment-anything.md index 09e12061b..58d8b0334 100644 --- a/docs/version-specific/supported-software/s/segment-anything.md +++ b/docs/version-specific/supported-software/s/segment-anything.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Segment Anything Model (SAM) produces high quality object masks from input p version | toolchain --------|---------- ``1.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/segmentation-models-pytorch.md b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md index 863af866b..80acd4861 100644 --- a/docs/version-specific/supported-software/s/segmentation-models-pytorch.md +++ b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # segmentation-models-pytorch Python library with Neural Networks for Image Segmentation based on PyTorch. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.3`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/segmentation-models.md b/docs/version-specific/supported-software/s/segmentation-models.md index de0b6161c..361c70d8f 100644 --- a/docs/version-specific/supported-software/s/segmentation-models.md +++ b/docs/version-specific/supported-software/s/segmentation-models.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # segmentation-models Python library with Neural Networks for Image Segmentation based on Keras and TensorFlow. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/semla.md b/docs/version-specific/supported-software/s/semla.md index db6a1ecad..b45a68c0e 100644 --- a/docs/version-specific/supported-software/s/semla.md +++ b/docs/version-specific/supported-software/s/semla.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # semla R interface to the Apache Arrow C++ library @@ -7,3 +11,6 @@ R interface to the Apache Arrow C++ library version | versionsuffix | toolchain --------|---------------|---------- ``1.1.6`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sentinelsat.md b/docs/version-specific/supported-software/s/sentinelsat.md index 026d84662..d1a5dd47c 100644 --- a/docs/version-specific/supported-software/s/sentinelsat.md +++ b/docs/version-specific/supported-software/s/sentinelsat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sentinelsat Sentinelsat makes searching, downloading and retrieving the metadata of Sentinel satellite images from the Copernicus Open Access Hub easy. @@ -7,3 +11,6 @@ Sentinelsat makes searching, downloading and retrieving the metadata of Sentinel version | toolchain --------|---------- ``1.2.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sep.md b/docs/version-specific/supported-software/s/sep.md index e03d38101..4f389274e 100644 --- a/docs/version-specific/supported-software/s/sep.md +++ b/docs/version-specific/supported-software/s/sep.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sep Python and C library for Source Extraction and Photometry. (this easyconfig provides python library only) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.0.3`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/seq2HLA.md b/docs/version-specific/supported-software/s/seq2HLA.md index a8ddfe9b5..c718ab15c 100644 --- a/docs/version-specific/supported-software/s/seq2HLA.md +++ b/docs/version-specific/supported-software/s/seq2HLA.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` ``2.3`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/seqtk.md b/docs/version-specific/supported-software/s/seqtk.md index c167bbeaf..dc2af3069 100644 --- a/docs/version-specific/supported-software/s/seqtk.md +++ b/docs/version-specific/supported-software/s/seqtk.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``1.3`` | ``foss/2018b`` ``1.4`` | ``GCC/12.2.0`` ``1.4`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/setuptools-rust.md b/docs/version-specific/supported-software/s/setuptools-rust.md index fde3c5b00..542a42711 100644 --- a/docs/version-specific/supported-software/s/setuptools-rust.md +++ b/docs/version-specific/supported-software/s/setuptools-rust.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # setuptools-rust setuptools-rust is a plugin for setuptools to build Rust Python extensions implemented with PyO3 or rust-cpython. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.6.0`` | ``GCCcore/12.3.0`` ``1.8.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/setuptools.md b/docs/version-specific/supported-software/s/setuptools.md index f28353eb7..e16aed8c1 100644 --- a/docs/version-specific/supported-software/s/setuptools.md +++ b/docs/version-specific/supported-software/s/setuptools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # setuptools Download, build, install, upgrade, and uninstall Python packages -- easily! @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``1.4.2`` | | ``system`` ``41.0.1`` | ``-py3`` | ``system`` ``64.0.3`` | | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sf.md b/docs/version-specific/supported-software/s/sf.md index edd1561b5..3835764a3 100644 --- a/docs/version-specific/supported-software/s/sf.md +++ b/docs/version-specific/supported-software/s/sf.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Support for simple features, a standardized way to encode spatial vector data. B version | versionsuffix | toolchain --------|---------------|---------- ``0.9-5`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sfftk.md b/docs/version-specific/supported-software/s/sfftk.md index 93428178f..fabafc7c5 100644 --- a/docs/version-specific/supported-software/s/sfftk.md +++ b/docs/version-specific/supported-software/s/sfftk.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ sfftk is a set of utilities that facilitate creation, conversion and version | toolchain --------|---------- ``0.7.4`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/shapAAR.md b/docs/version-specific/supported-software/s/shapAAR.md index 713a280ee..71b10fbc4 100644 --- a/docs/version-specific/supported-software/s/shapAAR.md +++ b/docs/version-specific/supported-software/s/shapAAR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # shapAAR An R package for the extraction, analysis and classification of (not only) archaeological objects from scanned images. @@ -7,3 +11,6 @@ An R package for the extraction, analysis and classification of (not only) archa version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20180425`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sharutils.md b/docs/version-specific/supported-software/s/sharutils.md index a4cb24b42..297bebb43 100644 --- a/docs/version-specific/supported-software/s/sharutils.md +++ b/docs/version-specific/supported-software/s/sharutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GNU shar makes so-called shell archives out of many files, preparing them for tr version | toolchain --------|---------- ``4.15`` | ``GCCcore/6.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/shift.md b/docs/version-specific/supported-software/s/shift.md index 4ef3fa84a..a3a528ef6 100644 --- a/docs/version-specific/supported-software/s/shift.md +++ b/docs/version-specific/supported-software/s/shift.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Shift is a framework for Self-Healing Independent File Transfer that provides hi version | toolchain --------|---------- ``4.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/shovill.md b/docs/version-specific/supported-software/s/shovill.md index 5cf0a5d9f..331ee6d45 100644 --- a/docs/version-specific/supported-software/s/shovill.md +++ b/docs/version-specific/supported-software/s/shovill.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # shovill Faster SPAdes assembly of Illumina reads @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/shrinkwrap.md b/docs/version-specific/supported-software/s/shrinkwrap.md index 0cb26b10c..506520e6a 100644 --- a/docs/version-specific/supported-software/s/shrinkwrap.md +++ b/docs/version-specific/supported-software/s/shrinkwrap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # shrinkwrap A std::streambuf wrapper for compression formats. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.0-beta`` | ``GCCcore/8.2.0`` ``1.1.0`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sickle.md b/docs/version-specific/supported-software/s/sickle.md index 5f569be1e..abd0293bb 100644 --- a/docs/version-specific/supported-software/s/sickle.md +++ b/docs/version-specific/supported-software/s/sickle.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sickle Windowed Adaptive Trimming for fastq files using quality @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.33`` | ``foss/2017a`` ``1.33`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/silhouetteRank.md b/docs/version-specific/supported-software/s/silhouetteRank.md index 9938638d9..add5deae2 100644 --- a/docs/version-specific/supported-software/s/silhouetteRank.md +++ b/docs/version-specific/supported-software/s/silhouetteRank.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ silhouetteRank is a tool for finding spatially variable genes based on computing version | toolchain --------|---------- ``1.0.5.13`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/silx.md b/docs/version-specific/supported-software/s/silx.md index 1211f177c..50fd51333 100644 --- a/docs/version-specific/supported-software/s/silx.md +++ b/docs/version-specific/supported-software/s/silx.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``foss/2020b`` ``0.14.0`` | | ``fosscuda/2020b`` ``1.0.0`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/simanneal.md b/docs/version-specific/supported-software/s/simanneal.md index ba00aa26f..e8e6640b0 100644 --- a/docs/version-specific/supported-software/s/simanneal.md +++ b/docs/version-specific/supported-software/s/simanneal.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This module performs simulated annealing optimization to find the optimal state version | toolchain --------|---------- ``0.5.0`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/simint.md b/docs/version-specific/supported-software/s/simint.md index 45cbe7384..ae174a1f7 100644 --- a/docs/version-specific/supported-software/s/simint.md +++ b/docs/version-specific/supported-software/s/simint.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Simint is a vectorized implementation of the Obara-Saika (OS) method of calcula version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-lmax-5-vec-avx-psi4`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/simpy.md b/docs/version-specific/supported-software/s/simpy.md index 65f55d3e8..bec77b3de 100644 --- a/docs/version-specific/supported-software/s/simpy.md +++ b/docs/version-specific/supported-software/s/simpy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # simpy SimPy is a process-based discrete-event simulation framework based on standard Python. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.11`` | ``-Python-3.6.6`` | ``intel/2018b`` ``3.0.11`` | | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sinto.md b/docs/version-specific/supported-software/s/sinto.md index b320e4a14..028d4451a 100644 --- a/docs/version-specific/supported-software/s/sinto.md +++ b/docs/version-specific/supported-software/s/sinto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sinto Sinto is a toolkit for processing aligned single-cell data. @@ -7,3 +11,6 @@ Sinto is a toolkit for processing aligned single-cell data. version | toolchain --------|---------- ``0.7.4`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/siscone.md b/docs/version-specific/supported-software/s/siscone.md index e611c6520..5dd820a17 100644 --- a/docs/version-specific/supported-software/s/siscone.md +++ b/docs/version-specific/supported-software/s/siscone.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # siscone Hadron Seedless Infrared-Safe Cone jet algorithm @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/11.3.0`` ``3.0.6`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sketchmap.md b/docs/version-specific/supported-software/s/sketchmap.md index e32b79148..9579c7c95 100644 --- a/docs/version-specific/supported-software/s/sketchmap.md +++ b/docs/version-specific/supported-software/s/sketchmap.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Sketch-map is a dimensionality reduction algorithm that is particularly well sui version | toolchain --------|---------- ``20170130`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/skewer.md b/docs/version-specific/supported-software/s/skewer.md index e36988126..a7e64531f 100644 --- a/docs/version-specific/supported-software/s/skewer.md +++ b/docs/version-specific/supported-software/s/skewer.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ skewer implements the bit-masked k-difference matching algorithm dedicated to th version | toolchain --------|---------- ``0.2.2`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sklearn-pandas.md b/docs/version-specific/supported-software/s/sklearn-pandas.md index b8e834d78..ee307402d 100644 --- a/docs/version-specific/supported-software/s/sklearn-pandas.md +++ b/docs/version-specific/supported-software/s/sklearn-pandas.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This module provides a bridge between Scikit-Learn's machine learning methods an version | toolchain --------|---------- ``2.2.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sklearn-som.md b/docs/version-specific/supported-software/s/sklearn-som.md index 806a9aef3..70a5ac11b 100644 --- a/docs/version-specific/supported-software/s/sklearn-som.md +++ b/docs/version-specific/supported-software/s/sklearn-som.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sklearn-som A simple, planar self-organizing map with methods similar to clustering methods in Scikit Learn. @@ -7,3 +11,6 @@ A simple, planar self-organizing map with methods similar to clustering methods version | toolchain --------|---------- ``1.1.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/skorch.md b/docs/version-specific/supported-software/s/skorch.md index e6a5d2ffb..dd983e2d8 100644 --- a/docs/version-specific/supported-software/s/skorch.md +++ b/docs/version-specific/supported-software/s/skorch.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # skorch A scikit-learn compatible neural network library that wraps PyTorch. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sktime.md b/docs/version-specific/supported-software/s/sktime.md index 1b74d8095..75dd6e45b 100644 --- a/docs/version-specific/supported-software/s/sktime.md +++ b/docs/version-specific/supported-software/s/sktime.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ sktime is a library for time series analysis in Python. It provides a unified in version | toolchain --------|---------- ``0.25.0`` | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/slepc4py.md b/docs/version-specific/supported-software/s/slepc4py.md index 2bbc166bf..5bf13fcee 100644 --- a/docs/version-specific/supported-software/s/slepc4py.md +++ b/docs/version-specific/supported-software/s/slepc4py.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # slepc4py Python bindings for SLEPc, the Scalable Library for Eigenvalue Problem Computations. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sleuth.md b/docs/version-specific/supported-software/s/sleuth.md index 3fe57af35..30a978122 100644 --- a/docs/version-specific/supported-software/s/sleuth.md +++ b/docs/version-specific/supported-software/s/sleuth.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # sleuth Investigate RNA-Seq transcript abundance from kallisto and perform differential expression analysis. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.29.0`` | ``-R-3.4.0`` | ``intel/2017a`` ``0.30.0`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/slidingwindow.md b/docs/version-specific/supported-software/s/slidingwindow.md index 4b54c3c38..699265c14 100644 --- a/docs/version-specific/supported-software/s/slidingwindow.md +++ b/docs/version-specific/supported-software/s/slidingwindow.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.13`` | ``-Python-2.7.15`` | ``intel/2018b`` ``0.0.13`` | ``-Python-3.6.6`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/slow5tools.md b/docs/version-specific/supported-software/s/slow5tools.md index d2efa9ba0..6640b293c 100644 --- a/docs/version-specific/supported-software/s/slow5tools.md +++ b/docs/version-specific/supported-software/s/slow5tools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # slow5tools slow5tools is a toolkit for converting (FAST5 <-> SLOW5), compressing, viewing, indexing and manipulating data in SLOW5 format. @@ -7,3 +11,6 @@ slow5tools is a toolkit for converting (FAST5 <-> SLOW5), compressing, viewing, version | toolchain --------|---------- ``0.4.0`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/slurm-drmaa.md b/docs/version-specific/supported-software/s/slurm-drmaa.md index 5ab30dd92..5cb8b5c0a 100644 --- a/docs/version-specific/supported-software/s/slurm-drmaa.md +++ b/docs/version-specific/supported-software/s/slurm-drmaa.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ DRMAA for Slurm Workload Manager (Slurm) is an implementation of Open Grid Foru version | toolchain --------|---------- ``1.1.3`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/smafa.md b/docs/version-specific/supported-software/s/smafa.md index 5540ec17e..3adad56bd 100644 --- a/docs/version-specific/supported-software/s/smafa.md +++ b/docs/version-specific/supported-software/s/smafa.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # smafa Smafa attempts to align or cluster pre-aligned biological sequences, handling sequences which are all the same length. @@ -7,3 +11,6 @@ Smafa attempts to align or cluster pre-aligned biological sequences, handling se version | toolchain --------|---------- ``0.4.0`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/smallgenomeutilities.md b/docs/version-specific/supported-software/s/smallgenomeutilities.md index a5d7e48ba..9a6d9aaa0 100644 --- a/docs/version-specific/supported-software/s/smallgenomeutilities.md +++ b/docs/version-specific/supported-software/s/smallgenomeutilities.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The smallgenomeutilities are a collection of scripts that is useful for dealing version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/smfishHmrf.md b/docs/version-specific/supported-software/s/smfishHmrf.md index d14febf3e..2d4296f1a 100644 --- a/docs/version-specific/supported-software/s/smfishHmrf.md +++ b/docs/version-specific/supported-software/s/smfishHmrf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # smfishHmrf smFish spatial pattern mining and cell type prediction @@ -7,3 +11,6 @@ smFish spatial pattern mining and cell type prediction version | toolchain --------|---------- ``1.3.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/smithwaterman.md b/docs/version-specific/supported-software/s/smithwaterman.md index 7bd9e41b7..b7aa010c4 100644 --- a/docs/version-specific/supported-software/s/smithwaterman.md +++ b/docs/version-specific/supported-software/s/smithwaterman.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # smithwaterman smith-waterman-gotoh alignment algorithm. @@ -12,3 +16,6 @@ version | toolchain ``20160702`` | ``GCCcore/11.3.0`` ``20160702`` | ``GCCcore/12.3.0`` ``20160702`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/smooth-topk.md b/docs/version-specific/supported-software/s/smooth-topk.md index 706267da2..a86ab948b 100644 --- a/docs/version-specific/supported-software/s/smooth-topk.md +++ b/docs/version-specific/supported-software/s/smooth-topk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # smooth-topk Smooth Loss Functions for Deep Top-k Classification @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20210817`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0-20210817`` | | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/snakemake.md b/docs/version-specific/supported-software/s/snakemake.md index 8b8ecf218..afdf334f3 100644 --- a/docs/version-specific/supported-software/s/snakemake.md +++ b/docs/version-specific/supported-software/s/snakemake.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # snakemake The Snakemake workflow management system is a tool to create reproducible and scalable data analyses. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``7.22.0`` | | ``foss/2022a`` ``7.32.3`` | | ``foss/2022b`` ``8.4.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/snaphu.md b/docs/version-specific/supported-software/s/snaphu.md index a212add0a..ced0432e2 100644 --- a/docs/version-specific/supported-software/s/snaphu.md +++ b/docs/version-specific/supported-software/s/snaphu.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # snaphu SNAPHU is an implementation of the Statistical-cost, Network-flow Algorithm for Phase Unwrapping proposed by Chen and Zebker @@ -9,3 +13,6 @@ version | toolchain ``1.4.2`` | ``GCCcore/6.3.0`` ``1.4.2`` | ``intel/2016b`` ``1.4.2`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/snappy.md b/docs/version-specific/supported-software/s/snappy.md index e552b1ae1..f5a78447b 100644 --- a/docs/version-specific/supported-software/s/snappy.md +++ b/docs/version-specific/supported-software/s/snappy.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | toolchain ``1.1.9`` | ``GCCcore/11.2.0`` ``1.1.9`` | ``GCCcore/11.3.0`` ``1.1.9`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/snippy.md b/docs/version-specific/supported-software/s/snippy.md index 1219252a7..7daa9ca8f 100644 --- a/docs/version-specific/supported-software/s/snippy.md +++ b/docs/version-specific/supported-software/s/snippy.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/snp-sites.md b/docs/version-specific/supported-software/s/snp-sites.md index d12faa3e1..1329fd95d 100644 --- a/docs/version-specific/supported-software/s/snp-sites.md +++ b/docs/version-specific/supported-software/s/snp-sites.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # snp-sites Finds SNP sites from a multi-FASTA alignment file. @@ -10,3 +14,6 @@ version | toolchain ``2.5.1`` | ``GCCcore/10.3.0`` ``2.5.1`` | ``GCCcore/11.2.0`` ``2.5.1`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/snpEff.md b/docs/version-specific/supported-software/s/snpEff.md index 9a807ebde..0f59a533d 100644 --- a/docs/version-specific/supported-software/s/snpEff.md +++ b/docs/version-specific/supported-software/s/snpEff.md @@ -1,3 +1,7 @@ +--- +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). @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``5.0`` | ``-Java-13`` | ``system`` ``5.0e`` | ``-Java-13`` | ``GCCcore/10.2.0`` ``5.0e`` | ``-Java-11`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/socat.md b/docs/version-specific/supported-software/s/socat.md index 954719b83..d6ecfc536 100644 --- a/docs/version-specific/supported-software/s/socat.md +++ b/docs/version-specific/supported-software/s/socat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # socat socat is a relay for bidirectional data transfer between two independent data channels. @@ -7,3 +11,6 @@ socat is a relay for bidirectional data transfer between two independent data ch version | toolchain --------|---------- ``1.7.3.3`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/solo.md b/docs/version-specific/supported-software/s/solo.md index 93b031dbe..94673d630 100644 --- a/docs/version-specific/supported-software/s/solo.md +++ b/docs/version-specific/supported-software/s/solo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # solo Doublet detection via semi-supervised deep learning @@ -7,3 +11,6 @@ Doublet detection via semi-supervised deep learning version | toolchain --------|---------- ``1.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sonic.md b/docs/version-specific/supported-software/s/sonic.md index d20e543cb..15acdb852 100644 --- a/docs/version-specific/supported-software/s/sonic.md +++ b/docs/version-specific/supported-software/s/sonic.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20180202`` | ``gfbf/2023a`` ``20180202`` | ``gompi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spaCy.md b/docs/version-specific/supported-software/s/spaCy.md index 1f8b8b961..0e175aad7 100644 --- a/docs/version-specific/supported-software/s/spaCy.md +++ b/docs/version-specific/supported-software/s/spaCy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # spaCy Industrial-strength Natural Language Processing (NLP) in Python. @@ -7,3 +11,6 @@ Industrial-strength Natural Language Processing (NLP) in Python. version | toolchain --------|---------- ``3.4.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spaln.md b/docs/version-specific/supported-software/s/spaln.md index 547351693..c87cf72d3 100644 --- a/docs/version-specific/supported-software/s/spaln.md +++ b/docs/version-specific/supported-software/s/spaln.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.4.12`` | ``GCC/10.2.0`` ``2.4.12`` | ``GCC/11.2.0`` ``2.4.13f`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sparse-neighbors-search.md b/docs/version-specific/supported-software/s/sparse-neighbors-search.md index 44ffcfa94..3b234e764 100644 --- a/docs/version-specific/supported-software/s/sparse-neighbors-search.md +++ b/docs/version-specific/supported-software/s/sparse-neighbors-search.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A Python/C++ implementation of an approximate nearest neighbor search for sparse version | toolchain --------|---------- ``0.7`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sparsehash.md b/docs/version-specific/supported-software/s/sparsehash.md index a856bec72..c0704cc60 100644 --- a/docs/version-specific/supported-software/s/sparsehash.md +++ b/docs/version-specific/supported-software/s/sparsehash.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``2.0.4`` | ``GCCcore/11.3.0`` ``2.0.4`` | ``GCCcore/12.3.0`` ``2.0.4`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spatialreg.md b/docs/version-specific/supported-software/s/spatialreg.md index 7e40b0b6f..aee352e7c 100644 --- a/docs/version-specific/supported-software/s/spatialreg.md +++ b/docs/version-specific/supported-software/s/spatialreg.md @@ -1,3 +1,7 @@ +--- +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'. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1-5`` | ``-R-3.6.2`` | ``foss/2019b`` ``1.1-8`` | ``-R-4.1.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spdlog.md b/docs/version-specific/supported-software/s/spdlog.md index 12cfc9ea9..b432f3525 100644 --- a/docs/version-specific/supported-software/s/spdlog.md +++ b/docs/version-specific/supported-software/s/spdlog.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # spdlog Very fast, header-only/compiled, C++ logging library. @@ -11,3 +15,6 @@ version | toolchain ``1.11.0`` | ``GCCcore/12.3.0`` ``1.12.0`` | ``GCCcore/13.2.0`` ``1.9.2`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spectral.methods.md b/docs/version-specific/supported-software/s/spectral.methods.md index 681ad1652..f70f4af87 100644 --- a/docs/version-specific/supported-software/s/spectral.methods.md +++ b/docs/version-specific/supported-software/s/spectral.methods.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # spectral.methods Contains some implementations of Singular Spectrum Analysis (SSA) for the gapfilling and spectral decomposition of time series. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.2.133`` | ``-R-3.4.3`` | ``intel/2017b`` ``0.7.2.133`` | ``-R-3.4.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/speech_tools.md b/docs/version-specific/supported-software/s/speech_tools.md index 5a91421a4..df8ab5d48 100644 --- a/docs/version-specific/supported-software/s/speech_tools.md +++ b/docs/version-specific/supported-software/s/speech_tools.md @@ -1,3 +1,7 @@ +--- +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). @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spektral.md b/docs/version-specific/supported-software/s/spektral.md index 04435e8cf..aba240fa4 100644 --- a/docs/version-specific/supported-software/s/spektral.md +++ b/docs/version-specific/supported-software/s/spektral.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ Spektral is a Python library for graph deep learning. The main goal of this pro version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spglib-python.md b/docs/version-specific/supported-software/s/spglib-python.md index 28658c98c..1300861ed 100644 --- a/docs/version-specific/supported-software/s/spglib-python.md +++ b/docs/version-specific/supported-software/s/spglib-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # spglib-python Spglib for Python. Spglib is a library for finding and handling crystal symmetries written in C. @@ -30,3 +34,6 @@ version | versionsuffix | toolchain ``2.0.2`` | | ``gfbf/2022b`` ``2.1.0`` | | ``gfbf/2023a`` ``2.1.0`` | | ``iimkl/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spglib.md b/docs/version-specific/supported-software/s/spglib.md index c30391d81..8400c9d75 100644 --- a/docs/version-specific/supported-software/s/spglib.md +++ b/docs/version-specific/supported-software/s/spglib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # spglib Spglib is a C library for finding and handling crystal symmetries. @@ -12,3 +16,6 @@ version | toolchain ``1.9.9`` | ``intel/2017b`` ``2.0.2`` | ``GCCcore/11.3.0`` ``2.0.2`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/split-seq.md b/docs/version-specific/supported-software/s/split-seq.md index d61b21a1d..7d3772181 100644 --- a/docs/version-specific/supported-software/s/split-seq.md +++ b/docs/version-specific/supported-software/s/split-seq.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # split-seq Analysis tools for split-seq. @@ -7,3 +11,6 @@ Analysis tools for split-seq. version | versionsuffix | toolchain --------|---------------|---------- ``20190717`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/splitRef.md b/docs/version-specific/supported-software/s/splitRef.md index 9c555a56a..40ff86257 100644 --- a/docs/version-specific/supported-software/s/splitRef.md +++ b/docs/version-specific/supported-software/s/splitRef.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ splitRef splits a reference haplotype file into smaller files with subsets of version | toolchain --------|---------- ``0.0.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/spoa.md b/docs/version-specific/supported-software/s/spoa.md index 8dff32e76..cc5af7576 100644 --- a/docs/version-specific/supported-software/s/spoa.md +++ b/docs/version-specific/supported-software/s/spoa.md @@ -1,3 +1,7 @@ +--- +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 @@ -15,3 +19,6 @@ version | toolchain ``4.0.7`` | ``GCC/11.3.0`` ``4.0.7`` | ``GCC/12.2.0`` ``4.1.0`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sradownloader.md b/docs/version-specific/supported-software/s/sradownloader.md index c5a1f0b99..ff9e87e9e 100644 --- a/docs/version-specific/supported-software/s/sradownloader.md +++ b/docs/version-specific/supported-software/s/sradownloader.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ SRAdownloader takes the annotation table from the SRA run selector tool and ret version | toolchain --------|---------- ``3.9`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/stardist.md b/docs/version-specific/supported-software/s/stardist.md index 9a1154ee0..980a9dd66 100644 --- a/docs/version-specific/supported-software/s/stardist.md +++ b/docs/version-specific/supported-software/s/stardist.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # stardist Object Detection with Star-convex Shapes. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` ``0.8.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/starparser.md b/docs/version-specific/supported-software/s/starparser.md index 96d9aca69..01368ead7 100644 --- a/docs/version-specific/supported-software/s/starparser.md +++ b/docs/version-specific/supported-software/s/starparser.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Use this package to manipulate Relion star files, including counting, modifying, version | toolchain --------|---------- ``1.49`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/stars.md b/docs/version-specific/supported-software/s/stars.md index 34282af42..be2841189 100644 --- a/docs/version-specific/supported-software/s/stars.md +++ b/docs/version-specific/supported-software/s/stars.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Reading, manipulating, writing and plotting spatiotemporal arrays (raster and ve version | versionsuffix | toolchain --------|---------------|---------- ``0.4-3`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/statsmodels.md b/docs/version-specific/supported-software/s/statsmodels.md index ec5760593..3b99523df 100644 --- a/docs/version-specific/supported-software/s/statsmodels.md +++ b/docs/version-specific/supported-software/s/statsmodels.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # statsmodels Statsmodels is a Python module that allows users to explore data, estimate statistical models, and perform statistical tests. @@ -30,3 +34,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/stpipeline.md b/docs/version-specific/supported-software/s/stpipeline.md index 62d00c084..2263e95fb 100644 --- a/docs/version-specific/supported-software/s/stpipeline.md +++ b/docs/version-specific/supported-software/s/stpipeline.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/strace.md b/docs/version-specific/supported-software/s/strace.md index ce5fe8bdc..7c7d96164 100644 --- a/docs/version-specific/supported-software/s/strace.md +++ b/docs/version-specific/supported-software/s/strace.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.14`` | ``GCCcore/11.2.0`` ``6.6`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/strelka.md b/docs/version-specific/supported-software/s/strelka.md index edebfa49e..53effeed2 100644 --- a/docs/version-specific/supported-software/s/strelka.md +++ b/docs/version-specific/supported-software/s/strelka.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.9.10`` | ``-Python-2.7.15`` | ``intel/2018b`` ``2.9.7`` | | ``intel/2018a`` ``2.9.9`` | | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/stripy.md b/docs/version-specific/supported-software/s/stripy.md index ca12ac6ed..e16955e5e 100644 --- a/docs/version-specific/supported-software/s/stripy.md +++ b/docs/version-specific/supported-software/s/stripy.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ A Python interface to TRIPACK and STRIPACK Fortran code for (constrained) triang version | toolchain --------|---------- ``2.1.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/suave.md b/docs/version-specific/supported-software/s/suave.md index 5fe5e7a5e..9441e8072 100644 --- a/docs/version-specific/supported-software/s/suave.md +++ b/docs/version-specific/supported-software/s/suave.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ suave is an interactive web application to visualize read depth ratios between t version | toolchain --------|---------- ``20160529`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/subset-bam.md b/docs/version-specific/supported-software/s/subset-bam.md index 800e7c290..c744961a5 100644 --- a/docs/version-specific/supported-software/s/subset-bam.md +++ b/docs/version-specific/supported-software/s/subset-bam.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ subset-bam is a tool to subset a 10x Genomics BAM file based on a tag, most com version | toolchain --------|---------- ``1.1.0`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/subunit.md b/docs/version-specific/supported-software/s/subunit.md index 318eac0c0..7a9b7098d 100644 --- a/docs/version-specific/supported-software/s/subunit.md +++ b/docs/version-specific/supported-software/s/subunit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # subunit Subunit is a streaming protocol for test results. @@ -7,3 +11,6 @@ Subunit is a streaming protocol for test results. version | toolchain --------|---------- ``1.4.3`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/suds.md b/docs/version-specific/supported-software/s/suds.md index 50f1669ee..7577d94d4 100644 --- a/docs/version-specific/supported-software/s/suds.md +++ b/docs/version-specific/supported-software/s/suds.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # suds Lightweight SOAP client @@ -7,3 +11,6 @@ Lightweight SOAP client version | versionsuffix | toolchain --------|---------------|---------- ``1.3.3.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/supermagic.md b/docs/version-specific/supported-software/s/supermagic.md index 880b50aa5..5ce8e4389 100644 --- a/docs/version-specific/supported-software/s/supermagic.md +++ b/docs/version-specific/supported-software/s/supermagic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # supermagic Very simple MPI sanity code. Nothing more, nothing less. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20170824`` | ``foss/2017a`` ``20170824`` | ``gompi/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/supernova.md b/docs/version-specific/supported-software/s/supernova.md index 36c61d0b3..9ed398b33 100644 --- a/docs/version-specific/supported-software/s/supernova.md +++ b/docs/version-specific/supported-software/s/supernova.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.1`` | ``system`` ``2.1.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/svist4get.md b/docs/version-specific/supported-software/s/svist4get.md index 5028a31c1..cb7c709d7 100644 --- a/docs/version-specific/supported-software/s/svist4get.md +++ b/docs/version-specific/supported-software/s/svist4get.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2020b`` ``1.3.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/swarm.md b/docs/version-specific/supported-software/s/swarm.md index 827d3231a..9ae9bcfc5 100644 --- a/docs/version-specific/supported-software/s/swarm.md +++ b/docs/version-specific/supported-software/s/swarm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # swarm A robust and fast clustering method for amplicon-based studies @@ -7,3 +11,6 @@ A robust and fast clustering method for amplicon-based studies version | toolchain --------|---------- ``2.2.2`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/swifter.md b/docs/version-specific/supported-software/s/swifter.md index efb762b44..65fe1474a 100644 --- a/docs/version-specific/supported-software/s/swifter.md +++ b/docs/version-specific/supported-software/s/swifter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # swifter A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.9`` | ``foss/2020b`` ``1.0.9`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/swissknife.md b/docs/version-specific/supported-software/s/swissknife.md index e935a8965..047d6531a 100644 --- a/docs/version-specific/supported-software/s/swissknife.md +++ b/docs/version-specific/supported-software/s/swissknife.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # swissknife Perl module for reading and writing UniProtKB data in plain text format. @@ -7,3 +11,6 @@ Perl module for reading and writing UniProtKB data in plain text format. version | toolchain --------|---------- ``1.80`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sympy.md b/docs/version-specific/supported-software/s/sympy.md index 6303a2472..34eeb936d 100644 --- a/docs/version-specific/supported-software/s/sympy.md +++ b/docs/version-specific/supported-software/s/sympy.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | versionsuffix | toolchain ``1.8`` | | ``foss/2021a`` ``1.9`` | | ``foss/2021b`` ``1.9`` | | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/synapseclient.md b/docs/version-specific/supported-software/s/synapseclient.md index bfd0e73e5..98f3657a6 100644 --- a/docs/version-specific/supported-software/s/synapseclient.md +++ b/docs/version-specific/supported-software/s/synapseclient.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The synapseclient package provides an interface to Synapse, a collaborative, ope version | toolchain --------|---------- ``3.0.0`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/synthcity.md b/docs/version-specific/supported-software/s/synthcity.md index a7b31d3a7..8e13fb157 100644 --- a/docs/version-specific/supported-software/s/synthcity.md +++ b/docs/version-specific/supported-software/s/synthcity.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # synthcity A library for generating and evaluating synthetic tabular data. @@ -7,3 +11,6 @@ A library for generating and evaluating synthetic tabular data. version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/s/sysbench.md b/docs/version-specific/supported-software/s/sysbench.md index 280ec7b19..767c6b768 100644 --- a/docs/version-specific/supported-software/s/sysbench.md +++ b/docs/version-specific/supported-software/s/sysbench.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ sysbench is a scriptable multi-threaded benchmark tool based on LuaJIT. It is m version | toolchain --------|---------- ``1.0.20`` | ``GCC/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/T-Coffee.md b/docs/version-specific/supported-software/t/T-Coffee.md index 41af99f41..a750c543b 100644 --- a/docs/version-specific/supported-software/t/T-Coffee.md +++ b/docs/version-specific/supported-software/t/T-Coffee.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # T-Coffee A collection of tools for Computing, Evaluating and Manipulating Multiple Alignments of DNA, RNA, Protein Sequences and Structures @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``13.45.61.3c310a9`` | ``system`` ``13.46.0.919e8c6b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TALON.md b/docs/version-specific/supported-software/t/TALON.md index a9923aeae..93dff0765 100644 --- a/docs/version-specific/supported-software/t/TALON.md +++ b/docs/version-specific/supported-software/t/TALON.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TALON is a Python package for identifying and quantifying known and novel genes/ version | toolchain --------|---------- ``5.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TALYS.md b/docs/version-specific/supported-software/t/TALYS.md index cc658b335..8bf9a5ca0 100644 --- a/docs/version-specific/supported-software/t/TALYS.md +++ b/docs/version-specific/supported-software/t/TALYS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TALYS TALYS is a nuclear reaction program. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.95`` | ``GCCcore/10.3.0`` ``1.95`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TAMkin.md b/docs/version-specific/supported-software/t/TAMkin.md index 929304d8d..e3d337ab7 100644 --- a/docs/version-specific/supported-software/t/TAMkin.md +++ b/docs/version-specific/supported-software/t/TAMkin.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``1.2.6`` | | ``foss/2023a`` ``1.2.6`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.2.6`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TBA.md b/docs/version-specific/supported-software/t/TBA.md index b20cb846d..8bbf4413c 100644 --- a/docs/version-specific/supported-software/t/TBA.md +++ b/docs/version-specific/supported-software/t/TBA.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ TBA (a Transcription factor Binding Analysis): TBA is a multi-functional machine version | toolchain --------|---------- ``1.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TCC.md b/docs/version-specific/supported-software/t/TCC.md index b60491ecf..a0568e3d2 100644 --- a/docs/version-specific/supported-software/t/TCC.md +++ b/docs/version-specific/supported-software/t/TCC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The Tiny C Compiler (aka TCC, tCc, or TinyCC) is an x86 and x86-64 C compiler c version | toolchain --------|---------- ``0.9.26`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TCLAP.md b/docs/version-specific/supported-software/t/TCLAP.md index ff8b01718..bece63255 100644 --- a/docs/version-specific/supported-software/t/TCLAP.md +++ b/docs/version-specific/supported-software/t/TCLAP.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.2.4`` | ``GCCcore/9.3.0`` ``1.2.5`` | ``GCCcore/10.3.0`` ``1.2.5`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md index d8bf67b1d..3e1dcb5b3 100644 --- a/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md +++ b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TELEMAC-MASCARET is an integrated suite of solvers for use in the field of free- version | toolchain --------|---------- ``8p3r1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TEToolkit.md b/docs/version-specific/supported-software/t/TEToolkit.md index d7e54e87d..03a359a90 100644 --- a/docs/version-specific/supported-software/t/TEToolkit.md +++ b/docs/version-specific/supported-software/t/TEToolkit.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TEToolkit Tools for estimating differential enrichment of Transposable Elements and other highly repetitive regions @@ -7,3 +11,6 @@ Tools for estimating differential enrichment of Transposable Elements and other version | versionsuffix | toolchain --------|---------------|---------- ``1.5.1`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TEtranscripts.md b/docs/version-specific/supported-software/t/TEtranscripts.md index 85fddb3c4..a46e99718 100644 --- a/docs/version-specific/supported-software/t/TEtranscripts.md +++ b/docs/version-specific/supported-software/t/TEtranscripts.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TEtranscripts and TEcount takes RNA-seq (and similar data) and annotates reads t version | toolchain --------|---------- ``2.2.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TF-COMB.md b/docs/version-specific/supported-software/t/TF-COMB.md index 883dedef7..43a959798 100644 --- a/docs/version-specific/supported-software/t/TF-COMB.md +++ b/docs/version-specific/supported-software/t/TF-COMB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TF-COMB Transcription Factor Co-Occurrence using Market Basket analysis. @@ -7,3 +11,6 @@ Transcription Factor Co-Occurrence using Market Basket analysis. version | toolchain --------|---------- ``1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TFEA.md b/docs/version-specific/supported-software/t/TFEA.md index 2a8375c71..1577f8889 100644 --- a/docs/version-specific/supported-software/t/TFEA.md +++ b/docs/version-specific/supported-software/t/TFEA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TFEA Transcription Factor Enrichment Analysis @@ -7,3 +11,6 @@ Transcription Factor Enrichment Analysis version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-muMerge-1.1.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/THetA.md b/docs/version-specific/supported-software/t/THetA.md index dbeda3804..9529d533b 100644 --- a/docs/version-specific/supported-software/t/THetA.md +++ b/docs/version-specific/supported-software/t/THetA.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Tumor Heterogeneity Analysis (THetA) and THetA2 are algorithms that estimate th version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TINKER.md b/docs/version-specific/supported-software/t/TINKER.md index 6ad45368a..505bef068 100644 --- a/docs/version-specific/supported-software/t/TINKER.md +++ b/docs/version-specific/supported-software/t/TINKER.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``8.6.1`` | ``foss/2018b`` ``8.7.2`` | ``foss/2019b`` ``8.8.1`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TM-align.md b/docs/version-specific/supported-software/t/TM-align.md index 987e88372..f81e8db06 100644 --- a/docs/version-specific/supported-software/t/TM-align.md +++ b/docs/version-specific/supported-software/t/TM-align.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``20180426`` | ``foss/2018b`` ``20180426`` | ``intel/2019a`` ``20190822`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TN93.md b/docs/version-specific/supported-software/t/TN93.md index db1801368..70c370bce 100644 --- a/docs/version-specific/supported-software/t/TN93.md +++ b/docs/version-specific/supported-software/t/TN93.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ This is a simple program meant to compute pairwise distances between aligned nu version | toolchain --------|---------- ``1.0.7`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TOBIAS.md b/docs/version-specific/supported-software/t/TOBIAS.md index 86dc9a1bf..3f0d94434 100644 --- a/docs/version-specific/supported-software/t/TOBIAS.md +++ b/docs/version-specific/supported-software/t/TOBIAS.md @@ -1,3 +1,7 @@ +--- +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 @@ -9,3 +13,6 @@ version | toolchain ``0.12.12`` | ``foss/2021b`` ``0.14.0`` | ``foss/2020b`` ``0.16.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TOML-Fortran.md b/docs/version-specific/supported-software/t/TOML-Fortran.md index 3202afba8..005187a08 100644 --- a/docs/version-specific/supported-software/t/TOML-Fortran.md +++ b/docs/version-specific/supported-software/t/TOML-Fortran.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TOML-Fortran TOML parser for Fortran projects @@ -12,3 +16,6 @@ version | toolchain ``0.3.1`` | ``GCC/11.3.0`` ``0.4.1`` | ``GCC/12.2.0`` ``0.4.1`` | ``intel-compilers/2022.2.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TOPAS.md b/docs/version-specific/supported-software/t/TOPAS.md index e503f0f08..f7cca9e0d 100644 --- a/docs/version-specific/supported-software/t/TOPAS.md +++ b/docs/version-specific/supported-software/t/TOPAS.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TOPAS wraps and extends the Geant4 Simulation Toolkit to make advanced Monte Car version | toolchain --------|---------- ``3.9`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md index 8c02f5737..3e430363d 100644 --- a/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md +++ b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``210521`` | ``GCC/10.3.0`` ``220729`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRF.md b/docs/version-specific/supported-software/t/TRF.md index d50dc6beb..d6ddb5743 100644 --- a/docs/version-specific/supported-software/t/TRF.md +++ b/docs/version-specific/supported-software/t/TRF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TRF Tandem repeats finder: a program to analyze DNA sequences. Legacy version. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``4.09.1`` | | ``GCCcore/11.2.0`` ``4.09.1`` | | ``GCCcore/11.3.0`` ``4.09.1`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRIQS-cthyb.md b/docs/version-specific/supported-software/t/TRIQS-cthyb.md index 295e6f84b..6e2ae34b4 100644 --- a/docs/version-specific/supported-software/t/TRIQS-cthyb.md +++ b/docs/version-specific/supported-software/t/TRIQS-cthyb.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``3.1.0`` | | ``foss/2022a`` ``3.2.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRIQS-dft_tools.md b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md index 95e2f2b0a..b7be5c8f6 100644 --- a/docs/version-specific/supported-software/t/TRIQS-dft_tools.md +++ b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``3.1.0`` | | ``foss/2022a`` ``3.2.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRIQS-tprf.md b/docs/version-specific/supported-software/t/TRIQS-tprf.md index 9e591cfab..77ac3ab0e 100644 --- a/docs/version-specific/supported-software/t/TRIQS-tprf.md +++ b/docs/version-specific/supported-software/t/TRIQS-tprf.md @@ -1,3 +1,7 @@ +--- +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). @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``3.1.1`` | | ``foss/2022a`` ``3.2.1`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRIQS.md b/docs/version-specific/supported-software/t/TRIQS.md index 483a69e19..fd6312a5d 100644 --- a/docs/version-specific/supported-software/t/TRIQS.md +++ b/docs/version-specific/supported-software/t/TRIQS.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``3.1.1`` | | ``foss/2022a`` ``3.2.0`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRUST.md b/docs/version-specific/supported-software/t/TRUST.md index 2c46c8de5..bccdc8cdf 100644 --- a/docs/version-specific/supported-software/t/TRUST.md +++ b/docs/version-specific/supported-software/t/TRUST.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Tcr Receptor Utilities for Solid Tissue (TRUST) is a computational tool to analy version | versionsuffix | toolchain --------|---------------|---------- ``3.0.2`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TRUST4.md b/docs/version-specific/supported-software/t/TRUST4.md index 43d949c9d..2249d4116 100644 --- a/docs/version-specific/supported-software/t/TRUST4.md +++ b/docs/version-specific/supported-software/t/TRUST4.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.0.5.1`` | ``system`` ``1.0.6`` | ``GCC/11.2.0`` ``1.0.7`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TVB-deps.md b/docs/version-specific/supported-software/t/TVB-deps.md index ff7d4ccd9..bf019d08f 100644 --- a/docs/version-specific/supported-software/t/TVB-deps.md +++ b/docs/version-specific/supported-software/t/TVB-deps.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TVB-deps Bundle of dependency Python packages for TVB (The Virtual Brain) @@ -7,3 +11,6 @@ Bundle of dependency Python packages for TVB (The Virtual Brain) version | versionsuffix | toolchain --------|---------------|---------- ``20160618`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TVB.md b/docs/version-specific/supported-software/t/TVB.md index 812b09eeb..e6116545d 100644 --- a/docs/version-specific/supported-software/t/TVB.md +++ b/docs/version-specific/supported-software/t/TVB.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TVB The Virtual Brain will deliver the first open simulation of the human brain based on individual large-scale connectivity. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.1`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TWL-NINJA.md b/docs/version-specific/supported-software/t/TWL-NINJA.md index 1d9616f65..7c5786f06 100644 --- a/docs/version-specific/supported-software/t/TWL-NINJA.md +++ b/docs/version-specific/supported-software/t/TWL-NINJA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TWL-NINJA Nearly Infinite Neighbor Joining Application. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.97-cluster_only`` | ``GCC/10.2.0`` ``0.98-cluster_only`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TXR.md b/docs/version-specific/supported-software/t/TXR.md index b43b22291..2d6bc2d79 100644 --- a/docs/version-specific/supported-software/t/TXR.md +++ b/docs/version-specific/supported-software/t/TXR.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TXR is a pragmatic, convenient tool ready to take on your daily hacking challeng version | toolchain --------|---------- ``291`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TagDust.md b/docs/version-specific/supported-software/t/TagDust.md index de26149a1..42f8341b4 100644 --- a/docs/version-specific/supported-software/t/TagDust.md +++ b/docs/version-specific/supported-software/t/TagDust.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.33`` | ``GCCcore/10.2.0`` ``2.33`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TagLib.md b/docs/version-specific/supported-software/t/TagLib.md index e22a49f80..9cc43ddbc 100644 --- a/docs/version-specific/supported-software/t/TagLib.md +++ b/docs/version-specific/supported-software/t/TagLib.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TagLib TagLib is a library for reading and editing the meta-data of several popular audio formats. @@ -7,3 +11,6 @@ TagLib is a library for reading and editing the meta-data of several popular aud version | toolchain --------|---------- ``1.11.1`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Taiyaki.md b/docs/version-specific/supported-software/t/Taiyaki.md index 64f87583b..010651cd5 100644 --- a/docs/version-specific/supported-software/t/Taiyaki.md +++ b/docs/version-specific/supported-software/t/Taiyaki.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Taiyaki Taiyaki is research software for training models for basecalling Oxford Nanopore reads. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tapenade.md b/docs/version-specific/supported-software/t/Tapenade.md index fe977cdee..aa0a93f17 100644 --- a/docs/version-specific/supported-software/t/Tapenade.md +++ b/docs/version-specific/supported-software/t/Tapenade.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Tapenade Tool for Algorithmic Differentiation of programs. @@ -7,3 +11,6 @@ Tool for Algorithmic Differentiation of programs. version | versionsuffix | toolchain --------|---------------|---------- ``3.16`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tcl.md b/docs/version-specific/supported-software/t/Tcl.md index 915f8ceb4..dd19b5177 100644 --- a/docs/version-specific/supported-software/t/Tcl.md +++ b/docs/version-specific/supported-software/t/Tcl.md @@ -1,3 +1,7 @@ +--- +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. @@ -43,3 +47,6 @@ version | toolchain ``8.6.8`` | ``GCCcore/7.3.0`` ``8.6.9`` | ``GCCcore/8.2.0`` ``8.6.9`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Telescope.md b/docs/version-specific/supported-software/t/Telescope.md index ec6d70615..04d0ae7ae 100644 --- a/docs/version-specific/supported-software/t/Telescope.md +++ b/docs/version-specific/supported-software/t/Telescope.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Telescope Single locus resolution of Transposable ELEment expression using next-generation sequencing. @@ -7,3 +11,6 @@ Single locus resolution of Transposable ELEment expression using next-generation version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Teneto.md b/docs/version-specific/supported-software/t/Teneto.md index bdd263031..b7cf2a7b8 100644 --- a/docs/version-specific/supported-software/t/Teneto.md +++ b/docs/version-specific/supported-software/t/Teneto.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Teneto is package for deriving, analysing and plotting temporal network represen version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TensorFlow-Datasets.md b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md index 8cea958e3..0c75e806e 100644 --- a/docs/version-specific/supported-software/t/TensorFlow-Datasets.md +++ b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.7.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``4.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TensorFlow-Graphics.md b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md index 838e76474..2b38e1086 100644 --- a/docs/version-specific/supported-software/t/TensorFlow-Graphics.md +++ b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Tensorflow Graphics provides a set of differentiable graphics and geometry layer version | versionsuffix | toolchain --------|---------------|---------- ``2021.12.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TensorFlow.md b/docs/version-specific/supported-software/t/TensorFlow.md index 487cb5f88..be4108a74 100644 --- a/docs/version-specific/supported-software/t/TensorFlow.md +++ b/docs/version-specific/supported-software/t/TensorFlow.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TensorFlow An open-source software library for Machine Intelligence @@ -91,3 +95,6 @@ version | versionsuffix | toolchain ``2.8.4`` | | ``foss/2021b`` ``2.9.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.9.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TensorRT.md b/docs/version-specific/supported-software/t/TensorRT.md index ff2efbc2e..b57522c2f 100644 --- a/docs/version-specific/supported-software/t/TensorRT.md +++ b/docs/version-specific/supported-software/t/TensorRT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TensorRT NVIDIA TensorRT is a platform for high-performance deep learning inference @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.1.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` ``8.6.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md index 6e558a7ea..e8bbc0df7 100644 --- a/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md +++ b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md @@ -1,3 +1,7 @@ +--- +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) @@ -7,3 +11,6 @@ The Tesla Deployment Kit is a set of tools provided primarily for the NVIDIA Tes version | toolchain --------|---------- ``5.319.43`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TetGen.md b/docs/version-specific/supported-software/t/TetGen.md index d6261f244..ca3616b80 100644 --- a/docs/version-specific/supported-software/t/TetGen.md +++ b/docs/version-specific/supported-software/t/TetGen.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TetGen A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``GCCcore/6.4.0`` ``1.6.0`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Text-CSV.md b/docs/version-specific/supported-software/t/Text-CSV.md index b56974f3a..851abe5c7 100644 --- a/docs/version-specific/supported-software/t/Text-CSV.md +++ b/docs/version-specific/supported-software/t/Text-CSV.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Text-CSV Text-CSV parser @@ -7,3 +11,6 @@ Text-CSV parser version | versionsuffix | toolchain --------|---------------|---------- ``1.33`` | ``-Perl-5.22.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Theano.md b/docs/version-specific/supported-software/t/Theano.md index ef7445974..f434c053c 100644 --- a/docs/version-specific/supported-software/t/Theano.md +++ b/docs/version-specific/supported-software/t/Theano.md @@ -1,3 +1,7 @@ +--- +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. @@ -38,3 +42,6 @@ version | versionsuffix | toolchain ``1.1.2`` | ``-PyMC`` | ``fosscuda/2020b`` ``1.1.2`` | ``-PyMC`` | ``intel/2020b`` ``1.1.2`` | ``-PyMC`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/ThemisPy.md b/docs/version-specific/supported-software/t/ThemisPy.md index 3a4ba44ac..341ac3c93 100644 --- a/docs/version-specific/supported-software/t/ThemisPy.md +++ b/docs/version-specific/supported-software/t/ThemisPy.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ThemisPy A header-only C++ library for L-BFGS and L-BFGS-B algorithms @@ -7,3 +11,6 @@ A header-only C++ library for L-BFGS and L-BFGS-B algorithms version | toolchain --------|---------- ``0.3.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TiCCutils.md b/docs/version-specific/supported-software/t/TiCCutils.md index fd246e8f8..b38853051 100644 --- a/docs/version-specific/supported-software/t/TiCCutils.md +++ b/docs/version-specific/supported-software/t/TiCCutils.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``0.11`` | ``foss/2016a`` ``0.21`` | ``iimpi/2019a`` ``0.21`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TiMBL.md b/docs/version-specific/supported-software/t/TiMBL.md index 273484ea9..55f6e87fe 100644 --- a/docs/version-specific/supported-software/t/TiMBL.md +++ b/docs/version-specific/supported-software/t/TiMBL.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``6.4.13`` | ``iimpi/2019a`` ``6.4.13`` | ``intel/2018b`` ``6.4.7`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tika.md b/docs/version-specific/supported-software/t/Tika.md index b521d83d3..fcd5a727d 100644 --- a/docs/version-specific/supported-software/t/Tika.md +++ b/docs/version-specific/supported-software/t/Tika.md @@ -1,3 +1,7 @@ +--- +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). @@ -7,3 +11,6 @@ The Apache Tika toolkit detects and extracts metadata and text from over a thous version | toolchain --------|---------- ``1.16`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TinyDB.md b/docs/version-specific/supported-software/t/TinyDB.md index db825929c..74243b0af 100644 --- a/docs/version-specific/supported-software/t/TinyDB.md +++ b/docs/version-specific/supported-software/t/TinyDB.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TinyDB is a lightweight document oriented database optimized for your happiness version | toolchain --------|---------- ``3.15.2`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TinyXML.md b/docs/version-specific/supported-software/t/TinyXML.md index 4ba9e2440..0eff25162 100644 --- a/docs/version-specific/supported-software/t/TinyXML.md +++ b/docs/version-specific/supported-software/t/TinyXML.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.6.2`` | ``GCCcore/11.2.0`` ``2.6.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tk.md b/docs/version-specific/supported-software/t/Tk.md index 08aa01a14..471c40a72 100644 --- a/docs/version-specific/supported-software/t/Tk.md +++ b/docs/version-specific/supported-software/t/Tk.md @@ -1,3 +1,7 @@ +--- +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. @@ -44,3 +48,6 @@ version | versionsuffix | toolchain ``8.6.8`` | | ``iomkl/2018a`` ``8.6.9`` | | ``GCCcore/8.2.0`` ``8.6.9`` | | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tkinter.md b/docs/version-specific/supported-software/t/Tkinter.md index f54469d2d..cd802a870 100644 --- a/docs/version-specific/supported-software/t/Tkinter.md +++ b/docs/version-specific/supported-software/t/Tkinter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Tkinter Tkinter module, built with the Python buildsystem @@ -47,3 +51,6 @@ version | versionsuffix | toolchain ``3.8.6`` | | ``GCCcore/10.2.0`` ``3.9.5`` | | ``GCCcore/10.3.0`` ``3.9.6`` | | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/ToFu.md b/docs/version-specific/supported-software/t/ToFu.md index 64c069bb4..c18365eb2 100644 --- a/docs/version-specific/supported-software/t/ToFu.md +++ b/docs/version-specific/supported-software/t/ToFu.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # ToFu Tomography for Fusion. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.5.0`` | | ``foss/2020b`` ``1.5.0`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Togl.md b/docs/version-specific/supported-software/t/Togl.md index 6375689f0..9e5a84227 100644 --- a/docs/version-specific/supported-software/t/Togl.md +++ b/docs/version-specific/supported-software/t/Togl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Togl A Tcl/Tk widget for OpenGL rendering. @@ -10,3 +14,6 @@ version | toolchain ``2.0`` | ``GCCcore/11.2.0`` ``2.0`` | ``GCCcore/11.3.0`` ``2.0`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tombo.md b/docs/version-specific/supported-software/t/Tombo.md index 416a75203..16bf839ae 100644 --- a/docs/version-specific/supported-software/t/Tombo.md +++ b/docs/version-specific/supported-software/t/Tombo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Tombo Tombo is a suite of tools primarily for the identification of modified nucleotides from raw nanopore sequencing data. @@ -7,3 +11,6 @@ Tombo is a suite of tools primarily for the identification of modified nucleotid version | versionsuffix | toolchain --------|---------------|---------- ``1.5.1`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TopHat.md b/docs/version-specific/supported-software/t/TopHat.md index 3eedfb5f9..811b0a823 100644 --- a/docs/version-specific/supported-software/t/TopHat.md +++ b/docs/version-specific/supported-software/t/TopHat.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TopHat TopHat is a fast splice junction mapper for RNA-Seq reads. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``2.1.2`` | ``-Python-2.7.18`` | ``gompi/2020a`` ``2.1.2`` | | ``iimpi/2019b`` ``2.1.2`` | ``-Python-2.7.18`` | ``iimpi/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TorchIO.md b/docs/version-specific/supported-software/t/TorchIO.md index 7cc57689e..5fd986aa4 100644 --- a/docs/version-specific/supported-software/t/TorchIO.md +++ b/docs/version-specific/supported-software/t/TorchIO.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TorchIO is an open-source Python library for efficient loading, preprocessing, a version | versionsuffix | toolchain --------|---------------|---------- ``0.19.6`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TotalView.md b/docs/version-specific/supported-software/t/TotalView.md index b65f60295..bff5afa00 100644 --- a/docs/version-specific/supported-software/t/TotalView.md +++ b/docs/version-specific/supported-software/t/TotalView.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Tracer.md b/docs/version-specific/supported-software/t/Tracer.md index 432bfab98..a6f0ad3b9 100644 --- a/docs/version-specific/supported-software/t/Tracer.md +++ b/docs/version-specific/supported-software/t/Tracer.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Tracer Tracer is a graphical tool for visualization and diagnostics of MCMC output. @@ -7,3 +11,6 @@ Tracer is a graphical tool for visualization and diagnostics of MCMC output. version | toolchain --------|---------- ``1.7.1`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TransDecoder.md b/docs/version-specific/supported-software/t/TransDecoder.md index 2a8211fbd..451bc73bc 100644 --- a/docs/version-specific/supported-software/t/TransDecoder.md +++ b/docs/version-specific/supported-software/t/TransDecoder.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``5.5.0`` | | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TranscriptClean.md b/docs/version-specific/supported-software/t/TranscriptClean.md index b1aaf7113..06595ddaa 100644 --- a/docs/version-specific/supported-software/t/TranscriptClean.md +++ b/docs/version-specific/supported-software/t/TranscriptClean.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TranscriptClean is a Python program that corrects mismatches, microindels, and n version | toolchain --------|---------- ``2.0.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Transformers.md b/docs/version-specific/supported-software/t/Transformers.md index 5bcc8f180..c4cfe115c 100644 --- a/docs/version-specific/supported-software/t/Transformers.md +++ b/docs/version-specific/supported-software/t/Transformers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Transformers State-of-the-art Natural Language Processing for PyTorch and TensorFlow 2.0 @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``4.29.2`` | | ``foss/2022a`` ``4.30.2`` | | ``foss/2022b`` ``4.39.3`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Transrate.md b/docs/version-specific/supported-software/t/Transrate.md index 363c71c66..c6a184c44 100644 --- a/docs/version-specific/supported-software/t/Transrate.md +++ b/docs/version-specific/supported-software/t/Transrate.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Transrate is software for de-novo transcriptome assembly quality analysis. It e version | toolchain --------|---------- ``1.0.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TreeMix.md b/docs/version-specific/supported-software/t/TreeMix.md index 94e498936..f7356c648 100644 --- a/docs/version-specific/supported-software/t/TreeMix.md +++ b/docs/version-specific/supported-software/t/TreeMix.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``1.13`` | ``GCC/10.3.0`` ``1.13`` | ``GCC/11.2.0`` ``1.13`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TreeShrink.md b/docs/version-specific/supported-software/t/TreeShrink.md index ac000e290..68b3b6988 100644 --- a/docs/version-specific/supported-software/t/TreeShrink.md +++ b/docs/version-specific/supported-software/t/TreeShrink.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # TreeShrink TreeShrink is an algorithm for detecting abnormally long branches in one or more phylogenetic trees. @@ -7,3 +11,6 @@ TreeShrink is an algorithm for detecting abnormally long branches in one or more version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Triangle.md b/docs/version-specific/supported-software/t/Triangle.md index 218cf1e97..5f2682ae5 100644 --- a/docs/version-specific/supported-software/t/Triangle.md +++ b/docs/version-specific/supported-software/t/Triangle.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.6`` | ``intel/2016b`` ``1.6`` | ``intel/2017a`` ``1.6`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Trilinos.md b/docs/version-specific/supported-software/t/Trilinos.md index 329512899..6fb888a15 100644 --- a/docs/version-specific/supported-software/t/Trilinos.md +++ b/docs/version-specific/supported-software/t/Trilinos.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``12.12.1`` | ``-Python-3.6.4`` | ``intel/2018a`` ``13.4.1`` | ``-zoltan`` | ``foss/2022a`` ``13.4.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Trim_Galore.md b/docs/version-specific/supported-software/t/Trim_Galore.md index 7ec6217e9..a97630c51 100644 --- a/docs/version-specific/supported-software/t/Trim_Galore.md +++ b/docs/version-specific/supported-software/t/Trim_Galore.md @@ -1,3 +1,7 @@ +--- +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. @@ -24,3 +28,6 @@ version | versionsuffix | toolchain ``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/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Trimmomatic.md b/docs/version-specific/supported-software/t/Trimmomatic.md index 56e374ae9..bc18eddc9 100644 --- a/docs/version-specific/supported-software/t/Trimmomatic.md +++ b/docs/version-specific/supported-software/t/Trimmomatic.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``0.39`` | ``-Java-1.8`` | ``system`` ``0.39`` | ``-Java-11`` | ``system`` ``0.39`` | ``-Java-17`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Trinity.md b/docs/version-specific/supported-software/t/Trinity.md index 875fcb363..ba9d3a11e 100644 --- a/docs/version-specific/supported-software/t/Trinity.md +++ b/docs/version-specific/supported-software/t/Trinity.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-Python-2.7.16`` | ``foss/2019b`` ``2.9.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2.9.1`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Trinotate.md b/docs/version-specific/supported-software/t/Trinotate.md index 116b34a5b..5d5f30bcb 100644 --- a/docs/version-specific/supported-software/t/Trinotate.md +++ b/docs/version-specific/supported-software/t/Trinotate.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Trinotate is a comprehensive annotation suite designed for automatic functional version | toolchain --------|---------- ``4.0.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Triplexator.md b/docs/version-specific/supported-software/t/Triplexator.md index cb5a28961..4e4e288ad 100644 --- a/docs/version-specific/supported-software/t/Triplexator.md +++ b/docs/version-specific/supported-software/t/Triplexator.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Triplexator is a tool for detecting nucleic acid triple helices and triplex feat version | toolchain --------|---------- ``1.3.3`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Triton.md b/docs/version-specific/supported-software/t/Triton.md index 89dbbdf36..070eda0b0 100644 --- a/docs/version-specific/supported-software/t/Triton.md +++ b/docs/version-specific/supported-software/t/Triton.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Triton is a language and compiler for parallel programming. It aims to provide a version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/Trycycler.md b/docs/version-specific/supported-software/t/Trycycler.md index 05b2104e3..27f722dfa 100644 --- a/docs/version-specific/supported-software/t/Trycycler.md +++ b/docs/version-specific/supported-software/t/Trycycler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Trycycler Trycycler is a tool for generating consensus long-read assemblies for bacterial genomes. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.3.3`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.5.2`` | | ``foss/2021a`` ``0.5.3`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/TurboVNC.md b/docs/version-specific/supported-software/t/TurboVNC.md index 2930474c6..59bfb9b43 100644 --- a/docs/version-specific/supported-software/t/TurboVNC.md +++ b/docs/version-specific/supported-software/t/TurboVNC.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.3`` | ``GCCcore/8.2.0`` ``3.0.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/index.md b/docs/version-specific/supported-software/t/index.md index 8acfb01fe..3e38225cc 100644 --- a/docs/version-specific/supported-software/t/index.md +++ b/docs/version-specific/supported-software/t/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (t) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - *t* - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [T-Coffee](T-Coffee.md) * [t-SNE-CUDA](t-SNE-CUDA.md) * [tabix](tabix.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 index 97b3fb0ab..98d40e28e 100644 --- a/docs/version-specific/supported-software/t/t-SNE-CUDA.md +++ b/docs/version-specific/supported-software/t/t-SNE-CUDA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # t-SNE-CUDA GPU Accelerated t-SNE for CUDA with Python bindings @@ -7,3 +11,6 @@ GPU Accelerated t-SNE for CUDA with Python bindings version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tMAE.md b/docs/version-specific/supported-software/t/tMAE.md index 2ea8906e8..ca8f3a4a2 100644 --- a/docs/version-specific/supported-software/t/tMAE.md +++ b/docs/version-specific/supported-software/t/tMAE.md @@ -1,3 +1,7 @@ +--- +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) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.0.1`` | ``-R-4.1.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tRNAscan-SE.md b/docs/version-specific/supported-software/t/tRNAscan-SE.md index 8ef4451d9..637303f09 100644 --- a/docs/version-specific/supported-software/t/tRNAscan-SE.md +++ b/docs/version-specific/supported-software/t/tRNAscan-SE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tRNAscan-SE A program for detection of tRNA genes @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.0.12`` | ``GCC/11.2.0`` ``2.0.12`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tabix.md b/docs/version-specific/supported-software/t/tabix.md index 04e412b66..2db638a5c 100644 --- a/docs/version-specific/supported-software/t/tabix.md +++ b/docs/version-specific/supported-software/t/tabix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tabix Generic indexer for TAB-delimited genome position files @@ -17,3 +21,6 @@ version | toolchain ``0.2.6`` | ``foss/2016a`` ``0.2.6`` | ``intel/2016a`` ``0.2.6`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tabixpp.md b/docs/version-specific/supported-software/t/tabixpp.md index 3dd8c3bb4..d13a13eae 100644 --- a/docs/version-specific/supported-software/t/tabixpp.md +++ b/docs/version-specific/supported-software/t/tabixpp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tabixpp C++ wrapper to tabix indexer @@ -12,3 +16,6 @@ version | toolchain ``1.1.0`` | ``GCC/9.3.0`` ``1.1.2`` | ``GCC/11.3.0`` ``1.1.2`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/taco.md b/docs/version-specific/supported-software/t/taco.md index 6a8cb8d7f..e86f6c33d 100644 --- a/docs/version-specific/supported-software/t/taco.md +++ b/docs/version-specific/supported-software/t/taco.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # taco Multi-sample transcriptome assembly from RNA-Seq @@ -7,3 +11,6 @@ Multi-sample transcriptome assembly from RNA-Seq version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tantan.md b/docs/version-specific/supported-software/t/tantan.md index f3e27441f..151dc1ca6 100644 --- a/docs/version-specific/supported-software/t/tantan.md +++ b/docs/version-specific/supported-software/t/tantan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tantan tantan identifies simple regions / low complexity / tandem repeats in DNA or protein sequences @@ -7,3 +11,6 @@ tantan identifies simple regions / low complexity / tandem repeats in DNA or pro version | toolchain --------|---------- ``40`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/task-spooler.md b/docs/version-specific/supported-software/t/task-spooler.md index 7405b996a..7676865f2 100644 --- a/docs/version-specific/supported-software/t/task-spooler.md +++ b/docs/version-specific/supported-software/t/task-spooler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # task-spooler task spooler is a Unix batch system where the tasks spooled run one after the other. @@ -7,3 +11,6 @@ task spooler is a Unix batch system where the tasks spooled run one after the ot version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/taxator-tk.md b/docs/version-specific/supported-software/t/taxator-tk.md index eebf22eae..7998dc410 100644 --- a/docs/version-specific/supported-software/t/taxator-tk.md +++ b/docs/version-specific/supported-software/t/taxator-tk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # taxator-tk A set of programs for the taxonomic analysis of nucleotide sequence data @@ -9,3 +13,6 @@ version | toolchain ``1.3.3`` | ``GCC/10.2.0`` ``1.3.3`` | ``foss/2018b`` ``1.3.3`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tbb.md b/docs/version-specific/supported-software/t/tbb.md index a66caeddc..cf33be475 100644 --- a/docs/version-specific/supported-software/t/tbb.md +++ b/docs/version-specific/supported-software/t/tbb.md @@ -1,3 +1,7 @@ +--- +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. @@ -36,3 +40,6 @@ version | toolchain ``4.0.5.339`` | ``system`` ``4.3.6.211`` | ``system`` ``4.4.2.152`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tbl2asn.md b/docs/version-specific/supported-software/t/tbl2asn.md index dc5492688..1ae3f0eeb 100644 --- a/docs/version-specific/supported-software/t/tbl2asn.md +++ b/docs/version-specific/supported-software/t/tbl2asn.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tbl2asn Tbl2asn is a command-line program that automates the creation of sequence records for submission to GenBank @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``20220427`` | ``-linux64`` | ``system`` ``20230713`` | ``-linux64`` | ``system`` ``25.8`` | ``-linux64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tcsh.md b/docs/version-specific/supported-software/t/tcsh.md index f410e3cdc..48a938c04 100644 --- a/docs/version-specific/supported-software/t/tcsh.md +++ b/docs/version-specific/supported-software/t/tcsh.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | toolchain ``6.24.01`` | ``GCCcore/11.3.0`` ``6.24.07`` | ``GCCcore/12.2.0`` ``6.24.10`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tecplot360ex.md b/docs/version-specific/supported-software/t/tecplot360ex.md index 62a49bf8e..dd6d06cb9 100644 --- a/docs/version-specific/supported-software/t/tecplot360ex.md +++ b/docs/version-specific/supported-software/t/tecplot360ex.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Quickly plot and animate your CFD results exactly the way you want. Analyze comp version | toolchain --------|---------- ``linux64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tensorboard.md b/docs/version-specific/supported-software/t/tensorboard.md index 25c40089e..7a0dd9b23 100644 --- a/docs/version-specific/supported-software/t/tensorboard.md +++ b/docs/version-specific/supported-software/t/tensorboard.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tensorboard TensorBoard is a suite of web applications for inspecting and understanding your TensorFlow runs and graphs. @@ -9,3 +13,6 @@ version | toolchain ``2.10.0`` | ``foss/2022a`` ``2.15.1`` | ``gfbf/2023a`` ``2.8.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tensorboardX.md b/docs/version-specific/supported-software/t/tensorboardX.md index 325092875..d0540f20b 100644 --- a/docs/version-specific/supported-software/t/tensorboardX.md +++ b/docs/version-specific/supported-software/t/tensorboardX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tensorboardX Tensorboard for PyTorch. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.5.1`` | | ``foss/2022a`` ``2.6.2.2`` | | ``foss/2022b`` ``2.6.2.2`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tensorflow-compression.md b/docs/version-specific/supported-software/t/tensorflow-compression.md index 56526a852..5ccec1188 100644 --- a/docs/version-specific/supported-software/t/tensorflow-compression.md +++ b/docs/version-specific/supported-software/t/tensorflow-compression.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tensorflow-compression TensorFlow Compression (TFC) contains data compression tools for TensorFlow. @@ -7,3 +11,6 @@ TensorFlow Compression (TFC) contains data compression tools for TensorFlow. version | versionsuffix | toolchain --------|---------------|---------- ``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tensorflow-probability.md b/docs/version-specific/supported-software/t/tensorflow-probability.md index 20279484c..e9493b5ea 100644 --- a/docs/version-specific/supported-software/t/tensorflow-probability.md +++ b/docs/version-specific/supported-software/t/tensorflow-probability.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tensorflow-probability TensorFlow Probability (TFP) is a library for probabilistic reasoning and statistical analysis. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``0.19.0`` | | ``foss/2022a`` ``0.20.0`` | | ``foss/2023a`` ``0.9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/terastructure.md b/docs/version-specific/supported-software/t/terastructure.md index 663792cf2..fcff31c84 100644 --- a/docs/version-specific/supported-software/t/terastructure.md +++ b/docs/version-specific/supported-software/t/terastructure.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ TeraStructure is a new algorithm to fit Bayesian models of genetic variation in version | toolchain --------|---------- ``1.0`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/termcolor.md b/docs/version-specific/supported-software/t/termcolor.md index 7b04506e7..0f1d5b245 100644 --- a/docs/version-specific/supported-software/t/termcolor.md +++ b/docs/version-specific/supported-software/t/termcolor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # termcolor Termcolor is a header-only C++ library for printing colored messages to the terminal. @@ -7,3 +11,6 @@ Termcolor is a header-only C++ library for printing colored messages to the ter version | toolchain --------|---------- ``2.0.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tesseract.md b/docs/version-specific/supported-software/t/tesseract.md index da484957e..d43c1ce5c 100644 --- a/docs/version-specific/supported-software/t/tesseract.md +++ b/docs/version-specific/supported-software/t/tesseract.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tesseract Tesseract is an optical character recognition engine @@ -10,3 +14,6 @@ version | toolchain ``4.1.0`` | ``GCCcore/10.3.0`` ``4.1.0`` | ``GCCcore/8.2.0`` ``5.3.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/testpath.md b/docs/version-specific/supported-software/t/testpath.md index 75de22f82..bd323dbfb 100644 --- a/docs/version-specific/supported-software/t/testpath.md +++ b/docs/version-specific/supported-software/t/testpath.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # testpath Test utilities for code working with files and commands @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``0.3`` | ``-Python-2.7.11`` | ``intel/2016a`` ``0.3`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.3`` | ``-Python-3.5.2`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/texinfo.md b/docs/version-specific/supported-software/t/texinfo.md index 499743083..0f13d85ce 100644 --- a/docs/version-specific/supported-software/t/texinfo.md +++ b/docs/version-specific/supported-software/t/texinfo.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # texinfo Texinfo is the official documentation format of the GNU project. @@ -18,3 +22,6 @@ version | toolchain ``6.8`` | ``GCCcore/11.2.0`` ``7.0.2`` | ``GCCcore/11.3.0`` ``7.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/texlive.md b/docs/version-specific/supported-software/t/texlive.md index f8f853d5f..5beedb47a 100644 --- a/docs/version-specific/supported-software/t/texlive.md +++ b/docs/version-specific/supported-software/t/texlive.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``20230313`` | ``GCC/11.3.0`` ``20230313`` | ``GCC/12.3.0`` ``20230313`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/thirdorder.md b/docs/version-specific/supported-software/t/thirdorder.md index 8e1e5d795..b3ffa200b 100644 --- a/docs/version-specific/supported-software/t/thirdorder.md +++ b/docs/version-specific/supported-software/t/thirdorder.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ A Python script to help create input files for computing anhamonic interatomic f version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/thurstonianIRT.md b/docs/version-specific/supported-software/t/thurstonianIRT.md index f8d752ba9..d99219856 100644 --- a/docs/version-specific/supported-software/t/thurstonianIRT.md +++ b/docs/version-specific/supported-software/t/thurstonianIRT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # thurstonianIRT Fit Thurstonian IRT models in R using Stan, lavaan, or Mplus @@ -7,3 +11,6 @@ Fit Thurstonian IRT models in R using Stan, lavaan, or Mplus version | versionsuffix | toolchain --------|---------------|---------- ``0.9.0`` | ``-R-3.6.0`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tidybayes.md b/docs/version-specific/supported-software/t/tidybayes.md index 6ddd015ea..bc8d99a2c 100644 --- a/docs/version-specific/supported-software/t/tidybayes.md +++ b/docs/version-specific/supported-software/t/tidybayes.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Compose data for and extract, manipulate, and visualize posterior draws from Bay version | versionsuffix | toolchain --------|---------------|---------- ``2.1.1`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tidymodels.md b/docs/version-specific/supported-software/t/tidymodels.md index 8d13696fe..178ed0e43 100644 --- a/docs/version-specific/supported-software/t/tidymodels.md +++ b/docs/version-specific/supported-software/t/tidymodels.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-4.0.0`` | ``foss/2020a`` ``1.1.0`` | | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tiktoken.md b/docs/version-specific/supported-software/t/tiktoken.md index 8000d9048..9d36455d7 100644 --- a/docs/version-specific/supported-software/t/tiktoken.md +++ b/docs/version-specific/supported-software/t/tiktoken.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tiktoken tiktoken is a fast BPE tokeniser for use with OpenAI's models @@ -7,3 +11,6 @@ tiktoken is a fast BPE tokeniser for use with OpenAI's models version | toolchain --------|---------- ``0.6.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/time.md b/docs/version-specific/supported-software/t/time.md index 6429d0702..322d9129a 100644 --- a/docs/version-specific/supported-software/t/time.md +++ b/docs/version-specific/supported-software/t/time.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``1.9`` | ``GCCcore/7.3.0`` ``1.9`` | ``GCCcore/8.3.0`` ``1.9`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/timm.md b/docs/version-specific/supported-software/t/timm.md index b1dc9853e..f15bb115a 100644 --- a/docs/version-specific/supported-software/t/timm.md +++ b/docs/version-specific/supported-software/t/timm.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.13`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.9.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tiny-cuda-nn.md b/docs/version-specific/supported-software/t/tiny-cuda-nn.md index c2b229b79..8cf05a60e 100644 --- a/docs/version-specific/supported-software/t/tiny-cuda-nn.md +++ b/docs/version-specific/supported-software/t/tiny-cuda-nn.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ is a small, self-contained framework for training and querying neural networks. version | versionsuffix | toolchain --------|---------------|---------- ``1.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tmap.md b/docs/version-specific/supported-software/t/tmap.md index e7aad087f..698ddf21b 100644 --- a/docs/version-specific/supported-software/t/tmap.md +++ b/docs/version-specific/supported-software/t/tmap.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ tmap is a very fast visualization library for large, high-dimensional data sets. version | toolchain --------|---------- ``20220502`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tmux.md b/docs/version-specific/supported-software/t/tmux.md index 198564550..eeb505292 100644 --- a/docs/version-specific/supported-software/t/tmux.md +++ b/docs/version-specific/supported-software/t/tmux.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | toolchain ``3.4`` | ``GCCcore/13.2.0`` ``3.4`` | ``GCCcore/13.3.0`` ``3.4`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/toil.md b/docs/version-specific/supported-software/t/toil.md index a4d1650fa..f08a1c67d 100644 --- a/docs/version-specific/supported-software/t/toil.md +++ b/docs/version-specific/supported-software/t/toil.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # toil A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine in pure Python. @@ -7,3 +11,6 @@ A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow eng version | toolchain --------|---------- ``5.8.0`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tokenizers.md b/docs/version-specific/supported-software/t/tokenizers.md index e0b771bf0..9eb7f2051 100644 --- a/docs/version-specific/supported-software/t/tokenizers.md +++ b/docs/version-specific/supported-software/t/tokenizers.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tokenizers Fast State-of-the-Art Tokenizers optimized for Research and Production @@ -9,3 +13,6 @@ version | toolchain ``0.12.1`` | ``GCCcore/10.3.0`` ``0.13.3`` | ``GCCcore/12.2.0`` ``0.15.2`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/topaz.md b/docs/version-specific/supported-software/t/topaz.md index 4160ba970..51a5965fd 100644 --- a/docs/version-specific/supported-software/t/topaz.md +++ b/docs/version-specific/supported-software/t/topaz.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchaudio.md b/docs/version-specific/supported-software/t/torchaudio.md index bd9fc67d7..81b63245f 100644 --- a/docs/version-specific/supported-software/t/torchaudio.md +++ b/docs/version-specific/supported-software/t/torchaudio.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # torchaudio Data manipulation and transformation for audio signal processing, powered by PyTorch @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchdata.md b/docs/version-specific/supported-software/t/torchdata.md index 464f7d72b..5e238709c 100644 --- a/docs/version-specific/supported-software/t/torchdata.md +++ b/docs/version-specific/supported-software/t/torchdata.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # torchdata TorchData is a prototype library of common modular data loading primitives for easily constructing flexible and performant data pipelines." @@ -7,3 +11,6 @@ TorchData is a prototype library of common modular data loading primitives for e version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0`` | ``-PyTorch-1.11.0-CUDA-11.3.1`` | ``foss/2021a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchinfo.md b/docs/version-specific/supported-software/t/torchinfo.md index 2665224c3..e28a152eb 100644 --- a/docs/version-specific/supported-software/t/torchinfo.md +++ b/docs/version-specific/supported-software/t/torchinfo.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.2`` | ``-PyTorch-1.7.1`` | ``foss/2020b`` ``1.5.2`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchsampler.md b/docs/version-specific/supported-software/t/torchsampler.md index eb69695c4..d6fe2d9b9 100644 --- a/docs/version-specific/supported-software/t/torchsampler.md +++ b/docs/version-specific/supported-software/t/torchsampler.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # torchsampler A (PyTorch) imbalanced dataset sampler for oversampling low classes and undersampling high frequent ones. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.2`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchtext.md b/docs/version-specific/supported-software/t/torchtext.md index fba50883c..5ab3a80d0 100644 --- a/docs/version-specific/supported-software/t/torchtext.md +++ b/docs/version-specific/supported-software/t/torchtext.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # torchtext Data loaders and abstractions for text and NLP @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchvf.md b/docs/version-specific/supported-software/t/torchvf.md index 81c84ae44..738c9add0 100644 --- a/docs/version-specific/supported-software/t/torchvf.md +++ b/docs/version-specific/supported-software/t/torchvf.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # torchvf TorchVF is a unifying Python library for using vector fields for efficient proposal-free instance segmentation. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.3`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/torchvision.md b/docs/version-specific/supported-software/t/torchvision.md index 2a2d88fa9..e37abb0a6 100644 --- a/docs/version-specific/supported-software/t/torchvision.md +++ b/docs/version-specific/supported-software/t/torchvision.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # torchvision Datasets, Transforms and Models specific to Computer Vision @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tornado.md b/docs/version-specific/supported-software/t/tornado.md index 49c13e856..0e3cc1a92 100644 --- a/docs/version-specific/supported-software/t/tornado.md +++ b/docs/version-specific/supported-software/t/tornado.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tornado Tornado is a Python web framework and asynchronous networking library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.3.2`` | ``GCCcore/12.3.0`` ``6.4`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tox.md b/docs/version-specific/supported-software/t/tox.md index 047bf7e4e..a7cac2581 100644 --- a/docs/version-specific/supported-software/t/tox.md +++ b/docs/version-specific/supported-software/t/tox.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tox tox aims to automate and standardize testing in Python @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.25.1`` | ``GCCcore/10.2.0`` ``3.25.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tqdm.md b/docs/version-specific/supported-software/t/tqdm.md index bd357b1cb..63cda146b 100644 --- a/docs/version-specific/supported-software/t/tqdm.md +++ b/docs/version-specific/supported-software/t/tqdm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tqdm A fast, extensible progress bar for Python and CLI @@ -24,3 +28,6 @@ version | versionsuffix | toolchain ``4.64.1`` | | ``GCCcore/12.2.0`` ``4.66.1`` | | ``GCCcore/12.3.0`` ``4.66.2`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/travis.md b/docs/version-specific/supported-software/t/travis.md index c2a55a1d0..5a977fae7 100644 --- a/docs/version-specific/supported-software/t/travis.md +++ b/docs/version-specific/supported-software/t/travis.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # travis Travis CI Client (CLI and Ruby library) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.2`` | ``-Ruby-2.3.1`` | ``system`` ``1.8.4`` | ``-Ruby-2.3.3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/treatSens.md b/docs/version-specific/supported-software/t/treatSens.md index e12951980..67af16f00 100644 --- a/docs/version-specific/supported-software/t/treatSens.md +++ b/docs/version-specific/supported-software/t/treatSens.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # treatSens Utilities to investigate sensitivity to unmeasured confounding in parametric models with either binary or continuous treatment. @@ -7,3 +11,6 @@ Utilities to investigate sensitivity to unmeasured confounding in parametric mod version | versionsuffix | toolchain --------|---------------|---------- ``3.0-20201002`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/trimAl.md b/docs/version-specific/supported-software/t/trimAl.md index e85c9fada..ee735b2ca 100644 --- a/docs/version-specific/supported-software/t/trimAl.md +++ b/docs/version-specific/supported-software/t/trimAl.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # trimAl EVB, FEP and LIE simulator. @@ -13,3 +17,6 @@ version | toolchain ``1.4.1`` | ``GCCcore/12.3.0`` ``1.4.1`` | ``GCCcore/9.3.0`` ``1.4.1`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/trimesh.md b/docs/version-specific/supported-software/t/trimesh.md index c5e697816..9659bd645 100644 --- a/docs/version-specific/supported-software/t/trimesh.md +++ b/docs/version-specific/supported-software/t/trimesh.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.17.1`` | ``foss/2022a`` ``3.21.5`` | ``gfbf/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tseriesEntropy.md b/docs/version-specific/supported-software/t/tseriesEntropy.md index 63f8a72f6..0862e6e3f 100644 --- a/docs/version-specific/supported-software/t/tseriesEntropy.md +++ b/docs/version-specific/supported-software/t/tseriesEntropy.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Implements an Entropy measure of dependence based on the Bhattacharya-Hellinger- version | versionsuffix | toolchain --------|---------------|---------- ``0.6-0`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tsne.md b/docs/version-specific/supported-software/t/tsne.md index 94e3bc90e..b73a5d287 100644 --- a/docs/version-specific/supported-software/t/tsne.md +++ b/docs/version-specific/supported-software/t/tsne.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # tsne Python library containing T-SNE algorithms. @@ -7,3 +11,6 @@ Python library containing T-SNE algorithms. version | versionsuffix | toolchain --------|---------------|---------- ``0.1.8`` | ``-Python-2.7.16`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/turbinesFoam.md b/docs/version-specific/supported-software/t/turbinesFoam.md index c5e3c0689..33c6ce24d 100644 --- a/docs/version-specific/supported-software/t/turbinesFoam.md +++ b/docs/version-specific/supported-software/t/turbinesFoam.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # turbinesFoam turbinesFoam is a library for simulating wind and marine hydrokinetic turbines in OpenFOAM using the actuator line method. @@ -7,3 +11,6 @@ turbinesFoam is a library for simulating wind and marine hydrokinetic turbines i version | versionsuffix | toolchain --------|---------------|---------- ``20220516`` | ``-OpenFOAM-8`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tvb-data.md b/docs/version-specific/supported-software/t/tvb-data.md index 2cac1bfd4..f6af38e7c 100644 --- a/docs/version-specific/supported-software/t/tvb-data.md +++ b/docs/version-specific/supported-software/t/tvb-data.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150915`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tvb-framework.md b/docs/version-specific/supported-software/t/tvb-framework.md index 55295bf7f..cdf03aea8 100644 --- a/docs/version-specific/supported-software/t/tvb-framework.md +++ b/docs/version-specific/supported-software/t/tvb-framework.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150921`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/tvb-library.md b/docs/version-specific/supported-software/t/tvb-library.md index 8e7a23321..31da156b9 100644 --- a/docs/version-specific/supported-software/t/tvb-library.md +++ b/docs/version-specific/supported-software/t/tvb-library.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150922`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/t/typing-extensions.md b/docs/version-specific/supported-software/t/typing-extensions.md index f2c539da5..64650e3cc 100644 --- a/docs/version-specific/supported-software/t/typing-extensions.md +++ b/docs/version-specific/supported-software/t/typing-extensions.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # typing-extensions Typing Extensions – Backported and Experimental Type Hints for Python @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``4.4.0`` | | ``GCCcore/10.3.0`` ``4.9.0`` | | ``GCCcore/12.2.0`` ``4.9.0`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UCC-CUDA.md b/docs/version-specific/supported-software/u/UCC-CUDA.md index 46d607190..81fc8598d 100644 --- a/docs/version-specific/supported-software/u/UCC-CUDA.md +++ b/docs/version-specific/supported-software/u/UCC-CUDA.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UCC.md b/docs/version-specific/supported-software/u/UCC.md index f4edad89a..add0a2546 100644 --- a/docs/version-specific/supported-software/u/UCC.md +++ b/docs/version-specific/supported-software/u/UCC.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``GCCcore/13.2.0`` ``1.3.0`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UCLUST.md b/docs/version-specific/supported-software/u/UCLUST.md index 04b25885b..63e7abe3a 100644 --- a/docs/version-specific/supported-software/u/UCLUST.md +++ b/docs/version-specific/supported-software/u/UCLUST.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # UCLUST UCLUST: Extreme high-speed sequence clustering, alignment and database search. @@ -7,3 +11,6 @@ UCLUST: Extreme high-speed sequence clustering, alignment and database search. version | versionsuffix | toolchain --------|---------------|---------- ``1.2.22q`` | ``-i86linux64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UCX-CUDA.md b/docs/version-specific/supported-software/u/UCX-CUDA.md index bd6f62e42..12bc67774 100644 --- a/docs/version-specific/supported-software/u/UCX-CUDA.md +++ b/docs/version-specific/supported-software/u/UCX-CUDA.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UCX-ROCm.md b/docs/version-specific/supported-software/u/UCX-ROCm.md index d4b8c956a..821d28bbf 100644 --- a/docs/version-specific/supported-software/u/UCX-ROCm.md +++ b/docs/version-specific/supported-software/u/UCX-ROCm.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Unified Communication X An open-source production grade communication framework version | versionsuffix | toolchain --------|---------------|---------- ``1.11.2`` | ``-ROCm-4.5.0`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UCX.md b/docs/version-specific/supported-software/u/UCX.md index 6573fd964..61f02644e 100644 --- a/docs/version-specific/supported-software/u/UCX.md +++ b/docs/version-specific/supported-software/u/UCX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # UCX Unified Communication X An open-source production grade communication framework for data centric and high-performance applications @@ -34,3 +38,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UDUNITS.md b/docs/version-specific/supported-software/u/UDUNITS.md index 6b8670d21..fca38affb 100644 --- a/docs/version-specific/supported-software/u/UDUNITS.md +++ b/docs/version-specific/supported-software/u/UDUNITS.md @@ -1,3 +1,7 @@ +--- +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. @@ -28,3 +32,6 @@ version | toolchain ``2.2.28`` | ``GCCcore/12.2.0`` ``2.2.28`` | ``GCCcore/12.3.0`` ``2.2.28`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UFL.md b/docs/version-specific/supported-software/u/UFL.md index 882ec0e07..8d61b2869 100644 --- a/docs/version-specific/supported-software/u/UFL.md +++ b/docs/version-specific/supported-software/u/UFL.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UMI-tools.md b/docs/version-specific/supported-software/u/UMI-tools.md index 1ff095a57..df1034d3b 100644 --- a/docs/version-specific/supported-software/u/UMI-tools.md +++ b/docs/version-specific/supported-software/u/UMI-tools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.4`` | | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UNAFold.md b/docs/version-specific/supported-software/u/UNAFold.md index 2f09b776e..e251c1c23 100644 --- a/docs/version-specific/supported-software/u/UNAFold.md +++ b/docs/version-specific/supported-software/u/UNAFold.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # UNAFold The UNAFold package contains several programs for performing energy minimization and partition function calculations on nucleic acid sequences. @@ -7,3 +11,6 @@ The UNAFold package contains several programs for performing energy minimization version | versionsuffix | toolchain --------|---------------|---------- ``3.8`` | ``-Perl-5.24.1`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UQTk.md b/docs/version-specific/supported-software/u/UQTk.md index 9bdc81715..35879eea1 100644 --- a/docs/version-specific/supported-software/u/UQTk.md +++ b/docs/version-specific/supported-software/u/UQTk.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The UQ Toolkit (UQTk) is a collection of libraries and tools for the quantifica version | versionsuffix | toolchain --------|---------------|---------- ``3.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/USEARCH.md b/docs/version-specific/supported-software/u/USEARCH.md index 7c58225f5..36e2eaca2 100644 --- a/docs/version-specific/supported-software/u/USEARCH.md +++ b/docs/version-specific/supported-software/u/USEARCH.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``5.2.236-6.1.544`` | ``-i86linux32`` | ``system`` ``5.2.236`` | ``-i86linux32`` | ``system`` ``6.1.544`` | ``-i86linux32`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/USPEX.md b/docs/version-specific/supported-software/u/USPEX.md index 38262323e..776d4925c 100644 --- a/docs/version-specific/supported-software/u/USPEX.md +++ b/docs/version-specific/supported-software/u/USPEX.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ USPEX (Universal Structure Predictor: Evolutionary Xtallography... and in Russi version | versionsuffix | toolchain --------|---------------|---------- ``9.4.4`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UShER.md b/docs/version-specific/supported-software/u/UShER.md index 179501afe..d9942d371 100644 --- a/docs/version-specific/supported-software/u/UShER.md +++ b/docs/version-specific/supported-software/u/UShER.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.1`` | ``gompi/2020b`` ``0.5.0`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/Ultralytics.md b/docs/version-specific/supported-software/u/Ultralytics.md index 4249f41c5..98a4b3165 100644 --- a/docs/version-specific/supported-software/u/Ultralytics.md +++ b/docs/version-specific/supported-software/u/Ultralytics.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Ultralytics YOLOv8 is a cutting-edge, state-of-the-art (SOTA) model that builds version | versionsuffix | toolchain --------|---------------|---------- ``8.0.92`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UnZip.md b/docs/version-specific/supported-software/u/UnZip.md index d89aef620..b7e191258 100644 --- a/docs/version-specific/supported-software/u/UnZip.md +++ b/docs/version-specific/supported-software/u/UnZip.md @@ -1,3 +1,7 @@ +--- +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. @@ -21,3 +25,6 @@ version | toolchain ``6.0`` | ``GCCcore/8.3.0`` ``6.0`` | ``GCCcore/9.3.0`` ``6.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/UniFrac.md b/docs/version-specific/supported-software/u/UniFrac.md index ff3f1172d..038df3da4 100644 --- a/docs/version-specific/supported-software/u/UniFrac.md +++ b/docs/version-specific/supported-software/u/UniFrac.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ UniFrac is the de facto repository for high-performance phylogenetic diversity c version | toolchain --------|---------- ``1.3.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/Unicycler.md b/docs/version-specific/supported-software/u/Unicycler.md index d1d312526..18644ad45 100644 --- a/docs/version-specific/supported-software/u/Unicycler.md +++ b/docs/version-specific/supported-software/u/Unicycler.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.4.8`` | ``-Python-3.8.2`` | ``gompi/2020a`` ``0.4.9`` | | ``gompi/2021a`` ``0.5.0`` | | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/Unidecode.md b/docs/version-specific/supported-software/u/Unidecode.md index 1b7edb081..3718861ff 100644 --- a/docs/version-specific/supported-software/u/Unidecode.md +++ b/docs/version-specific/supported-software/u/Unidecode.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Unidecode Python library for lossy ASCII transliterations of Unicode text (port of Text::Unidecode Perl module) @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.3.6`` | | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/index.md b/docs/version-specific/supported-software/u/index.md index 0c45e8d45..0a4fbd9f6 100644 --- a/docs/version-specific/supported-software/u/index.md +++ b/docs/version-specific/supported-software/u/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (u) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - *u* - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [UCC](UCC.md) * [UCC-CUDA](UCC-CUDA.md) * [UCLUST](UCLUST.md) diff --git a/docs/version-specific/supported-software/u/ucx-py.md b/docs/version-specific/supported-software/u/ucx-py.md index 3188986e9..500e994d9 100644 --- a/docs/version-specific/supported-software/u/ucx-py.md +++ b/docs/version-specific/supported-software/u/ucx-py.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ UCX-Py is the Python interface for UCX, a low-level high-performance networking version | toolchain --------|---------- ``0.21.0`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/udocker.md b/docs/version-specific/supported-software/u/udocker.md index 9c95c1718..ad96a0d64 100644 --- a/docs/version-specific/supported-software/u/udocker.md +++ b/docs/version-specific/supported-software/u/udocker.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # udocker A basic user tool to execute simple docker containers in batch or interactive systems without root privileges. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-2.7.14`` | ``foss/2017b`` ``1.1.3`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/umap-learn.md b/docs/version-specific/supported-software/u/umap-learn.md index 6e9250145..170156381 100644 --- a/docs/version-specific/supported-software/u/umap-learn.md +++ b/docs/version-specific/supported-software/u/umap-learn.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``0.5.3`` | ``foss/2021b`` ``0.5.3`` | ``foss/2022a`` ``0.5.5`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/umi4cPackage.md b/docs/version-specific/supported-software/u/umi4cPackage.md index 9c1ef9119..c09060aaf 100644 --- a/docs/version-specific/supported-software/u/umi4cPackage.md +++ b/docs/version-specific/supported-software/u/umi4cPackage.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # umi4cPackage umi4cPackage is a processing and analysis pipeline for UMI-4C experiment. @@ -7,3 +11,6 @@ umi4cPackage is a processing and analysis pipeline for UMI-4C experiment. version | versionsuffix | toolchain --------|---------------|---------- ``20200116`` | ``-R-4.0.0`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/umis.md b/docs/version-specific/supported-software/u/umis.md index ce41f33b3..8d7727dab 100644 --- a/docs/version-specific/supported-software/u/umis.md +++ b/docs/version-specific/supported-software/u/umis.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # umis Package for estimating UMI counts in Transcript Tag Counting data. @@ -7,3 +11,6 @@ Package for estimating UMI counts in Transcript Tag Counting data. version | toolchain --------|---------- ``1.0.3`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/uncertainties.md b/docs/version-specific/supported-software/u/uncertainties.md index 8f0480d71..371d7c1d9 100644 --- a/docs/version-specific/supported-software/u/uncertainties.md +++ b/docs/version-specific/supported-software/u/uncertainties.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # uncertainties Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.1.7`` | ``foss/2021b`` ``3.1.7`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/uncertainty-calibration.md b/docs/version-specific/supported-software/u/uncertainty-calibration.md index 5c786de2e..8da292bec 100644 --- a/docs/version-specific/supported-software/u/uncertainty-calibration.md +++ b/docs/version-specific/supported-software/u/uncertainty-calibration.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Python library to measure the calibration error of models, including confidence version | toolchain --------|---------- ``0.0.9`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/unicore-uftp.md b/docs/version-specific/supported-software/u/unicore-uftp.md index cf00d82ed..374805c50 100644 --- a/docs/version-specific/supported-software/u/unicore-uftp.md +++ b/docs/version-specific/supported-software/u/unicore-uftp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # unicore-uftp UNICORE Java-based client for UFTP @@ -7,3 +11,6 @@ UNICORE Java-based client for UFTP version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/unifdef.md b/docs/version-specific/supported-software/u/unifdef.md index e5a48a0df..d80aa190e 100644 --- a/docs/version-specific/supported-software/u/unifdef.md +++ b/docs/version-specific/supported-software/u/unifdef.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ unifdef - selectively remove C preprocessor conditionals The unifdef utility sel version | toolchain --------|---------- ``2.12`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/unimap.md b/docs/version-specific/supported-software/u/unimap.md index 22f4e9213..0ea9535cc 100644 --- a/docs/version-specific/supported-software/u/unimap.md +++ b/docs/version-specific/supported-software/u/unimap.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.1`` | ``GCCcore/10.2.0`` ``0.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/units.md b/docs/version-specific/supported-software/u/units.md index 12ee6140f..cc65c032c 100644 --- a/docs/version-specific/supported-software/u/units.md +++ b/docs/version-specific/supported-software/u/units.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ GNU Units converts quantities expressed in various systems of measurement to the version | toolchain --------|---------- ``2.19`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/unixODBC.md b/docs/version-specific/supported-software/u/unixODBC.md index c40d113c6..b7a08f91a 100644 --- a/docs/version-specific/supported-software/u/unixODBC.md +++ b/docs/version-specific/supported-software/u/unixODBC.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # unixODBC unixODBC provides a uniform interface between application and database driver @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.3.11`` | ``foss/2022b`` ``2.3.7`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/unrar.md b/docs/version-specific/supported-software/u/unrar.md index 79a1f4175..559ddef09 100644 --- a/docs/version-specific/supported-software/u/unrar.md +++ b/docs/version-specific/supported-software/u/unrar.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # unrar RAR is a powerful archive manager. @@ -9,3 +13,6 @@ version | toolchain ``5.6.1`` | ``GCCcore/7.3.0`` ``5.7.3`` | ``GCCcore/8.2.0`` ``6.0.2`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/utf8proc.md b/docs/version-specific/supported-software/u/utf8proc.md index 177bb0a7d..78cca670d 100644 --- a/docs/version-specific/supported-software/u/utf8proc.md +++ b/docs/version-specific/supported-software/u/utf8proc.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``2.7.0`` | ``GCCcore/11.3.0`` ``2.8.0`` | ``GCCcore/12.2.0`` ``2.8.0`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/u/util-linux.md b/docs/version-specific/supported-software/u/util-linux.md index 37fdfec8b..12b71a391 100644 --- a/docs/version-specific/supported-software/u/util-linux.md +++ b/docs/version-specific/supported-software/u/util-linux.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # util-linux Set of Linux utilities @@ -34,3 +38,6 @@ version | toolchain ``2.39`` | ``GCCcore/12.3.0`` ``2.39`` | ``GCCcore/13.2.0`` ``2.40`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/V8.md b/docs/version-specific/supported-software/v/V8.md index ec6858035..dcfe12d29 100644 --- a/docs/version-specific/supported-software/v/V8.md +++ b/docs/version-specific/supported-software/v/V8.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # V8 R interface to Google's open source JavaScript engine @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VAMPIRE-ASM.md b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md index 94240df80..a80dc6c0c 100644 --- a/docs/version-specific/supported-software/v/VAMPIRE-ASM.md +++ b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Vampire is designed from the ground-up to be an easy to use, fast, open-source version | toolchain --------|---------- ``6.0`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VASP.md b/docs/version-specific/supported-software/v/VASP.md index a21b65914..5bca2245a 100644 --- a/docs/version-specific/supported-software/v/VASP.md +++ b/docs/version-specific/supported-software/v/VASP.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.4.1`` | ``intel/2016.02-GCC-4.9`` ``6.3.2`` | ``nvofbf/2022.07`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VAtools.md b/docs/version-specific/supported-software/v/VAtools.md index e29de870c..5e3e56309 100644 --- a/docs/version-specific/supported-software/v/VAtools.md +++ b/docs/version-specific/supported-software/v/VAtools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VAtools VAtools is a python package that includes several tools to annotate VCF files with data from other tools. @@ -7,3 +11,6 @@ VAtools is a python package that includes several tools to annotate VCF files w version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VBZ-Compression.md b/docs/version-specific/supported-software/v/VBZ-Compression.md index c0ecd1e91..c33ee7274 100644 --- a/docs/version-specific/supported-software/v/VBZ-Compression.md +++ b/docs/version-specific/supported-software/v/VBZ-Compression.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VBZ-Compression VBZ compression HDF5 plugin for nanopolish @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``gompi/2020b`` ``1.0.3`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VCF-kit.md b/docs/version-specific/supported-software/v/VCF-kit.md index 3a2957c53..b3bafaa57 100644 --- a/docs/version-specific/supported-software/v/VCF-kit.md +++ b/docs/version-specific/supported-software/v/VCF-kit.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ VCF-kit is a command-line based collection of utilities for performing analysis version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-2.7.15`` | ``intel/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VCFtools.md b/docs/version-specific/supported-software/v/VCFtools.md index a8e02fe46..734310279 100644 --- a/docs/version-specific/supported-software/v/VCFtools.md +++ b/docs/version-specific/supported-software/v/VCFtools.md @@ -1,3 +1,7 @@ +--- +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. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VEGAS.md b/docs/version-specific/supported-software/v/VEGAS.md index b3492d190..6b27f4b25 100644 --- a/docs/version-specific/supported-software/v/VEGAS.md +++ b/docs/version-specific/supported-software/v/VEGAS.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ VEGAS (Versatile Gene-based Association Study) is a free program for performing version | toolchain --------|---------- ``0.8.27`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VEP.md b/docs/version-specific/supported-software/v/VEP.md index c8ae926de..2e374cfbc 100644 --- a/docs/version-specific/supported-software/v/VEP.md +++ b/docs/version-specific/supported-software/v/VEP.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | versionsuffix | toolchain ``94.5`` | ``-Perl-5.26.0`` | ``intel/2017b`` ``95.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``96.0`` | ``-Perl-5.28.1`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VERSE.md b/docs/version-specific/supported-software/v/VERSE.md index e6b68cb68..fc3d8a8be 100644 --- a/docs/version-specific/supported-software/v/VERSE.md +++ b/docs/version-specific/supported-software/v/VERSE.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VERSE A versatile and efficient RNA-Seq read counting tool @@ -7,3 +11,6 @@ A versatile and efficient RNA-Seq read counting tool version | toolchain --------|---------- ``0.1.5`` | ``foss/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VESTA.md b/docs/version-specific/supported-software/v/VESTA.md index bb74a90b4..2aa65fc5a 100644 --- a/docs/version-specific/supported-software/v/VESTA.md +++ b/docs/version-specific/supported-software/v/VESTA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VESTA VESTA is a 3D visualization program for structured models, volumetric data such as electron/nuclear densities, and crystal morphologies. @@ -7,3 +11,6 @@ VESTA is a 3D visualization program for structured models, volumetric data su version | versionsuffix | toolchain --------|---------------|---------- ``3.5.8`` | ``-gtk3`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VMD.md b/docs/version-specific/supported-software/v/VMD.md index 0edfbac98..ecc497a05 100644 --- a/docs/version-specific/supported-software/v/VMD.md +++ b/docs/version-specific/supported-software/v/VMD.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``1.9.4a51`` | | ``foss/2020b`` ``1.9.4a51`` | | ``fosscuda/2020b`` ``1.9.4a57`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VMTK.md b/docs/version-specific/supported-software/v/VMTK.md index 2d827a5a4..03b8ceec6 100644 --- a/docs/version-specific/supported-software/v/VMTK.md +++ b/docs/version-specific/supported-software/v/VMTK.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ vmtk is a collection of libraries and tools for 3D reconstruction, geometric ana version | versionsuffix | toolchain --------|---------------|---------- ``1.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VSCode.md b/docs/version-specific/supported-software/v/VSCode.md index 1c38246b7..90d525c67 100644 --- a/docs/version-specific/supported-software/v/VSCode.md +++ b/docs/version-specific/supported-software/v/VSCode.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.85.0`` | ``system`` ``1.88.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VSEARCH.md b/docs/version-specific/supported-software/v/VSEARCH.md index d919765ec..a90f16bc8 100644 --- a/docs/version-specific/supported-software/v/VSEARCH.md +++ b/docs/version-specific/supported-software/v/VSEARCH.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``2.22.1`` | ``GCC/11.3.0`` ``2.25.0`` | ``GCC/12.3.0`` ``2.9.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VTK.md b/docs/version-specific/supported-software/v/VTK.md index 97f4a94b2..590593fc4 100644 --- a/docs/version-specific/supported-software/v/VTK.md +++ b/docs/version-specific/supported-software/v/VTK.md @@ -1,3 +1,7 @@ +--- +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. @@ -41,3 +45,6 @@ version | versionsuffix | toolchain ``9.2.6`` | | ``foss/2022b`` ``9.3.0`` | | ``foss/2023a`` ``9.3.0`` | | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VTune.md b/docs/version-specific/supported-software/v/VTune.md index cff658745..d5ae9bc1d 100644 --- a/docs/version-specific/supported-software/v/VTune.md +++ b/docs/version-specific/supported-software/v/VTune.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VTune Intel VTune Amplifier XE is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java. @@ -30,3 +34,6 @@ version | toolchain ``2022.2.0`` | ``system`` ``2022.3.0`` | ``system`` ``2023.2.0`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VV.md b/docs/version-specific/supported-software/v/VV.md index f586d94d5..9b07a8b7a 100644 --- a/docs/version-specific/supported-software/v/VV.md +++ b/docs/version-specific/supported-software/v/VV.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ VV is an open-source and cross platform image viewer, designed for fast and sim version | versionsuffix | toolchain --------|---------------|---------- ``2018.09.19`` | ``-Python-3.6.6`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VXL.md b/docs/version-specific/supported-software/v/VXL.md index b9ebcaeac..ffbc672c3 100644 --- a/docs/version-specific/supported-software/v/VXL.md +++ b/docs/version-specific/supported-software/v/VXL.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VXL A multi-platform collection of C++ software libraries for Computer Vision and Image Understanding. @@ -7,3 +11,6 @@ A multi-platform collection of C++ software libraries for Computer Vision and Im version | toolchain --------|---------- ``1.18.0`` | ``foss/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Vala.md b/docs/version-specific/supported-software/v/Vala.md index aacd18643..94a986346 100644 --- a/docs/version-specific/supported-software/v/Vala.md +++ b/docs/version-specific/supported-software/v/Vala.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.52.4`` | ``GCCcore/10.3.0`` ``0.56.14`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Valgrind.md b/docs/version-specific/supported-software/v/Valgrind.md index 71bd69075..d2c79a828 100644 --- a/docs/version-specific/supported-software/v/Valgrind.md +++ b/docs/version-specific/supported-software/v/Valgrind.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Valgrind Valgrind: Debugging and profiling tools @@ -26,3 +30,6 @@ version | toolchain ``3.21.0`` | ``gompi/2022b`` ``3.21.0`` | ``gompi/2023a`` ``3.23.0`` | ``gompi/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Vamb.md b/docs/version-specific/supported-software/v/Vamb.md index 8628551d7..299ba08b9 100644 --- a/docs/version-specific/supported-software/v/Vamb.md +++ b/docs/version-specific/supported-software/v/Vamb.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Vamb is a metagenomic binner which feeds sequence composition information from a version | versionsuffix | toolchain --------|---------------|---------- ``3.0.9`` | ``-CUDA-11.5.2`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Vampir.md b/docs/version-specific/supported-software/v/Vampir.md index ab43bbddc..a69335a22 100644 --- a/docs/version-specific/supported-software/v/Vampir.md +++ b/docs/version-specific/supported-software/v/Vampir.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.4.1`` | ``-demo`` | ``system`` ``8.4.1`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Vampire.md b/docs/version-specific/supported-software/v/Vampire.md index 1cc89aa73..089fd09e3 100644 --- a/docs/version-specific/supported-software/v/Vampire.md +++ b/docs/version-specific/supported-software/v/Vampire.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Vampire The Vampire Theorem Prover. @@ -7,3 +11,6 @@ The Vampire Theorem Prover. version | toolchain --------|---------- ``4.5.1`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VarDict.md b/docs/version-specific/supported-software/v/VarDict.md index 78bc0c95a..a27adc9b6 100644 --- a/docs/version-specific/supported-software/v/VarDict.md +++ b/docs/version-specific/supported-software/v/VarDict.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VarDict VarDict is an ultra sensitive variant caller for both single and paired sample variant calling from BAM files. @@ -7,3 +11,6 @@ VarDict is an ultra sensitive variant caller for both single and paired sample version | versionsuffix | toolchain --------|---------------|---------- ``1.5.7`` | ``-Perl-5.28.0`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VarScan.md b/docs/version-specific/supported-software/v/VarScan.md index 6a439f21a..1e2b6af85 100644 --- a/docs/version-specific/supported-software/v/VarScan.md +++ b/docs/version-specific/supported-software/v/VarScan.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VarScan Variant calling and somatic mutation/CNV detection for next-generation sequencing data @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.4.1`` | ``-Java-1.7.0_80`` | ``system`` ``2.4.4`` | ``-Java-1.8`` | ``system`` ``2.4.4`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VariantMetaCaller.md b/docs/version-specific/supported-software/v/VariantMetaCaller.md index c17520a60..b067d239d 100644 --- a/docs/version-specific/supported-software/v/VariantMetaCaller.md +++ b/docs/version-specific/supported-software/v/VariantMetaCaller.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VariantMetaCaller VariantMetaCaller automatically integrates variant calling pipelines into a better performing overall model that also predicts accurate variant probabilities. @@ -7,3 +11,6 @@ VariantMetaCaller automatically integrates variant calling pipelines into a bett version | toolchain --------|---------- ``1.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Velvet.md b/docs/version-specific/supported-software/v/Velvet.md index a5393733e..b221e6c7b 100644 --- a/docs/version-specific/supported-software/v/Velvet.md +++ b/docs/version-specific/supported-software/v/Velvet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Velvet Sequence assembler for very short reads @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``1.2.10`` | ``-mt-kmer_191`` | ``foss/2018b`` ``1.2.10`` | ``-mt-kmer_191`` | ``foss/2023a`` ``1.2.10`` | ``-mt-kmer_37`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/ViennaRNA.md b/docs/version-specific/supported-software/v/ViennaRNA.md index 9313d119f..8a6145cce 100644 --- a/docs/version-specific/supported-software/v/ViennaRNA.md +++ b/docs/version-specific/supported-software/v/ViennaRNA.md @@ -1,3 +1,7 @@ +--- +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. @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``2.4.14`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.5.0`` | | ``foss/2021b`` ``2.5.1`` | | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Vim.md b/docs/version-specific/supported-software/v/Vim.md index c97b40382..1d5c8857f 100644 --- a/docs/version-specific/supported-software/v/Vim.md +++ b/docs/version-specific/supported-software/v/Vim.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``9.0.0950`` | | ``GCCcore/11.3.0`` ``9.0.1434`` | | ``GCCcore/12.2.0`` ``9.1.0004`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VirSorter.md b/docs/version-specific/supported-software/v/VirSorter.md index 1fd6bf686..629202c44 100644 --- a/docs/version-specific/supported-software/v/VirSorter.md +++ b/docs/version-specific/supported-software/v/VirSorter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VirSorter VirSorter: mining viral signal from microbial genomic data. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.6`` | | ``foss/2021b`` ``20160601`` | ``-Perl-5.22.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VirSorter2.md b/docs/version-specific/supported-software/v/VirSorter2.md index a74906b57..82b35d8e1 100644 --- a/docs/version-specific/supported-software/v/VirSorter2.md +++ b/docs/version-specific/supported-software/v/VirSorter2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # VirSorter2 VirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.2.4`` | ``foss/2021b`` ``2.2.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VirtualGL.md b/docs/version-specific/supported-software/v/VirtualGL.md index 09096b3b8..44bb5d8cf 100644 --- a/docs/version-specific/supported-software/v/VirtualGL.md +++ b/docs/version-specific/supported-software/v/VirtualGL.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.6.2`` | ``GCCcore/9.3.0`` ``3.0`` | ``GCC/11.2.0`` ``3.1`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Virtuoso-opensource.md b/docs/version-specific/supported-software/v/Virtuoso-opensource.md index e39e5cae9..fafcb8982 100644 --- a/docs/version-specific/supported-software/v/Virtuoso-opensource.md +++ b/docs/version-specific/supported-software/v/Virtuoso-opensource.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Virtuoso is a high-performance and scalable Multi-Model RDBMS, Data Integration version | toolchain --------|---------- ``7.2.6.1`` | ``GCC/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/VisPy.md b/docs/version-specific/supported-software/v/VisPy.md index 93d5e55a2..56bb4711c 100644 --- a/docs/version-specific/supported-software/v/VisPy.md +++ b/docs/version-specific/supported-software/v/VisPy.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``0.14.1`` | ``foss/2023a`` ``0.6.6`` | ``foss/2020b`` ``0.6.6`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/Voro++.md b/docs/version-specific/supported-software/v/Voro++.md index 37e9b2401..6a5ace0cd 100644 --- a/docs/version-specific/supported-software/v/Voro++.md +++ b/docs/version-specific/supported-software/v/Voro++.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``0.4.6`` | ``foss/2019b`` ``0.4.6`` | ``intel/2016a`` ``0.4.6`` | ``intel/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/index.md b/docs/version-specific/supported-software/v/index.md index ffdd25217..181dab18a 100644 --- a/docs/version-specific/supported-software/v/index.md +++ b/docs/version-specific/supported-software/v/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (v) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - *v* - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [V8](V8.md) * [vaeda](vaeda.md) * [Vala](Vala.md) diff --git a/docs/version-specific/supported-software/v/vConTACT2.md b/docs/version-specific/supported-software/v/vConTACT2.md index bf363e24f..7dafede58 100644 --- a/docs/version-specific/supported-software/v/vConTACT2.md +++ b/docs/version-specific/supported-software/v/vConTACT2.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vConTACT2 vConTACT2 is a tool to perform guilt-by-contig-association classification of viral genomic sequence data. @@ -7,3 +11,6 @@ vConTACT2 is a tool to perform guilt-by-contig-association classification of vi version | toolchain --------|---------- ``0.11.3`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vaeda.md b/docs/version-specific/supported-software/v/vaeda.md index 405ca00be..dcd127c46 100644 --- a/docs/version-specific/supported-software/v/vaeda.md +++ b/docs/version-specific/supported-software/v/vaeda.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ vaeda (variaitonal auto-encoder (vae) for doublet annotation (da)) is a Python p version | toolchain --------|---------- ``0.0.30`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/variant_tools.md b/docs/version-specific/supported-software/v/variant_tools.md index bf3e25ac0..f443d23ea 100644 --- a/docs/version-specific/supported-software/v/variant_tools.md +++ b/docs/version-specific/supported-software/v/variant_tools.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Variant tools is a software tool for the manipulation, annotation, selection, si version | versionsuffix | toolchain --------|---------------|---------- ``3.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vartools.md b/docs/version-specific/supported-software/v/vartools.md index 1fd2c12c5..faa463cba 100644 --- a/docs/version-specific/supported-software/v/vartools.md +++ b/docs/version-specific/supported-software/v/vartools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vartools Command line utility that provides tools for processing and analyzing astronomical time series data. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.35`` | ``foss/2016b`` ``1.35`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vawk.md b/docs/version-specific/supported-software/v/vawk.md index 6da29600a..2f6edc3b8 100644 --- a/docs/version-specific/supported-software/v/vawk.md +++ b/docs/version-specific/supported-software/v/vawk.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vawk An awk-like VCF parser @@ -7,3 +11,6 @@ An awk-like VCF parser version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vcflib.md b/docs/version-specific/supported-software/v/vcflib.md index c6e8a45cd..cafccc43f 100644 --- a/docs/version-specific/supported-software/v/vcflib.md +++ b/docs/version-specific/supported-software/v/vcflib.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vcfnp.md b/docs/version-specific/supported-software/v/vcfnp.md index 0fef7a214..490ec85d1 100644 --- a/docs/version-specific/supported-software/v/vcfnp.md +++ b/docs/version-specific/supported-software/v/vcfnp.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Load data from a VCF (variant call format) file into numpy arrays, and (option version | versionsuffix | toolchain --------|---------------|---------- ``2.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/velocyto.md b/docs/version-specific/supported-software/v/velocyto.md index 84871efcf..299d220b0 100644 --- a/docs/version-specific/supported-software/v/velocyto.md +++ b/docs/version-specific/supported-software/v/velocyto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # velocyto Velocyto is a library for the analysis of RNA velocity. @@ -9,3 +13,6 @@ version | versionsuffix | toolchain ``0.17.17`` | | ``foss/2021a`` ``0.17.17`` | | ``foss/2022a`` ``0.17.17`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/verifyBamID.md b/docs/version-specific/supported-software/v/verifyBamID.md index d92900ff2..f776f9c75 100644 --- a/docs/version-specific/supported-software/v/verifyBamID.md +++ b/docs/version-specific/supported-software/v/verifyBamID.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ verifyBamID is a software that verifies whether the reads in particular file mat version | toolchain --------|---------- ``1.1.3`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/virtualenv.md b/docs/version-specific/supported-software/v/virtualenv.md index f2955d027..8650d6bd7 100644 --- a/docs/version-specific/supported-software/v/virtualenv.md +++ b/docs/version-specific/supported-software/v/virtualenv.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # virtualenv A tool for creating isolated virtual python environments. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20.23.1`` | ``GCCcore/12.3.0`` ``20.24.6`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/visdom.md b/docs/version-specific/supported-software/v/visdom.md index 8e6fb7ff3..6c465501c 100644 --- a/docs/version-specific/supported-software/v/visdom.md +++ b/docs/version-specific/supported-software/v/visdom.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # visdom A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy. @@ -7,3 +11,6 @@ A flexible tool for creating, organizing, and sharing visualizations of live, ri version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vispr.md b/docs/version-specific/supported-software/v/vispr.md index 79002ff9a..cf27f05ed 100644 --- a/docs/version-specific/supported-software/v/vispr.md +++ b/docs/version-specific/supported-software/v/vispr.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vispr VISPR - A visualization framework for CRISPR data. @@ -7,3 +11,6 @@ VISPR - A visualization framework for CRISPR data. version | toolchain --------|---------- ``0.4.14`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vitessce-python.md b/docs/version-specific/supported-software/v/vitessce-python.md index 9c91bf539..2427519f2 100644 --- a/docs/version-specific/supported-software/v/vitessce-python.md +++ b/docs/version-specific/supported-software/v/vitessce-python.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vitessce-python Python API and Jupyter widget facilitating interactive visualization of spatial single-cell data with Vitessce. @@ -7,3 +11,6 @@ Python API and Jupyter widget facilitating interactive visualization of spatial version | toolchain --------|---------- ``20230222`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vitessceR.md b/docs/version-specific/supported-software/v/vitessceR.md index 05caac9df..e1a92033d 100644 --- a/docs/version-specific/supported-software/v/vitessceR.md +++ b/docs/version-specific/supported-software/v/vitessceR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vitessceR Vitessce is a visual integration tool for exploration of spatial single-cell experiments. @@ -7,3 +11,6 @@ Vitessce is a visual integration tool for exploration of spatial single-cell exp version | versionsuffix | toolchain --------|---------------|---------- ``0.99.0-20230110`` | ``-R-4.2.1`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/voltools.md b/docs/version-specific/supported-software/v/voltools.md index 7429ba259..df5769fc3 100644 --- a/docs/version-specific/supported-software/v/voltools.md +++ b/docs/version-specific/supported-software/v/voltools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # voltools CUDA-accelerated numpy 3D affine transformations @@ -7,3 +11,6 @@ CUDA-accelerated numpy 3D affine transformations version | toolchain --------|---------- ``0.4.2`` | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vorbis-tools.md b/docs/version-specific/supported-software/v/vorbis-tools.md index 5f38a3ab3..8bd6601b5 100644 --- a/docs/version-specific/supported-software/v/vorbis-tools.md +++ b/docs/version-specific/supported-software/v/vorbis-tools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vorbis-tools Command-line tools for creating and playing Ogg Vorbis files. @@ -9,3 +13,6 @@ version | toolchain ``1.4.2`` | ``GCCcore/10.2.0`` ``1.4.2`` | ``GCCcore/10.3.0`` ``1.4.2`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vsc-base.md b/docs/version-specific/supported-software/v/vsc-base.md index 191e0e975..32c3e88f5 100644 --- a/docs/version-specific/supported-software/v/vsc-base.md +++ b/docs/version-specific/supported-software/v/vsc-base.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vsc-base VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``2.8.0`` | | ``system`` ``2.8.1`` | | ``system`` ``2.8.3`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vsc-install.md b/docs/version-specific/supported-software/v/vsc-install.md index 017179162..13804d907 100644 --- a/docs/version-specific/supported-software/v/vsc-install.md +++ b/docs/version-specific/supported-software/v/vsc-install.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vsc-install vsc-install provides shared setuptools functions and classes for Python libraries developed by UGent's HPC group @@ -15,3 +19,6 @@ version | versionsuffix | toolchain ``0.11.1`` | | ``system`` ``0.11.2`` | | ``system`` ``0.9.18`` | ``-Python-2.7.11`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md index 5fcd2f741..6ef13c579 100644 --- a/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md +++ b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vsc-mympirun-scoop VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. @@ -7,3 +11,6 @@ VSC-tools is a set of Python libraries and scripts that are commonly used within version | versionsuffix | toolchain --------|---------------|---------- ``3.4.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vsc-mympirun.md b/docs/version-specific/supported-software/v/vsc-mympirun.md index 110502191..2cc799c3f 100644 --- a/docs/version-specific/supported-software/v/vsc-mympirun.md +++ b/docs/version-specific/supported-software/v/vsc-mympirun.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vsc-mympirun VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. @@ -36,3 +40,6 @@ version | versionsuffix | toolchain ``5.3.0`` | | ``system`` ``5.3.1`` | | ``system`` ``5.4.0`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vsc-processcontrol.md b/docs/version-specific/supported-software/v/vsc-processcontrol.md index ba67f87e3..7228c63f0 100644 --- a/docs/version-specific/supported-software/v/vsc-processcontrol.md +++ b/docs/version-specific/supported-software/v/vsc-processcontrol.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-vsc-base-2.1.2`` | ``system`` ``1.0`` | | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/v/vt.md b/docs/version-specific/supported-software/v/vt.md index c1b15be85..b18361136 100644 --- a/docs/version-specific/supported-software/v/vt.md +++ b/docs/version-specific/supported-software/v/vt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # vt A tool set for short variant discovery in genetic sequence data. @@ -11,3 +15,6 @@ version | toolchain ``0.57721`` | ``GCC/11.2.0`` ``0.57721`` | ``GCC/9.3.0`` ``0.57721`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WCSLIB.md b/docs/version-specific/supported-software/w/WCSLIB.md index 6fff42d74..7155afd44 100644 --- a/docs/version-specific/supported-software/w/WCSLIB.md +++ b/docs/version-specific/supported-software/w/WCSLIB.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``7.11`` | ``GCC/11.2.0`` ``7.11`` | ``GCC/11.3.0`` ``7.11`` | ``GCC/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WCT.md b/docs/version-specific/supported-software/w/WCT.md index baad34f5f..86598d8f3 100644 --- a/docs/version-specific/supported-software/w/WCT.md +++ b/docs/version-specific/supported-software/w/WCT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ NOAA's Weather and Climate Toolkit (WCT) is free, platform independent software version | versionsuffix | toolchain --------|---------------|---------- ``4.6.0`` | ``-Java-11`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WEKA.md b/docs/version-specific/supported-software/w/WEKA.md index 2bf41675a..698aac63c 100644 --- a/docs/version-specific/supported-software/w/WEKA.md +++ b/docs/version-specific/supported-software/w/WEKA.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.6.12`` | ``-Java-1.7.0_80`` | ``system`` ``3.7.0`` | ``-Java-1.7.0_80`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WFA2.md b/docs/version-specific/supported-software/w/WFA2.md index c6206be87..b3613f922 100644 --- a/docs/version-specific/supported-software/w/WFA2.md +++ b/docs/version-specific/supported-software/w/WFA2.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.3.3`` | ``GCCcore/11.3.0`` ``2.3.4`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WGDgc.md b/docs/version-specific/supported-software/w/WGDgc.md index 88b9ef578..4e07dd080 100644 --- a/docs/version-specific/supported-software/w/WGDgc.md +++ b/docs/version-specific/supported-software/w/WGDgc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WGDgc Analysis of whole genome duplications (WGD) and triplications (WGT) using comparative gene count data @@ -7,3 +11,6 @@ Analysis of whole genome duplications (WGD) and triplications (WGT) using compar version | versionsuffix | toolchain --------|---------------|---------- ``1.3`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WHAM.md b/docs/version-specific/supported-software/w/WHAM.md index 5538001ac..ab5fc8808 100644 --- a/docs/version-specific/supported-software/w/WHAM.md +++ b/docs/version-specific/supported-software/w/WHAM.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WHAM An implementation of WHAM: the Weighted Histogram Analysis Method @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``2.0.10.2`` | | ``intel/2020a`` ``2.0.9.1`` | ``-kj_mol`` | ``intel/2019a`` ``2.0.9.1`` | | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WIEN2k.md b/docs/version-specific/supported-software/w/WIEN2k.md index 2c3b44368..b3ae0d7f9 100644 --- a/docs/version-specific/supported-software/w/WIEN2k.md +++ b/docs/version-specific/supported-software/w/WIEN2k.md @@ -1,3 +1,7 @@ +--- +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. @@ -17,3 +21,6 @@ version | toolchain ``21.1`` | ``intel/2021a`` ``21.1`` | ``intel/2021b`` ``23.2`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WISExome.md b/docs/version-specific/supported-software/w/WISExome.md index 4cbba6e38..0ae34893c 100644 --- a/docs/version-specific/supported-software/w/WISExome.md +++ b/docs/version-specific/supported-software/w/WISExome.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WISExome A within-sample comparison approach to detect copy number variations in whole exome sequencing data @@ -7,3 +11,6 @@ A within-sample comparison approach to detect copy number variations in whole ex version | versionsuffix | toolchain --------|---------------|---------- ``20180517`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WPS.md b/docs/version-specific/supported-software/w/WPS.md index cbcadf737..9d2009576 100644 --- a/docs/version-specific/supported-software/w/WPS.md +++ b/docs/version-specific/supported-software/w/WPS.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``4.2`` | ``-dmpar`` | ``foss/2020b`` ``4.3.1`` | ``-dmpar`` | ``foss/2021a`` ``4.4`` | ``-dmpar`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WRF-Fire.md b/docs/version-specific/supported-software/w/WRF-Fire.md index 4bbfc2d49..2375ab0d0 100644 --- a/docs/version-specific/supported-software/w/WRF-Fire.md +++ b/docs/version-specific/supported-software/w/WRF-Fire.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ WRF-Fire combines the Weather Research and Forecasting model (WRF) with a fire c version | versionsuffix | toolchain --------|---------------|---------- ``20170221`` | ``-dmpar`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WRF.md b/docs/version-specific/supported-software/w/WRF.md index 1733af3b2..83625a5f9 100644 --- a/docs/version-specific/supported-software/w/WRF.md +++ b/docs/version-specific/supported-software/w/WRF.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``4.3`` | ``-dmpar`` | ``foss/2021a`` ``4.4`` | ``-dmpar`` | ``foss/2022a`` ``4.4.1`` | ``-dmpar`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WSClean.md b/docs/version-specific/supported-software/w/WSClean.md index 2fb72cb8d..df84c91b7 100644 --- a/docs/version-specific/supported-software/w/WSClean.md +++ b/docs/version-specific/supported-software/w/WSClean.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``3.4`` | ``foss/2022a`` ``3.4`` | ``foss/2023b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/Wannier90.md b/docs/version-specific/supported-software/w/Wannier90.md index 0cff1068d..d3c3337d7 100644 --- a/docs/version-specific/supported-software/w/Wannier90.md +++ b/docs/version-specific/supported-software/w/Wannier90.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Wannier90 A tool for obtaining maximally-localised Wannier functions @@ -29,3 +33,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``intel/2022a`` ``3.1.0`` | | ``intel/2022b`` ``3.1.0`` | | ``intel/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WannierTools.md b/docs/version-specific/supported-software/w/WannierTools.md index e87d47807..fa0f870fa 100644 --- a/docs/version-specific/supported-software/w/WannierTools.md +++ b/docs/version-specific/supported-software/w/WannierTools.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WannierTools an open-source software package for novel topological materials @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.3.0`` | ``intel/2018a`` ``2.5.1`` | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/Wayland.md b/docs/version-specific/supported-software/w/Wayland.md index 8ef2cec6b..a1583bad2 100644 --- a/docs/version-specific/supported-software/w/Wayland.md +++ b/docs/version-specific/supported-software/w/Wayland.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.22.0`` | ``GCCcore/12.2.0`` ``1.22.0`` | ``GCCcore/12.3.0`` ``1.22.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/Waylandpp.md b/docs/version-specific/supported-software/w/Waylandpp.md index de77b07c2..78c23ca29 100644 --- a/docs/version-specific/supported-software/w/Waylandpp.md +++ b/docs/version-specific/supported-software/w/Waylandpp.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/11.2.0`` ``1.0.0`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WebKitGTK+.md b/docs/version-specific/supported-software/w/WebKitGTK+.md index b7c7ab0f9..b6be8fd42 100644 --- a/docs/version-specific/supported-software/w/WebKitGTK+.md +++ b/docs/version-specific/supported-software/w/WebKitGTK+.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``2.27.4`` | ``GCC/8.3.0`` ``2.37.1`` | ``GCC/11.2.0`` ``2.40.4`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WebSocket++.md b/docs/version-specific/supported-software/w/WebSocket++.md index 03d4ec828..6168e316c 100644 --- a/docs/version-specific/supported-software/w/WebSocket++.md +++ b/docs/version-specific/supported-software/w/WebSocket++.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WebSocket++ WebSocket++ is an open source (BSD license) header only C++ library that implements RFC6455 The WebSocket Protocol. @@ -7,3 +11,6 @@ WebSocket++ is an open source (BSD license) header only C++ library that implem version | toolchain --------|---------- ``0.8.1`` | ``gompi/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WhatsHap.md b/docs/version-specific/supported-software/w/WhatsHap.md index f1ff00536..b2638ede3 100644 --- a/docs/version-specific/supported-software/w/WhatsHap.md +++ b/docs/version-specific/supported-software/w/WhatsHap.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``1.7`` | ``foss/2022a`` ``2.1`` | ``foss/2022b`` ``2.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WildMagic.md b/docs/version-specific/supported-software/w/WildMagic.md index 91bbf1fef..a7035f360 100644 --- a/docs/version-specific/supported-software/w/WildMagic.md +++ b/docs/version-specific/supported-software/w/WildMagic.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WildMagic Wild Magic 5.17 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``5.17`` | ``GCCcore/10.3.0`` ``5.17`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/Winnowmap.md b/docs/version-specific/supported-software/w/Winnowmap.md index 69779fce0..7a5d73d96 100644 --- a/docs/version-specific/supported-software/w/Winnowmap.md +++ b/docs/version-specific/supported-software/w/Winnowmap.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Winnowmap Winnowmap is a long-read mapping algorithm, and a result of our exploration into superior minimizer sampling techniques. @@ -7,3 +11,6 @@ Winnowmap is a long-read mapping algorithm, and a result of our exploration int version | toolchain --------|---------- ``1.0`` | ``GCC/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/WisecondorX.md b/docs/version-specific/supported-software/w/WisecondorX.md index 088651cc5..fcff75bf4 100644 --- a/docs/version-specific/supported-software/w/WisecondorX.md +++ b/docs/version-specific/supported-software/w/WisecondorX.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # WisecondorX WisecondorX -- an evolved WISECONDOR @@ -7,3 +11,6 @@ WisecondorX -- an evolved WISECONDOR version | versionsuffix | toolchain --------|---------------|---------- ``1.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/index.md b/docs/version-specific/supported-software/w/index.md index fdc3cda51..3d516023c 100644 --- a/docs/version-specific/supported-software/w/index.md +++ b/docs/version-specific/supported-software/w/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (w) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - *w* - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + * [waLBerla](waLBerla.md) * [wandb](wandb.md) * [Wannier90](Wannier90.md) diff --git a/docs/version-specific/supported-software/w/waLBerla.md b/docs/version-specific/supported-software/w/waLBerla.md index 0c785306d..c1eafc543 100644 --- a/docs/version-specific/supported-software/w/waLBerla.md +++ b/docs/version-specific/supported-software/w/waLBerla.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # waLBerla Widely applicable Lattics-Boltzmann from Erlangen is a block-structured high-performance framework for multiphysics simulations @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``6.1`` | ``foss/2021a`` ``6.1`` | ``foss/2022b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wandb.md b/docs/version-specific/supported-software/w/wandb.md index 7ebe0d251..536b41a2e 100644 --- a/docs/version-specific/supported-software/w/wandb.md +++ b/docs/version-specific/supported-software/w/wandb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # wandb CLI and Python API for Weights and Biases: a tool for visualizing and tracking your machine learning experiments. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``0.13.6`` | | ``GCC/11.3.0`` ``0.16.1`` | | ``GCC/12.3.0`` ``0.8.30`` | ``-Python-3.7.4`` | ``gcccuda/2019b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wcwidth.md b/docs/version-specific/supported-software/w/wcwidth.md index 1f73380d9..6ba2f3671 100644 --- a/docs/version-specific/supported-software/w/wcwidth.md +++ b/docs/version-specific/supported-software/w/wcwidth.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # wcwidth wcwidth is a low-level Python library to simplify Terminal emulation. @@ -11,3 +15,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/webin-cli.md b/docs/version-specific/supported-software/w/webin-cli.md index 9f264f1a9..3afb9f8e2 100644 --- a/docs/version-specific/supported-software/w/webin-cli.md +++ b/docs/version-specific/supported-software/w/webin-cli.md @@ -1,3 +1,7 @@ +--- +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) @@ -7,3 +11,6 @@ The Webin command line submission interface can be used to validate, upload and version | toolchain --------|---------- ``1.8.9`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wfdb.md b/docs/version-specific/supported-software/w/wfdb.md index 64f457682..7105efecc 100644 --- a/docs/version-specific/supported-software/w/wfdb.md +++ b/docs/version-specific/supported-software/w/wfdb.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The native Python waveform-database (WFDB) package. A library of tools for read version | toolchain --------|---------- ``4.1.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wget.md b/docs/version-specific/supported-software/w/wget.md index e5c4ad57b..ef98cb2a6 100644 --- a/docs/version-specific/supported-software/w/wget.md +++ b/docs/version-specific/supported-software/w/wget.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``1.21.3`` | ``GCCcore/11.3.0`` ``1.21.4`` | ``GCCcore/13.2.0`` ``1.24.5`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wgsim.md b/docs/version-specific/supported-software/w/wgsim.md index 26681eb6c..457ed8134 100644 --- a/docs/version-specific/supported-software/w/wgsim.md +++ b/docs/version-specific/supported-software/w/wgsim.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # wgsim Wgsim is a small tool for simulating sequence reads from a reference genome. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``20111017`` | ``GCC/10.2.0`` ``20111017`` | ``GCC/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wheel.md b/docs/version-specific/supported-software/w/wheel.md index a2dab1264..0be27c182 100644 --- a/docs/version-specific/supported-software/w/wheel.md +++ b/docs/version-specific/supported-software/w/wheel.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # wheel A built-package format for Python. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wkhtmltopdf.md b/docs/version-specific/supported-software/w/wkhtmltopdf.md index 7609bdeb6..76b58df32 100644 --- a/docs/version-specific/supported-software/w/wkhtmltopdf.md +++ b/docs/version-specific/supported-software/w/wkhtmltopdf.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ wkhtmltopdf and wkhtmltoimage are open source (LGPLv3) command line tools to ren version | versionsuffix | toolchain --------|---------------|---------- ``0.12.3`` | ``-Linux-x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/worker.md b/docs/version-specific/supported-software/w/worker.md index d99f913e9..903d5b699 100644 --- a/docs/version-specific/supported-software/w/worker.md +++ b/docs/version-specific/supported-software/w/worker.md @@ -1,3 +1,7 @@ +--- +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. @@ -19,3 +23,6 @@ version | versionsuffix | toolchain ``1.6.7`` | ``-intel-2017b`` | ``system`` ``1.6.8`` | ``-intel-2018a`` | ``system`` ``1.6.8`` | ``-intel-2018b`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wpebackend-fdo.md b/docs/version-specific/supported-software/w/wpebackend-fdo.md index 55b9abb66..fe853cad6 100644 --- a/docs/version-specific/supported-software/w/wpebackend-fdo.md +++ b/docs/version-specific/supported-software/w/wpebackend-fdo.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.13.1`` | ``GCCcore/11.2.0`` ``1.14.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wrapt.md b/docs/version-specific/supported-software/w/wrapt.md index 5fb6e354d..c051b2b1c 100644 --- a/docs/version-specific/supported-software/w/wrapt.md +++ b/docs/version-specific/supported-software/w/wrapt.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.15.0`` | ``gfbf/2022b`` ``1.15.0`` | ``gfbf/2023a`` ``1.15.0`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wrf-python.md b/docs/version-specific/supported-software/w/wrf-python.md index 8f96c31ed..7202b0ed6 100644 --- a/docs/version-specific/supported-software/w/wrf-python.md +++ b/docs/version-specific/supported-software/w/wrf-python.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wtdbg2.md b/docs/version-specific/supported-software/w/wtdbg2.md index bfba307bb..6c64fb3e5 100644 --- a/docs/version-specific/supported-software/w/wtdbg2.md +++ b/docs/version-specific/supported-software/w/wtdbg2.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``2.5`` | ``GCCcore/11.2.0`` ``2.5`` | ``GCCcore/11.3.0`` ``2.5`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wxPropertyGrid.md b/docs/version-specific/supported-software/w/wxPropertyGrid.md index ee0509a8e..8c976d1ee 100644 --- a/docs/version-specific/supported-software/w/wxPropertyGrid.md +++ b/docs/version-specific/supported-software/w/wxPropertyGrid.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ wxPropertyGrid is a property sheet control for wxWidgets. In other words, it is version | toolchain --------|---------- ``1.4.15`` | ``GCC/4.9.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wxPython.md b/docs/version-specific/supported-software/w/wxPython.md index 19b336e02..8f9007910 100644 --- a/docs/version-specific/supported-software/w/wxPython.md +++ b/docs/version-specific/supported-software/w/wxPython.md @@ -1,3 +1,7 @@ +--- +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++. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``foss/2021a`` ``4.2.0`` | | ``foss/2021b`` ``4.2.1`` | | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/w/wxWidgets.md b/docs/version-specific/supported-software/w/wxWidgets.md index f006cc517..7edcce515 100644 --- a/docs/version-specific/supported-software/w/wxWidgets.md +++ b/docs/version-specific/supported-software/w/wxWidgets.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``3.2.1`` | ``GCC/11.3.0`` ``3.2.2.1`` | ``GCC/12.2.0`` ``3.2.2.1`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/X11.md b/docs/version-specific/supported-software/x/X11.md index 79be361a5..953015f42 100644 --- a/docs/version-specific/supported-software/x/X11.md +++ b/docs/version-specific/supported-software/x/X11.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # X11 The X Window System (X11) is a windowing system for bitmap displays @@ -25,3 +29,6 @@ version | toolchain ``20221110`` | ``GCCcore/12.2.0`` ``20230603`` | ``GCCcore/12.3.0`` ``20231019`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XALT.md b/docs/version-specific/supported-software/x/XALT.md index 2cc6cdb86..69eec87b1 100644 --- a/docs/version-specific/supported-software/x/XALT.md +++ b/docs/version-specific/supported-software/x/XALT.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ XALT 2 is a tool to allow a site to track user executables and library usage o version | toolchain --------|---------- ``2.8.4`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XBeach.md b/docs/version-specific/supported-software/x/XBeach.md index f208f5299..cf59411c8 100644 --- a/docs/version-specific/supported-software/x/XBeach.md +++ b/docs/version-specific/supported-software/x/XBeach.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ XBeach is a two-dimensional model for wave propagation, long waves and mean flow version | toolchain --------|---------- ``20230831`` | ``gompi/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XCFun.md b/docs/version-specific/supported-software/x/XCFun.md index 1c9e549ca..48c187d1c 100644 --- a/docs/version-specific/supported-software/x/XCFun.md +++ b/docs/version-specific/supported-software/x/XCFun.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XCFun Arbitrary order exchange-correlation functional library @@ -13,3 +17,6 @@ version | versionsuffix | toolchain ``2.1.1`` | | ``GCCcore/12.2.0`` ``20180122`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20190127`` | ``-Python-3.7.2`` | ``foss/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XCrySDen.md b/docs/version-specific/supported-software/x/XCrySDen.md index 69a0c6dd0..3ed5a45d2 100644 --- a/docs/version-specific/supported-software/x/XCrySDen.md +++ b/docs/version-specific/supported-software/x/XCrySDen.md @@ -1,3 +1,7 @@ +--- +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. @@ -13,3 +17,6 @@ version | toolchain ``1.6.2`` | ``intel/2019b`` ``1.6.2`` | ``intel/2021b`` ``1.6.2`` | ``intel/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XGBoost.md b/docs/version-specific/supported-software/x/XGBoost.md index 8b79ce104..068f18b55 100644 --- a/docs/version-specific/supported-software/x/XGBoost.md +++ b/docs/version-specific/supported-software/x/XGBoost.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XGBoost XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. @@ -18,3 +22,6 @@ version | versionsuffix | toolchain ``1.7.2`` | | ``foss/2022a`` ``2.0.2`` | | ``gfbf/2023a`` ``20171120`` | ``-Java-1.8.0_152`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XGrafix.md b/docs/version-specific/supported-software/x/XGrafix.md index 9f68a1619..1ce08c431 100644 --- a/docs/version-specific/supported-software/x/XGrafix.md +++ b/docs/version-specific/supported-software/x/XGrafix.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XGrafix A graphics library and controller for physics simulation programs. 3-d surface plots, scatter plots, 2-d line plots. @@ -7,3 +11,6 @@ A graphics library and controller for physics simulation programs. 3-d surface p version | toolchain --------|---------- ``2.41`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XKeyboardConfig.md b/docs/version-specific/supported-software/x/XKeyboardConfig.md index 9b20cce08..cff1bfb46 100644 --- a/docs/version-specific/supported-software/x/XKeyboardConfig.md +++ b/docs/version-specific/supported-software/x/XKeyboardConfig.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.17`` | ``foss/2016a`` ``2.17`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XMDS2.md b/docs/version-specific/supported-software/x/XMDS2.md index b4cdca95f..77c25dcd9 100644 --- a/docs/version-specific/supported-software/x/XMDS2.md +++ b/docs/version-specific/supported-software/x/XMDS2.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ The purpose of XMDS2 is to simplify the process of creating simulations that so version | versionsuffix | toolchain --------|---------------|---------- ``2.2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XML-Compile.md b/docs/version-specific/supported-software/x/XML-Compile.md index 082493fbd..30a36598a 100644 --- a/docs/version-specific/supported-software/x/XML-Compile.md +++ b/docs/version-specific/supported-software/x/XML-Compile.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XML-Compile Perl module for compilation based XML processing @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.63`` | ``GCCcore/11.2.0`` ``1.63`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XML-LibXML.md b/docs/version-specific/supported-software/x/XML-LibXML.md index a229081d5..826ea7bf8 100644 --- a/docs/version-specific/supported-software/x/XML-LibXML.md +++ b/docs/version-specific/supported-software/x/XML-LibXML.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XML-LibXML Perl binding for libxml2 @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``2.0207`` | | ``GCCcore/11.3.0`` ``2.0208`` | | ``GCCcore/12.2.0`` ``2.0209`` | | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XML-Parser.md b/docs/version-specific/supported-software/x/XML-Parser.md index 46e0b11b1..898e28e86 100644 --- a/docs/version-specific/supported-software/x/XML-Parser.md +++ b/docs/version-specific/supported-software/x/XML-Parser.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XML-Parser This is a Perl extension interface to James Clark's XML parser, expat. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XMLSec.md b/docs/version-specific/supported-software/x/XMLSec.md index 380c6164c..a22e6a8c3 100644 --- a/docs/version-specific/supported-software/x/XMLSec.md +++ b/docs/version-specific/supported-software/x/XMLSec.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XMLSec XML Security Library is a C library based on LibXML2, supporting major XML security standards. @@ -7,3 +11,6 @@ XML Security Library is a C library based on LibXML2, supporting major XML secu version | toolchain --------|---------- ``1.2.26`` | ``GCCcore/6.4.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XMLStarlet.md b/docs/version-specific/supported-software/x/XMLStarlet.md index d6c821053..58ca231aa 100644 --- a/docs/version-specific/supported-software/x/XMLStarlet.md +++ b/docs/version-specific/supported-software/x/XMLStarlet.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XMLStarlet Command line XML tool @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.6.1`` | ``GCCcore/6.4.0`` ``1.6.1`` | ``foss/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XOOPIC.md b/docs/version-specific/supported-software/x/XOOPIC.md index f39962e7b..c9e4f4962 100644 --- a/docs/version-specific/supported-software/x/XOOPIC.md +++ b/docs/version-specific/supported-software/x/XOOPIC.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ XOOPIC is a two-dimensional 3-velocity particle-in-cell simulator. It can handl version | toolchain --------|---------- ``20210302`` | ``foss/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XPLOR-NIH.md b/docs/version-specific/supported-software/x/XPLOR-NIH.md index c1119e29f..79cfa75db 100644 --- a/docs/version-specific/supported-software/x/XPLOR-NIH.md +++ b/docs/version-specific/supported-software/x/XPLOR-NIH.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XPLOR-NIH A System for X-ray Crystallography and NMR @@ -7,3 +11,6 @@ A System for X-ray Crystallography and NMR version | versionsuffix | toolchain --------|---------------|---------- ``3.4`` | ``-Linux_x86_64`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XSD.md b/docs/version-specific/supported-software/x/XSD.md index 70d184b96..8c1cc0bb6 100644 --- a/docs/version-specific/supported-software/x/XSD.md +++ b/docs/version-specific/supported-software/x/XSD.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XSD CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. @@ -7,3 +11,6 @@ CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data b version | toolchain --------|---------- ``4.0.0`` | ``GCCcore/8.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XTandem.md b/docs/version-specific/supported-software/x/XTandem.md index fa40e90bb..c02b24e37 100644 --- a/docs/version-specific/supported-software/x/XTandem.md +++ b/docs/version-specific/supported-software/x/XTandem.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ 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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XZ.md b/docs/version-specific/supported-software/x/XZ.md index c29bfb542..af3535fd6 100644 --- a/docs/version-specific/supported-software/x/XZ.md +++ b/docs/version-specific/supported-software/x/XZ.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XZ xz: XZ utilities @@ -38,3 +42,6 @@ version | versionsuffix | toolchain ``5.4.2`` | | ``GCCcore/13.1.0`` ``5.4.4`` | | ``GCCcore/13.2.0`` ``5.4.5`` | | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/Xerces-C++.md b/docs/version-specific/supported-software/x/Xerces-C++.md index 52a0ace5c..fecdea57a 100644 --- a/docs/version-specific/supported-software/x/Xerces-C++.md +++ b/docs/version-specific/supported-software/x/Xerces-C++.md @@ -1,3 +1,7 @@ +--- +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. @@ -18,3 +22,6 @@ version | toolchain ``3.2.4`` | ``GCCcore/12.2.0`` ``3.2.4`` | ``GCCcore/12.3.0`` ``3.2.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/XlsxWriter.md b/docs/version-specific/supported-software/x/XlsxWriter.md index 772110c6b..418192ac9 100644 --- a/docs/version-specific/supported-software/x/XlsxWriter.md +++ b/docs/version-specific/supported-software/x/XlsxWriter.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # XlsxWriter A Python module for creating Excel XLSX files @@ -13,3 +17,6 @@ version | toolchain ``3.1.2`` | ``GCCcore/12.2.0`` ``3.1.3`` | ``GCCcore/12.3.0`` ``3.1.9`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/Xmipp.md b/docs/version-specific/supported-software/x/Xmipp.md index e01481f1c..409bd48c6 100644 --- a/docs/version-specific/supported-software/x/Xmipp.md +++ b/docs/version-specific/supported-software/x/Xmipp.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/Xvfb.md b/docs/version-specific/supported-software/x/Xvfb.md index d98e4225c..34a2d9df6 100644 --- a/docs/version-specific/supported-software/x/Xvfb.md +++ b/docs/version-specific/supported-software/x/Xvfb.md @@ -1,3 +1,7 @@ +--- +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. @@ -16,3 +20,6 @@ version | toolchain ``21.1.6`` | ``GCCcore/12.2.0`` ``21.1.8`` | ``GCCcore/12.3.0`` ``21.1.9`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/index.md b/docs/version-specific/supported-software/x/index.md index e446e2566..7cb736fbc 100644 --- a/docs/version-specific/supported-software/x/index.md +++ b/docs/version-specific/supported-software/x/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (x) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - *x* - [../y/index.md](y) - [../z/index.md](z) + * [X11](X11.md) * [x13as](x13as.md) * [x264](x264.md) diff --git a/docs/version-specific/supported-software/x/x13as.md b/docs/version-specific/supported-software/x/x13as.md index 4e8d5db95..17c0cf821 100644 --- a/docs/version-specific/supported-software/x/x13as.md +++ b/docs/version-specific/supported-software/x/x13as.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1-1-b59`` | ``GCCcore/10.2.0`` ``1-1-b59`` | ``GCCcore/11.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/x264.md b/docs/version-specific/supported-software/x/x264.md index f6b728074..5a57369cd 100644 --- a/docs/version-specific/supported-software/x/x264.md +++ b/docs/version-specific/supported-software/x/x264.md @@ -1,3 +1,7 @@ +--- +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. @@ -30,3 +34,6 @@ version | toolchain ``20230226`` | ``GCCcore/12.2.0`` ``20230226`` | ``GCCcore/12.3.0`` ``20231019`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/x265.md b/docs/version-specific/supported-software/x/x265.md index 3b229b809..00df81d53 100644 --- a/docs/version-specific/supported-software/x/x265.md +++ b/docs/version-specific/supported-software/x/x265.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | toolchain ``3.5`` | ``GCCcore/12.2.0`` ``3.5`` | ``GCCcore/12.3.0`` ``3.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xCell.md b/docs/version-specific/supported-software/x/xCell.md index d2da331ae..22b3bdbc3 100644 --- a/docs/version-specific/supported-software/x/xCell.md +++ b/docs/version-specific/supported-software/x/xCell.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xCell xCell is a gene signatures-based method learned from thousands of pure cell types from various sources. @@ -7,3 +11,6 @@ xCell is a gene signatures-based method learned from thousands of pure cell type version | versionsuffix | toolchain --------|---------------|---------- ``1.12`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xESMF.md b/docs/version-specific/supported-software/x/xESMF.md index b05cff8a7..8e60f15fd 100644 --- a/docs/version-specific/supported-software/x/xESMF.md +++ b/docs/version-specific/supported-software/x/xESMF.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xESMF xESMF: Universal Regridder for Geospatial Data @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.3.0`` | | ``intel/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xarray.md b/docs/version-specific/supported-software/x/xarray.md index 51c6ba147..f6b9ec493 100644 --- a/docs/version-specific/supported-software/x/xarray.md +++ b/docs/version-specific/supported-software/x/xarray.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | versionsuffix | toolchain ``2022.9.0`` | | ``foss/2022a`` ``2023.4.2`` | | ``gfbf/2022b`` ``2023.9.0`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xbitmaps.md b/docs/version-specific/supported-software/x/xbitmaps.md index 86640e27e..dd225c652 100644 --- a/docs/version-specific/supported-software/x/xbitmaps.md +++ b/docs/version-specific/supported-software/x/xbitmaps.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xbitmaps provides bitmaps for x @@ -10,3 +14,6 @@ version | toolchain ``1.1.1`` | ``intel/2016a`` ``1.1.1`` | ``system`` ``1.1.2`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xcb-proto.md b/docs/version-specific/supported-software/x/xcb-proto.md index 1bc4a4272..65c541d8c 100644 --- a/docs/version-specific/supported-software/x/xcb-proto.md +++ b/docs/version-specific/supported-software/x/xcb-proto.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.11`` | ``system`` ``1.13`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xcb-util-image.md b/docs/version-specific/supported-software/x/xcb-util-image.md index a6413fdc7..3d4f6e848 100644 --- a/docs/version-specific/supported-software/x/xcb-util-image.md +++ b/docs/version-specific/supported-software/x/xcb-util-image.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xcb-util-image The xcb-util-image package provides additional extensions to the XCB library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xcb-util-keysyms.md b/docs/version-specific/supported-software/x/xcb-util-keysyms.md index 2aadddd12..594357e7e 100644 --- a/docs/version-specific/supported-software/x/xcb-util-keysyms.md +++ b/docs/version-specific/supported-software/x/xcb-util-keysyms.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xcb-util-renderutil.md b/docs/version-specific/supported-software/x/xcb-util-renderutil.md index c3ec26d38..7f335ecd3 100644 --- a/docs/version-specific/supported-software/x/xcb-util-renderutil.md +++ b/docs/version-specific/supported-software/x/xcb-util-renderutil.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xcb-util-renderutil The xcb-util-renderutil package provides additional extensions to the XCB library. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.3.9`` | ``foss/2016a`` ``0.3.9`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xcb-util-wm.md b/docs/version-specific/supported-software/x/xcb-util-wm.md index a34cfb6ef..5ce4cd060 100644 --- a/docs/version-specific/supported-software/x/xcb-util-wm.md +++ b/docs/version-specific/supported-software/x/xcb-util-wm.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.1`` | ``foss/2016a`` ``0.4.1`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xcb-util.md b/docs/version-specific/supported-software/x/xcb-util.md index 5506cddf7..e96035c1d 100644 --- a/docs/version-specific/supported-software/x/xcb-util.md +++ b/docs/version-specific/supported-software/x/xcb-util.md @@ -1,3 +1,7 @@ +--- +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 @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xclip.md b/docs/version-specific/supported-software/x/xclip.md index 529bc81ef..5475c2f96 100644 --- a/docs/version-specific/supported-software/x/xclip.md +++ b/docs/version-specific/supported-software/x/xclip.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xclip xclip is a command line utility that is designed to run on any system with an X11 implementation. @@ -7,3 +11,6 @@ xclip is a command line utility that is designed to run on any system with an X1 version | toolchain --------|---------- ``0.13`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xdotool.md b/docs/version-specific/supported-software/x/xdotool.md index 1cc0f256f..9e1c2034f 100644 --- a/docs/version-specific/supported-software/x/xdotool.md +++ b/docs/version-specific/supported-software/x/xdotool.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ xdotool lets you simulate keyboard input and mouse activity, move and resize win version | toolchain --------|---------- ``3.20211022.1`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xextproto.md b/docs/version-specific/supported-software/x/xextproto.md index 7344aa009..718ab2804 100644 --- a/docs/version-specific/supported-software/x/xextproto.md +++ b/docs/version-specific/supported-software/x/xextproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xextproto XExtProto protocol headers. @@ -10,3 +14,6 @@ version | toolchain ``7.3.0`` | ``gimkl/2.11.5`` ``7.3.0`` | ``intel/2016a`` ``7.3.0`` | ``intel/2017b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xf86vidmodeproto.md b/docs/version-specific/supported-software/x/xf86vidmodeproto.md index 5e4166427..043e435ea 100644 --- a/docs/version-specific/supported-software/x/xf86vidmodeproto.md +++ b/docs/version-specific/supported-software/x/xf86vidmodeproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xf86vidmodeproto X11 XFree86 video mode extension protocol headers. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.3.1`` | ``foss/2016a`` ``2.3.1`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xineramaproto.md b/docs/version-specific/supported-software/x/xineramaproto.md index 3b7521210..fe5fad51c 100644 --- a/docs/version-specific/supported-software/x/xineramaproto.md +++ b/docs/version-specific/supported-software/x/xineramaproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xineramaproto X protocol and ancillary headers for xinerama @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2016a`` ``1.2.1`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xmitgcm.md b/docs/version-specific/supported-software/x/xmitgcm.md index a5c844b02..6fd2944ea 100644 --- a/docs/version-specific/supported-software/x/xmitgcm.md +++ b/docs/version-specific/supported-software/x/xmitgcm.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ xmitgcm is a python package for reading MITgcm binary MDS files into xarray dat version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xmlf90.md b/docs/version-specific/supported-software/x/xmlf90.md index e05abe5b5..a07b66dd3 100644 --- a/docs/version-specific/supported-software/x/xmlf90.md +++ b/docs/version-specific/supported-software/x/xmlf90.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xmlf90 xmlf90 is a basic XML parsing library written in Fortran. @@ -16,3 +20,6 @@ version | toolchain ``1.5.4`` | ``intel-compilers/2021.2.0`` ``1.5.4`` | ``intel-compilers/2021.4.0`` ``1.5.6`` | ``GCC/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xonsh.md b/docs/version-specific/supported-software/x/xonsh.md index 5f55e2b43..60f28f340 100644 --- a/docs/version-specific/supported-software/x/xonsh.md +++ b/docs/version-specific/supported-software/x/xonsh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xonsh Xonsh is a Python-ish, BASHwards-looking shell language and command prompt. @@ -7,3 +11,6 @@ Xonsh is a Python-ish, BASHwards-looking shell language and command prompt. version | toolchain --------|---------- ``0.3.2`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xorg-macros.md b/docs/version-specific/supported-software/x/xorg-macros.md index 622532985..f79aa53cb 100644 --- a/docs/version-specific/supported-software/x/xorg-macros.md +++ b/docs/version-specific/supported-software/x/xorg-macros.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xorg-macros X.org macros utilities. @@ -27,3 +31,6 @@ version | toolchain ``1.20.0`` | ``GCCcore/12.3.0`` ``1.20.0`` | ``GCCcore/13.2.0`` ``1.20.1`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xpdf.md b/docs/version-specific/supported-software/x/xpdf.md index c871d4c7d..606bf0d30 100644 --- a/docs/version-specific/supported-software/x/xpdf.md +++ b/docs/version-specific/supported-software/x/xpdf.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Xpdf was first released in 1995. It was written, and is still developed, by version | toolchain --------|---------- ``4.04`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xprop.md b/docs/version-specific/supported-software/x/xprop.md index 0cf411ae9..f5a621466 100644 --- a/docs/version-specific/supported-software/x/xprop.md +++ b/docs/version-specific/supported-software/x/xprop.md @@ -1,3 +1,7 @@ +--- +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. @@ -25,3 +29,6 @@ version | versionsuffix | toolchain ``1.2.5`` | | ``GCCcore/12.2.0`` ``1.2.6`` | | ``GCCcore/12.3.0`` ``1.2.7`` | | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xproto.md b/docs/version-specific/supported-software/x/xproto.md index 0c36754e3..3ae3eb0dd 100644 --- a/docs/version-specific/supported-software/x/xproto.md +++ b/docs/version-specific/supported-software/x/xproto.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xproto X protocol and ancillary headers @@ -21,3 +25,6 @@ version | toolchain ``7.0.31`` | ``GCCcore/7.3.0`` ``7.0.31`` | ``GCCcore/8.3.0`` ``7.0.31`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xtb.md b/docs/version-specific/supported-software/x/xtb.md index 80b397e50..fcd650848 100644 --- a/docs/version-specific/supported-software/x/xtb.md +++ b/docs/version-specific/supported-software/x/xtb.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xtb xtb - An extended tight-binding semi-empirical program package. @@ -17,3 +21,6 @@ version | versionsuffix | toolchain ``6.6.1`` | | ``gfbf/2022b`` ``6.6.1`` | | ``gfbf/2023a`` ``6.7.0`` | | ``gfbf/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xtensor.md b/docs/version-specific/supported-software/x/xtensor.md index 0ab0ef0f3..8587de1d0 100644 --- a/docs/version-specific/supported-software/x/xtensor.md +++ b/docs/version-specific/supported-software/x/xtensor.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xtensor xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions. @@ -7,3 +11,6 @@ xtensor is a C++ library meant for numerical analysis with multi-dimensional arr version | toolchain --------|---------- ``0.24.0`` | ``foss/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xtrans.md b/docs/version-specific/supported-software/x/xtrans.md index 7cbe9524e..787e758e6 100644 --- a/docs/version-specific/supported-software/x/xtrans.md +++ b/docs/version-specific/supported-software/x/xtrans.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.3.5`` | ``foss/2016a`` ``1.3.5`` | ``gimkl/2.11.5`` ``1.3.5`` | ``intel/2016a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xxHash.md b/docs/version-specific/supported-software/x/xxHash.md index ee11c67bc..b7388de18 100644 --- a/docs/version-specific/supported-software/x/xxHash.md +++ b/docs/version-specific/supported-software/x/xxHash.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xxHash xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit. @@ -12,3 +16,6 @@ version | toolchain ``0.8.1`` | ``GCCcore/12.2.0`` ``0.8.2`` | ``GCCcore/12.3.0`` ``0.8.2`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/x/xxd.md b/docs/version-specific/supported-software/x/xxd.md index 796c396d7..fe7ecaf9d 100644 --- a/docs/version-specific/supported-software/x/xxd.md +++ b/docs/version-specific/supported-software/x/xxd.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # xxd xxd is part of the VIM package and serves to convert to/from hexdumps of binary files. @@ -13,3 +17,6 @@ version | toolchain ``9.0.1696`` | ``GCCcore/12.2.0`` ``9.0.2112`` | ``GCCcore/12.3.0`` ``9.1.0307`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/YACS.md b/docs/version-specific/supported-software/y/YACS.md index fbd689940..a1c0d27b3 100644 --- a/docs/version-specific/supported-software/y/YACS.md +++ b/docs/version-specific/supported-software/y/YACS.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | toolchain ``0.1.8`` | ``GCCcore/11.3.0`` ``0.1.8`` | ``GCCcore/12.3.0`` ``0.1.8`` | ``GCCcore/8.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/YANK.md b/docs/version-specific/supported-software/y/YANK.md index cd2f1658c..bd93880db 100644 --- a/docs/version-specific/supported-software/y/YANK.md +++ b/docs/version-specific/supported-software/y/YANK.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # YANK A GPU-accelerated Python framework for exploring algorithms for alchemical free energy calculations @@ -7,3 +11,6 @@ A GPU-accelerated Python framework for exploring algorithms for alchemical free version | versionsuffix | toolchain --------|---------------|---------- ``0.25.2`` | ``-Python-3.8.2`` | ``intel/2020a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/YAPS.md b/docs/version-specific/supported-software/y/YAPS.md index f349e75fe..8b9167cfd 100644 --- a/docs/version-specific/supported-software/y/YAPS.md +++ b/docs/version-specific/supported-software/y/YAPS.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # YAPS YAPS - Yet Another Positioning Solver @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` ``1.1.0`` | ``-R-3.6.0`` | ``intel/2019a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/YAXT.md b/docs/version-specific/supported-software/y/YAXT.md index db0cdd989..5c7f9a3ab 100644 --- a/docs/version-specific/supported-software/y/YAXT.md +++ b/docs/version-specific/supported-software/y/YAXT.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # YAXT Yet Another eXchange Tool @@ -20,3 +24,6 @@ version | toolchain ``0.9.1`` | ``gompi/2021a`` ``0.9.2`` | ``iimpi/2021b`` ``0.9.2.1`` | ``gompi/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/YODA.md b/docs/version-specific/supported-software/y/YODA.md index 3935f785b..9ae604984 100644 --- a/docs/version-specific/supported-software/y/YODA.md +++ b/docs/version-specific/supported-software/y/YODA.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # YODA Yet more Objects for (High Energy Physics) Data Analysis @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``1.9.7`` | ``GCC/11.3.0`` ``1.9.9`` | ``GCC/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/Yade.md b/docs/version-specific/supported-software/y/Yade.md index 243705984..bfb13ee73 100644 --- a/docs/version-specific/supported-software/y/Yade.md +++ b/docs/version-specific/supported-software/y/Yade.md @@ -1,3 +1,7 @@ +--- +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. @@ -12,3 +16,6 @@ version | versionsuffix | toolchain ``2016.06a`` | ``-Python-2.7.12`` | ``intel/2016b`` ``2017.01a`` | ``-Python-2.7.12`` | ``intel/2016b`` ``2018.02b`` | ``-Python-2.7.14`` | ``intel/2018a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/Yambo.md b/docs/version-specific/supported-software/y/Yambo.md index e10eebba3..2b141b100 100644 --- a/docs/version-specific/supported-software/y/Yambo.md +++ b/docs/version-specific/supported-software/y/Yambo.md @@ -1,3 +1,7 @@ +--- +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. @@ -9,3 +13,6 @@ version | toolchain ``3.4.2`` | ``intel/2016.02-GCC-4.9`` ``5.0.4`` | ``intel/2021a`` ``5.1.2`` | ``intel/2021b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/Yasm.md b/docs/version-specific/supported-software/y/Yasm.md index f43e61bfc..ff463f936 100644 --- a/docs/version-specific/supported-software/y/Yasm.md +++ b/docs/version-specific/supported-software/y/Yasm.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # Yasm Yasm: Complete rewrite of the NASM assembler with BSD license @@ -26,3 +30,6 @@ version | toolchain ``1.3.0`` | ``intel/2016a`` ``1.3.0`` | ``intel/2016b`` ``1.3.0`` | ``intel/2017a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/Yices.md b/docs/version-specific/supported-software/y/Yices.md index dfa0f40da..199a58b87 100644 --- a/docs/version-specific/supported-software/y/Yices.md +++ b/docs/version-specific/supported-software/y/Yices.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | toolchain --------|---------- ``2.6.2`` | ``GCCcore/10.2.0`` ``2.6.4`` | ``GCCcore/12.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/index.md b/docs/version-specific/supported-software/y/index.md index 1fcbe6007..8abfae44c 100644 --- a/docs/version-specific/supported-software/y/index.md +++ b/docs/version-specific/supported-software/y/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (y) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - *y* - [../z/index.md](z) + * [YACS](YACS.md) * [Yade](Yade.md) * [yaff](yaff.md) diff --git a/docs/version-specific/supported-software/y/yaff.md b/docs/version-specific/supported-software/y/yaff.md index 09a6527e3..5aff306d2 100644 --- a/docs/version-specific/supported-software/y/yaff.md +++ b/docs/version-specific/supported-software/y/yaff.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # yaff Yaff stands for 'Yet another force field'. It is a pythonic force-field code. @@ -23,3 +27,6 @@ version | versionsuffix | toolchain ``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`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/yaml-cpp.md b/docs/version-specific/supported-software/y/yaml-cpp.md index 991ae8e41..9ad1db892 100644 --- a/docs/version-specific/supported-software/y/yaml-cpp.md +++ b/docs/version-specific/supported-software/y/yaml-cpp.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # yaml-cpp yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec @@ -11,3 +15,6 @@ version | toolchain ``0.7.0`` | ``GCCcore/12.2.0`` ``0.7.0`` | ``GCCcore/12.3.0`` ``0.8.0`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/y/yt.md b/docs/version-specific/supported-software/y/yt.md index 3ac5fa6ec..e6e89aacf 100644 --- a/docs/version-specific/supported-software/y/yt.md +++ b/docs/version-specific/supported-software/y/yt.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # yt yt is an open-source, permissively-licensed python package for analyzing and visualizing volumetric data. @@ -7,3 +11,6 @@ yt is an open-source, permissively-licensed python package for analyzing and vi version | toolchain --------|---------- ``4.3.0`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/Z3.md b/docs/version-specific/supported-software/z/Z3.md index 363aac28c..ea2c8e30f 100644 --- a/docs/version-specific/supported-software/z/Z3.md +++ b/docs/version-specific/supported-software/z/Z3.md @@ -1,3 +1,7 @@ +--- +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. @@ -22,3 +26,6 @@ version | versionsuffix | toolchain ``4.8.16`` | | ``GCCcore/11.3.0`` ``4.8.9`` | | ``GCCcore/8.3.0`` ``4.8.9`` | | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/ZIMPL.md b/docs/version-specific/supported-software/z/ZIMPL.md index 49b75760b..3d35f644d 100644 --- a/docs/version-specific/supported-software/z/ZIMPL.md +++ b/docs/version-specific/supported-software/z/ZIMPL.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ ZIMPL is a little language to translate the mathematical model of a problem into version | toolchain --------|---------- ``3.3.4`` | ``GCCcore/11.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/ZPAQ.md b/docs/version-specific/supported-software/z/ZPAQ.md index d8c8a6d77..39d0752b0 100644 --- a/docs/version-specific/supported-software/z/ZPAQ.md +++ b/docs/version-specific/supported-software/z/ZPAQ.md @@ -1,3 +1,7 @@ +--- +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 @@ -7,3 +11,6 @@ zpaq is a free and open source (GPL v3) incremental, journaling command-line ar version | toolchain --------|---------- ``7.00`` | ``GCC/4.8.2`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/Zeo++.md b/docs/version-specific/supported-software/z/Zeo++.md index 9e5d399c1..f1ab1b0f0 100644 --- a/docs/version-specific/supported-software/z/Zeo++.md +++ b/docs/version-specific/supported-software/z/Zeo++.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Zeo++ is a software package for analysis of crystalline porous materials. Ze version | toolchain --------|---------- ``0.3`` | ``intel-compilers/2023.1.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/ZeroMQ.md b/docs/version-specific/supported-software/z/ZeroMQ.md index 837e05752..95a4bb5df 100644 --- a/docs/version-specific/supported-software/z/ZeroMQ.md +++ b/docs/version-specific/supported-software/z/ZeroMQ.md @@ -1,3 +1,7 @@ +--- +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. @@ -32,3 +36,6 @@ version | toolchain ``4.3.4`` | ``GCCcore/12.2.0`` ``4.3.4`` | ``GCCcore/12.3.0`` ``4.3.5`` | ``GCCcore/13.2.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/Zgoubi.md b/docs/version-specific/supported-software/z/Zgoubi.md index adddfc1a2..118042597 100644 --- a/docs/version-specific/supported-software/z/Zgoubi.md +++ b/docs/version-specific/supported-software/z/Zgoubi.md @@ -1,3 +1,7 @@ +--- +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. @@ -7,3 +11,6 @@ Zgoubi is a ray-tracing code in use for charged particle beam dynamics simulatio version | toolchain --------|---------- ``6.0.2`` | ``GCCcore/10.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/Zip.md b/docs/version-specific/supported-software/z/Zip.md index e817ddeb6..1be3a0275 100644 --- a/docs/version-specific/supported-software/z/Zip.md +++ b/docs/version-specific/supported-software/z/Zip.md @@ -1,3 +1,7 @@ +--- +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 @@ -18,3 +22,6 @@ version | toolchain ``3.0`` | ``GCCcore/8.2.0`` ``3.0`` | ``GCCcore/8.3.0`` ``3.0`` | ``GCCcore/9.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/Zopfli.md b/docs/version-specific/supported-software/z/Zopfli.md index 9020b3d0e..ea2891243 100644 --- a/docs/version-specific/supported-software/z/Zopfli.md +++ b/docs/version-specific/supported-software/z/Zopfli.md @@ -1,3 +1,7 @@ +--- +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. @@ -10,3 +14,6 @@ version | toolchain ``1.0.3`` | ``GCCcore/10.3.0`` ``1.0.3`` | ``GCCcore/11.3.0`` ``1.0.3`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/index.md b/docs/version-specific/supported-software/z/index.md index 31c0287ca..a6761f651 100644 --- a/docs/version-specific/supported-software/z/index.md +++ b/docs/version-specific/supported-software/z/index.md @@ -1,5 +1,11 @@ +--- +search: + boost: 0.5 +--- # List of supported software (z) +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - *z* + * [Z3](Z3.md) * [zarr](zarr.md) * [Zeo++](Zeo++.md) diff --git a/docs/version-specific/supported-software/z/zUMIs.md b/docs/version-specific/supported-software/z/zUMIs.md index d8d6124cd..9a49223e0 100644 --- a/docs/version-specific/supported-software/z/zUMIs.md +++ b/docs/version-specific/supported-software/z/zUMIs.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # zUMIs A fast and flexible pipeline to process RNA sequencing data with UMIs. @@ -7,3 +11,6 @@ A fast and flexible pipeline to process RNA sequencing data with UMIs. version | versionsuffix | toolchain --------|---------------|---------- ``2.9.7`` | ``-R-4.3.2`` | ``foss/2023a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zarr.md b/docs/version-specific/supported-software/z/zarr.md index 380b6ae81..173c02d8b 100644 --- a/docs/version-specific/supported-software/z/zarr.md +++ b/docs/version-specific/supported-software/z/zarr.md @@ -1,3 +1,7 @@ +--- +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. @@ -14,3 +18,6 @@ version | versionsuffix | toolchain ``2.17.1`` | | ``foss/2023a`` ``2.4.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.8.1`` | | ``foss/2020b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zeus-mcmc.md b/docs/version-specific/supported-software/z/zeus-mcmc.md index 611331ec7..65317e43d 100644 --- a/docs/version-specific/supported-software/z/zeus-mcmc.md +++ b/docs/version-specific/supported-software/z/zeus-mcmc.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # zeus-mcmc Zeus is a Python implementation of the Ensemble Slice Sampling method. @@ -7,3 +11,6 @@ Zeus is a Python implementation of the Ensemble Slice Sampling method. version | toolchain --------|---------- ``2.5.4`` | ``foss/2022a`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zfp.md b/docs/version-specific/supported-software/z/zfp.md index 7312f6086..0603b2fd8 100644 --- a/docs/version-specific/supported-software/z/zfp.md +++ b/docs/version-specific/supported-software/z/zfp.md @@ -1,3 +1,7 @@ +--- +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. @@ -11,3 +15,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/11.3.0`` ``1.0.0`` | ``GCCcore/9.3.0`` ``1.0.1`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zingeR.md b/docs/version-specific/supported-software/z/zingeR.md index 66ce1649a..585aef435 100644 --- a/docs/version-specific/supported-software/z/zingeR.md +++ b/docs/version-specific/supported-software/z/zingeR.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # zingeR Zero-Inflated Negative binomial Gene Expression in R @@ -7,3 +11,6 @@ Zero-Inflated Negative binomial Gene Expression in R version | versionsuffix | toolchain --------|---------------|---------- ``20180131`` | ``-R-3.5.1`` | ``foss/2018b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zlib-ng.md b/docs/version-specific/supported-software/z/zlib-ng.md index 4dacf71b6..d91484e22 100644 --- a/docs/version-specific/supported-software/z/zlib-ng.md +++ b/docs/version-specific/supported-software/z/zlib-ng.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # zlib-ng zlib data compression library for the next generation systems @@ -10,3 +14,6 @@ version | toolchain ``2.0.6`` | ``GCCcore/10.3.0`` ``2.0.7`` | ``GCCcore/11.3.0`` ``2.1.6`` | ``GCCcore/12.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zlib.md b/docs/version-specific/supported-software/z/zlib.md index 6617610ff..c5adc063a 100644 --- a/docs/version-specific/supported-software/z/zlib.md +++ b/docs/version-specific/supported-software/z/zlib.md @@ -1,3 +1,7 @@ +--- +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. @@ -75,3 +79,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/13.3.0`` ``1.3.1`` | ``GCCcore/14.1.0`` ``1.3.1`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zlibbioc.md b/docs/version-specific/supported-software/z/zlibbioc.md index ae65fa1fc..f0833e84c 100644 --- a/docs/version-specific/supported-software/z/zlibbioc.md +++ b/docs/version-specific/supported-software/z/zlibbioc.md @@ -1,3 +1,7 @@ +--- +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. @@ -8,3 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.18.0`` | ``-R-3.2.3`` | ``intel/2016a`` ``1.20.0`` | ``-R-3.3.1`` | ``intel/2016b`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zsh.md b/docs/version-specific/supported-software/z/zsh.md index 1579b454a..c14b378d3 100644 --- a/docs/version-specific/supported-software/z/zsh.md +++ b/docs/version-specific/supported-software/z/zsh.md @@ -1,3 +1,7 @@ +--- +search: + boost: 0.5 +--- # zsh Zsh is a shell designed for interactive use, although it is also a powerful scripting language. @@ -11,3 +15,6 @@ version | toolchain ``5.8`` | ``GCC/8.3.0`` ``5.8`` | ``system`` ``5.9`` | ``system`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + diff --git a/docs/version-specific/supported-software/z/zstd.md b/docs/version-specific/supported-software/z/zstd.md index 5ce904d7e..922b4ccee 100644 --- a/docs/version-specific/supported-software/z/zstd.md +++ b/docs/version-specific/supported-software/z/zstd.md @@ -1,3 +1,7 @@ +--- +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. @@ -20,3 +24,6 @@ version | toolchain ``1.5.5`` | ``GCCcore/12.3.0`` ``1.5.5`` | ``GCCcore/13.2.0`` ``1.5.6`` | ``GCCcore/13.3.0`` + +[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) + From d2231b0ee40066d1d2e261a58384cff85fe86849 Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 13:57:09 +0100 Subject: [PATCH 07/15] correction --- docs/version-specific/software-markdown-pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py index 22c13f75a..0e6cc34b1 100644 --- a/docs/version-specific/software-markdown-pages.py +++ b/docs/version-specific/software-markdown-pages.py @@ -22,7 +22,7 @@ def generate_character_links_line(characters, current=None): if c == current: links.append(f'*{c}*') else: - links.append(f"[../{c}/index.md]({c})") + links.append(f"[{c}](../{c}/index.md)") return f"{' - '.join(links)}\n\n" From cad54e890d74f7ca62aec137e2ff0d358dca4ffc Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 13:58:23 +0100 Subject: [PATCH 08/15] corrected output --- docs/version-specific/supported-software/0/3d-dna.md | 2 +- docs/version-specific/supported-software/0/3to2.md | 2 +- docs/version-specific/supported-software/0/4ti2.md | 2 +- docs/version-specific/supported-software/0/index.md | 2 +- docs/version-specific/supported-software/a/ABAQUS.md | 2 +- docs/version-specific/supported-software/a/ABINIT.md | 2 +- docs/version-specific/supported-software/a/ABRA2.md | 2 +- docs/version-specific/supported-software/a/ABRicate.md | 2 +- docs/version-specific/supported-software/a/ABySS.md | 2 +- docs/version-specific/supported-software/a/ACTC.md | 2 +- docs/version-specific/supported-software/a/ADDA.md | 2 +- docs/version-specific/supported-software/a/ADF.md | 2 +- docs/version-specific/supported-software/a/ADIOS.md | 2 +- docs/version-specific/supported-software/a/ADMIXTURE.md | 2 +- docs/version-specific/supported-software/a/ADOL-C.md | 2 +- docs/version-specific/supported-software/a/AEDT.md | 2 +- docs/version-specific/supported-software/a/AFNI.md | 2 +- docs/version-specific/supported-software/a/AGAT.md | 2 +- docs/version-specific/supported-software/a/AGFusion.md | 2 +- docs/version-specific/supported-software/a/AGeNT.md | 2 +- docs/version-specific/supported-software/a/AICSImageIO.md | 2 +- docs/version-specific/supported-software/a/AIMAll.md | 2 +- docs/version-specific/supported-software/a/ALADIN.md | 2 +- docs/version-specific/supported-software/a/ALAMODE.md | 2 +- docs/version-specific/supported-software/a/ALFA.md | 2 +- docs/version-specific/supported-software/a/ALL.md | 2 +- docs/version-specific/supported-software/a/ALLPATHS-LG.md | 2 +- docs/version-specific/supported-software/a/ALPS.md | 2 +- docs/version-specific/supported-software/a/AMAPVox.md | 2 +- docs/version-specific/supported-software/a/AMD-LibM.md | 2 +- docs/version-specific/supported-software/a/AMD-RNG.md | 2 +- docs/version-specific/supported-software/a/AMD-SecureRNG.md | 2 +- docs/version-specific/supported-software/a/AMD-uProf.md | 2 +- docs/version-specific/supported-software/a/AMGX.md | 2 +- docs/version-specific/supported-software/a/AMICA.md | 2 +- docs/version-specific/supported-software/a/AMOS.md | 2 +- docs/version-specific/supported-software/a/AMPHORA2.md | 2 +- docs/version-specific/supported-software/a/AMPL-MP.md | 2 +- docs/version-specific/supported-software/a/AMPtk.md | 2 +- docs/version-specific/supported-software/a/AMRFinderPlus.md | 2 +- docs/version-specific/supported-software/a/AMS.md | 2 +- docs/version-specific/supported-software/a/ANGEL.md | 2 +- docs/version-specific/supported-software/a/ANIcalculator.md | 2 +- docs/version-specific/supported-software/a/ANSYS.md | 2 +- docs/version-specific/supported-software/a/ANSYS_CFD.md | 2 +- docs/version-specific/supported-software/a/ANTIC.md | 2 +- docs/version-specific/supported-software/a/ANTLR.md | 2 +- docs/version-specific/supported-software/a/ANTs.md | 2 +- docs/version-specific/supported-software/a/AOCC.md | 2 +- docs/version-specific/supported-software/a/AOFlagger.md | 2 +- docs/version-specific/supported-software/a/AOMP.md | 2 +- docs/version-specific/supported-software/a/APBS.md | 2 +- docs/version-specific/supported-software/a/APR-util.md | 2 +- docs/version-specific/supported-software/a/APR.md | 2 +- docs/version-specific/supported-software/a/ARAGORN.md | 2 +- docs/version-specific/supported-software/a/ARCH.md | 2 +- docs/version-specific/supported-software/a/ARGoS.md | 2 +- docs/version-specific/supported-software/a/ARPACK++.md | 2 +- docs/version-specific/supported-software/a/ART.md | 2 +- docs/version-specific/supported-software/a/ARTS.md | 2 +- docs/version-specific/supported-software/a/ARWEN.md | 2 +- docs/version-specific/supported-software/a/ASAP.md | 2 +- docs/version-specific/supported-software/a/ASAP3.md | 2 +- docs/version-specific/supported-software/a/ASCAT.md | 2 +- docs/version-specific/supported-software/a/ASE.md | 2 +- docs/version-specific/supported-software/a/ASF-SearchAPI.md | 2 +- docs/version-specific/supported-software/a/ASHS.md | 2 +- docs/version-specific/supported-software/a/ASTRID.md | 2 +- docs/version-specific/supported-software/a/ATAT.md | 2 +- docs/version-specific/supported-software/a/ATK.md | 2 +- docs/version-specific/supported-software/a/ATLAS.md | 2 +- docs/version-specific/supported-software/a/ATSAS.md | 2 +- docs/version-specific/supported-software/a/AUGUSTUS.md | 2 +- docs/version-specific/supported-software/a/AUTO-07p.md | 2 +- docs/version-specific/supported-software/a/Abseil.md | 2 +- docs/version-specific/supported-software/a/AdapterRemoval.md | 2 +- docs/version-specific/supported-software/a/Advisor.md | 2 +- docs/version-specific/supported-software/a/Albacore.md | 2 +- docs/version-specific/supported-software/a/Albumentations.md | 2 +- docs/version-specific/supported-software/a/Alfred.md | 2 +- docs/version-specific/supported-software/a/Allinea.md | 2 +- docs/version-specific/supported-software/a/Alpha.md | 2 +- docs/version-specific/supported-software/a/AlphaFold.md | 2 +- docs/version-specific/supported-software/a/AlphaPulldown.md | 2 +- docs/version-specific/supported-software/a/Amara.md | 2 +- docs/version-specific/supported-software/a/Amber.md | 2 +- docs/version-specific/supported-software/a/AmberMini.md | 2 +- docs/version-specific/supported-software/a/AmberTools.md | 2 +- docs/version-specific/supported-software/a/AmrPlusPlus.md | 2 +- docs/version-specific/supported-software/a/Anaconda2.md | 2 +- docs/version-specific/supported-software/a/Anaconda3.md | 2 +- docs/version-specific/supported-software/a/Annif.md | 2 +- docs/version-specific/supported-software/a/Annocript.md | 2 +- docs/version-specific/supported-software/a/AptaSUITE.md | 2 +- docs/version-specific/supported-software/a/Arb.md | 2 +- .../supported-software/a/Arcade-Learning-Environment.md | 2 +- docs/version-specific/supported-software/a/ArchR.md | 2 +- docs/version-specific/supported-software/a/Archive-Zip.md | 2 +- docs/version-specific/supported-software/a/AreTomo2.md | 2 +- docs/version-specific/supported-software/a/Arlequin.md | 2 +- docs/version-specific/supported-software/a/Armadillo.md | 2 +- docs/version-specific/supported-software/a/ArrayFire.md | 2 +- docs/version-specific/supported-software/a/Arriba.md | 2 +- docs/version-specific/supported-software/a/Arrow.md | 2 +- docs/version-specific/supported-software/a/Artemis.md | 2 +- docs/version-specific/supported-software/a/ArviZ.md | 2 +- docs/version-specific/supported-software/a/Aspera-CLI.md | 2 +- docs/version-specific/supported-software/a/Aspera-Connect.md | 2 +- docs/version-specific/supported-software/a/Assimulo.md | 2 +- docs/version-specific/supported-software/a/AtomPAW.md | 2 +- docs/version-specific/supported-software/a/Austin.md | 2 +- docs/version-specific/supported-software/a/AutoDock-GPU.md | 2 +- docs/version-specific/supported-software/a/AutoDock-Vina.md | 2 +- docs/version-specific/supported-software/a/AutoDock.md | 2 +- docs/version-specific/supported-software/a/AutoDockSuite.md | 2 +- docs/version-specific/supported-software/a/AutoGeneS.md | 2 +- docs/version-specific/supported-software/a/AutoGrid.md | 2 +- docs/version-specific/supported-software/a/AutoMap.md | 2 +- docs/version-specific/supported-software/a/Autoconf-archive.md | 2 +- docs/version-specific/supported-software/a/Autoconf.md | 2 +- docs/version-specific/supported-software/a/Automake.md | 2 +- docs/version-specific/supported-software/a/Autotools.md | 2 +- docs/version-specific/supported-software/a/Avogadro2.md | 2 +- docs/version-specific/supported-software/a/Ax.md | 2 +- docs/version-specific/supported-software/a/aNCI.md | 2 +- docs/version-specific/supported-software/a/abTEM.md | 2 +- docs/version-specific/supported-software/a/ack.md | 2 +- docs/version-specific/supported-software/a/ada.md | 2 +- docs/version-specific/supported-software/a/adjustText.md | 2 +- docs/version-specific/supported-software/a/affinity.md | 2 +- docs/version-specific/supported-software/a/aiohttp.md | 2 +- docs/version-specific/supported-software/a/alevin-fry.md | 2 +- docs/version-specific/supported-software/a/alleleCount.md | 2 +- docs/version-specific/supported-software/a/alleleIntegrator.md | 2 +- docs/version-specific/supported-software/a/almosthere.md | 2 +- docs/version-specific/supported-software/a/alsa-lib.md | 2 +- docs/version-specific/supported-software/a/amask.md | 2 +- docs/version-specific/supported-software/a/amdahl.md | 2 +- docs/version-specific/supported-software/a/amplimap.md | 2 +- docs/version-specific/supported-software/a/anadama2.md | 2 +- docs/version-specific/supported-software/a/andi.md | 2 +- docs/version-specific/supported-software/a/angsd.md | 2 +- docs/version-specific/supported-software/a/anndata.md | 2 +- docs/version-specific/supported-software/a/annovar.md | 2 +- docs/version-specific/supported-software/a/ant.md | 2 +- docs/version-specific/supported-software/a/antiSMASH.md | 2 +- docs/version-specific/supported-software/a/anvio.md | 2 +- docs/version-specific/supported-software/a/any2fasta.md | 2 +- docs/version-specific/supported-software/a/apex.md | 2 +- docs/version-specific/supported-software/a/arcasHLA.md | 2 +- docs/version-specific/supported-software/a/archspec.md | 2 +- docs/version-specific/supported-software/a/argtable.md | 2 +- docs/version-specific/supported-software/a/aria2.md | 2 +- docs/version-specific/supported-software/a/arosics.md | 2 +- docs/version-specific/supported-software/a/arpack-ng.md | 2 +- docs/version-specific/supported-software/a/arrow-R.md | 2 +- docs/version-specific/supported-software/a/artic-ncov2019.md | 2 +- docs/version-specific/supported-software/a/assembly-stats.md | 2 +- docs/version-specific/supported-software/a/assimp.md | 2 +- docs/version-specific/supported-software/a/astro-tulips.md | 2 +- docs/version-specific/supported-software/a/astropy.md | 2 +- docs/version-specific/supported-software/a/at-spi2-atk.md | 2 +- docs/version-specific/supported-software/a/at-spi2-core.md | 2 +- docs/version-specific/supported-software/a/atomate.md | 2 +- docs/version-specific/supported-software/a/atools.md | 2 +- docs/version-specific/supported-software/a/atropos.md | 2 +- docs/version-specific/supported-software/a/attr.md | 2 +- docs/version-specific/supported-software/a/attrdict.md | 2 +- docs/version-specific/supported-software/a/attrdict3.md | 2 +- docs/version-specific/supported-software/a/augur.md | 2 +- docs/version-specific/supported-software/a/autopep8.md | 2 +- docs/version-specific/supported-software/a/avro-cpp.md | 2 +- docs/version-specific/supported-software/a/awscli.md | 2 +- docs/version-specific/supported-software/a/axel.md | 2 +- docs/version-specific/supported-software/a/index.md | 2 +- docs/version-specific/supported-software/b/BA3-SNPS-autotune.md | 2 +- docs/version-specific/supported-software/b/BAGEL.md | 2 +- docs/version-specific/supported-software/b/BAMM.md | 2 +- docs/version-specific/supported-software/b/BAMSurgeon.md | 2 +- docs/version-specific/supported-software/b/BAli-Phy.md | 2 +- docs/version-specific/supported-software/b/BBMap.md | 2 +- docs/version-specific/supported-software/b/BCALM.md | 2 +- docs/version-specific/supported-software/b/BCEL.md | 2 +- docs/version-specific/supported-software/b/BCFtools.md | 2 +- docs/version-specific/supported-software/b/BDBag.md | 2 +- docs/version-specific/supported-software/b/BEDOPS.md | 2 +- docs/version-specific/supported-software/b/BEDTools.md | 2 +- docs/version-specific/supported-software/b/BEEF.md | 2 +- docs/version-specific/supported-software/b/BFAST.md | 2 +- docs/version-specific/supported-software/b/BFC.md | 2 +- .../supported-software/b/BGC-Bayesian-genomic-clines.md | 2 +- docs/version-specific/supported-software/b/BLACS.md | 2 +- docs/version-specific/supported-software/b/BLASR.md | 2 +- docs/version-specific/supported-software/b/BLAST+.md | 2 +- docs/version-specific/supported-software/b/BLAST.md | 2 +- docs/version-specific/supported-software/b/BLAT.md | 2 +- docs/version-specific/supported-software/b/BLIS.md | 2 +- docs/version-specific/supported-software/b/BLT.md | 2 +- docs/version-specific/supported-software/b/BMTK.md | 2 +- docs/version-specific/supported-software/b/BOINC.md | 2 +- docs/version-specific/supported-software/b/BOPTEST.md | 2 +- docs/version-specific/supported-software/b/BRAKER.md | 2 +- docs/version-specific/supported-software/b/BRiAl.md | 2 +- docs/version-specific/supported-software/b/BSMAPz.md | 2 +- docs/version-specific/supported-software/b/BSseeker2.md | 2 +- docs/version-specific/supported-software/b/BUFRLIB.md | 2 +- docs/version-specific/supported-software/b/BUSCO.md | 2 +- docs/version-specific/supported-software/b/BUStools.md | 2 +- docs/version-specific/supported-software/b/BWA.md | 2 +- docs/version-specific/supported-software/b/BWISE.md | 2 +- docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md | 2 +- docs/version-specific/supported-software/b/BabelStream.md | 2 +- docs/version-specific/supported-software/b/Bader.md | 2 +- docs/version-specific/supported-software/b/BamTools.md | 2 +- docs/version-specific/supported-software/b/BamUtil.md | 2 +- docs/version-specific/supported-software/b/Bambi.md | 2 +- docs/version-specific/supported-software/b/Bandage.md | 2 +- docs/version-specific/supported-software/b/Bash.md | 2 +- docs/version-specific/supported-software/b/BatMeth2.md | 2 +- docs/version-specific/supported-software/b/BayeScEnv.md | 2 +- docs/version-specific/supported-software/b/BayeScan.md | 2 +- docs/version-specific/supported-software/b/BayesAss.md | 2 +- docs/version-specific/supported-software/b/BayesAss3-SNPs.md | 2 +- docs/version-specific/supported-software/b/BayesPrism.md | 2 +- docs/version-specific/supported-software/b/BayesTraits.md | 2 +- docs/version-specific/supported-software/b/Bazel.md | 2 +- docs/version-specific/supported-software/b/Beagle.md | 2 +- docs/version-specific/supported-software/b/Beast.md | 2 +- docs/version-specific/supported-software/b/BeautifulSoup.md | 2 +- docs/version-specific/supported-software/b/BerkeleyGW.md | 2 +- docs/version-specific/supported-software/b/BgeeCall.md | 2 +- docs/version-specific/supported-software/b/BgeeDB.md | 2 +- docs/version-specific/supported-software/b/BiG-SCAPE.md | 2 +- docs/version-specific/supported-software/b/BiasAdjustCXX.md | 2 +- docs/version-specific/supported-software/b/BigDFT.md | 2 +- docs/version-specific/supported-software/b/BinSanity.md | 2 +- docs/version-specific/supported-software/b/Bio-DB-HTS.md | 2 +- docs/version-specific/supported-software/b/Bio-EUtilities.md | 2 +- docs/version-specific/supported-software/b/Bio-FeatureIO.md | 2 +- docs/version-specific/supported-software/b/Bio-SamTools.md | 2 +- .../version-specific/supported-software/b/Bio-SearchIO-hmmer.md | 2 +- docs/version-specific/supported-software/b/BioPP.md | 2 +- docs/version-specific/supported-software/b/BioPerl.md | 2 +- docs/version-specific/supported-software/b/BioServices.md | 2 +- docs/version-specific/supported-software/b/Biopython.md | 2 +- docs/version-specific/supported-software/b/BirdNET.md | 2 +- docs/version-specific/supported-software/b/Bismark.md | 2 +- docs/version-specific/supported-software/b/Bison.md | 2 +- docs/version-specific/supported-software/b/Blender.md | 2 +- docs/version-specific/supported-software/b/Blitz++.md | 2 +- docs/version-specific/supported-software/b/BlobTools.md | 2 +- docs/version-specific/supported-software/b/Block.md | 2 +- docs/version-specific/supported-software/b/Blosc.md | 2 +- docs/version-specific/supported-software/b/Blosc2.md | 2 +- docs/version-specific/supported-software/b/BoltzTraP.md | 2 +- docs/version-specific/supported-software/b/BoltzTraP2.md | 2 +- docs/version-specific/supported-software/b/Bonito.md | 2 +- docs/version-specific/supported-software/b/Bonmin.md | 2 +- docs/version-specific/supported-software/b/Bonnie++.md | 2 +- docs/version-specific/supported-software/b/Boost.MPI.md | 2 +- .../version-specific/supported-software/b/Boost.Python-NumPy.md | 2 +- docs/version-specific/supported-software/b/Boost.Python.md | 2 +- docs/version-specific/supported-software/b/Boost.md | 2 +- docs/version-specific/supported-software/b/Bottleneck.md | 2 +- docs/version-specific/supported-software/b/Bowtie.md | 2 +- docs/version-specific/supported-software/b/Bowtie2.md | 2 +- docs/version-specific/supported-software/b/Bpipe.md | 2 +- docs/version-specific/supported-software/b/Bracken.md | 2 +- docs/version-specific/supported-software/b/Braindecode.md | 2 +- docs/version-specific/supported-software/b/BreakDancer.md | 2 +- docs/version-specific/supported-software/b/Brotli-python.md | 2 +- docs/version-specific/supported-software/b/Brotli.md | 2 +- docs/version-specific/supported-software/b/Brunsli.md | 2 +- docs/version-specific/supported-software/b/Bsoft.md | 2 +- docs/version-specific/supported-software/b/BuDDy.md | 2 +- docs/version-specific/supported-software/b/Bullet.md | 2 +- docs/version-specific/supported-software/b/babl.md | 2 +- docs/version-specific/supported-software/b/bam-readcount.md | 2 +- docs/version-specific/supported-software/b/bamFilters.md | 2 +- docs/version-specific/supported-software/b/bamtofastq.md | 2 +- docs/version-specific/supported-software/b/barrnap.md | 2 +- docs/version-specific/supported-software/b/basemap.md | 2 +- docs/version-specific/supported-software/b/bases2fastq.md | 2 +- docs/version-specific/supported-software/b/bashplotlib.md | 2 +- docs/version-specific/supported-software/b/bat.md | 2 +- docs/version-specific/supported-software/b/batchgenerators.md | 2 +- docs/version-specific/supported-software/b/bbFTP.md | 2 +- docs/version-specific/supported-software/b/bbcp.md | 2 +- docs/version-specific/supported-software/b/bc.md | 2 +- docs/version-specific/supported-software/b/bcbio-gff.md | 2 +- docs/version-specific/supported-software/b/bcgTree.md | 2 +- docs/version-specific/supported-software/b/bcl-convert.md | 2 +- docs/version-specific/supported-software/b/bcl2fastq2.md | 2 +- docs/version-specific/supported-software/b/bcolz.md | 2 +- docs/version-specific/supported-software/b/bcrypt.md | 2 +- docs/version-specific/supported-software/b/beagle-lib.md | 2 +- docs/version-specific/supported-software/b/behave.md | 2 +- docs/version-specific/supported-software/b/bench.md | 2 +- docs/version-specific/supported-software/b/bgen-reader.md | 2 +- docs/version-specific/supported-software/b/bgen.md | 2 +- docs/version-specific/supported-software/b/bibtexparser.md | 2 +- docs/version-specific/supported-software/b/binutils.md | 2 +- docs/version-specific/supported-software/b/bioawk.md | 2 +- .../supported-software/b/biobakery-workflows.md | 2 +- docs/version-specific/supported-software/b/biobambam2.md | 2 +- docs/version-specific/supported-software/b/biogeme.md | 2 +- docs/version-specific/supported-software/b/biom-format.md | 2 +- docs/version-specific/supported-software/b/biomart-perl.md | 2 +- docs/version-specific/supported-software/b/biscuit.md | 2 +- docs/version-specific/supported-software/b/bitarray.md | 2 +- docs/version-specific/supported-software/b/bitshuffle.md | 2 +- docs/version-specific/supported-software/b/blasr_libcpp.md | 2 +- docs/version-specific/supported-software/b/bmtagger.md | 2 +- docs/version-specific/supported-software/b/bnpy.md | 2 +- docs/version-specific/supported-software/b/bokeh.md | 2 +- docs/version-specific/supported-software/b/boost_histogram.md | 2 +- docs/version-specific/supported-software/b/boto3.md | 2 +- docs/version-specific/supported-software/b/bpp.md | 2 +- docs/version-specific/supported-software/b/bpytop.md | 2 +- docs/version-specific/supported-software/b/breseq.md | 2 +- docs/version-specific/supported-software/b/bsddb3.md | 2 +- docs/version-specific/supported-software/b/btllib.md | 2 +- docs/version-specific/supported-software/b/build.md | 2 +- docs/version-specific/supported-software/b/buildenv.md | 2 +- docs/version-specific/supported-software/b/buildingspy.md | 2 +- docs/version-specific/supported-software/b/bwa-mem2.md | 2 +- docs/version-specific/supported-software/b/bwa-meth.md | 2 +- docs/version-specific/supported-software/b/bwakit.md | 2 +- docs/version-specific/supported-software/b/bwidget.md | 2 +- docs/version-specific/supported-software/b/bx-python.md | 2 +- docs/version-specific/supported-software/b/byacc.md | 2 +- docs/version-specific/supported-software/b/byobu.md | 2 +- docs/version-specific/supported-software/b/bzip2.md | 2 +- docs/version-specific/supported-software/b/index.md | 2 +- docs/version-specific/supported-software/c/C3D.md | 2 +- docs/version-specific/supported-software/c/CAFE5.md | 2 +- docs/version-specific/supported-software/c/CAMPARI.md | 2 +- docs/version-specific/supported-software/c/CAP3.md | 2 +- docs/version-specific/supported-software/c/CASA.md | 2 +- docs/version-specific/supported-software/c/CASPR.md | 2 +- docs/version-specific/supported-software/c/CASTEP.md | 2 +- docs/version-specific/supported-software/c/CAT-BAT.md | 2 +- docs/version-specific/supported-software/c/CAVIAR.md | 2 +- docs/version-specific/supported-software/c/CBLAS.md | 2 +- docs/version-specific/supported-software/c/CCCL.md | 2 +- docs/version-specific/supported-software/c/CCL.md | 2 +- docs/version-specific/supported-software/c/CCfits.md | 2 +- docs/version-specific/supported-software/c/CD-HIT.md | 2 +- docs/version-specific/supported-software/c/CDAT.md | 2 +- docs/version-specific/supported-software/c/CDBtools.md | 2 +- docs/version-specific/supported-software/c/CDFlib.md | 2 +- docs/version-specific/supported-software/c/CDO.md | 2 +- docs/version-specific/supported-software/c/CENSO.md | 2 +- docs/version-specific/supported-software/c/CESM-deps.md | 2 +- docs/version-specific/supported-software/c/CFDEMcoupling.md | 2 +- docs/version-specific/supported-software/c/CFITSIO.md | 2 +- docs/version-specific/supported-software/c/CGAL.md | 2 +- docs/version-specific/supported-software/c/CGNS.md | 2 +- docs/version-specific/supported-software/c/CGmapTools.md | 2 +- docs/version-specific/supported-software/c/CHASE.md | 2 +- docs/version-specific/supported-software/c/CHERAB.md | 2 +- docs/version-specific/supported-software/c/CIF2Cell.md | 2 +- docs/version-specific/supported-software/c/CIRCexplorer.md | 2 +- docs/version-specific/supported-software/c/CIRCexplorer2.md | 2 +- docs/version-specific/supported-software/c/CIRI-long.md | 2 +- docs/version-specific/supported-software/c/CIRI.md | 2 +- docs/version-specific/supported-software/c/CIRIquant.md | 2 +- docs/version-specific/supported-software/c/CITE-seq-Count.md | 2 +- docs/version-specific/supported-software/c/CLAPACK.md | 2 +- docs/version-specific/supported-software/c/CLEAR.md | 2 +- docs/version-specific/supported-software/c/CLEASE.md | 2 +- docs/version-specific/supported-software/c/CLHEP.md | 2 +- docs/version-specific/supported-software/c/CLIP.md | 2 +- docs/version-specific/supported-software/c/CLISP.md | 2 +- docs/version-specific/supported-software/c/CLooG.md | 2 +- docs/version-specific/supported-software/c/CMAverse.md | 2 +- docs/version-specific/supported-software/c/CMSeq.md | 2 +- docs/version-specific/supported-software/c/CMake.md | 2 +- docs/version-specific/supported-software/c/CNT-ILP.md | 2 +- docs/version-specific/supported-software/c/CNVkit.md | 2 +- docs/version-specific/supported-software/c/CNVnator.md | 2 +- docs/version-specific/supported-software/c/COBRApy.md | 2 +- docs/version-specific/supported-software/c/CODEX2.md | 2 +- docs/version-specific/supported-software/c/COMEBin.md | 2 +- docs/version-specific/supported-software/c/COMSOL.md | 2 +- docs/version-specific/supported-software/c/CONCOCT.md | 2 +- docs/version-specific/supported-software/c/CONN.md | 2 +- docs/version-specific/supported-software/c/CP2K.md | 2 +- docs/version-specific/supported-software/c/CPB.md | 2 +- docs/version-specific/supported-software/c/CPC2.md | 2 +- docs/version-specific/supported-software/c/CPLEX.md | 2 +- docs/version-specific/supported-software/c/CPMD.md | 2 +- docs/version-specific/supported-software/c/CPPE.md | 2 +- docs/version-specific/supported-software/c/CREST.md | 2 +- docs/version-specific/supported-software/c/CRF++.md | 2 +- docs/version-specific/supported-software/c/CRISPR-DAV.md | 2 +- docs/version-specific/supported-software/c/CRISPResso2.md | 2 +- docs/version-specific/supported-software/c/CRPropa.md | 2 +- docs/version-specific/supported-software/c/CSB.md | 2 +- docs/version-specific/supported-software/c/CSBDeep.md | 2 +- docs/version-specific/supported-software/c/CSBLAST.md | 2 +- docs/version-specific/supported-software/c/CTPL.md | 2 +- docs/version-specific/supported-software/c/CUDA-Samples.md | 2 +- docs/version-specific/supported-software/c/CUDA.md | 2 +- docs/version-specific/supported-software/c/CUDAcompat.md | 2 +- docs/version-specific/supported-software/c/CUDAcore.md | 2 +- docs/version-specific/supported-software/c/CUDD.md | 2 +- docs/version-specific/supported-software/c/CUTLASS.md | 2 +- docs/version-specific/supported-software/c/CUnit.md | 2 +- docs/version-specific/supported-software/c/CVX.md | 2 +- docs/version-specific/supported-software/c/CVXOPT.md | 2 +- docs/version-specific/supported-software/c/CVXPY.md | 2 +- docs/version-specific/supported-software/c/CVglasso.md | 2 +- docs/version-specific/supported-software/c/CWIPI.md | 2 +- docs/version-specific/supported-software/c/CaDiCaL.md | 2 +- docs/version-specific/supported-software/c/CaSpER.md | 2 +- docs/version-specific/supported-software/c/CaVEMan.md | 2 +- docs/version-specific/supported-software/c/Caffe.md | 2 +- docs/version-specific/supported-software/c/Calcam.md | 2 +- docs/version-specific/supported-software/c/CalculiX-CrunchiX.md | 2 +- docs/version-specific/supported-software/c/Calendrical.md | 2 +- docs/version-specific/supported-software/c/Calib.md | 2 +- docs/version-specific/supported-software/c/Cantera.md | 2 +- docs/version-specific/supported-software/c/Canvas.md | 2 +- docs/version-specific/supported-software/c/CapnProto.md | 2 +- docs/version-specific/supported-software/c/Cargo.md | 2 +- docs/version-specific/supported-software/c/Carma.md | 2 +- docs/version-specific/supported-software/c/Cartopy.md | 2 +- docs/version-specific/supported-software/c/Casanovo.md | 2 +- docs/version-specific/supported-software/c/Cassiopeia.md | 2 +- docs/version-specific/supported-software/c/CastXML.md | 2 +- docs/version-specific/supported-software/c/CatBoost.md | 2 +- docs/version-specific/supported-software/c/CatLearn.md | 2 +- docs/version-specific/supported-software/c/CatMAP.md | 2 +- docs/version-specific/supported-software/c/Catch2.md | 2 +- docs/version-specific/supported-software/c/Cbc.md | 2 +- docs/version-specific/supported-software/c/CellBender.md | 2 +- docs/version-specific/supported-software/c/CellChat.md | 2 +- docs/version-specific/supported-software/c/CellMix.md | 2 +- docs/version-specific/supported-software/c/CellOracle.md | 2 +- docs/version-specific/supported-software/c/CellRanger-ARC.md | 2 +- docs/version-specific/supported-software/c/CellRanger-ATAC.md | 2 +- docs/version-specific/supported-software/c/CellRanger.md | 2 +- docs/version-specific/supported-software/c/CellRank.md | 2 +- docs/version-specific/supported-software/c/CellTypist.md | 2 +- docs/version-specific/supported-software/c/Cellpose.md | 2 +- docs/version-specific/supported-software/c/Centrifuge.md | 2 +- docs/version-specific/supported-software/c/Cereal.md | 2 +- docs/version-specific/supported-software/c/Cgl.md | 2 +- docs/version-specific/supported-software/c/ChIPseeker.md | 2 +- docs/version-specific/supported-software/c/CharLS.md | 2 +- docs/version-specific/supported-software/c/CheMPS2.md | 2 +- docs/version-specific/supported-software/c/Check.md | 2 +- docs/version-specific/supported-software/c/CheckM-Database.md | 2 +- docs/version-specific/supported-software/c/CheckM.md | 2 +- docs/version-specific/supported-software/c/CheckM2.md | 2 +- docs/version-specific/supported-software/c/Cheetah.md | 2 +- docs/version-specific/supported-software/c/Chemaxon-Marvin.md | 2 +- docs/version-specific/supported-software/c/ChimPipe.md | 2 +- docs/version-specific/supported-software/c/Chimera.md | 2 +- docs/version-specific/supported-software/c/Chromaprint.md | 2 +- docs/version-specific/supported-software/c/Circlator.md | 2 +- docs/version-specific/supported-software/c/Circos.md | 2 +- docs/version-specific/supported-software/c/Circuitscape.md | 2 +- docs/version-specific/supported-software/c/Clair3.md | 2 +- docs/version-specific/supported-software/c/Clang-AOMP.md | 2 +- .../supported-software/c/Clang-Python-bindings.md | 2 +- docs/version-specific/supported-software/c/Clang.md | 2 +- docs/version-specific/supported-software/c/Clarabel.rs.md | 2 +- docs/version-specific/supported-software/c/CliMetLab.md | 2 +- docs/version-specific/supported-software/c/ClonalFrameML.md | 2 +- docs/version-specific/supported-software/c/CloudCompare.md | 2 +- docs/version-specific/supported-software/c/Clp.md | 2 +- docs/version-specific/supported-software/c/Clustal-Omega.md | 2 +- docs/version-specific/supported-software/c/ClustalW2.md | 2 +- docs/version-specific/supported-software/c/Cluster-Buster.md | 2 +- docs/version-specific/supported-software/c/ClusterShell.md | 2 +- docs/version-specific/supported-software/c/CmdStanR.md | 2 +- docs/version-specific/supported-software/c/Co-phylog.md | 2 +- docs/version-specific/supported-software/c/CoCoALib.md | 2 +- docs/version-specific/supported-software/c/CoSymLib.md | 2 +- docs/version-specific/supported-software/c/CodAn.md | 2 +- docs/version-specific/supported-software/c/CodingQuarry.md | 2 +- docs/version-specific/supported-software/c/Cogent.md | 2 +- docs/version-specific/supported-software/c/Coin.md | 2 +- docs/version-specific/supported-software/c/CoinUtils.md | 2 +- docs/version-specific/supported-software/c/ColabFold.md | 2 +- docs/version-specific/supported-software/c/Commet.md | 2 +- docs/version-specific/supported-software/c/CompareM.md | 2 +- docs/version-specific/supported-software/c/Compass.md | 2 +- docs/version-specific/supported-software/c/Compress-Raw-Zlib.md | 2 +- docs/version-specific/supported-software/c/Con3F.md | 2 +- docs/version-specific/supported-software/c/Concorde.md | 2 +- .../supported-software/c/ConcurrentVersionsSystem.md | 2 +- .../supported-software/c/ConnectomeWorkbench.md | 2 +- docs/version-specific/supported-software/c/Control-FREEC.md | 2 +- docs/version-specific/supported-software/c/CoordgenLibs.md | 2 +- docs/version-specific/supported-software/c/Coot.md | 2 +- docs/version-specific/supported-software/c/CopyKAT.md | 2 +- docs/version-specific/supported-software/c/Coreutils.md | 2 +- docs/version-specific/supported-software/c/CppHeaderParser.md | 2 +- docs/version-specific/supported-software/c/CppUnit.md | 2 +- docs/version-specific/supported-software/c/CrayCCE.md | 2 +- docs/version-specific/supported-software/c/CrayGNU.md | 2 +- docs/version-specific/supported-software/c/CrayIntel.md | 2 +- docs/version-specific/supported-software/c/CrayPGI.md | 2 +- docs/version-specific/supported-software/c/CrossMap.md | 2 +- docs/version-specific/supported-software/c/CrossTalkZ.md | 2 +- docs/version-specific/supported-software/c/Crumble.md | 2 +- docs/version-specific/supported-software/c/CryptoMiniSat.md | 2 +- docs/version-specific/supported-software/c/CrystFEL.md | 2 +- docs/version-specific/supported-software/c/CuCLARK.md | 2 +- docs/version-specific/supported-software/c/CuPy.md | 2 +- docs/version-specific/supported-software/c/Cube.md | 2 +- docs/version-specific/supported-software/c/CubeGUI.md | 2 +- docs/version-specific/supported-software/c/CubeLib.md | 2 +- docs/version-specific/supported-software/c/CubeWriter.md | 2 +- docs/version-specific/supported-software/c/Cufflinks.md | 2 +- docs/version-specific/supported-software/c/Cython.md | 2 +- docs/version-specific/supported-software/c/Cytoscape.md | 2 +- docs/version-specific/supported-software/c/c-ares.md | 2 +- docs/version-specific/supported-software/c/cDNA_Cupcake.md | 2 +- docs/version-specific/supported-software/c/cURL.md | 2 +- docs/version-specific/supported-software/c/cadaver.md | 2 +- docs/version-specific/supported-software/c/cairo.md | 2 +- docs/version-specific/supported-software/c/cairomm.md | 2 +- docs/version-specific/supported-software/c/canu.md | 2 +- docs/version-specific/supported-software/c/captum.md | 2 +- docs/version-specific/supported-software/c/carputils.md | 2 +- docs/version-specific/supported-software/c/casacore.md | 2 +- docs/version-specific/supported-software/c/castor.md | 2 +- docs/version-specific/supported-software/c/category_encoders.md | 2 +- docs/version-specific/supported-software/c/causallift.md | 2 +- docs/version-specific/supported-software/c/causalml.md | 2 +- docs/version-specific/supported-software/c/ccache.md | 2 +- docs/version-specific/supported-software/c/cclib.md | 2 +- docs/version-specific/supported-software/c/cctbx-base.md | 2 +- docs/version-specific/supported-software/c/cctools.md | 2 +- docs/version-specific/supported-software/c/cdbfasta.md | 2 +- docs/version-specific/supported-software/c/cddlib.md | 2 +- docs/version-specific/supported-software/c/cdo-bindings.md | 2 +- docs/version-specific/supported-software/c/cdsapi.md | 2 +- docs/version-specific/supported-software/c/cell2location.md | 2 +- docs/version-specific/supported-software/c/centerline.md | 2 +- docs/version-specific/supported-software/c/cffi.md | 2 +- docs/version-specific/supported-software/c/cftime.md | 2 +- docs/version-specific/supported-software/c/cget.md | 2 +- docs/version-specific/supported-software/c/charm-gems.md | 2 +- docs/version-specific/supported-software/c/chemprop.md | 2 +- docs/version-specific/supported-software/c/chewBBACA.md | 2 +- docs/version-specific/supported-software/c/chi2comb.md | 2 +- docs/version-specific/supported-software/c/chromVARmotifs.md | 2 +- docs/version-specific/supported-software/c/cicero.md | 2 +- docs/version-specific/supported-software/c/cimfomfa.md | 2 +- docs/version-specific/supported-software/c/cisTEM.md | 2 +- docs/version-specific/supported-software/c/cliquer.md | 2 +- docs/version-specific/supported-software/c/cmocean.md | 2 +- docs/version-specific/supported-software/c/cmph.md | 2 +- docs/version-specific/supported-software/c/code-cli.md | 2 +- docs/version-specific/supported-software/c/code-server.md | 2 +- docs/version-specific/supported-software/c/colossalai.md | 2 +- docs/version-specific/supported-software/c/conan.md | 2 +- docs/version-specific/supported-software/c/configparser.md | 2 +- .../supported-software/c/configurable-http-proxy.md | 2 +- .../supported-software/c/connected-components-3d.md | 2 +- docs/version-specific/supported-software/c/contextily.md | 2 +- docs/version-specific/supported-software/c/cooler.md | 2 +- docs/version-specific/supported-software/c/core-counter.md | 2 +- docs/version-specific/supported-software/c/corner.md | 2 +- docs/version-specific/supported-software/c/coverage.md | 2 +- docs/version-specific/supported-software/c/cowsay.md | 2 +- docs/version-specific/supported-software/c/cpio.md | 2 +- docs/version-specific/supported-software/c/cppy.md | 2 +- docs/version-specific/supported-software/c/cppyy.md | 2 +- docs/version-specific/supported-software/c/cppzmq.md | 2 +- docs/version-specific/supported-software/c/cpu_features.md | 2 +- docs/version-specific/supported-software/c/cram.md | 2 +- docs/version-specific/supported-software/c/cramtools.md | 2 +- docs/version-specific/supported-software/c/crb-blast.md | 2 +- docs/version-specific/supported-software/c/cromwell.md | 2 +- docs/version-specific/supported-software/c/crossguid.md | 2 +- docs/version-specific/supported-software/c/cryoCARE.md | 2 +- docs/version-specific/supported-software/c/cryoDRGN.md | 2 +- docs/version-specific/supported-software/c/cryptography.md | 2 +- docs/version-specific/supported-software/c/cscope.md | 2 +- docs/version-specific/supported-software/c/csvkit.md | 2 +- docs/version-specific/supported-software/c/ctags.md | 2 +- docs/version-specific/supported-software/c/ctffind.md | 2 +- docs/version-specific/supported-software/c/ctffind5.md | 2 +- docs/version-specific/supported-software/c/cuDNN.md | 2 +- docs/version-specific/supported-software/c/cuSPARSELt.md | 2 +- docs/version-specific/supported-software/c/cuTENSOR.md | 2 +- docs/version-specific/supported-software/c/currentNe.md | 2 +- docs/version-specific/supported-software/c/custodian.md | 2 +- docs/version-specific/supported-software/c/cutadapt.md | 2 +- docs/version-specific/supported-software/c/cuteSV.md | 2 +- docs/version-specific/supported-software/c/cwltool.md | 2 +- docs/version-specific/supported-software/c/cxxopts.md | 2 +- docs/version-specific/supported-software/c/cysignals.md | 2 +- docs/version-specific/supported-software/c/cython-blis.md | 2 +- docs/version-specific/supported-software/c/cytoolz.md | 2 +- docs/version-specific/supported-software/c/cytosim.md | 2 +- docs/version-specific/supported-software/c/cyvcf2.md | 2 +- docs/version-specific/supported-software/c/index.md | 2 +- docs/version-specific/supported-software/d/DALI.md | 2 +- docs/version-specific/supported-software/d/DANPOS2.md | 2 +- docs/version-specific/supported-software/d/DAS_Tool.md | 2 +- docs/version-specific/supported-software/d/DB.md | 2 +- docs/version-specific/supported-software/d/DBCSR.md | 2 +- docs/version-specific/supported-software/d/DBD-mysql.md | 2 +- docs/version-specific/supported-software/d/DBG2OLC.md | 2 +- docs/version-specific/supported-software/d/DB_File.md | 2 +- docs/version-specific/supported-software/d/DBus.md | 2 +- docs/version-specific/supported-software/d/DCMTK.md | 2 +- docs/version-specific/supported-software/d/DEICODE.md | 2 +- docs/version-specific/supported-software/d/DETONATE.md | 2 +- docs/version-specific/supported-software/d/DFA.md | 2 +- docs/version-specific/supported-software/d/DFT-D3.md | 2 +- docs/version-specific/supported-software/d/DFT-D4.md | 2 +- docs/version-specific/supported-software/d/DFTB+.md | 2 +- docs/version-specific/supported-software/d/DGL.md | 2 +- docs/version-specific/supported-software/d/DIA-NN.md | 2 +- docs/version-specific/supported-software/d/DIAL.md | 2 +- docs/version-specific/supported-software/d/DIALOGUE.md | 2 +- docs/version-specific/supported-software/d/DIAMOND.md | 2 +- docs/version-specific/supported-software/d/DIRAC.md | 2 +- docs/version-specific/supported-software/d/DLPack.md | 2 +- docs/version-specific/supported-software/d/DL_POLY_4.md | 2 +- docs/version-specific/supported-software/d/DL_POLY_Classic.md | 2 +- docs/version-specific/supported-software/d/DMCfun.md | 2 +- docs/version-specific/supported-software/d/DMLC-Core.md | 2 +- docs/version-specific/supported-software/d/DMTCP.md | 2 +- docs/version-specific/supported-software/d/DOLFIN.md | 2 +- docs/version-specific/supported-software/d/DP3.md | 2 +- docs/version-specific/supported-software/d/DRAGMAP.md | 2 +- docs/version-specific/supported-software/d/DROP.md | 2 +- docs/version-specific/supported-software/d/DSA.md | 2 +- docs/version-specific/supported-software/d/DSRC.md | 2 +- docs/version-specific/supported-software/d/DUBStepR.md | 2 +- docs/version-specific/supported-software/d/Dakota.md | 2 +- docs/version-specific/supported-software/d/DaliLite.md | 2 +- docs/version-specific/supported-software/d/Dalton.md | 2 +- docs/version-specific/supported-software/d/DeMixT.md | 2 +- docs/version-specific/supported-software/d/DeconICA.md | 2 +- docs/version-specific/supported-software/d/DeepLabCut.md | 2 +- docs/version-specific/supported-software/d/DeepLoc.md | 2 +- docs/version-specific/supported-software/d/DeepMod2.md | 2 +- docs/version-specific/supported-software/d/DeepSurv.md | 2 +- docs/version-specific/supported-software/d/Delft3D.md | 2 +- docs/version-specific/supported-software/d/Delly.md | 2 +- docs/version-specific/supported-software/d/DeltaLake.md | 2 +- docs/version-specific/supported-software/d/Demystify.md | 2 +- docs/version-specific/supported-software/d/DendroPy.md | 2 +- docs/version-specific/supported-software/d/DensPart.md | 2 +- docs/version-specific/supported-software/d/Deprecated.md | 2 +- docs/version-specific/supported-software/d/Detectron2.md | 2 +- docs/version-specific/supported-software/d/Devito.md | 2 +- docs/version-specific/supported-software/d/DiCE-ML.md | 2 +- docs/version-specific/supported-software/d/Dice.md | 2 +- docs/version-specific/supported-software/d/DicomBrowser.md | 2 +- docs/version-specific/supported-software/d/DiffBind.md | 2 +- docs/version-specific/supported-software/d/Diffutils.md | 2 +- docs/version-specific/supported-software/d/DistributedStream.md | 2 +- docs/version-specific/supported-software/d/DjVuLibre.md | 2 +- docs/version-specific/supported-software/d/Doris.md | 2 +- docs/version-specific/supported-software/d/DosageConvertor.md | 2 +- docs/version-specific/supported-software/d/DoubletFinder.md | 2 +- docs/version-specific/supported-software/d/Doxygen.md | 2 +- docs/version-specific/supported-software/d/Drake.md | 2 +- docs/version-specific/supported-software/d/Dsuite.md | 2 +- docs/version-specific/supported-software/d/DualSPHysics.md | 2 +- docs/version-specific/supported-software/d/DyMat.md | 2 +- docs/version-specific/supported-software/d/dRep.md | 2 +- docs/version-specific/supported-software/d/dSFMT.md | 2 +- docs/version-specific/supported-software/d/dadi.md | 2 +- docs/version-specific/supported-software/d/dagitty.md | 2 +- docs/version-specific/supported-software/d/damageproto.md | 2 +- docs/version-specific/supported-software/d/dammit.md | 2 +- docs/version-specific/supported-software/d/dask-labextension.md | 2 +- docs/version-specific/supported-software/d/dask.md | 2 +- docs/version-specific/supported-software/d/datalad.md | 2 +- docs/version-specific/supported-software/d/datamash.md | 2 +- docs/version-specific/supported-software/d/davix.md | 2 +- docs/version-specific/supported-software/d/dbus-glib.md | 2 +- docs/version-specific/supported-software/d/dclone.md | 2 +- docs/version-specific/supported-software/d/dcm2niix.md | 2 +- docs/version-specific/supported-software/d/dd.md | 2 +- docs/version-specific/supported-software/d/deal.II.md | 2 +- docs/version-specific/supported-software/d/deap.md | 2 +- docs/version-specific/supported-software/d/decona.md | 2 +- docs/version-specific/supported-software/d/deconf.md | 2 +- docs/version-specific/supported-software/d/deepTools.md | 2 +- docs/version-specific/supported-software/d/deepdiff.md | 2 +- docs/version-specific/supported-software/d/deepfold.md | 2 +- docs/version-specific/supported-software/d/deepmedic.md | 2 +- docs/version-specific/supported-software/d/denseweight.md | 2 +- .../version-specific/supported-software/d/desktop-file-utils.md | 2 +- docs/version-specific/supported-software/d/destiny.md | 2 +- docs/version-specific/supported-software/d/devbio-napari.md | 2 +- docs/version-specific/supported-software/d/dftd3-lib.md | 2 +- docs/version-specific/supported-software/d/dftd4.md | 2 +- docs/version-specific/supported-software/d/dialog.md | 2 +- docs/version-specific/supported-software/d/dicom2nifti.md | 2 +- docs/version-specific/supported-software/d/dijitso.md | 2 +- docs/version-specific/supported-software/d/dill.md | 2 +- docs/version-specific/supported-software/d/distributed.md | 2 +- docs/version-specific/supported-software/d/dlb.md | 2 +- docs/version-specific/supported-software/d/dlib.md | 2 +- docs/version-specific/supported-software/d/dm-haiku.md | 2 +- docs/version-specific/supported-software/d/dm-reverb.md | 2 +- docs/version-specific/supported-software/d/dm-tree.md | 2 +- docs/version-specific/supported-software/d/dominate.md | 2 +- docs/version-specific/supported-software/d/dorado.md | 2 +- .../supported-software/d/dotNET-Core-Runtime.md | 2 +- docs/version-specific/supported-software/d/dotNET-Core.md | 2 +- docs/version-specific/supported-software/d/dotNET-SDK.md | 2 +- docs/version-specific/supported-software/d/double-conversion.md | 2 +- docs/version-specific/supported-software/d/drmaa-python.md | 2 +- docs/version-specific/supported-software/d/dropEst.md | 2 +- docs/version-specific/supported-software/d/dtcmp.md | 2 +- docs/version-specific/supported-software/d/dtcwt.md | 2 +- docs/version-specific/supported-software/d/dune-core.md | 2 +- docs/version-specific/supported-software/d/dune-fem.md | 2 +- docs/version-specific/supported-software/d/duplex-tools.md | 2 +- docs/version-specific/supported-software/d/dx-toolkit.md | 2 +- docs/version-specific/supported-software/d/dxpy.md | 2 +- docs/version-specific/supported-software/d/dynesty.md | 2 +- docs/version-specific/supported-software/d/index.md | 2 +- docs/version-specific/supported-software/e/E-ANTIC.md | 2 +- docs/version-specific/supported-software/e/ECL.md | 2 +- docs/version-specific/supported-software/e/ED2.md | 2 +- docs/version-specific/supported-software/e/EDirect.md | 2 +- docs/version-specific/supported-software/e/EGTtools.md | 2 +- docs/version-specific/supported-software/e/EIGENSOFT.md | 2 +- docs/version-specific/supported-software/e/ELFIO.md | 2 +- docs/version-specific/supported-software/e/ELPA.md | 2 +- docs/version-specific/supported-software/e/ELPH.md | 2 +- docs/version-specific/supported-software/e/ELSI-RCI.md | 2 +- docs/version-specific/supported-software/e/ELSI.md | 2 +- docs/version-specific/supported-software/e/EMAN2.md | 2 +- docs/version-specific/supported-software/e/EMBOSS.md | 2 +- docs/version-specific/supported-software/e/EMU.md | 2 +- docs/version-specific/supported-software/e/EPD.md | 2 +- docs/version-specific/supported-software/e/EPIC.md | 2 +- docs/version-specific/supported-software/e/ESL-Bundle.md | 2 +- docs/version-specific/supported-software/e/ESM-2.md | 2 +- docs/version-specific/supported-software/e/ESMF.md | 2 +- docs/version-specific/supported-software/e/ESMPy.md | 2 +- docs/version-specific/supported-software/e/ESMValTool.md | 2 +- docs/version-specific/supported-software/e/ESPResSo.md | 2 +- docs/version-specific/supported-software/e/ETE.md | 2 +- docs/version-specific/supported-software/e/ETSF_IO.md | 2 +- docs/version-specific/supported-software/e/EUKulele.md | 2 +- docs/version-specific/supported-software/e/EVcouplings.md | 2 +- docs/version-specific/supported-software/e/EZC3D.md | 2 +- docs/version-specific/supported-software/e/EasyBuild.md | 2 +- docs/version-specific/supported-software/e/EasyMocap.md | 2 +- docs/version-specific/supported-software/e/EasyQC.md | 2 +- docs/version-specific/supported-software/e/EggLib.md | 2 +- docs/version-specific/supported-software/e/Eigen.md | 2 +- docs/version-specific/supported-software/e/EigenExa.md | 2 +- docs/version-specific/supported-software/e/Elk.md | 2 +- docs/version-specific/supported-software/e/Elmer.md | 2 +- docs/version-specific/supported-software/e/Emacs.md | 2 +- docs/version-specific/supported-software/e/Embree.md | 2 +- docs/version-specific/supported-software/e/EnergyPlus.md | 2 +- docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md | 2 +- docs/version-specific/supported-software/e/EpiSCORE.md | 2 +- docs/version-specific/supported-software/e/EricScript.md | 2 +- docs/version-specific/supported-software/e/Essentia.md | 2 +- docs/version-specific/supported-software/e/Evcxr-REPL.md | 2 +- docs/version-specific/supported-software/e/EveryBeam.md | 2 +- docs/version-specific/supported-software/e/EvidentialGene.md | 2 +- docs/version-specific/supported-software/e/ExaBayes.md | 2 +- docs/version-specific/supported-software/e/ExaML.md | 2 +- docs/version-specific/supported-software/e/Excel-Writer-XLSX.md | 2 +- docs/version-specific/supported-software/e/ExifTool.md | 2 +- docs/version-specific/supported-software/e/Exonerate.md | 2 +- .../supported-software/e/ExpressBetaDiversity.md | 2 +- docs/version-specific/supported-software/e/Extrae.md | 2 +- docs/version-specific/supported-software/e/ExtremeLy.md | 2 +- docs/version-specific/supported-software/e/e3nn.md | 2 +- docs/version-specific/supported-software/e/eQuilibrator.md | 2 +- docs/version-specific/supported-software/e/eSpeak-NG.md | 2 +- docs/version-specific/supported-software/e/eXpress.md | 2 +- docs/version-specific/supported-software/e/ea-utils.md | 2 +- docs/version-specific/supported-software/e/earthengine-api.md | 2 +- docs/version-specific/supported-software/e/easel.md | 2 +- docs/version-specific/supported-software/e/ebGSEA.md | 2 +- docs/version-specific/supported-software/e/ecBuild.md | 2 +- docs/version-specific/supported-software/e/ecCodes.md | 2 +- docs/version-specific/supported-software/e/ecFlow.md | 2 +- docs/version-specific/supported-software/e/eccodes-python.md | 2 +- docs/version-specific/supported-software/e/eclib.md | 2 +- docs/version-specific/supported-software/e/edlib.md | 2 +- docs/version-specific/supported-software/e/eggnog-mapper.md | 2 +- docs/version-specific/supported-software/e/eht-imaging.md | 2 +- docs/version-specific/supported-software/e/einops.md | 2 +- docs/version-specific/supported-software/e/elastix.md | 2 +- docs/version-specific/supported-software/e/elbencho.md | 2 +- docs/version-specific/supported-software/e/elfutils.md | 2 +- docs/version-specific/supported-software/e/elprep.md | 2 +- docs/version-specific/supported-software/e/emcee.md | 2 +- docs/version-specific/supported-software/e/enaBrowserTool.md | 2 +- docs/version-specific/supported-software/e/enchant-2.md | 2 +- docs/version-specific/supported-software/e/enchant.md | 2 +- docs/version-specific/supported-software/e/ensmallen.md | 2 +- docs/version-specific/supported-software/e/entrypoints.md | 2 +- docs/version-specific/supported-software/e/epct.md | 2 +- docs/version-specific/supported-software/e/epiScanpy.md | 2 +- docs/version-specific/supported-software/e/eudev.md | 2 +- docs/version-specific/supported-software/e/evince.md | 2 +- docs/version-specific/supported-software/e/evmix.md | 2 +- docs/version-specific/supported-software/e/exiv2.md | 2 +- docs/version-specific/supported-software/e/expat.md | 2 +- docs/version-specific/supported-software/e/expect.md | 2 +- docs/version-specific/supported-software/e/expecttest.md | 2 +- docs/version-specific/supported-software/e/index.md | 2 +- docs/version-specific/supported-software/f/FACE.md | 2 +- docs/version-specific/supported-software/f/FALCON.md | 2 +- docs/version-specific/supported-software/f/FANN.md | 2 +- docs/version-specific/supported-software/f/FASTA.md | 2 +- docs/version-specific/supported-software/f/FASTX-Toolkit.md | 2 +- docs/version-specific/supported-software/f/FBPIC.md | 2 +- docs/version-specific/supported-software/f/FCC.md | 2 +- docs/version-specific/supported-software/f/FCM.md | 2 +- docs/version-specific/supported-software/f/FDMNES.md | 2 +- docs/version-specific/supported-software/f/FDS.md | 2 +- docs/version-specific/supported-software/f/FDTD_Solutions.md | 2 +- docs/version-specific/supported-software/f/FEniCS.md | 2 +- docs/version-specific/supported-software/f/FFAVES.md | 2 +- docs/version-specific/supported-software/f/FFC.md | 2 +- docs/version-specific/supported-software/f/FFLAS-FFPACK.md | 2 +- docs/version-specific/supported-software/f/FFTW.MPI.md | 2 +- docs/version-specific/supported-software/f/FFTW.md | 2 +- docs/version-specific/supported-software/f/FFmpeg.md | 2 +- docs/version-specific/supported-software/f/FGSL.md | 2 +- docs/version-specific/supported-software/f/FHI-aims.md | 2 +- docs/version-specific/supported-software/f/FIAT.md | 2 +- docs/version-specific/supported-software/f/FIGARO.md | 2 +- docs/version-specific/supported-software/f/FIRESTARTER.md | 2 +- docs/version-specific/supported-software/f/FIX.md | 2 +- docs/version-specific/supported-software/f/FIt-SNE.md | 2 +- docs/version-specific/supported-software/f/FLAC.md | 2 +- docs/version-specific/supported-software/f/FLAIR.md | 2 +- docs/version-specific/supported-software/f/FLANN.md | 2 +- docs/version-specific/supported-software/f/FLASH.md | 2 +- docs/version-specific/supported-software/f/FLEUR.md | 2 +- docs/version-specific/supported-software/f/FLINT.md | 2 +- docs/version-specific/supported-software/f/FLTK.md | 2 +- docs/version-specific/supported-software/f/FLUENT.md | 2 +- docs/version-specific/supported-software/f/FMILibrary.md | 2 +- docs/version-specific/supported-software/f/FMM3D.md | 2 +- docs/version-specific/supported-software/f/FMPy.md | 2 +- docs/version-specific/supported-software/f/FMRIprep.md | 2 +- docs/version-specific/supported-software/f/FMS.md | 2 +- docs/version-specific/supported-software/f/FORD.md | 2 +- docs/version-specific/supported-software/f/FOX-Toolkit.md | 2 +- docs/version-specific/supported-software/f/FPM.md | 2 +- docs/version-specific/supported-software/f/FRANz.md | 2 +- docs/version-specific/supported-software/f/FRUIT.md | 2 +- docs/version-specific/supported-software/f/FRUIT_processor.md | 2 +- docs/version-specific/supported-software/f/FSL.md | 2 +- docs/version-specific/supported-software/f/FSLeyes.md | 2 +- docs/version-specific/supported-software/f/FSON.md | 2 +- docs/version-specific/supported-software/f/FTGL.md | 2 +- docs/version-specific/supported-software/f/FUNWAVE-TVD.md | 2 +- docs/version-specific/supported-software/f/FUSE.md | 2 +- docs/version-specific/supported-software/f/FabIO.md | 2 +- docs/version-specific/supported-software/f/Faber.md | 2 +- docs/version-specific/supported-software/f/Faiss.md | 2 +- docs/version-specific/supported-software/f/FastANI.md | 2 +- docs/version-specific/supported-software/f/FastFold.md | 2 +- docs/version-specific/supported-software/f/FastME.md | 2 +- docs/version-specific/supported-software/f/FastQC.md | 2 +- docs/version-specific/supported-software/f/FastQTL.md | 2 +- docs/version-specific/supported-software/f/FastQ_Screen.md | 2 +- docs/version-specific/supported-software/f/FastRFS.md | 2 +- docs/version-specific/supported-software/f/FastTree.md | 2 +- .../version-specific/supported-software/f/FastViromeExplorer.md | 2 +- docs/version-specific/supported-software/f/FastaIndex.md | 2 +- docs/version-specific/supported-software/f/Fastaq.md | 2 +- docs/version-specific/supported-software/f/Ferret.md | 2 +- docs/version-specific/supported-software/f/FigureGen.md | 2 +- docs/version-specific/supported-software/f/Fiji.md | 2 +- docs/version-specific/supported-software/f/Filtlong.md | 2 +- docs/version-specific/supported-software/f/Fiona.md | 2 +- docs/version-specific/supported-software/f/FireWorks.md | 2 +- docs/version-specific/supported-software/f/Firefox.md | 2 +- docs/version-specific/supported-software/f/Flask.md | 2 +- docs/version-specific/supported-software/f/Flexbar.md | 2 +- docs/version-specific/supported-software/f/FlexiBLAS.md | 2 +- docs/version-specific/supported-software/f/FlexiDot.md | 2 +- docs/version-specific/supported-software/f/Flink.md | 2 +- docs/version-specific/supported-software/f/Flye.md | 2 +- docs/version-specific/supported-software/f/FoBiS.md | 2 +- docs/version-specific/supported-software/f/FoX.md | 2 +- docs/version-specific/supported-software/f/FoldX.md | 2 +- docs/version-specific/supported-software/f/FragGeneScan.md | 2 +- docs/version-specific/supported-software/f/FragPipe.md | 2 +- docs/version-specific/supported-software/f/FreeBarcodes.md | 2 +- docs/version-specific/supported-software/f/FreeFEM.md | 2 +- docs/version-specific/supported-software/f/FreeFem++.md | 2 +- docs/version-specific/supported-software/f/FreeImage.md | 2 +- docs/version-specific/supported-software/f/FreeSASA.md | 2 +- docs/version-specific/supported-software/f/FreeSurfer.md | 2 +- docs/version-specific/supported-software/f/FreeTDS.md | 2 +- docs/version-specific/supported-software/f/FreeXL.md | 2 +- docs/version-specific/supported-software/f/FriBidi.md | 2 +- docs/version-specific/supported-software/f/FuSeq.md | 2 +- docs/version-specific/supported-software/f/Fujitsu.md | 2 +- docs/version-specific/supported-software/f/FunGAP.md | 2 +- docs/version-specific/supported-software/f/FusionCatcher.md | 2 +- docs/version-specific/supported-software/f/f90cache.md | 2 +- docs/version-specific/supported-software/f/f90nml.md | 2 +- docs/version-specific/supported-software/f/f90wrap.md | 2 +- docs/version-specific/supported-software/f/faceswap.md | 2 +- docs/version-specific/supported-software/f/fast5.md | 2 +- docs/version-specific/supported-software/f/fastPHASE.md | 2 +- docs/version-specific/supported-software/f/fastStructure.md | 2 +- docs/version-specific/supported-software/f/fasta-reader.md | 2 +- docs/version-specific/supported-software/f/fastahack.md | 2 +- docs/version-specific/supported-software/f/fastai.md | 2 +- docs/version-specific/supported-software/f/fastjet-contrib.md | 2 +- docs/version-specific/supported-software/f/fastjet.md | 2 +- docs/version-specific/supported-software/f/fastml.md | 2 +- docs/version-specific/supported-software/f/fastp.md | 2 +- docs/version-specific/supported-software/f/fastparquet.md | 2 +- docs/version-specific/supported-software/f/fastq-pair.md | 2 +- docs/version-specific/supported-software/f/fastq-tools.md | 2 +- docs/version-specific/supported-software/f/fastqsplitter.md | 2 +- docs/version-specific/supported-software/f/fastqz.md | 2 +- docs/version-specific/supported-software/f/fatslim.md | 2 +- docs/version-specific/supported-software/f/fbm.md | 2 +- docs/version-specific/supported-software/f/fdict.md | 2 +- docs/version-specific/supported-software/f/fdstools.md | 2 +- docs/version-specific/supported-software/f/feh.md | 2 +- docs/version-specific/supported-software/f/fermi-lite.md | 2 +- docs/version-specific/supported-software/f/festival.md | 2 +- docs/version-specific/supported-software/f/fetchMG.md | 2 +- docs/version-specific/supported-software/f/ffmpi.md | 2 +- docs/version-specific/supported-software/f/ffnet.md | 2 +- docs/version-specific/supported-software/f/ffnvcodec.md | 2 +- docs/version-specific/supported-software/f/fftlib.md | 2 +- docs/version-specific/supported-software/f/fgbio.md | 2 +- docs/version-specific/supported-software/f/file.md | 2 +- docs/version-specific/supported-software/f/filevercmp.md | 2 +- docs/version-specific/supported-software/f/find_circ.md | 2 +- docs/version-specific/supported-software/f/finder.md | 2 +- docs/version-specific/supported-software/f/findhap.md | 2 +- docs/version-specific/supported-software/f/findutils.md | 2 +- docs/version-specific/supported-software/f/fineRADstructure.md | 2 +- docs/version-specific/supported-software/f/fineSTRUCTURE.md | 2 +- docs/version-specific/supported-software/f/fio.md | 2 +- docs/version-specific/supported-software/f/fixesproto.md | 2 +- docs/version-specific/supported-software/f/flair-NLP.md | 2 +- .../version-specific/supported-software/f/flatbuffers-python.md | 2 +- docs/version-specific/supported-software/f/flatbuffers.md | 2 +- docs/version-specific/supported-software/f/flex.md | 2 +- docs/version-specific/supported-software/f/flit.md | 2 +- docs/version-specific/supported-software/f/flook.md | 2 +- docs/version-specific/supported-software/f/flowFDA.md | 2 +- docs/version-specific/supported-software/f/fmt.md | 2 +- docs/version-specific/supported-software/f/fontconfig.md | 2 +- docs/version-specific/supported-software/f/fontsproto.md | 2 +- docs/version-specific/supported-software/f/forbear.md | 2 +- docs/version-specific/supported-software/f/foss.md | 2 +- docs/version-specific/supported-software/f/fosscuda.md | 2 +- docs/version-specific/supported-software/f/fplll.md | 2 +- docs/version-specific/supported-software/f/fpocket.md | 2 +- docs/version-specific/supported-software/f/fpylll.md | 2 +- docs/version-specific/supported-software/f/fqtrim.md | 2 +- docs/version-specific/supported-software/f/fqzcomp.md | 2 +- docs/version-specific/supported-software/f/freebayes.md | 2 +- docs/version-specific/supported-software/f/freeglut.md | 2 +- docs/version-specific/supported-software/f/freetype-py.md | 2 +- docs/version-specific/supported-software/f/freetype.md | 2 +- docs/version-specific/supported-software/f/freud-analysis.md | 2 +- docs/version-specific/supported-software/f/fsom.md | 2 +- docs/version-specific/supported-software/f/ftfy.md | 2 +- docs/version-specific/supported-software/f/fugue.md | 2 +- docs/version-specific/supported-software/f/fullrmc.md | 2 +- docs/version-specific/supported-software/f/fumi_tools.md | 2 +- docs/version-specific/supported-software/f/funannotate.md | 2 +- docs/version-specific/supported-software/f/futhark.md | 2 +- docs/version-specific/supported-software/f/futile.md | 2 +- docs/version-specific/supported-software/f/future.md | 2 +- docs/version-specific/supported-software/f/fxtract.md | 2 +- docs/version-specific/supported-software/f/index.md | 2 +- docs/version-specific/supported-software/g/G-PhoCS.md | 2 +- docs/version-specific/supported-software/g/GAMESS-US.md | 2 +- docs/version-specific/supported-software/g/GAPPadder.md | 2 +- docs/version-specific/supported-software/g/GARLI.md | 2 +- docs/version-specific/supported-software/g/GAT.md | 2 +- docs/version-specific/supported-software/g/GATB-Core.md | 2 +- docs/version-specific/supported-software/g/GATE.md | 2 +- docs/version-specific/supported-software/g/GATK.md | 2 +- docs/version-specific/supported-software/g/GBprocesS.md | 2 +- docs/version-specific/supported-software/g/GC3Pie.md | 2 +- docs/version-specific/supported-software/g/GCC.md | 2 +- docs/version-specific/supported-software/g/GCCcore.md | 2 +- docs/version-specific/supported-software/g/GCTA.md | 2 +- docs/version-specific/supported-software/g/GConf.md | 2 +- docs/version-specific/supported-software/g/GD.md | 2 +- docs/version-specific/supported-software/g/GDAL.md | 2 +- docs/version-specific/supported-software/g/GDB.md | 2 +- docs/version-specific/supported-software/g/GDCHART.md | 2 +- docs/version-specific/supported-software/g/GDCM.md | 2 +- docs/version-specific/supported-software/g/GDGraph.md | 2 +- docs/version-specific/supported-software/g/GDRCopy.md | 2 +- docs/version-specific/supported-software/g/GEGL.md | 2 +- docs/version-specific/supported-software/g/GEM-library.md | 2 +- docs/version-specific/supported-software/g/GEM.md | 2 +- docs/version-specific/supported-software/g/GEMMA.md | 2 +- docs/version-specific/supported-software/g/GEOS.md | 2 +- docs/version-specific/supported-software/g/GETORB.md | 2 +- docs/version-specific/supported-software/g/GFF3-toolkit.md | 2 +- docs/version-specific/supported-software/g/GFOLD.md | 2 +- docs/version-specific/supported-software/g/GHC.md | 2 +- docs/version-specific/supported-software/g/GI-DocGen.md | 2 +- docs/version-specific/supported-software/g/GIMIC.md | 2 +- docs/version-specific/supported-software/g/GIMP.md | 2 +- docs/version-specific/supported-software/g/GIMPS.md | 2 +- docs/version-specific/supported-software/g/GKeyll.md | 2 +- docs/version-specific/supported-software/g/GKlib-METIS.md | 2 +- docs/version-specific/supported-software/g/GL2PS.md | 2 +- docs/version-specific/supported-software/g/GLFW.md | 2 +- docs/version-specific/supported-software/g/GLI.md | 2 +- docs/version-specific/supported-software/g/GLIMMER.md | 2 +- docs/version-specific/supported-software/g/GLIMPSE.md | 2 +- docs/version-specific/supported-software/g/GLM-AED.md | 2 +- docs/version-specific/supported-software/g/GLM.md | 2 +- docs/version-specific/supported-software/g/GLPK.md | 2 +- docs/version-specific/supported-software/g/GLib.md | 2 +- docs/version-specific/supported-software/g/GLibmm.md | 2 +- docs/version-specific/supported-software/g/GMAP-GSNAP.md | 2 +- docs/version-specific/supported-software/g/GMP-ECM.md | 2 +- docs/version-specific/supported-software/g/GMP.md | 2 +- docs/version-specific/supported-software/g/GMT.md | 2 +- docs/version-specific/supported-software/g/GNU.md | 2 +- docs/version-specific/supported-software/g/GOATOOLS.md | 2 +- docs/version-specific/supported-software/g/GOBNILP.md | 2 +- .../supported-software/g/GObject-Introspection.md | 2 +- docs/version-specific/supported-software/g/GP2C.md | 2 +- docs/version-specific/supported-software/g/GPAW-setups.md | 2 +- docs/version-specific/supported-software/g/GPAW.md | 2 +- docs/version-specific/supported-software/g/GPy.md | 2 +- docs/version-specific/supported-software/g/GPyOpt.md | 2 +- docs/version-specific/supported-software/g/GPyTorch.md | 2 +- docs/version-specific/supported-software/g/GRASP-suite.md | 2 +- docs/version-specific/supported-software/g/GRASP.md | 2 +- docs/version-specific/supported-software/g/GRASS.md | 2 +- docs/version-specific/supported-software/g/GRIDSS.md | 2 +- docs/version-specific/supported-software/g/GRIT.md | 2 +- docs/version-specific/supported-software/g/GRNBoost.md | 2 +- docs/version-specific/supported-software/g/GROMACS.md | 2 +- docs/version-specific/supported-software/g/GSD.md | 2 +- docs/version-specific/supported-software/g/GSEA.md | 2 +- docs/version-specific/supported-software/g/GSL.md | 2 +- docs/version-specific/supported-software/g/GST-plugins-bad.md | 2 +- docs/version-specific/supported-software/g/GST-plugins-base.md | 2 +- docs/version-specific/supported-software/g/GStreamer.md | 2 +- docs/version-specific/supported-software/g/GTDB-Tk.md | 2 +- docs/version-specific/supported-software/g/GTK+.md | 2 +- docs/version-specific/supported-software/g/GTK2.md | 2 +- docs/version-specific/supported-software/g/GTK3.md | 2 +- docs/version-specific/supported-software/g/GTK4.md | 2 +- docs/version-specific/supported-software/g/GTOOL.md | 2 +- docs/version-specific/supported-software/g/GTS.md | 2 +- docs/version-specific/supported-software/g/GUIDANCE.md | 2 +- docs/version-specific/supported-software/g/GULP.md | 2 +- docs/version-specific/supported-software/g/GUSHR.md | 2 +- docs/version-specific/supported-software/g/Gaia.md | 2 +- docs/version-specific/supported-software/g/GapCloser.md | 2 +- docs/version-specific/supported-software/g/GapFiller.md | 2 +- docs/version-specific/supported-software/g/Gaussian.md | 2 +- docs/version-specific/supported-software/g/Gblocks.md | 2 +- docs/version-specific/supported-software/g/Gctf.md | 2 +- docs/version-specific/supported-software/g/Gdk-Pixbuf.md | 2 +- docs/version-specific/supported-software/g/Gdspy.md | 2 +- docs/version-specific/supported-software/g/Geant4-data.md | 2 +- docs/version-specific/supported-software/g/Geant4.md | 2 +- docs/version-specific/supported-software/g/GenMap.md | 2 +- docs/version-specific/supported-software/g/GeneMark-ET.md | 2 +- docs/version-specific/supported-software/g/GenerativeModels.md | 2 +- docs/version-specific/supported-software/g/GenomeComb.md | 2 +- docs/version-specific/supported-software/g/GenomeMapper.md | 2 +- docs/version-specific/supported-software/g/GenomeTester4.md | 2 +- docs/version-specific/supported-software/g/GenomeThreader.md | 2 +- docs/version-specific/supported-software/g/GenomeTools.md | 2 +- docs/version-specific/supported-software/g/GenomeWorks.md | 2 +- docs/version-specific/supported-software/g/Genome_Profiler.md | 2 +- .../version-specific/supported-software/g/GenotypeHarmonizer.md | 2 +- docs/version-specific/supported-software/g/Gerris.md | 2 +- docs/version-specific/supported-software/g/GetOrganelle.md | 2 +- docs/version-specific/supported-software/g/GffCompare.md | 2 +- docs/version-specific/supported-software/g/Ghostscript.md | 2 +- docs/version-specific/supported-software/g/Gibbs2.md | 2 +- docs/version-specific/supported-software/g/GimmeMotifs.md | 2 +- docs/version-specific/supported-software/g/Giotto-Suite.md | 2 +- docs/version-specific/supported-software/g/GitPython.md | 2 +- docs/version-specific/supported-software/g/Givaro.md | 2 +- docs/version-specific/supported-software/g/Giza.md | 2 +- docs/version-specific/supported-software/g/Glade.md | 2 +- docs/version-specific/supported-software/g/GlimmerHMM.md | 2 +- docs/version-specific/supported-software/g/GlobalArrays.md | 2 +- docs/version-specific/supported-software/g/Globus-CLI.md | 2 +- .../supported-software/g/GlobusConnectPersonal.md | 2 +- docs/version-specific/supported-software/g/Glucose.md | 2 +- docs/version-specific/supported-software/g/GnuTLS.md | 2 +- docs/version-specific/supported-software/g/Go.md | 2 +- docs/version-specific/supported-software/g/Godon.md | 2 +- docs/version-specific/supported-software/g/GraPhlAn.md | 2 +- docs/version-specific/supported-software/g/Grace.md | 2 +- docs/version-specific/supported-software/g/Gradle.md | 2 +- docs/version-specific/supported-software/g/GraphDB.md | 2 +- docs/version-specific/supported-software/g/GraphMap.md | 2 +- docs/version-specific/supported-software/g/GraphMap2.md | 2 +- docs/version-specific/supported-software/g/Graphene.md | 2 +- docs/version-specific/supported-software/g/GraphicsMagick.md | 2 +- docs/version-specific/supported-software/g/Graphviz.md | 2 +- docs/version-specific/supported-software/g/Greenlet.md | 2 +- docs/version-specific/supported-software/g/Grep.md | 2 +- docs/version-specific/supported-software/g/GroIMP.md | 2 +- docs/version-specific/supported-software/g/GromacsWrapper.md | 2 +- docs/version-specific/supported-software/g/Groovy.md | 2 +- docs/version-specific/supported-software/g/GtkSourceView.md | 2 +- docs/version-specific/supported-software/g/Guile.md | 2 +- docs/version-specific/supported-software/g/Gurobi.md | 2 +- docs/version-specific/supported-software/g/g2clib.md | 2 +- docs/version-specific/supported-software/g/g2lib.md | 2 +- docs/version-specific/supported-software/g/g2log.md | 2 +- docs/version-specific/supported-software/g/gRPC.md | 2 +- docs/version-specific/supported-software/g/gSOAP.md | 2 +- docs/version-specific/supported-software/g/gap.md | 2 +- docs/version-specific/supported-software/g/gappa.md | 2 +- docs/version-specific/supported-software/g/garnett.md | 2 +- docs/version-specific/supported-software/g/gawk.md | 2 +- docs/version-specific/supported-software/g/gbasis.md | 2 +- docs/version-specific/supported-software/g/gbs2ploidy.md | 2 +- docs/version-specific/supported-software/g/gc.md | 2 +- docs/version-specific/supported-software/g/gcccuda.md | 2 +- docs/version-specific/supported-software/g/gcloud.md | 2 +- docs/version-specific/supported-software/g/gcsfs.md | 2 +- docs/version-specific/supported-software/g/gdbgui.md | 2 +- docs/version-specific/supported-software/g/gdbm.md | 2 +- docs/version-specific/supported-software/g/gdc-client.md | 2 +- docs/version-specific/supported-software/g/gdist.md | 2 +- docs/version-specific/supported-software/g/gearshifft.md | 2 +- docs/version-specific/supported-software/g/gemelli.md | 2 +- docs/version-specific/supported-software/g/gemmi.md | 2 +- .../supported-software/g/gencore_variant_detection.md | 2 +- docs/version-specific/supported-software/g/gengetopt.md | 2 +- docs/version-specific/supported-software/g/genomepy.md | 2 +- docs/version-specific/supported-software/g/genozip.md | 2 +- docs/version-specific/supported-software/g/gensim.md | 2 +- docs/version-specific/supported-software/g/geocube.md | 2 +- docs/version-specific/supported-software/g/geopandas.md | 2 +- docs/version-specific/supported-software/g/geopy.md | 2 +- docs/version-specific/supported-software/g/georges.md | 2 +- docs/version-specific/supported-software/g/geosphere.md | 2 +- docs/version-specific/supported-software/g/gettext.md | 2 +- docs/version-specific/supported-software/g/gexiv2.md | 2 +- docs/version-specific/supported-software/g/gfbf.md | 2 +- docs/version-specific/supported-software/g/gffread.md | 2 +- docs/version-specific/supported-software/g/gffutils.md | 2 +- docs/version-specific/supported-software/g/gflags.md | 2 +- docs/version-specific/supported-software/g/gh.md | 2 +- docs/version-specific/supported-software/g/giac.md | 2 +- docs/version-specific/supported-software/g/giflib.md | 2 +- docs/version-specific/supported-software/g/gifsicle.md | 2 +- docs/version-specific/supported-software/g/gimkl.md | 2 +- docs/version-specific/supported-software/g/gimpi.md | 2 +- docs/version-specific/supported-software/g/gimpic.md | 2 +- docs/version-specific/supported-software/g/giolf.md | 2 +- docs/version-specific/supported-software/g/giolfc.md | 2 +- docs/version-specific/supported-software/g/git-annex.md | 2 +- docs/version-specific/supported-software/g/git-extras.md | 2 +- docs/version-specific/supported-software/g/git-lfs.md | 2 +- docs/version-specific/supported-software/g/git.md | 2 +- docs/version-specific/supported-software/g/gkmSVM.md | 2 +- docs/version-specific/supported-software/g/glew.md | 2 +- docs/version-specific/supported-software/g/glib-networking.md | 2 +- docs/version-specific/supported-software/g/glibc.md | 2 +- docs/version-specific/supported-software/g/glog.md | 2 +- docs/version-specific/supported-software/g/glproto.md | 2 +- docs/version-specific/supported-software/g/gmpich.md | 2 +- docs/version-specific/supported-software/g/gmpolf.md | 2 +- docs/version-specific/supported-software/g/gmpy2.md | 2 +- docs/version-specific/supported-software/g/gmsh.md | 2 +- docs/version-specific/supported-software/g/gmvapich2.md | 2 +- docs/version-specific/supported-software/g/gmvolf.md | 2 +- docs/version-specific/supported-software/g/gnupg-bundle.md | 2 +- docs/version-specific/supported-software/g/gnuplot.md | 2 +- docs/version-specific/supported-software/g/goalign.md | 2 +- docs/version-specific/supported-software/g/gobff.md | 2 +- docs/version-specific/supported-software/g/goblf.md | 2 +- docs/version-specific/supported-software/g/gofasta.md | 2 +- docs/version-specific/supported-software/g/golf.md | 2 +- docs/version-specific/supported-software/g/gomkl.md | 2 +- docs/version-specific/supported-software/g/gompi.md | 2 +- docs/version-specific/supported-software/g/gompic.md | 2 +- .../version-specific/supported-software/g/google-java-format.md | 2 +- docs/version-specific/supported-software/g/googletest.md | 2 +- docs/version-specific/supported-software/g/gotree.md | 2 +- docs/version-specific/supported-software/g/gperf.md | 2 +- docs/version-specific/supported-software/g/gperftools.md | 2 +- docs/version-specific/supported-software/g/gpustat.md | 2 +- docs/version-specific/supported-software/g/gradunwarp.md | 2 +- docs/version-specific/supported-software/g/graph-tool.md | 2 +- docs/version-specific/supported-software/g/graphite2.md | 2 +- docs/version-specific/supported-software/g/graphviz-python.md | 2 +- docs/version-specific/supported-software/g/gretl.md | 2 +- docs/version-specific/supported-software/g/grib_api.md | 2 +- docs/version-specific/supported-software/g/grid.md | 2 +- docs/version-specific/supported-software/g/groff.md | 2 +- docs/version-specific/supported-software/g/grpcio.md | 2 +- .../supported-software/g/gsettings-desktop-schemas.md | 2 +- docs/version-specific/supported-software/g/gspell.md | 2 +- docs/version-specific/supported-software/g/gsport.md | 2 +- docs/version-specific/supported-software/g/gsutil.md | 2 +- docs/version-specific/supported-software/g/gsw.md | 2 +- docs/version-specific/supported-software/g/gubbins.md | 2 +- docs/version-specific/supported-software/g/guenomu.md | 2 +- docs/version-specific/supported-software/g/gzip.md | 2 +- docs/version-specific/supported-software/g/index.md | 2 +- docs/version-specific/supported-software/h/H5hut.md | 2 +- docs/version-specific/supported-software/h/HAL.md | 2 +- docs/version-specific/supported-software/h/HAPGEN2.md | 2 +- docs/version-specific/supported-software/h/HBase.md | 2 +- docs/version-specific/supported-software/h/HD-BET.md | 2 +- docs/version-specific/supported-software/h/HDBSCAN.md | 2 +- docs/version-specific/supported-software/h/HDDM.md | 2 +- docs/version-specific/supported-software/h/HDF-EOS.md | 2 +- docs/version-specific/supported-software/h/HDF-EOS2.md | 2 +- docs/version-specific/supported-software/h/HDF-EOS5.md | 2 +- docs/version-specific/supported-software/h/HDF.md | 2 +- docs/version-specific/supported-software/h/HDF5.md | 2 +- docs/version-specific/supported-software/h/HDFView.md | 2 +- docs/version-specific/supported-software/h/HEALPix.md | 2 +- docs/version-specific/supported-software/h/HF-Datasets.md | 2 +- docs/version-specific/supported-software/h/HH-suite.md | 2 +- docs/version-specific/supported-software/h/HIP.md | 2 +- docs/version-specific/supported-software/h/HIPS.md | 2 +- docs/version-specific/supported-software/h/HISAT2.md | 2 +- docs/version-specific/supported-software/h/HLAminer.md | 2 +- docs/version-specific/supported-software/h/HMMER.md | 2 +- docs/version-specific/supported-software/h/HMMER2.md | 2 +- docs/version-specific/supported-software/h/HOME.md | 2 +- docs/version-specific/supported-software/h/HOMER.md | 2 +- docs/version-specific/supported-software/h/HOOMD-blue.md | 2 +- docs/version-specific/supported-software/h/HPCC.md | 2 +- docs/version-specific/supported-software/h/HPCG.md | 2 +- docs/version-specific/supported-software/h/HPCX.md | 2 +- docs/version-specific/supported-software/h/HPDBSCAN.md | 2 +- docs/version-specific/supported-software/h/HPL.md | 2 +- docs/version-specific/supported-software/h/HTSeq.md | 2 +- docs/version-specific/supported-software/h/HTSlib.md | 2 +- docs/version-specific/supported-software/h/HTSplotter.md | 2 +- docs/version-specific/supported-software/h/Hadoop.md | 2 +- docs/version-specific/supported-software/h/HarfBuzz.md | 2 +- docs/version-specific/supported-software/h/Harminv.md | 2 +- docs/version-specific/supported-software/h/HeFFTe.md | 2 +- docs/version-specific/supported-software/h/Health-GPS.md | 2 +- docs/version-specific/supported-software/h/Hello.md | 2 +- docs/version-specific/supported-software/h/HepMC.md | 2 +- docs/version-specific/supported-software/h/HepMC3.md | 2 +- docs/version-specific/supported-software/h/HiC-Pro.md | 2 +- docs/version-specific/supported-software/h/HiCExplorer.md | 2 +- docs/version-specific/supported-software/h/HiCMatrix.md | 2 +- docs/version-specific/supported-software/h/HiGHS.md | 2 +- docs/version-specific/supported-software/h/HighFive.md | 2 +- docs/version-specific/supported-software/h/Highway.md | 2 +- docs/version-specific/supported-software/h/Horovod.md | 2 +- docs/version-specific/supported-software/h/HyPhy.md | 2 +- docs/version-specific/supported-software/h/HyPo.md | 2 +- docs/version-specific/supported-software/h/Hybpiper.md | 2 +- docs/version-specific/supported-software/h/Hydra.md | 2 +- docs/version-specific/supported-software/h/HyperQueue.md | 2 +- docs/version-specific/supported-software/h/Hyperopt.md | 2 +- docs/version-specific/supported-software/h/Hypre.md | 2 +- docs/version-specific/supported-software/h/h4toh5.md | 2 +- docs/version-specific/supported-software/h/h5netcdf.md | 2 +- docs/version-specific/supported-software/h/h5py.md | 2 +- docs/version-specific/supported-software/h/hampel.md | 2 +- docs/version-specific/supported-software/h/hanythingondemand.md | 2 +- docs/version-specific/supported-software/h/harmony.md | 2 +- .../supported-software/h/hatch-jupyter-builder.md | 2 +- docs/version-specific/supported-software/h/hatchling.md | 2 +- docs/version-specific/supported-software/h/hdWGCNA.md | 2 +- docs/version-specific/supported-software/h/hdf5storage.md | 2 +- docs/version-specific/supported-software/h/heaptrack.md | 2 +- docs/version-specific/supported-software/h/hector.md | 2 +- docs/version-specific/supported-software/h/help2man.md | 2 +- docs/version-specific/supported-software/h/hevea.md | 2 +- docs/version-specific/supported-software/h/hic-straw.md | 2 +- docs/version-specific/supported-software/h/hierfstat.md | 2 +- docs/version-specific/supported-software/h/hifiasm.md | 2 +- docs/version-specific/supported-software/h/hipSYCL.md | 2 +- docs/version-specific/supported-software/h/hipify-clang.md | 2 +- docs/version-specific/supported-software/h/hiredis.md | 2 +- docs/version-specific/supported-software/h/histolab.md | 2 +- docs/version-specific/supported-software/h/hivtrace.md | 2 +- docs/version-specific/supported-software/h/hl7apy.md | 2 +- docs/version-specific/supported-software/h/hmmcopy_utils.md | 2 +- docs/version-specific/supported-software/h/hmmlearn.md | 2 +- docs/version-specific/supported-software/h/horton.md | 2 +- .../supported-software/h/how_are_we_stranded_here.md | 2 +- docs/version-specific/supported-software/h/htop.md | 2 +- docs/version-specific/supported-software/h/hub.md | 2 +- docs/version-specific/supported-software/h/humann.md | 2 +- docs/version-specific/supported-software/h/hunspell.md | 2 +- docs/version-specific/supported-software/h/hwloc.md | 2 +- docs/version-specific/supported-software/h/hyperspy.md | 2 +- docs/version-specific/supported-software/h/hypothesis.md | 2 +- docs/version-specific/supported-software/h/index.md | 2 +- docs/version-specific/supported-software/i/I-TASSER.md | 2 +- docs/version-specific/supported-software/i/ICA-AROMA.md | 2 +- docs/version-specific/supported-software/i/ICON.md | 2 +- docs/version-specific/supported-software/i/ICU.md | 2 +- docs/version-specific/supported-software/i/IDBA-UD.md | 2 +- docs/version-specific/supported-software/i/IDG.md | 2 +- docs/version-specific/supported-software/i/IGMPlot.md | 2 +- docs/version-specific/supported-software/i/IGV.md | 2 +- docs/version-specific/supported-software/i/IGVTools.md | 2 +- docs/version-specific/supported-software/i/IJulia.md | 2 +- docs/version-specific/supported-software/i/ILAMB.md | 2 +- docs/version-specific/supported-software/i/IMB.md | 2 +- docs/version-specific/supported-software/i/IML.md | 2 +- docs/version-specific/supported-software/i/IMOD.md | 2 +- docs/version-specific/supported-software/i/IMPUTE2.md | 2 +- docs/version-specific/supported-software/i/IMa2.md | 2 +- docs/version-specific/supported-software/i/IMa2p.md | 2 +- docs/version-specific/supported-software/i/INTEGRATE-Neo.md | 2 +- docs/version-specific/supported-software/i/INTEGRATE.md | 2 +- docs/version-specific/supported-software/i/IOR.md | 2 +- docs/version-specific/supported-software/i/IOzone.md | 2 +- docs/version-specific/supported-software/i/IPM.md | 2 +- docs/version-specific/supported-software/i/IPy.md | 2 +- docs/version-specific/supported-software/i/IPython.md | 2 +- docs/version-specific/supported-software/i/IQ-TREE.md | 2 +- docs/version-specific/supported-software/i/IRkernel.md | 2 +- docs/version-specific/supported-software/i/ISA-L.md | 2 +- docs/version-specific/supported-software/i/ISL.md | 2 +- docs/version-specific/supported-software/i/ITK.md | 2 +- docs/version-specific/supported-software/i/ITSTool.md | 2 +- docs/version-specific/supported-software/i/ITSx.md | 2 +- docs/version-specific/supported-software/i/IgBLAST.md | 2 +- docs/version-specific/supported-software/i/ImageJ.md | 2 +- docs/version-specific/supported-software/i/ImageMagick.md | 2 +- docs/version-specific/supported-software/i/Imath.md | 2 +- docs/version-specific/supported-software/i/Imlib2.md | 2 +- docs/version-specific/supported-software/i/InChI.md | 2 +- docs/version-specific/supported-software/i/InParanoid.md | 2 +- docs/version-specific/supported-software/i/Inelastica.md | 2 +- docs/version-specific/supported-software/i/Inferelator.md | 2 +- docs/version-specific/supported-software/i/Infernal.md | 2 +- docs/version-specific/supported-software/i/Infomap.md | 2 +- docs/version-specific/supported-software/i/Inspector.md | 2 +- docs/version-specific/supported-software/i/IntaRNA.md | 2 +- .../supported-software/i/IntelClusterChecker.md | 2 +- docs/version-specific/supported-software/i/IntelDAAL.md | 2 +- docs/version-specific/supported-software/i/IntelPython.md | 2 +- docs/version-specific/supported-software/i/InterOp.md | 2 +- docs/version-specific/supported-software/i/InterProScan.md | 2 +- docs/version-specific/supported-software/i/InterProScan_data.md | 2 +- docs/version-specific/supported-software/i/IonQuant.md | 2 +- docs/version-specific/supported-software/i/Ipopt.md | 2 +- docs/version-specific/supported-software/i/Iris.md | 2 +- docs/version-specific/supported-software/i/IronPython.md | 2 +- docs/version-specific/supported-software/i/IsoNet.md | 2 +- docs/version-specific/supported-software/i/IsoQuant.md | 2 +- docs/version-specific/supported-software/i/IsoSeq.md | 2 +- .../supported-software/i/IsoformSwitchAnalyzeR.md | 2 +- docs/version-specific/supported-software/i/i-PI.md | 2 +- docs/version-specific/supported-software/i/i-cisTarget.md | 2 +- docs/version-specific/supported-software/i/i7z.md | 2 +- docs/version-specific/supported-software/i/iCount.md | 2 +- docs/version-specific/supported-software/i/iVar.md | 2 +- docs/version-specific/supported-software/i/icc.md | 2 +- docs/version-specific/supported-software/i/iccifort.md | 2 +- docs/version-specific/supported-software/i/iccifortcuda.md | 2 +- docs/version-specific/supported-software/i/iced.md | 2 +- docs/version-specific/supported-software/i/ichorCNA.md | 2 +- docs/version-specific/supported-software/i/icmake.md | 2 +- docs/version-specific/supported-software/i/idemux.md | 2 +- docs/version-specific/supported-software/i/ieeg-cli.md | 2 +- docs/version-specific/supported-software/i/ifort.md | 2 +- docs/version-specific/supported-software/i/igraph.md | 2 +- docs/version-specific/supported-software/i/igv-reports.md | 2 +- docs/version-specific/supported-software/i/igvShiny.md | 2 +- docs/version-specific/supported-software/i/iibff.md | 2 +- docs/version-specific/supported-software/i/iimkl.md | 2 +- docs/version-specific/supported-software/i/iimpi.md | 2 +- docs/version-specific/supported-software/i/iimpic.md | 2 +- docs/version-specific/supported-software/i/imagecodecs.md | 2 +- docs/version-specific/supported-software/i/imageio.md | 2 +- docs/version-specific/supported-software/i/imake.md | 2 +- docs/version-specific/supported-software/i/imbalanced-learn.md | 2 +- docs/version-specific/supported-software/i/imgaug.md | 2 +- docs/version-specific/supported-software/i/imkl-FFTW.md | 2 +- docs/version-specific/supported-software/i/imkl.md | 2 +- docs/version-specific/supported-software/i/immunedeconv.md | 2 +- docs/version-specific/supported-software/i/impi.md | 2 +- docs/version-specific/supported-software/i/imutils.md | 2 +- docs/version-specific/supported-software/i/index.md | 2 +- docs/version-specific/supported-software/i/indicators.md | 2 +- docs/version-specific/supported-software/i/inferCNV.md | 2 +- docs/version-specific/supported-software/i/infercnvpy.md | 2 +- docs/version-specific/supported-software/i/inflection.md | 2 +- docs/version-specific/supported-software/i/inih.md | 2 +- docs/version-specific/supported-software/i/inline.md | 2 +- docs/version-specific/supported-software/i/inputproto.md | 2 +- docs/version-specific/supported-software/i/intel-compilers.md | 2 +- docs/version-specific/supported-software/i/intel.md | 2 +- docs/version-specific/supported-software/i/intelcuda.md | 2 +- .../supported-software/i/intervaltree-python.md | 2 +- docs/version-specific/supported-software/i/intervaltree.md | 2 +- docs/version-specific/supported-software/i/intltool.md | 2 +- docs/version-specific/supported-software/i/io_lib.md | 2 +- docs/version-specific/supported-software/i/ioapi.md | 2 +- docs/version-specific/supported-software/i/iodata.md | 2 +- docs/version-specific/supported-software/i/iomkl.md | 2 +- docs/version-specific/supported-software/i/iompi.md | 2 +- docs/version-specific/supported-software/i/iperf.md | 2 +- docs/version-specific/supported-software/i/ipp.md | 2 +- docs/version-specific/supported-software/i/ipympl.md | 2 +- docs/version-specific/supported-software/i/ipyparallel.md | 2 +- docs/version-specific/supported-software/i/ipyrad.md | 2 +- docs/version-specific/supported-software/i/irodsfs.md | 2 +- docs/version-specific/supported-software/i/isoCirc.md | 2 +- docs/version-specific/supported-software/i/ispc.md | 2 +- docs/version-specific/supported-software/i/itac.md | 2 +- docs/version-specific/supported-software/i/itpp.md | 2 +- docs/version-specific/supported-software/j/JAGS.md | 2 +- docs/version-specific/supported-software/j/JAXFrontCE.md | 2 +- docs/version-specific/supported-software/j/JSON-GLib.md | 2 +- docs/version-specific/supported-software/j/JUBE.md | 2 +- docs/version-specific/supported-software/j/JUnit.md | 2 +- docs/version-specific/supported-software/j/JWM.md | 2 +- docs/version-specific/supported-software/j/Jansson.md | 2 +- docs/version-specific/supported-software/j/JasPer.md | 2 +- docs/version-specific/supported-software/j/Jasmine.md | 2 +- docs/version-specific/supported-software/j/Java.md | 2 +- docs/version-specific/supported-software/j/JavaFX.md | 2 +- docs/version-specific/supported-software/j/Jblob.md | 2 +- docs/version-specific/supported-software/j/Jellyfish.md | 2 +- docs/version-specific/supported-software/j/JiTCODE.md | 2 +- docs/version-specific/supported-software/j/Jmol.md | 2 +- docs/version-specific/supported-software/j/Jorg.md | 2 +- docs/version-specific/supported-software/j/JsonCpp.md | 2 +- docs/version-specific/supported-software/j/Judy.md | 2 +- docs/version-specific/supported-software/j/Julia.md | 2 +- docs/version-specific/supported-software/j/Jupyter-bundle.md | 2 +- docs/version-specific/supported-software/j/JupyterHub.md | 2 +- docs/version-specific/supported-software/j/JupyterLab.md | 2 +- docs/version-specific/supported-software/j/JupyterNotebook.md | 2 +- docs/version-specific/supported-software/j/index.md | 2 +- docs/version-specific/supported-software/j/jModelTest.md | 2 +- docs/version-specific/supported-software/j/jax.md | 2 +- docs/version-specific/supported-software/j/jbigkit.md | 2 +- .../supported-software/j/jedi-language-server.md | 2 +- docs/version-specific/supported-software/j/jedi.md | 2 +- docs/version-specific/supported-software/j/jemalloc.md | 2 +- docs/version-specific/supported-software/j/jhbuild.md | 2 +- docs/version-specific/supported-software/j/jiter.md | 2 +- docs/version-specific/supported-software/j/joypy.md | 2 +- docs/version-specific/supported-software/j/jq.md | 2 +- docs/version-specific/supported-software/j/json-c.md | 2 +- docs/version-specific/supported-software/j/json-fortran.md | 2 +- .../supported-software/j/jupyter-contrib-nbextensions.md | 2 +- .../supported-software/j/jupyter-matlab-proxy.md | 2 +- .../supported-software/j/jupyter-resource-usage.md | 2 +- .../supported-software/j/jupyter-rsession-proxy.md | 2 +- .../supported-software/j/jupyter-server-proxy.md | 2 +- docs/version-specific/supported-software/j/jupyter-server.md | 2 +- docs/version-specific/supported-software/j/jupyterlab-lmod.md | 2 +- docs/version-specific/supported-software/j/jupyterlmod.md | 2 +- docs/version-specific/supported-software/j/jxrlib.md | 2 +- docs/version-specific/supported-software/k/KAT.md | 2 +- docs/version-specific/supported-software/k/KITE.md | 2 +- docs/version-specific/supported-software/k/KMC.md | 2 +- docs/version-specific/supported-software/k/KMCP.md | 2 +- docs/version-specific/supported-software/k/KNIME.md | 2 +- docs/version-specific/supported-software/k/KWIML.md | 2 +- docs/version-specific/supported-software/k/KaHIP.md | 2 +- docs/version-specific/supported-software/k/Kaiju.md | 2 +- docs/version-specific/supported-software/k/Kaleido.md | 2 +- docs/version-specific/supported-software/k/Kalign.md | 2 +- docs/version-specific/supported-software/k/Kent_tools.md | 2 +- docs/version-specific/supported-software/k/Keras.md | 2 +- docs/version-specific/supported-software/k/KerasTuner.md | 2 +- docs/version-specific/supported-software/k/KmerGenie.md | 2 +- docs/version-specific/supported-software/k/Kraken.md | 2 +- docs/version-specific/supported-software/k/Kraken2.md | 2 +- docs/version-specific/supported-software/k/KrakenUniq.md | 2 +- docs/version-specific/supported-software/k/Kratos.md | 2 +- docs/version-specific/supported-software/k/KronaTools.md | 2 +- docs/version-specific/supported-software/k/KyotoCabinet.md | 2 +- docs/version-specific/supported-software/k/index.md | 2 +- docs/version-specific/supported-software/k/kWIP.md | 2 +- docs/version-specific/supported-software/k/kallisto.md | 2 +- docs/version-specific/supported-software/k/kb-python.md | 2 +- docs/version-specific/supported-software/k/kbproto.md | 2 +- docs/version-specific/supported-software/k/kedro.md | 2 +- docs/version-specific/supported-software/k/khmer.md | 2 +- docs/version-specific/supported-software/k/kim-api.md | 2 +- docs/version-specific/supported-software/k/kineto.md | 2 +- docs/version-specific/supported-software/k/king.md | 2 +- docs/version-specific/supported-software/k/kma.md | 2 +- docs/version-specific/supported-software/k/kneaddata.md | 2 +- docs/version-specific/supported-software/k/kpcalg.md | 2 +- docs/version-specific/supported-software/k/krbalancing.md | 2 +- docs/version-specific/supported-software/k/kwant.md | 2 +- docs/version-specific/supported-software/l/LADR.md | 2 +- docs/version-specific/supported-software/l/LAME.md | 2 +- docs/version-specific/supported-software/l/LAMMPS.md | 2 +- docs/version-specific/supported-software/l/LAPACK.md | 2 +- docs/version-specific/supported-software/l/LASSO-Python.md | 2 +- docs/version-specific/supported-software/l/LAST.md | 2 +- docs/version-specific/supported-software/l/LASTZ.md | 2 +- docs/version-specific/supported-software/l/LBFGS++.md | 2 +- docs/version-specific/supported-software/l/LCov.md | 2 +- docs/version-specific/supported-software/l/LDC.md | 2 +- docs/version-specific/supported-software/l/LEMON.md | 2 +- docs/version-specific/supported-software/l/LERC.md | 2 +- docs/version-specific/supported-software/l/LHAPDF.md | 2 +- docs/version-specific/supported-software/l/LIANA.md | 2 +- docs/version-specific/supported-software/l/LIBSVM-MATLAB.md | 2 +- docs/version-specific/supported-software/l/LIBSVM-Python.md | 2 +- docs/version-specific/supported-software/l/LIBSVM.md | 2 +- docs/version-specific/supported-software/l/LISFLOOD-FP.md | 2 +- docs/version-specific/supported-software/l/LLDB.md | 2 +- docs/version-specific/supported-software/l/LLVM.md | 2 +- docs/version-specific/supported-software/l/LMDB.md | 2 +- docs/version-specific/supported-software/l/LMfit.md | 2 +- docs/version-specific/supported-software/l/LOHHLA.md | 2 +- docs/version-specific/supported-software/l/LPJmL.md | 2 +- docs/version-specific/supported-software/l/LPeg.md | 2 +- docs/version-specific/supported-software/l/LS-PrePost.md | 2 +- docs/version-specific/supported-software/l/LSD2.md | 2 +- docs/version-specific/supported-software/l/LSMS.md | 2 +- docs/version-specific/supported-software/l/LTR_retriever.md | 2 +- docs/version-specific/supported-software/l/LUMPY.md | 2 +- docs/version-specific/supported-software/l/LUSCUS.md | 2 +- docs/version-specific/supported-software/l/LZO.md | 2 +- docs/version-specific/supported-software/l/L_RNA_scaffolder.md | 2 +- .../supported-software/l/Lab-Streaming-Layer.md | 2 +- docs/version-specific/supported-software/l/Lace.md | 2 +- docs/version-specific/supported-software/l/LangChain.md | 2 +- docs/version-specific/supported-software/l/LayoutParser.md | 2 +- docs/version-specific/supported-software/l/LeadIT.md | 2 +- docs/version-specific/supported-software/l/Leptonica.md | 2 +- docs/version-specific/supported-software/l/LevelDB.md | 2 +- docs/version-specific/supported-software/l/Levenshtein.md | 2 +- docs/version-specific/supported-software/l/LiBis.md | 2 +- docs/version-specific/supported-software/l/LibLZF.md | 2 +- docs/version-specific/supported-software/l/LibSoup.md | 2 +- docs/version-specific/supported-software/l/LibTIFF.md | 2 +- docs/version-specific/supported-software/l/LibUUID.md | 2 +- docs/version-specific/supported-software/l/Libint.md | 2 +- docs/version-specific/supported-software/l/Lighter.md | 2 +- docs/version-specific/supported-software/l/Lightning.md | 2 +- docs/version-specific/supported-software/l/LinBox.md | 2 +- docs/version-specific/supported-software/l/Lingeling.md | 2 +- docs/version-specific/supported-software/l/LittleCMS.md | 2 +- docs/version-specific/supported-software/l/Lmod.md | 2 +- docs/version-specific/supported-software/l/LncLOOM.md | 2 +- docs/version-specific/supported-software/l/LoFreq.md | 2 +- docs/version-specific/supported-software/l/LoRDEC.md | 2 +- docs/version-specific/supported-software/l/LocARNA.md | 2 +- docs/version-specific/supported-software/l/Log-Log4perl.md | 2 +- docs/version-specific/supported-software/l/Loki.md | 2 +- docs/version-specific/supported-software/l/Longshot.md | 2 +- docs/version-specific/supported-software/l/LoopTools.md | 2 +- docs/version-specific/supported-software/l/LtrDetector.md | 2 +- docs/version-specific/supported-software/l/Lua.md | 2 +- docs/version-specific/supported-software/l/LuaJIT.md | 2 +- docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md | 2 +- docs/version-specific/supported-software/l/LuaRocks.md | 2 +- .../supported-software/l/Lucene-Geo-Gazetteer.md | 2 +- docs/version-specific/supported-software/l/index.md | 2 +- docs/version-specific/supported-software/l/lDDT.md | 2 +- .../supported-software/l/lagrangian-filtering.md | 2 +- docs/version-specific/supported-software/l/lancet.md | 2 +- .../supported-software/l/langchain-anthropic.md | 2 +- docs/version-specific/supported-software/l/lavaan.md | 2 +- docs/version-specific/supported-software/l/lcalc.md | 2 +- docs/version-specific/supported-software/l/leafcutter.md | 2 +- docs/version-specific/supported-software/l/leidenalg.md | 2 +- docs/version-specific/supported-software/l/less.md | 2 +- docs/version-specific/supported-software/l/lftp.md | 2 +- docs/version-specific/supported-software/l/libBigWig.md | 2 +- docs/version-specific/supported-software/l/libFLAME.md | 2 +- docs/version-specific/supported-software/l/libGDSII.md | 2 +- docs/version-specific/supported-software/l/libGLU.md | 2 +- docs/version-specific/supported-software/l/libGridXC.md | 2 +- docs/version-specific/supported-software/l/libICE.md | 2 +- docs/version-specific/supported-software/l/libMemcached.md | 2 +- docs/version-specific/supported-software/l/libPSML.md | 2 +- docs/version-specific/supported-software/l/libQGLViewer.md | 2 +- docs/version-specific/supported-software/l/libRmath.md | 2 +- docs/version-specific/supported-software/l/libSBML.md | 2 +- docs/version-specific/supported-software/l/libSM.md | 2 +- docs/version-specific/supported-software/l/libStatGen.md | 2 +- .../version-specific/supported-software/l/libWallModelledLES.md | 2 +- docs/version-specific/supported-software/l/libX11.md | 2 +- docs/version-specific/supported-software/l/libXau.md | 2 +- docs/version-specific/supported-software/l/libXcursor.md | 2 +- docs/version-specific/supported-software/l/libXdamage.md | 2 +- docs/version-specific/supported-software/l/libXdmcp.md | 2 +- docs/version-specific/supported-software/l/libXext.md | 2 +- docs/version-specific/supported-software/l/libXfixes.md | 2 +- docs/version-specific/supported-software/l/libXfont.md | 2 +- docs/version-specific/supported-software/l/libXft.md | 2 +- docs/version-specific/supported-software/l/libXi.md | 2 +- docs/version-specific/supported-software/l/libXinerama.md | 2 +- docs/version-specific/supported-software/l/libXmu.md | 2 +- docs/version-specific/supported-software/l/libXp.md | 2 +- docs/version-specific/supported-software/l/libXpm.md | 2 +- docs/version-specific/supported-software/l/libXrandr.md | 2 +- docs/version-specific/supported-software/l/libXrender.md | 2 +- docs/version-specific/supported-software/l/libXt.md | 2 +- docs/version-specific/supported-software/l/libXxf86vm.md | 2 +- docs/version-specific/supported-software/l/libabigail.md | 2 +- docs/version-specific/supported-software/l/libaec.md | 2 +- docs/version-specific/supported-software/l/libaed2.md | 2 +- docs/version-specific/supported-software/l/libaio.md | 2 +- docs/version-specific/supported-software/l/libarchive.md | 2 +- docs/version-specific/supported-software/l/libav.md | 2 +- docs/version-specific/supported-software/l/libavif.md | 2 +- docs/version-specific/supported-software/l/libbaseencode.md | 2 +- docs/version-specific/supported-software/l/libbitmask.md | 2 +- docs/version-specific/supported-software/l/libbraiding.md | 2 +- docs/version-specific/supported-software/l/libcdms.md | 2 +- docs/version-specific/supported-software/l/libcerf.md | 2 +- docs/version-specific/supported-software/l/libcint.md | 2 +- docs/version-specific/supported-software/l/libcircle.md | 2 +- docs/version-specific/supported-software/l/libcmaes.md | 2 +- docs/version-specific/supported-software/l/libconfig.md | 2 +- docs/version-specific/supported-software/l/libcotp.md | 2 +- docs/version-specific/supported-software/l/libcpuset.md | 2 +- docs/version-specific/supported-software/l/libcroco.md | 2 +- docs/version-specific/supported-software/l/libctl.md | 2 +- docs/version-specific/supported-software/l/libdap.md | 2 +- docs/version-specific/supported-software/l/libde265.md | 2 +- docs/version-specific/supported-software/l/libdeflate.md | 2 +- docs/version-specific/supported-software/l/libdivsufsort.md | 2 +- docs/version-specific/supported-software/l/libdrm.md | 2 +- docs/version-specific/supported-software/l/libdrs.md | 2 +- docs/version-specific/supported-software/l/libdwarf.md | 2 +- docs/version-specific/supported-software/l/libedit.md | 2 +- docs/version-specific/supported-software/l/libelf.md | 2 +- docs/version-specific/supported-software/l/libemf.md | 2 +- docs/version-specific/supported-software/l/libepoxy.md | 2 +- docs/version-specific/supported-software/l/libev.md | 2 +- docs/version-specific/supported-software/l/libevent.md | 2 +- docs/version-specific/supported-software/l/libexif.md | 2 +- docs/version-specific/supported-software/l/libfabric.md | 2 +- docs/version-specific/supported-software/l/libfdf.md | 2 +- docs/version-specific/supported-software/l/libffcall.md | 2 +- docs/version-specific/supported-software/l/libffi.md | 2 +- docs/version-specific/supported-software/l/libfontenc.md | 2 +- docs/version-specific/supported-software/l/libfyaml.md | 2 +- docs/version-specific/supported-software/l/libgcrypt.md | 2 +- docs/version-specific/supported-software/l/libgd.md | 2 +- docs/version-specific/supported-software/l/libgdiplus.md | 2 +- docs/version-specific/supported-software/l/libgeotiff.md | 2 +- docs/version-specific/supported-software/l/libgit2.md | 2 +- docs/version-specific/supported-software/l/libglade.md | 2 +- docs/version-specific/supported-software/l/libglvnd.md | 2 +- docs/version-specific/supported-software/l/libgpg-error.md | 2 +- docs/version-specific/supported-software/l/libgpuarray.md | 2 +- docs/version-specific/supported-software/l/libgtextutils.md | 2 +- docs/version-specific/supported-software/l/libgxps.md | 2 +- docs/version-specific/supported-software/l/libhandy.md | 2 +- docs/version-specific/supported-software/l/libharu.md | 2 +- docs/version-specific/supported-software/l/libheif.md | 2 +- docs/version-specific/supported-software/l/libhomfly.md | 2 +- docs/version-specific/supported-software/l/libibmad.md | 2 +- docs/version-specific/supported-software/l/libibumad.md | 2 +- docs/version-specific/supported-software/l/libiconv.md | 2 +- docs/version-specific/supported-software/l/libidn.md | 2 +- docs/version-specific/supported-software/l/libidn2.md | 2 +- docs/version-specific/supported-software/l/libjpeg-turbo.md | 2 +- docs/version-specific/supported-software/l/libjxl.md | 2 +- docs/version-specific/supported-software/l/libleidenalg.md | 2 +- docs/version-specific/supported-software/l/libmad.md | 2 +- docs/version-specific/supported-software/l/libmatheval.md | 2 +- docs/version-specific/supported-software/l/libmaus2.md | 2 +- docs/version-specific/supported-software/l/libmbd.md | 2 +- docs/version-specific/supported-software/l/libmicrohttpd.md | 2 +- docs/version-specific/supported-software/l/libmo_unpack.md | 2 +- docs/version-specific/supported-software/l/libmypaint.md | 2 +- docs/version-specific/supported-software/l/libnsl.md | 2 +- docs/version-specific/supported-software/l/libobjcryst.md | 2 +- docs/version-specific/supported-software/l/libogg.md | 2 +- docs/version-specific/supported-software/l/libopus.md | 2 +- docs/version-specific/supported-software/l/libosmium.md | 2 +- docs/version-specific/supported-software/l/libpci.md | 2 +- docs/version-specific/supported-software/l/libpciaccess.md | 2 +- docs/version-specific/supported-software/l/libplinkio.md | 2 +- docs/version-specific/supported-software/l/libpng.md | 2 +- docs/version-specific/supported-software/l/libpsl.md | 2 +- docs/version-specific/supported-software/l/libpsortb.md | 2 +- docs/version-specific/supported-software/l/libpspio.md | 2 +- docs/version-specific/supported-software/l/libpthread-stubs.md | 2 +- docs/version-specific/supported-software/l/libreadline.md | 2 +- docs/version-specific/supported-software/l/librosa.md | 2 +- docs/version-specific/supported-software/l/librsb.md | 2 +- docs/version-specific/supported-software/l/librsvg.md | 2 +- docs/version-specific/supported-software/l/librttopo.md | 2 +- docs/version-specific/supported-software/l/libsamplerate.md | 2 +- docs/version-specific/supported-software/l/libsigc++.md | 2 +- docs/version-specific/supported-software/l/libsigsegv.md | 2 +- docs/version-specific/supported-software/l/libsndfile.md | 2 +- docs/version-specific/supported-software/l/libsodium.md | 2 +- docs/version-specific/supported-software/l/libspatialindex.md | 2 +- docs/version-specific/supported-software/l/libspatialite.md | 2 +- docs/version-specific/supported-software/l/libspectre.md | 2 +- docs/version-specific/supported-software/l/libssh.md | 2 +- docs/version-specific/supported-software/l/libsupermesh.md | 2 +- docs/version-specific/supported-software/l/libtar.md | 2 +- docs/version-specific/supported-software/l/libtasn1.md | 2 +- docs/version-specific/supported-software/l/libtecla.md | 2 +- docs/version-specific/supported-software/l/libtirpc.md | 2 +- docs/version-specific/supported-software/l/libtool.md | 2 +- docs/version-specific/supported-software/l/libtree.md | 2 +- docs/version-specific/supported-software/l/libunistring.md | 2 +- docs/version-specific/supported-software/l/libunwind.md | 2 +- docs/version-specific/supported-software/l/libutempter.md | 2 +- docs/version-specific/supported-software/l/libuv.md | 2 +- docs/version-specific/supported-software/l/libvdwxc.md | 2 +- docs/version-specific/supported-software/l/libvorbis.md | 2 +- docs/version-specific/supported-software/l/libvori.md | 2 +- docs/version-specific/supported-software/l/libwebp.md | 2 +- docs/version-specific/supported-software/l/libwpe.md | 2 +- docs/version-specific/supported-software/l/libxc.md | 2 +- docs/version-specific/supported-software/l/libxcb.md | 2 +- docs/version-specific/supported-software/l/libxkbcommon.md | 2 +- docs/version-specific/supported-software/l/libxml++.md | 2 +- docs/version-specific/supported-software/l/libxml2-python.md | 2 +- docs/version-specific/supported-software/l/libxml2.md | 2 +- docs/version-specific/supported-software/l/libxslt.md | 2 +- docs/version-specific/supported-software/l/libxsmm.md | 2 +- docs/version-specific/supported-software/l/libyaml.md | 2 +- docs/version-specific/supported-software/l/libzeep.md | 2 +- docs/version-specific/supported-software/l/libzip.md | 2 +- docs/version-specific/supported-software/l/lie_learn.md | 2 +- docs/version-specific/supported-software/l/lifelines.md | 2 +- docs/version-specific/supported-software/l/liknorm.md | 2 +- docs/version-specific/supported-software/l/likwid.md | 2 +- docs/version-specific/supported-software/l/lil-aretomo.md | 2 +- docs/version-specific/supported-software/l/limix.md | 2 +- docs/version-specific/supported-software/l/line_profiler.md | 2 +- docs/version-specific/supported-software/l/lit.md | 2 +- docs/version-specific/supported-software/l/lmoments3.md | 2 +- docs/version-specific/supported-software/l/logaddexp.md | 2 +- .../supported-software/l/longestrunsubsequence.md | 2 +- docs/version-specific/supported-software/l/longread_umi.md | 2 +- docs/version-specific/supported-software/l/loomR.md | 2 +- docs/version-specific/supported-software/l/loompy.md | 2 +- docs/version-specific/supported-software/l/lpsolve.md | 2 +- docs/version-specific/supported-software/l/lrslib.md | 2 +- docs/version-specific/supported-software/l/lwgrp.md | 2 +- docs/version-specific/supported-software/l/lxml.md | 2 +- docs/version-specific/supported-software/l/lynx.md | 2 +- docs/version-specific/supported-software/l/lz4.md | 2 +- docs/version-specific/supported-software/m/M1QN3.md | 2 +- docs/version-specific/supported-software/m/M3GNet.md | 2 +- docs/version-specific/supported-software/m/M4.md | 2 +- docs/version-specific/supported-software/m/MACH.md | 2 +- docs/version-specific/supported-software/m/MACS2.md | 2 +- docs/version-specific/supported-software/m/MACS3.md | 2 +- docs/version-specific/supported-software/m/MACSE.md | 2 +- docs/version-specific/supported-software/m/MAFFT.md | 2 +- .../supported-software/m/MAGMA-gene-analysis.md | 2 +- docs/version-specific/supported-software/m/MAGeCK.md | 2 +- docs/version-specific/supported-software/m/MAJIQ.md | 2 +- docs/version-specific/supported-software/m/MAKER.md | 2 +- docs/version-specific/supported-software/m/MARS.md | 2 +- docs/version-specific/supported-software/m/MATIO.md | 2 +- docs/version-specific/supported-software/m/MATLAB-Engine.md | 2 +- docs/version-specific/supported-software/m/MATLAB.md | 2 +- docs/version-specific/supported-software/m/MATSim.md | 2 +- docs/version-specific/supported-software/m/MBROLA.md | 2 +- docs/version-specific/supported-software/m/MCL.md | 2 +- docs/version-specific/supported-software/m/MCR.md | 2 +- docs/version-specific/supported-software/m/MDAnalysis.md | 2 +- docs/version-specific/supported-software/m/MDBM.md | 2 +- docs/version-specific/supported-software/m/MDI.md | 2 +- docs/version-specific/supported-software/m/MDSplus-Java.md | 2 +- docs/version-specific/supported-software/m/MDSplus-Python.md | 2 +- docs/version-specific/supported-software/m/MDSplus.md | 2 +- docs/version-specific/supported-software/m/MDTraj.md | 2 +- docs/version-specific/supported-software/m/MEGA.md | 2 +- docs/version-specific/supported-software/m/MEGACC.md | 2 +- docs/version-specific/supported-software/m/MEGAHIT.md | 2 +- docs/version-specific/supported-software/m/MEGAN.md | 2 +- docs/version-specific/supported-software/m/MEM.md | 2 +- docs/version-specific/supported-software/m/MEME.md | 2 +- docs/version-specific/supported-software/m/MEMOTE.md | 2 +- docs/version-specific/supported-software/m/MERCKX.md | 2 +- docs/version-specific/supported-software/m/MESS.md | 2 +- docs/version-specific/supported-software/m/METIS.md | 2 +- docs/version-specific/supported-software/m/MICOM.md | 2 +- docs/version-specific/supported-software/m/MIGRATE-N.md | 2 +- docs/version-specific/supported-software/m/MINC.md | 2 +- docs/version-specific/supported-software/m/MINPACK.md | 2 +- docs/version-specific/supported-software/m/MIRA.md | 2 +- docs/version-specific/supported-software/m/MITObim.md | 2 +- docs/version-specific/supported-software/m/MITgcmutils.md | 2 +- docs/version-specific/supported-software/m/MLC.md | 2 +- docs/version-specific/supported-software/m/MLflow.md | 2 +- docs/version-specific/supported-software/m/MLxtend.md | 2 +- docs/version-specific/supported-software/m/MMSEQ.md | 2 +- docs/version-specific/supported-software/m/MMseqs2.md | 2 +- docs/version-specific/supported-software/m/MNE-Python.md | 2 +- docs/version-specific/supported-software/m/MOABB.md | 2 +- docs/version-specific/supported-software/m/MOABS.md | 2 +- docs/version-specific/supported-software/m/MOB-suite.md | 2 +- docs/version-specific/supported-software/m/MODFLOW.md | 2 +- docs/version-specific/supported-software/m/MOFA2.md | 2 +- docs/version-specific/supported-software/m/MONA.md | 2 +- docs/version-specific/supported-software/m/MONAI-Label.md | 2 +- docs/version-specific/supported-software/m/MONAI.md | 2 +- docs/version-specific/supported-software/m/MOOSE.md | 2 +- docs/version-specific/supported-software/m/MPB.md | 2 +- docs/version-specific/supported-software/m/MPC.md | 2 +- docs/version-specific/supported-software/m/MPFI.md | 2 +- docs/version-specific/supported-software/m/MPFR.md | 2 +- docs/version-specific/supported-software/m/MPICH.md | 2 +- docs/version-specific/supported-software/m/MPICH2.md | 2 +- docs/version-specific/supported-software/m/MPJ-Express.md | 2 +- docs/version-specific/supported-software/m/MRCPP.md | 2 +- docs/version-specific/supported-software/m/MRChem.md | 2 +- docs/version-specific/supported-software/m/MRIcron.md | 2 +- docs/version-specific/supported-software/m/MRPRESSO.md | 2 +- docs/version-specific/supported-software/m/MRtrix.md | 2 +- docs/version-specific/supported-software/m/MSFragger.md | 2 +- docs/version-specific/supported-software/m/MSM.md | 2 +- docs/version-specific/supported-software/m/MSPC.md | 2 +- docs/version-specific/supported-software/m/MTL4.md | 2 +- docs/version-specific/supported-software/m/MUMPS.md | 2 +- docs/version-specific/supported-software/m/MUMmer.md | 2 +- docs/version-specific/supported-software/m/MUSCLE.md | 2 +- docs/version-specific/supported-software/m/MUSCLE3.md | 2 +- docs/version-specific/supported-software/m/MUST.md | 2 +- docs/version-specific/supported-software/m/MVAPICH2.md | 2 +- docs/version-specific/supported-software/m/MView.md | 2 +- docs/version-specific/supported-software/m/MXNet.md | 2 +- docs/version-specific/supported-software/m/MaSuRCA.md | 2 +- docs/version-specific/supported-software/m/Magics.md | 2 +- docs/version-specific/supported-software/m/MagresPython.md | 2 +- docs/version-specific/supported-software/m/Mako.md | 2 +- docs/version-specific/supported-software/m/Mamba.md | 2 +- docs/version-specific/supported-software/m/MapSplice.md | 2 +- docs/version-specific/supported-software/m/Maple.md | 2 +- docs/version-specific/supported-software/m/Maq.md | 2 +- .../supported-software/m/MariaDB-connector-c.md | 2 +- docs/version-specific/supported-software/m/MariaDB.md | 2 +- docs/version-specific/supported-software/m/Markdown.md | 2 +- docs/version-specific/supported-software/m/Mash.md | 2 +- docs/version-specific/supported-software/m/Mashtree.md | 2 +- docs/version-specific/supported-software/m/MathGL.md | 2 +- docs/version-specific/supported-software/m/Mathematica.md | 2 +- docs/version-specific/supported-software/m/Maude.md | 2 +- docs/version-specific/supported-software/m/Maven.md | 2 +- docs/version-specific/supported-software/m/MaxBin.md | 2 +- docs/version-specific/supported-software/m/MaxQuant.md | 2 +- docs/version-specific/supported-software/m/MbedTLS.md | 2 +- docs/version-specific/supported-software/m/MedPy.md | 2 +- docs/version-specific/supported-software/m/Meep.md | 2 +- docs/version-specific/supported-software/m/Megalodon.md | 2 +- docs/version-specific/supported-software/m/Meld.md | 2 +- docs/version-specific/supported-software/m/Mercurial.md | 2 +- docs/version-specific/supported-software/m/Mesa-demos.md | 2 +- docs/version-specific/supported-software/m/Mesa.md | 2 +- docs/version-specific/supported-software/m/Meson.md | 2 +- docs/version-specific/supported-software/m/Mesquite.md | 2 +- docs/version-specific/supported-software/m/MetaBAT.md | 2 +- docs/version-specific/supported-software/m/MetaDecoder.md | 2 +- docs/version-specific/supported-software/m/MetaEuk.md | 2 +- docs/version-specific/supported-software/m/MetaGeneAnnotator.md | 2 +- docs/version-specific/supported-software/m/MetaMorpheus.md | 2 +- docs/version-specific/supported-software/m/MetaPhlAn.md | 2 +- docs/version-specific/supported-software/m/MetaPhlAn2.md | 2 +- docs/version-specific/supported-software/m/MetaboAnalystR.md | 2 +- docs/version-specific/supported-software/m/Metagenome-Atlas.md | 2 +- docs/version-specific/supported-software/m/Metal.md | 2 +- docs/version-specific/supported-software/m/MetalWalls.md | 2 +- docs/version-specific/supported-software/m/Metaxa2.md | 2 +- docs/version-specific/supported-software/m/MethylDackel.md | 2 +- docs/version-specific/supported-software/m/MiGEC.md | 2 +- docs/version-specific/supported-software/m/MiXCR.md | 2 +- docs/version-specific/supported-software/m/MicrobeAnnotator.md | 2 +- docs/version-specific/supported-software/m/Mikado.md | 2 +- docs/version-specific/supported-software/m/Miller.md | 2 +- docs/version-specific/supported-software/m/MinCED.md | 2 +- docs/version-specific/supported-software/m/MinPath.md | 2 +- docs/version-specific/supported-software/m/Mini-XML.md | 2 +- docs/version-specific/supported-software/m/MiniCARD.md | 2 +- docs/version-specific/supported-software/m/MiniSat.md | 2 +- docs/version-specific/supported-software/m/Miniconda2.md | 2 +- docs/version-specific/supported-software/m/Miniconda3.md | 2 +- docs/version-specific/supported-software/m/Miniforge3.md | 2 +- docs/version-specific/supported-software/m/Minimac4.md | 2 +- docs/version-specific/supported-software/m/Minipolish.md | 2 +- docs/version-specific/supported-software/m/Mish-Cuda.md | 2 +- docs/version-specific/supported-software/m/MitoHiFi.md | 2 +- docs/version-specific/supported-software/m/MitoZ.md | 2 +- docs/version-specific/supported-software/m/MixMHC2pred.md | 2 +- docs/version-specific/supported-software/m/Mmg.md | 2 +- docs/version-specific/supported-software/m/ModelTest-NG.md | 2 +- docs/version-specific/supported-software/m/Molcas.md | 2 +- docs/version-specific/supported-software/m/Molden.md | 2 +- docs/version-specific/supported-software/m/Molekel.md | 2 +- docs/version-specific/supported-software/m/Molpro.md | 2 +- docs/version-specific/supported-software/m/Mono.md | 2 +- docs/version-specific/supported-software/m/Monocle3.md | 2 +- docs/version-specific/supported-software/m/MoreRONN.md | 2 +- docs/version-specific/supported-software/m/Mothur.md | 2 +- docs/version-specific/supported-software/m/MotionCor2.md | 2 +- docs/version-specific/supported-software/m/MotionCor3.md | 2 +- docs/version-specific/supported-software/m/MoviePy.md | 2 +- docs/version-specific/supported-software/m/MrBayes.md | 2 +- docs/version-specific/supported-software/m/MuJoCo.md | 2 +- docs/version-specific/supported-software/m/MuPeXI.md | 2 +- docs/version-specific/supported-software/m/MuSiC.md | 2 +- docs/version-specific/supported-software/m/MuTect.md | 2 +- docs/version-specific/supported-software/m/MultiNest.md | 2 +- docs/version-specific/supported-software/m/MultiQC.md | 2 +- .../supported-software/m/MultilevelEstimators.md | 2 +- docs/version-specific/supported-software/m/Multiwfn.md | 2 +- docs/version-specific/supported-software/m/MyCC.md | 2 +- docs/version-specific/supported-software/m/MyMediaLite.md | 2 +- docs/version-specific/supported-software/m/MySQL-python.md | 2 +- docs/version-specific/supported-software/m/MySQL.md | 2 +- docs/version-specific/supported-software/m/Myokit.md | 2 +- docs/version-specific/supported-software/m/index.md | 2 +- docs/version-specific/supported-software/m/m4ri.md | 2 +- docs/version-specific/supported-software/m/m4rie.md | 2 +- docs/version-specific/supported-software/m/maeparser.md | 2 +- docs/version-specific/supported-software/m/magick.md | 2 +- docs/version-specific/supported-software/m/magma.md | 2 +- docs/version-specific/supported-software/m/mahotas.md | 2 +- docs/version-specific/supported-software/m/make.md | 2 +- docs/version-specific/supported-software/m/makedepend.md | 2 +- docs/version-specific/supported-software/m/makedepf90.md | 2 +- docs/version-specific/supported-software/m/makefun.md | 2 +- docs/version-specific/supported-software/m/makeinfo.md | 2 +- docs/version-specific/supported-software/m/mandrake.md | 2 +- docs/version-specific/supported-software/m/mannkendall.md | 2 +- docs/version-specific/supported-software/m/manta.md | 2 +- docs/version-specific/supported-software/m/mapDamage.md | 2 +- docs/version-specific/supported-software/m/matlab-proxy.md | 2 +- docs/version-specific/supported-software/m/matplotlib-inline.md | 2 +- docs/version-specific/supported-software/m/matplotlib.md | 2 +- docs/version-specific/supported-software/m/maturin.md | 2 +- docs/version-specific/supported-software/m/mauveAligner.md | 2 +- docs/version-specific/supported-software/m/mawk.md | 2 +- docs/version-specific/supported-software/m/mayavi.md | 2 +- docs/version-specific/supported-software/m/maze.md | 2 +- docs/version-specific/supported-software/m/mbuffer.md | 2 +- docs/version-specific/supported-software/m/mc.md | 2 +- docs/version-specific/supported-software/m/mctc-lib.md | 2 +- docs/version-specific/supported-software/m/mcu.md | 2 +- docs/version-specific/supported-software/m/mdtest.md | 2 +- docs/version-specific/supported-software/m/mdust.md | 2 +- docs/version-specific/supported-software/m/meRanTK.md | 2 +- docs/version-specific/supported-software/m/meboot.md | 2 +- docs/version-specific/supported-software/m/medImgProc.md | 2 +- docs/version-specific/supported-software/m/medaka.md | 2 +- docs/version-specific/supported-software/m/memkind.md | 2 +- docs/version-specific/supported-software/m/memory-profiler.md | 2 +- docs/version-specific/supported-software/m/memtester.md | 2 +- docs/version-specific/supported-software/m/meshalyzer.md | 2 +- docs/version-specific/supported-software/m/meshio.md | 2 +- docs/version-specific/supported-software/m/meshtool.md | 2 +- docs/version-specific/supported-software/m/meson-python.md | 2 +- docs/version-specific/supported-software/m/metaWRAP.md | 2 +- docs/version-specific/supported-software/m/metaerg.md | 2 +- docs/version-specific/supported-software/m/methylartist.md | 2 +- docs/version-specific/supported-software/m/methylpy.md | 2 +- docs/version-specific/supported-software/m/mfqe.md | 2 +- docs/version-specific/supported-software/m/mgen.md | 2 +- docs/version-specific/supported-software/m/mgltools.md | 2 +- docs/version-specific/supported-software/m/mhcflurry.md | 2 +- docs/version-specific/supported-software/m/mhcnuggets.md | 2 +- docs/version-specific/supported-software/m/miRDeep2.md | 2 +- docs/version-specific/supported-software/m/microctools.md | 2 +- docs/version-specific/supported-software/m/mimalloc.md | 2 +- docs/version-specific/supported-software/m/miniasm.md | 2 +- docs/version-specific/supported-software/m/minibar.md | 2 +- docs/version-specific/supported-software/m/minieigen.md | 2 +- docs/version-specific/supported-software/m/minimap2.md | 2 +- docs/version-specific/supported-software/m/minizip.md | 2 +- docs/version-specific/supported-software/m/misha.md | 2 +- docs/version-specific/supported-software/m/mkl-dnn.md | 2 +- docs/version-specific/supported-software/m/mkl-service.md | 2 +- docs/version-specific/supported-software/m/mkl_fft.md | 2 +- docs/version-specific/supported-software/m/ml-collections.md | 2 +- docs/version-specific/supported-software/m/ml_dtypes.md | 2 +- docs/version-specific/supported-software/m/mlpack.md | 2 +- docs/version-specific/supported-software/m/mm-common.md | 2 +- docs/version-specific/supported-software/m/mmtf-cpp.md | 2 +- docs/version-specific/supported-software/m/modred.md | 2 +- docs/version-specific/supported-software/m/mold.md | 2 +- docs/version-specific/supported-software/m/molecularGSM.md | 2 +- docs/version-specific/supported-software/m/molmod.md | 2 +- docs/version-specific/supported-software/m/mongolite.md | 2 +- docs/version-specific/supported-software/m/moonjit.md | 2 +- docs/version-specific/supported-software/m/mordecai.md | 2 +- docs/version-specific/supported-software/m/morphosamplers.md | 2 +- docs/version-specific/supported-software/m/mosdepth.md | 2 +- docs/version-specific/supported-software/m/motif.md | 2 +- .../version-specific/supported-software/m/motionSegmentation.md | 2 +- docs/version-specific/supported-software/m/mpath.md | 2 +- docs/version-specific/supported-software/m/mpi4py.md | 2 +- docs/version-specific/supported-software/m/mpiP.md | 2 +- docs/version-specific/supported-software/m/mpifileutils.md | 2 +- docs/version-specific/supported-software/m/mpmath.md | 2 +- docs/version-specific/supported-software/m/mrcfile.md | 2 +- docs/version-specific/supported-software/m/msgpack-c.md | 2 +- docs/version-specific/supported-software/m/msprime.md | 2 +- docs/version-specific/supported-software/m/mstore.md | 2 +- docs/version-specific/supported-software/m/muMerge.md | 2 +- docs/version-specific/supported-software/m/muParser.md | 2 +- docs/version-specific/supported-software/m/mujoco-py.md | 2 +- docs/version-specific/supported-software/m/multicharge.md | 2 +- docs/version-specific/supported-software/m/multichoose.md | 2 +- docs/version-specific/supported-software/m/multiprocess.md | 2 +- docs/version-specific/supported-software/m/mumott.md | 2 +- docs/version-specific/supported-software/m/muparserx.md | 2 +- docs/version-specific/supported-software/m/mutil.md | 2 +- docs/version-specific/supported-software/m/mxml.md | 2 +- docs/version-specific/supported-software/m/mxmlplus.md | 2 +- docs/version-specific/supported-software/m/mygene.md | 2 +- docs/version-specific/supported-software/m/mympingpong.md | 2 +- docs/version-specific/supported-software/m/mypy.md | 2 +- docs/version-specific/supported-software/m/mysqlclient.md | 2 +- docs/version-specific/supported-software/n/NAG.md | 2 +- docs/version-specific/supported-software/n/NAGfor.md | 2 +- docs/version-specific/supported-software/n/NAMD.md | 2 +- docs/version-specific/supported-software/n/NASM.md | 2 +- docs/version-specific/supported-software/n/NBO.md | 2 +- docs/version-specific/supported-software/n/NCBI-Toolkit.md | 2 +- docs/version-specific/supported-software/n/NCCL-tests.md | 2 +- docs/version-specific/supported-software/n/NCCL.md | 2 +- docs/version-specific/supported-software/n/NCIPLOT.md | 2 +- docs/version-specific/supported-software/n/NCL.md | 2 +- docs/version-specific/supported-software/n/NCO.md | 2 +- docs/version-specific/supported-software/n/NECI.md | 2 +- docs/version-specific/supported-software/n/NEURON.md | 2 +- docs/version-specific/supported-software/n/NEXUS-CL.md | 2 +- docs/version-specific/supported-software/n/NEdit.md | 2 +- docs/version-specific/supported-software/n/NFFT.md | 2 +- docs/version-specific/supported-software/n/NGLess.md | 2 +- docs/version-specific/supported-software/n/NGS-Python.md | 2 +- docs/version-specific/supported-software/n/NGS.md | 2 +- docs/version-specific/supported-software/n/NGSadmix.md | 2 +- docs/version-specific/supported-software/n/NGSpeciesID.md | 2 +- docs/version-specific/supported-software/n/NIMBLE.md | 2 +- docs/version-specific/supported-software/n/NIfTI.md | 2 +- docs/version-specific/supported-software/n/NLMpy.md | 2 +- docs/version-specific/supported-software/n/NLTK.md | 2 +- docs/version-specific/supported-software/n/NLopt.md | 2 +- docs/version-specific/supported-software/n/NOVOPlasty.md | 2 +- docs/version-specific/supported-software/n/NRGLjubljana.md | 2 +- docs/version-specific/supported-software/n/NSPR.md | 2 +- docs/version-specific/supported-software/n/NSS.md | 2 +- docs/version-specific/supported-software/n/NTL.md | 2 +- docs/version-specific/supported-software/n/NTPoly.md | 2 +- docs/version-specific/supported-software/n/NVHPC.md | 2 +- docs/version-specific/supported-software/n/NVSHMEM.md | 2 +- docs/version-specific/supported-software/n/NWChem.md | 2 +- docs/version-specific/supported-software/n/NanoCaller.md | 2 +- docs/version-specific/supported-software/n/NanoComp.md | 2 +- docs/version-specific/supported-software/n/NanoFilt.md | 2 +- docs/version-specific/supported-software/n/NanoLyse.md | 2 +- docs/version-specific/supported-software/n/NanoPlot.md | 2 +- docs/version-specific/supported-software/n/NanoStat.md | 2 +- docs/version-specific/supported-software/n/NanopolishComp.md | 2 +- docs/version-specific/supported-software/n/Nek5000.md | 2 +- docs/version-specific/supported-software/n/Nektar++.md | 2 +- docs/version-specific/supported-software/n/Net-core.md | 2 +- docs/version-specific/supported-software/n/NetLogo.md | 2 +- docs/version-specific/supported-software/n/NetPIPE.md | 2 +- docs/version-specific/supported-software/n/NetPyNE.md | 2 +- docs/version-specific/supported-software/n/NeuroKit.md | 2 +- docs/version-specific/supported-software/n/NewHybrids.md | 2 +- docs/version-specific/supported-software/n/NextGenMap.md | 2 +- docs/version-specific/supported-software/n/Nextflow.md | 2 +- docs/version-specific/supported-software/n/NiBabel.md | 2 +- docs/version-specific/supported-software/n/Nilearn.md | 2 +- docs/version-specific/supported-software/n/Nim.md | 2 +- docs/version-specific/supported-software/n/Ninja.md | 2 +- docs/version-specific/supported-software/n/Nipype.md | 2 +- docs/version-specific/supported-software/n/Node-RED.md | 2 +- docs/version-specific/supported-software/n/Normaliz.md | 2 +- docs/version-specific/supported-software/n/Nsight-Compute.md | 2 +- docs/version-specific/supported-software/n/Nsight-Systems.md | 2 +- docs/version-specific/supported-software/n/NxTrim.md | 2 +- docs/version-specific/supported-software/n/index.md | 2 +- docs/version-specific/supported-software/n/n2v.md | 2 +- docs/version-specific/supported-software/n/namedlist.md | 2 +- docs/version-specific/supported-software/n/nano.md | 2 +- docs/version-specific/supported-software/n/nanocompore.md | 2 +- docs/version-specific/supported-software/n/nanoflann.md | 2 +- docs/version-specific/supported-software/n/nanoget.md | 2 +- docs/version-specific/supported-software/n/nanomath.md | 2 +- .../supported-software/n/nanomax-analysis-utils.md | 2 +- docs/version-specific/supported-software/n/nanonet.md | 2 +- docs/version-specific/supported-software/n/nanopolish.md | 2 +- docs/version-specific/supported-software/n/napari.md | 2 +- docs/version-specific/supported-software/n/nauty.md | 2 +- docs/version-specific/supported-software/n/nbclassic.md | 2 +- docs/version-specific/supported-software/n/ncbi-vdb.md | 2 +- docs/version-specific/supported-software/n/ncdf4.md | 2 +- docs/version-specific/supported-software/n/ncdu.md | 2 +- docs/version-specific/supported-software/n/ncolor.md | 2 +- docs/version-specific/supported-software/n/ncompress.md | 2 +- docs/version-specific/supported-software/n/ncurses.md | 2 +- docs/version-specific/supported-software/n/ncview.md | 2 +- docs/version-specific/supported-software/n/nd2reader.md | 2 +- docs/version-specific/supported-software/n/ne.md | 2 +- docs/version-specific/supported-software/n/neon.md | 2 +- docs/version-specific/supported-software/n/neptune-client.md | 2 +- docs/version-specific/supported-software/n/netCDF-C++.md | 2 +- docs/version-specific/supported-software/n/netCDF-C++4.md | 2 +- docs/version-specific/supported-software/n/netCDF-Fortran.md | 2 +- docs/version-specific/supported-software/n/netCDF.md | 2 +- docs/version-specific/supported-software/n/netMHC.md | 2 +- docs/version-specific/supported-software/n/netMHCII.md | 2 +- docs/version-specific/supported-software/n/netMHCIIpan.md | 2 +- docs/version-specific/supported-software/n/netMHCpan.md | 2 +- docs/version-specific/supported-software/n/netcdf4-python.md | 2 +- docs/version-specific/supported-software/n/netloc.md | 2 +- docs/version-specific/supported-software/n/nettle.md | 2 +- docs/version-specific/supported-software/n/networkTools.md | 2 +- docs/version-specific/supported-software/n/networkx.md | 2 +- docs/version-specific/supported-software/n/nf-core-mag.md | 2 +- docs/version-specific/supported-software/n/nf-core.md | 2 +- docs/version-specific/supported-software/n/nghttp2.md | 2 +- docs/version-specific/supported-software/n/nghttp3.md | 2 +- docs/version-specific/supported-software/n/nglview.md | 2 +- docs/version-specific/supported-software/n/ngspice.md | 2 +- docs/version-specific/supported-software/n/ngtcp2.md | 2 +- docs/version-specific/supported-software/n/nichenetr.md | 2 +- docs/version-specific/supported-software/n/nifti2dicom.md | 2 +- docs/version-specific/supported-software/n/nlohmann_json.md | 2 +- docs/version-specific/supported-software/n/nnU-Net.md | 2 +- docs/version-specific/supported-software/n/nodejs.md | 2 +- docs/version-specific/supported-software/n/noise.md | 2 +- .../version-specific/supported-software/n/nose-parameterized.md | 2 +- docs/version-specific/supported-software/n/nose3.md | 2 +- docs/version-specific/supported-software/n/novaSTA.md | 2 +- docs/version-specific/supported-software/n/novoalign.md | 2 +- docs/version-specific/supported-software/n/npstat.md | 2 +- docs/version-specific/supported-software/n/nsync.md | 2 +- docs/version-specific/supported-software/n/ntCard.md | 2 +- docs/version-specific/supported-software/n/ntEdit.md | 2 +- docs/version-specific/supported-software/n/ntHits.md | 2 +- docs/version-specific/supported-software/n/num2words.md | 2 +- docs/version-specific/supported-software/n/numactl.md | 2 +- docs/version-specific/supported-software/n/numba.md | 2 +- docs/version-specific/supported-software/n/numdiff.md | 2 +- docs/version-specific/supported-software/n/numexpr.md | 2 +- docs/version-specific/supported-software/n/numpy.md | 2 +- docs/version-specific/supported-software/n/nvitop.md | 2 +- docs/version-specific/supported-software/n/nvofbf.md | 2 +- docs/version-specific/supported-software/n/nvompi.md | 2 +- docs/version-specific/supported-software/n/nvtop.md | 2 +- docs/version-specific/supported-software/o/OBITools.md | 2 +- docs/version-specific/supported-software/o/OBITools3.md | 2 +- docs/version-specific/supported-software/o/OCNet.md | 2 +- docs/version-specific/supported-software/o/OCaml.md | 2 +- docs/version-specific/supported-software/o/OGDF.md | 2 +- docs/version-specific/supported-software/o/OMA.md | 2 +- docs/version-specific/supported-software/o/OMERO.insight.md | 2 +- docs/version-specific/supported-software/o/OMERO.py.md | 2 +- docs/version-specific/supported-software/o/ONNX-Runtime.md | 2 +- docs/version-specific/supported-software/o/ONNX.md | 2 +- docs/version-specific/supported-software/o/OOMPA.md | 2 +- docs/version-specific/supported-software/o/OPARI2.md | 2 +- docs/version-specific/supported-software/o/OPERA-MS.md | 2 +- docs/version-specific/supported-software/o/OPERA.md | 2 +- docs/version-specific/supported-software/o/OR-Tools.md | 2 +- docs/version-specific/supported-software/o/ORCA.md | 2 +- docs/version-specific/supported-software/o/ORFfinder.md | 2 +- docs/version-specific/supported-software/o/OSPRay.md | 2 +- .../supported-software/o/OSU-Micro-Benchmarks.md | 2 +- docs/version-specific/supported-software/o/OTF2.md | 2 +- docs/version-specific/supported-software/o/OVITO.md | 2 +- docs/version-specific/supported-software/o/Oases.md | 2 +- docs/version-specific/supported-software/o/Octave.md | 2 +- docs/version-specific/supported-software/o/Octopus-vcf.md | 2 +- docs/version-specific/supported-software/o/OmegaFold.md | 2 +- docs/version-specific/supported-software/o/Omnipose.md | 2 +- .../supported-software/o/Open-Data-Cube-Core.md | 2 +- docs/version-specific/supported-software/o/OpenAI-Gym.md | 2 +- docs/version-specific/supported-software/o/OpenBLAS.md | 2 +- docs/version-specific/supported-software/o/OpenBabel.md | 2 +- docs/version-specific/supported-software/o/OpenCV.md | 2 +- docs/version-specific/supported-software/o/OpenCensus-python.md | 2 +- docs/version-specific/supported-software/o/OpenCoarrays.md | 2 +- docs/version-specific/supported-software/o/OpenColorIO.md | 2 +- docs/version-specific/supported-software/o/OpenEXR.md | 2 +- docs/version-specific/supported-software/o/OpenFAST.md | 2 +- docs/version-specific/supported-software/o/OpenFOAM-Extend.md | 2 +- docs/version-specific/supported-software/o/OpenFOAM.md | 2 +- docs/version-specific/supported-software/o/OpenFace.md | 2 +- docs/version-specific/supported-software/o/OpenFold.md | 2 +- docs/version-specific/supported-software/o/OpenForceField.md | 2 +- docs/version-specific/supported-software/o/OpenImageIO.md | 2 +- docs/version-specific/supported-software/o/OpenJPEG.md | 2 +- docs/version-specific/supported-software/o/OpenKIM-API.md | 2 +- docs/version-specific/supported-software/o/OpenMEEG.md | 2 +- docs/version-specific/supported-software/o/OpenMM-PLUMED.md | 2 +- docs/version-specific/supported-software/o/OpenMM.md | 2 +- docs/version-specific/supported-software/o/OpenMMTools.md | 2 +- docs/version-specific/supported-software/o/OpenMPI.md | 2 +- docs/version-specific/supported-software/o/OpenMS.md | 2 +- docs/version-specific/supported-software/o/OpenMolcas.md | 2 +- docs/version-specific/supported-software/o/OpenNLP.md | 2 +- docs/version-specific/supported-software/o/OpenPGM.md | 2 +- docs/version-specific/supported-software/o/OpenPIV.md | 2 +- docs/version-specific/supported-software/o/OpenRefine.md | 2 +- docs/version-specific/supported-software/o/OpenSSL.md | 2 +- docs/version-specific/supported-software/o/OpenSceneGraph.md | 2 +- docs/version-specific/supported-software/o/OpenSees.md | 2 +- docs/version-specific/supported-software/o/OpenSlide-Java.md | 2 +- docs/version-specific/supported-software/o/OpenSlide.md | 2 +- docs/version-specific/supported-software/o/OpenStackClient.md | 2 +- docs/version-specific/supported-software/o/OptaDOS.md | 2 +- docs/version-specific/supported-software/o/Optax.md | 2 +- docs/version-specific/supported-software/o/OptiType.md | 2 +- docs/version-specific/supported-software/o/OptiX.md | 2 +- docs/version-specific/supported-software/o/Optuna.md | 2 +- docs/version-specific/supported-software/o/OrfM.md | 2 +- docs/version-specific/supported-software/o/OrthoFinder.md | 2 +- docs/version-specific/supported-software/o/OrthoMCL.md | 2 +- docs/version-specific/supported-software/o/Osi.md | 2 +- docs/version-specific/supported-software/o/index.md | 2 +- docs/version-specific/supported-software/o/ocamlbuild.md | 2 +- docs/version-specific/supported-software/o/occt.md | 2 +- docs/version-specific/supported-software/o/oceanspy.md | 2 +- docs/version-specific/supported-software/o/olaFlow.md | 2 +- docs/version-specific/supported-software/o/olego.md | 2 +- docs/version-specific/supported-software/o/onedrive.md | 2 +- docs/version-specific/supported-software/o/ont-fast5-api.md | 2 +- docs/version-specific/supported-software/o/ont-guppy.md | 2 +- docs/version-specific/supported-software/o/ont-remora.md | 2 +- docs/version-specific/supported-software/o/openCARP.md | 2 +- docs/version-specific/supported-software/o/openkim-models.md | 2 +- docs/version-specific/supported-software/o/openpyxl.md | 2 +- docs/version-specific/supported-software/o/openslide-python.md | 2 +- docs/version-specific/supported-software/o/optiSLang.md | 2 +- docs/version-specific/supported-software/o/orthAgogue.md | 2 +- docs/version-specific/supported-software/o/ownCloud.md | 2 +- docs/version-specific/supported-software/o/oxDNA.md | 2 +- docs/version-specific/supported-software/o/oxford_asl.md | 2 +- docs/version-specific/supported-software/p/PAGAN2.md | 2 +- docs/version-specific/supported-software/p/PAL2NAL.md | 2 +- docs/version-specific/supported-software/p/PALEOMIX.md | 2 +- docs/version-specific/supported-software/p/PAML.md | 2 +- docs/version-specific/supported-software/p/PANDAseq.md | 2 +- docs/version-specific/supported-software/p/PAPI.md | 2 +- docs/version-specific/supported-software/p/PARI-GP.md | 2 +- docs/version-specific/supported-software/p/PASA.md | 2 +- docs/version-specific/supported-software/p/PAUP.md | 2 +- docs/version-specific/supported-software/p/PBSuite.md | 2 +- docs/version-specific/supported-software/p/PBZIP2.md | 2 +- docs/version-specific/supported-software/p/PCAngsd.md | 2 +- docs/version-specific/supported-software/p/PCC.md | 2 +- docs/version-specific/supported-software/p/PCL.md | 2 +- docs/version-specific/supported-software/p/PCMSolver.md | 2 +- docs/version-specific/supported-software/p/PCRE.md | 2 +- docs/version-specific/supported-software/p/PCRE2.md | 2 +- docs/version-specific/supported-software/p/PCRaster.md | 2 +- docs/version-specific/supported-software/p/PDM.md | 2 +- docs/version-specific/supported-software/p/PDT.md | 2 +- docs/version-specific/supported-software/p/PEAR.md | 2 +- docs/version-specific/supported-software/p/PEPT.md | 2 +- docs/version-specific/supported-software/p/PEST++.md | 2 +- docs/version-specific/supported-software/p/PETSc.md | 2 +- docs/version-specific/supported-software/p/PFFT.md | 2 +- docs/version-specific/supported-software/p/PGDSpider.md | 2 +- docs/version-specific/supported-software/p/PGI.md | 2 +- docs/version-specific/supported-software/p/PGPLOT.md | 2 +- docs/version-specific/supported-software/p/PHANOTATE.md | 2 +- docs/version-specific/supported-software/p/PHASE.md | 2 +- docs/version-specific/supported-software/p/PHAST.md | 2 +- docs/version-specific/supported-software/p/PHLAT.md | 2 +- docs/version-specific/supported-software/p/PHYLIP.md | 2 +- docs/version-specific/supported-software/p/PICI-LIGGGHTS.md | 2 +- docs/version-specific/supported-software/p/PICRUSt2.md | 2 +- docs/version-specific/supported-software/p/PIL.md | 2 +- docs/version-specific/supported-software/p/PIMS.md | 2 +- docs/version-specific/supported-software/p/PIPITS.md | 2 +- docs/version-specific/supported-software/p/PIRATE.md | 2 +- docs/version-specific/supported-software/p/PLAMS.md | 2 +- docs/version-specific/supported-software/p/PLAST.md | 2 +- docs/version-specific/supported-software/p/PLINK.md | 2 +- docs/version-specific/supported-software/p/PLINKSEQ.md | 2 +- docs/version-specific/supported-software/p/PLUMED.md | 2 +- docs/version-specific/supported-software/p/PLY.md | 2 +- docs/version-specific/supported-software/p/PLplot.md | 2 +- docs/version-specific/supported-software/p/PMIx.md | 2 +- docs/version-specific/supported-software/p/POT.md | 2 +- docs/version-specific/supported-software/p/POV-Ray.md | 2 +- docs/version-specific/supported-software/p/PPanGGOLiN.md | 2 +- docs/version-specific/supported-software/p/PPfold.md | 2 +- docs/version-specific/supported-software/p/PRANK.md | 2 +- docs/version-specific/supported-software/p/PRC.md | 2 +- docs/version-specific/supported-software/p/PREQUAL.md | 2 +- docs/version-specific/supported-software/p/PRINSEQ.md | 2 +- docs/version-specific/supported-software/p/PRISMS-PF.md | 2 +- docs/version-specific/supported-software/p/PROJ.md | 2 +- docs/version-specific/supported-software/p/PRRTE.md | 2 +- docs/version-specific/supported-software/p/PRSice.md | 2 +- docs/version-specific/supported-software/p/PSASS.md | 2 +- docs/version-specific/supported-software/p/PSI.md | 2 +- docs/version-specific/supported-software/p/PSI4.md | 2 +- docs/version-specific/supported-software/p/PSIPRED.md | 2 +- docs/version-specific/supported-software/p/PSM2.md | 2 +- docs/version-specific/supported-software/p/PSORTb.md | 2 +- docs/version-specific/supported-software/p/PSolver.md | 2 +- docs/version-specific/supported-software/p/PTESFinder.md | 2 +- docs/version-specific/supported-software/p/PYPOWER.md | 2 +- docs/version-specific/supported-software/p/PYTHIA.md | 2 +- docs/version-specific/supported-software/p/PaStiX.md | 2 +- docs/version-specific/supported-software/p/Pandoc.md | 2 +- docs/version-specific/supported-software/p/Panedr.md | 2 +- docs/version-specific/supported-software/p/Pango.md | 2 +- docs/version-specific/supported-software/p/ParMETIS.md | 2 +- docs/version-specific/supported-software/p/ParMGridGen.md | 2 +- docs/version-specific/supported-software/p/ParaView.md | 2 +- docs/version-specific/supported-software/p/Parallel-Hashmap.md | 2 +- docs/version-specific/supported-software/p/ParallelIO.md | 2 +- docs/version-specific/supported-software/p/Paraver.md | 2 +- docs/version-specific/supported-software/p/Parcels.md | 2 +- docs/version-specific/supported-software/p/ParmEd.md | 2 +- docs/version-specific/supported-software/p/Parsl.md | 2 +- docs/version-specific/supported-software/p/PartitionFinder.md | 2 +- docs/version-specific/supported-software/p/PennCNV.md | 2 +- docs/version-specific/supported-software/p/Percolator.md | 2 +- docs/version-specific/supported-software/p/Perl-bundle-CPAN.md | 2 +- docs/version-specific/supported-software/p/Perl.md | 2 +- docs/version-specific/supported-software/p/Perl4-CoreLibs.md | 2 +- docs/version-specific/supported-software/p/Perseus.md | 2 +- docs/version-specific/supported-software/p/PfamScan.md | 2 +- .../supported-software/p/Phantompeakqualtools.md | 2 +- docs/version-specific/supported-software/p/PheWAS.md | 2 +- docs/version-specific/supported-software/p/PheWeb.md | 2 +- docs/version-specific/supported-software/p/Phenoflow.md | 2 +- docs/version-specific/supported-software/p/PhiPack.md | 2 +- docs/version-specific/supported-software/p/Philosopher.md | 2 +- docs/version-specific/supported-software/p/PhyML.md | 2 +- docs/version-specific/supported-software/p/PhyloBayes-MPI.md | 2 +- docs/version-specific/supported-software/p/PhyloPhlAn.md | 2 +- docs/version-specific/supported-software/p/PileOMeth.md | 2 +- docs/version-specific/supported-software/p/Pillow-SIMD.md | 2 +- docs/version-specific/supported-software/p/Pillow.md | 2 +- docs/version-specific/supported-software/p/Pilon.md | 2 +- docs/version-specific/supported-software/p/Pindel.md | 2 +- docs/version-specific/supported-software/p/Pingouin.md | 2 +- docs/version-specific/supported-software/p/Pint.md | 2 +- docs/version-specific/supported-software/p/Pisces.md | 2 +- docs/version-specific/supported-software/p/PlaScope.md | 2 +- docs/version-specific/supported-software/p/PlasmaPy.md | 2 +- docs/version-specific/supported-software/p/Platanus.md | 2 +- docs/version-specific/supported-software/p/Platypus-Opt.md | 2 +- docs/version-specific/supported-software/p/Platypus.md | 2 +- docs/version-specific/supported-software/p/Ploticus.md | 2 +- docs/version-specific/supported-software/p/PnetCDF.md | 2 +- docs/version-specific/supported-software/p/Porechop.md | 2 +- docs/version-specific/supported-software/p/PortAudio.md | 2 +- docs/version-specific/supported-software/p/PortMidi.md | 2 +- docs/version-specific/supported-software/p/Portcullis.md | 2 +- docs/version-specific/supported-software/p/PostgreSQL.md | 2 +- docs/version-specific/supported-software/p/Postgres-XL.md | 2 +- docs/version-specific/supported-software/p/Primer3.md | 2 +- docs/version-specific/supported-software/p/ProBiS.md | 2 +- docs/version-specific/supported-software/p/ProFit.md | 2 +- docs/version-specific/supported-software/p/ProbABEL.md | 2 +- docs/version-specific/supported-software/p/ProjectQ.md | 2 +- docs/version-specific/supported-software/p/ProtHint.md | 2 +- docs/version-specific/supported-software/p/ProteinMPNN.md | 2 +- docs/version-specific/supported-software/p/Proteinortho.md | 2 +- docs/version-specific/supported-software/p/PsiCLASS.md | 2 +- docs/version-specific/supported-software/p/PuLP.md | 2 +- docs/version-specific/supported-software/p/PyAEDT.md | 2 +- docs/version-specific/supported-software/p/PyAMG.md | 2 +- docs/version-specific/supported-software/p/PyAPS3.md | 2 +- docs/version-specific/supported-software/p/PyAV.md | 2 +- docs/version-specific/supported-software/p/PyBerny.md | 2 +- docs/version-specific/supported-software/p/PyBioLib.md | 2 +- docs/version-specific/supported-software/p/PyCUDA.md | 2 +- docs/version-specific/supported-software/p/PyCairo.md | 2 +- docs/version-specific/supported-software/p/PyCalib.md | 2 +- docs/version-specific/supported-software/p/PyCharm.md | 2 +- docs/version-specific/supported-software/p/PyCheMPS2.md | 2 +- docs/version-specific/supported-software/p/PyCifRW.md | 2 +- docs/version-specific/supported-software/p/PyClone.md | 2 +- docs/version-specific/supported-software/p/PyCogent.md | 2 +- docs/version-specific/supported-software/p/PyDamage.md | 2 +- docs/version-specific/supported-software/p/PyDatastream.md | 2 +- docs/version-specific/supported-software/p/PyEVTK.md | 2 +- docs/version-specific/supported-software/p/PyEXR.md | 2 +- docs/version-specific/supported-software/p/PyFFmpeg.md | 2 +- docs/version-specific/supported-software/p/PyFMI.md | 2 +- docs/version-specific/supported-software/p/PyFR.md | 2 +- docs/version-specific/supported-software/p/PyFoam.md | 2 +- docs/version-specific/supported-software/p/PyFrag.md | 2 +- docs/version-specific/supported-software/p/PyGEOS.md | 2 +- docs/version-specific/supported-software/p/PyGObject.md | 2 +- docs/version-specific/supported-software/p/PyGTK.md | 2 +- docs/version-specific/supported-software/p/PyGTS.md | 2 +- docs/version-specific/supported-software/p/PyGWAS.md | 2 +- docs/version-specific/supported-software/p/PyHMMER.md | 2 +- docs/version-specific/supported-software/p/PyImageJ.md | 2 +- docs/version-specific/supported-software/p/PyInstaller.md | 2 +- docs/version-specific/supported-software/p/PyMC.md | 2 +- docs/version-specific/supported-software/p/PyMC3.md | 2 +- docs/version-specific/supported-software/p/PyMOL.md | 2 +- docs/version-specific/supported-software/p/PyNAST.md | 2 +- docs/version-specific/supported-software/p/PyOD.md | 2 +- docs/version-specific/supported-software/p/PyOpenCL.md | 2 +- docs/version-specific/supported-software/p/PyOpenGL.md | 2 +- docs/version-specific/supported-software/p/PyPSA.md | 2 +- docs/version-specific/supported-software/p/PyPy.md | 2 +- docs/version-specific/supported-software/p/PyQt-builder.md | 2 +- docs/version-specific/supported-software/p/PyQt.md | 2 +- docs/version-specific/supported-software/p/PyQt5.md | 2 +- docs/version-specific/supported-software/p/PyQtGraph.md | 2 +- docs/version-specific/supported-software/p/PyRETIS.md | 2 +- docs/version-specific/supported-software/p/PyRe.md | 2 +- docs/version-specific/supported-software/p/PyRosetta.md | 2 +- docs/version-specific/supported-software/p/PySAT.md | 2 +- docs/version-specific/supported-software/p/PySCF.md | 2 +- docs/version-specific/supported-software/p/PySINDy.md | 2 +- docs/version-specific/supported-software/p/PySide2.md | 2 +- docs/version-specific/supported-software/p/PyStan.md | 2 +- docs/version-specific/supported-software/p/PyTables.md | 2 +- docs/version-specific/supported-software/p/PyTensor.md | 2 +- docs/version-specific/supported-software/p/PyTorch-Geometric.md | 2 +- docs/version-specific/supported-software/p/PyTorch-Ignite.md | 2 +- .../supported-software/p/PyTorch-Image-Models.md | 2 +- docs/version-specific/supported-software/p/PyTorch-Lightning.md | 2 +- docs/version-specific/supported-software/p/PyTorch-bundle.md | 2 +- docs/version-specific/supported-software/p/PyTorch.md | 2 +- docs/version-specific/supported-software/p/PyTorch3D.md | 2 +- docs/version-specific/supported-software/p/PyTorchVideo.md | 2 +- docs/version-specific/supported-software/p/PyVCF.md | 2 +- docs/version-specific/supported-software/p/PyVCF3.md | 2 +- docs/version-specific/supported-software/p/PyVista.md | 2 +- docs/version-specific/supported-software/p/PyWBGT.md | 2 +- docs/version-specific/supported-software/p/PyWavelets.md | 2 +- docs/version-specific/supported-software/p/PyYAML.md | 2 +- docs/version-specific/supported-software/p/PyZMQ.md | 2 +- docs/version-specific/supported-software/p/PycURL.md | 2 +- docs/version-specific/supported-software/p/Pychopper.md | 2 +- docs/version-specific/supported-software/p/Pygments.md | 2 +- docs/version-specific/supported-software/p/Pyke3.md | 2 +- docs/version-specific/supported-software/p/Pylint.md | 2 +- docs/version-specific/supported-software/p/Pyomo.md | 2 +- docs/version-specific/supported-software/p/Pyro4.md | 2 +- docs/version-specific/supported-software/p/Pysam.md | 2 +- docs/version-specific/supported-software/p/Pysolar.md | 2 +- .../version-specific/supported-software/p/Python-bundle-PyPI.md | 2 +- docs/version-specific/supported-software/p/Python-bundle.md | 2 +- docs/version-specific/supported-software/p/Python.md | 2 +- docs/version-specific/supported-software/p/index.md | 2 +- docs/version-specific/supported-software/p/p11-kit.md | 2 +- docs/version-specific/supported-software/p/p4-phylogenetics.md | 2 +- docs/version-specific/supported-software/p/p4est.md | 2 +- docs/version-specific/supported-software/p/p4vasp.md | 2 +- docs/version-specific/supported-software/p/p7zip.md | 2 +- docs/version-specific/supported-software/p/pFUnit.md | 2 +- docs/version-specific/supported-software/p/pIRS.md | 2 +- docs/version-specific/supported-software/p/packmol.md | 2 +- docs/version-specific/supported-software/p/pagmo.md | 2 +- docs/version-specific/supported-software/p/pairsnp.md | 2 +- docs/version-specific/supported-software/p/paladin.md | 2 +- docs/version-specific/supported-software/p/panaroo.md | 2 +- docs/version-specific/supported-software/p/pandapower.md | 2 +- docs/version-specific/supported-software/p/pandas-datareader.md | 2 +- docs/version-specific/supported-software/p/pandas.md | 2 +- docs/version-specific/supported-software/p/pangolin.md | 2 +- docs/version-specific/supported-software/p/panito.md | 2 +- .../supported-software/p/parallel-fastq-dump.md | 2 +- docs/version-specific/supported-software/p/parallel.md | 2 +- docs/version-specific/supported-software/p/parameterized.md | 2 +- docs/version-specific/supported-software/p/paramiko.md | 2 +- docs/version-specific/supported-software/p/parasail.md | 2 +- docs/version-specific/supported-software/p/pasta.md | 2 +- docs/version-specific/supported-software/p/pastml.md | 2 +- docs/version-specific/supported-software/p/patch.md | 2 +- docs/version-specific/supported-software/p/patchelf.md | 2 +- docs/version-specific/supported-software/p/path.py.md | 2 +- docs/version-specific/supported-software/p/pauvre.md | 2 +- docs/version-specific/supported-software/p/pbbam.md | 2 +- docs/version-specific/supported-software/p/pbcopper.md | 2 +- docs/version-specific/supported-software/p/pbdagcon.md | 2 +- docs/version-specific/supported-software/p/pbipa.md | 2 +- docs/version-specific/supported-software/p/pblat.md | 2 +- docs/version-specific/supported-software/p/pbmm2.md | 2 +- docs/version-specific/supported-software/p/pbs_python.md | 2 +- docs/version-specific/supported-software/p/pdf2docx.md | 2 +- docs/version-specific/supported-software/p/pdsh.md | 2 +- docs/version-specific/supported-software/p/peakdetect.md | 2 +- .../version-specific/supported-software/p/perl-app-cpanminus.md | 2 +- docs/version-specific/supported-software/p/petsc4py.md | 2 +- docs/version-specific/supported-software/p/pfind.md | 2 +- docs/version-specific/supported-software/p/pftoolsV3.md | 2 +- docs/version-specific/supported-software/p/phonemizer.md | 2 +- docs/version-specific/supported-software/p/phono3py.md | 2 +- docs/version-specific/supported-software/p/phonopy.md | 2 +- docs/version-specific/supported-software/p/photontorch.md | 2 +- docs/version-specific/supported-software/p/phototonic.md | 2 +- docs/version-specific/supported-software/p/phylokit.md | 2 +- docs/version-specific/supported-software/p/phylonaut.md | 2 +- docs/version-specific/supported-software/p/phyluce.md | 2 +- docs/version-specific/supported-software/p/phyx.md | 2 +- docs/version-specific/supported-software/p/piSvM-JSC.md | 2 +- docs/version-specific/supported-software/p/piSvM.md | 2 +- docs/version-specific/supported-software/p/picard.md | 2 +- docs/version-specific/supported-software/p/pigz.md | 2 +- docs/version-specific/supported-software/p/pip.md | 2 +- docs/version-specific/supported-software/p/pixman.md | 2 +- docs/version-specific/supported-software/p/pizzly.md | 2 +- docs/version-specific/supported-software/p/pkg-config.md | 2 +- docs/version-specific/supported-software/p/pkgconf.md | 2 +- docs/version-specific/supported-software/p/pkgconfig.md | 2 +- docs/version-specific/supported-software/p/planarity.md | 2 +- docs/version-specific/supported-software/p/plantcv.md | 2 +- docs/version-specific/supported-software/p/plantri.md | 2 +- docs/version-specific/supported-software/p/plc.md | 2 +- docs/version-specific/supported-software/p/plinkQC.md | 2 +- docs/version-specific/supported-software/p/plinkliftover.md | 2 +- docs/version-specific/supported-software/p/plmc.md | 2 +- docs/version-specific/supported-software/p/plot1cell.md | 2 +- docs/version-specific/supported-software/p/plotly-orca.md | 2 +- docs/version-specific/supported-software/p/plotly.md | 2 +- docs/version-specific/supported-software/p/plotly.py.md | 2 +- docs/version-specific/supported-software/p/plotutils.md | 2 +- docs/version-specific/supported-software/p/pmt.md | 2 +- docs/version-specific/supported-software/p/pmx.md | 2 +- docs/version-specific/supported-software/p/pocl.md | 2 +- docs/version-specific/supported-software/p/pod5-file-format.md | 2 +- docs/version-specific/supported-software/p/poetry.md | 2 +- docs/version-specific/supported-software/p/polars.md | 2 +- docs/version-specific/supported-software/p/polymake.md | 2 +- docs/version-specific/supported-software/p/pomkl.md | 2 +- docs/version-specific/supported-software/p/pompi.md | 2 +- docs/version-specific/supported-software/p/poppler.md | 2 +- docs/version-specific/supported-software/p/poppunk.md | 2 +- docs/version-specific/supported-software/p/popscle.md | 2 +- docs/version-specific/supported-software/p/popt.md | 2 +- docs/version-specific/supported-software/p/porefoam.md | 2 +- docs/version-specific/supported-software/p/poretools.md | 2 +- docs/version-specific/supported-software/p/powerlaw.md | 2 +- docs/version-specific/supported-software/p/pp-sketchlib.md | 2 +- docs/version-specific/supported-software/p/ppl.md | 2 +- docs/version-specific/supported-software/p/pplacer.md | 2 +- docs/version-specific/supported-software/p/pplpy.md | 2 +- docs/version-specific/supported-software/p/preCICE.md | 2 +- docs/version-specific/supported-software/p/premailer.md | 2 +- docs/version-specific/supported-software/p/preseq.md | 2 +- docs/version-specific/supported-software/p/presto.md | 2 +- docs/version-specific/supported-software/p/pretty-yaml.md | 2 +- docs/version-specific/supported-software/p/primecount.md | 2 +- docs/version-specific/supported-software/p/primecountpy.md | 2 +- docs/version-specific/supported-software/p/printproto.md | 2 +- docs/version-specific/supported-software/p/prodigal.md | 2 +- docs/version-specific/supported-software/p/prokka.md | 2 +- docs/version-specific/supported-software/p/prompt-toolkit.md | 2 +- docs/version-specific/supported-software/p/proovread.md | 2 +- docs/version-specific/supported-software/p/propy.md | 2 +- docs/version-specific/supported-software/p/protobuf-python.md | 2 +- docs/version-specific/supported-software/p/protobuf.md | 2 +- docs/version-specific/supported-software/p/protozero.md | 2 +- docs/version-specific/supported-software/p/pscom.md | 2 +- docs/version-specific/supported-software/p/psmc.md | 2 +- docs/version-specific/supported-software/p/psmpi.md | 2 +- docs/version-specific/supported-software/p/psmpi2.md | 2 +- docs/version-specific/supported-software/p/psrecord.md | 2 +- docs/version-specific/supported-software/p/pstoedit.md | 2 +- docs/version-specific/supported-software/p/psutil.md | 2 +- docs/version-specific/supported-software/p/psycopg.md | 2 +- docs/version-specific/supported-software/p/psycopg2.md | 2 +- docs/version-specific/supported-software/p/ptemcee.md | 2 +- docs/version-specific/supported-software/p/pubtcrs.md | 2 +- docs/version-specific/supported-software/p/pugixml.md | 2 +- docs/version-specific/supported-software/p/pullseq.md | 2 +- docs/version-specific/supported-software/p/purge_dups.md | 2 +- docs/version-specific/supported-software/p/pv.md | 2 +- docs/version-specific/supported-software/p/py-aiger-bdd.md | 2 +- docs/version-specific/supported-software/p/py-aiger.md | 2 +- docs/version-specific/supported-software/p/py-c3d.md | 2 +- docs/version-specific/supported-software/p/py-cpuinfo.md | 2 +- docs/version-specific/supported-software/p/py.md | 2 +- docs/version-specific/supported-software/p/py3Dmol.md | 2 +- docs/version-specific/supported-software/p/pyABC.md | 2 +- docs/version-specific/supported-software/p/pyBigWig.md | 2 +- docs/version-specific/supported-software/p/pyEGA3.md | 2 +- docs/version-specific/supported-software/p/pyFAI.md | 2 +- docs/version-specific/supported-software/p/pyFFTW.md | 2 +- docs/version-specific/supported-software/p/pyGAM.md | 2 +- docs/version-specific/supported-software/p/pyGIMLi.md | 2 +- docs/version-specific/supported-software/p/pyGenomeTracks.md | 2 +- docs/version-specific/supported-software/p/pyMannKendall.md | 2 +- docs/version-specific/supported-software/p/pySCENIC.md | 2 +- docs/version-specific/supported-software/p/pyScaf.md | 2 +- docs/version-specific/supported-software/p/pyWannier90.md | 2 +- docs/version-specific/supported-software/p/pyXDF.md | 2 +- docs/version-specific/supported-software/p/pybedtools.md | 2 +- docs/version-specific/supported-software/p/pybind11-stubgen.md | 2 +- docs/version-specific/supported-software/p/pybind11.md | 2 +- docs/version-specific/supported-software/p/pybinding.md | 2 +- docs/version-specific/supported-software/p/pyccel.md | 2 +- docs/version-specific/supported-software/p/pycma.md | 2 +- docs/version-specific/supported-software/p/pycoQC.md | 2 +- docs/version-specific/supported-software/p/pycocotools.md | 2 +- docs/version-specific/supported-software/p/pycodestyle.md | 2 +- docs/version-specific/supported-software/p/pycubescd.md | 2 +- docs/version-specific/supported-software/p/pydantic.md | 2 +- docs/version-specific/supported-software/p/pydicom-seg.md | 2 +- docs/version-specific/supported-software/p/pydicom.md | 2 +- docs/version-specific/supported-software/p/pydlpoly.md | 2 +- docs/version-specific/supported-software/p/pydot.md | 2 +- docs/version-specific/supported-software/p/pyenchant.md | 2 +- docs/version-specific/supported-software/p/pyfaidx.md | 2 +- docs/version-specific/supported-software/p/pyfasta.md | 2 +- docs/version-specific/supported-software/p/pyfits.md | 2 +- docs/version-specific/supported-software/p/pygame.md | 2 +- docs/version-specific/supported-software/p/pygccxml.md | 2 +- docs/version-specific/supported-software/p/pygmo.md | 2 +- docs/version-specific/supported-software/p/pygraphviz.md | 2 +- docs/version-specific/supported-software/p/pygrib.md | 2 +- docs/version-specific/supported-software/p/pyhdf.md | 2 +- docs/version-specific/supported-software/p/pyiron.md | 2 +- docs/version-specific/supported-software/p/pylift.md | 2 +- docs/version-specific/supported-software/p/pylipid.md | 2 +- docs/version-specific/supported-software/p/pymatgen-db.md | 2 +- docs/version-specific/supported-software/p/pymatgen.md | 2 +- docs/version-specific/supported-software/p/pymbar.md | 2 +- docs/version-specific/supported-software/p/pymca.md | 2 +- docs/version-specific/supported-software/p/pymemcache.md | 2 +- docs/version-specific/supported-software/p/pyobjcryst.md | 2 +- docs/version-specific/supported-software/p/pyodbc.md | 2 +- docs/version-specific/supported-software/p/pyparsing.md | 2 +- docs/version-specific/supported-software/p/pyperf.md | 2 +- docs/version-specific/supported-software/p/pyplusplus.md | 2 +- docs/version-specific/supported-software/p/pypmt.md | 2 +- docs/version-specific/supported-software/p/pyproj.md | 2 +- docs/version-specific/supported-software/p/pyqstem.md | 2 +- docs/version-specific/supported-software/p/pyradiomics.md | 2 +- docs/version-specific/supported-software/p/pyringe.md | 2 +- docs/version-specific/supported-software/p/pyro-api.md | 2 +- docs/version-specific/supported-software/p/pyro-ppl.md | 2 +- docs/version-specific/supported-software/p/pysamstats.md | 2 +- docs/version-specific/supported-software/p/pyseer.md | 2 +- docs/version-specific/supported-software/p/pysheds.md | 2 +- docs/version-specific/supported-software/p/pyshp.md | 2 +- docs/version-specific/supported-software/p/pyslim.md | 2 +- docs/version-specific/supported-software/p/pysndfx.md | 2 +- docs/version-specific/supported-software/p/pyspoa.md | 2 +- docs/version-specific/supported-software/p/pysqlite.md | 2 +- docs/version-specific/supported-software/p/pysteps.md | 2 +- docs/version-specific/supported-software/p/pystran.md | 2 +- docs/version-specific/supported-software/p/pytesseract.md | 2 +- docs/version-specific/supported-software/p/pytest-benchmark.md | 2 +- docs/version-specific/supported-software/p/pytest-cpp.md | 2 +- .../version-specific/supported-software/p/pytest-flakefinder.md | 2 +- .../supported-software/p/pytest-rerunfailures.md | 2 +- docs/version-specific/supported-software/p/pytest-shard.md | 2 +- docs/version-specific/supported-software/p/pytest-workflow.md | 2 +- docs/version-specific/supported-software/p/pytest-xdist.md | 2 +- docs/version-specific/supported-software/p/pytest.md | 2 +- docs/version-specific/supported-software/p/pythermalcomfort.md | 2 +- .../version-specific/supported-software/p/python-Levenshtein.md | 2 +- docs/version-specific/supported-software/p/python-casacore.md | 2 +- docs/version-specific/supported-software/p/python-docx.md | 2 +- docs/version-specific/supported-software/p/python-hl7.md | 2 +- docs/version-specific/supported-software/p/python-igraph.md | 2 +- .../version-specific/supported-software/p/python-irodsclient.md | 2 +- docs/version-specific/supported-software/p/python-isal.md | 2 +- docs/version-specific/supported-software/p/python-libsbml.md | 2 +- docs/version-specific/supported-software/p/python-louvain.md | 2 +- docs/version-specific/supported-software/p/python-mujoco.md | 2 +- docs/version-specific/supported-software/p/python-parasail.md | 2 +- .../supported-software/p/python-telegram-bot.md | 2 +- .../supported-software/p/python-weka-wrapper3.md | 2 +- docs/version-specific/supported-software/p/python-xxhash.md | 2 +- docs/version-specific/supported-software/p/pythran.md | 2 +- docs/version-specific/supported-software/p/pytorch-3dunet.md | 2 +- .../supported-software/p/pytorch-CycleGAN-pix2pix.md | 2 +- docs/version-specific/supported-software/q/Q6.md | 2 +- docs/version-specific/supported-software/q/QCA.md | 2 +- docs/version-specific/supported-software/q/QCG-PilotJob.md | 2 +- docs/version-specific/supported-software/q/QCxMS.md | 2 +- docs/version-specific/supported-software/q/QD.md | 2 +- docs/version-specific/supported-software/q/QDD.md | 2 +- docs/version-specific/supported-software/q/QEMU.md | 2 +- docs/version-specific/supported-software/q/QGIS.md | 2 +- docs/version-specific/supported-software/q/QIIME.md | 2 +- docs/version-specific/supported-software/q/QIIME2.md | 2 +- docs/version-specific/supported-software/q/QJson.md | 2 +- docs/version-specific/supported-software/q/QML.md | 2 +- docs/version-specific/supported-software/q/QScintilla.md | 2 +- docs/version-specific/supported-software/q/QTLtools.md | 2 +- docs/version-specific/supported-software/q/QUAST.md | 2 +- docs/version-specific/supported-software/q/Qhull.md | 2 +- docs/version-specific/supported-software/q/Qiskit.md | 2 +- docs/version-specific/supported-software/q/Qt.md | 2 +- docs/version-specific/supported-software/q/Qt5.md | 2 +- docs/version-specific/supported-software/q/Qt5Webkit.md | 2 +- docs/version-specific/supported-software/q/Qt6.md | 2 +- docs/version-specific/supported-software/q/QtKeychain.md | 2 +- docs/version-specific/supported-software/q/QtPy.md | 2 +- docs/version-specific/supported-software/q/Qtconsole.md | 2 +- docs/version-specific/supported-software/q/QuPath.md | 2 +- docs/version-specific/supported-software/q/QuTiP.md | 2 +- docs/version-specific/supported-software/q/QuaZIP.md | 2 +- docs/version-specific/supported-software/q/Qualimap.md | 2 +- docs/version-specific/supported-software/q/Quandl.md | 2 +- docs/version-specific/supported-software/q/QuantumESPRESSO.md | 2 +- docs/version-specific/supported-software/q/QuickFF.md | 2 +- docs/version-specific/supported-software/q/QuickPIC.md | 2 +- docs/version-specific/supported-software/q/QuickTree.md | 2 +- docs/version-specific/supported-software/q/Quip.md | 2 +- docs/version-specific/supported-software/q/Quorum.md | 2 +- docs/version-specific/supported-software/q/Qwt.md | 2 +- docs/version-specific/supported-software/q/QwtPolar.md | 2 +- docs/version-specific/supported-software/q/index.md | 2 +- docs/version-specific/supported-software/q/q2-krona.md | 2 +- docs/version-specific/supported-software/q/qcat.md | 2 +- docs/version-specific/supported-software/q/qcint.md | 2 +- docs/version-specific/supported-software/q/qforce.md | 2 +- docs/version-specific/supported-software/q/qmflows.md | 2 +- docs/version-specific/supported-software/q/qnorm.md | 2 +- docs/version-specific/supported-software/q/qpth.md | 2 +- docs/version-specific/supported-software/q/qrupdate.md | 2 +- docs/version-specific/supported-software/q/qtop.md | 2 +- docs/version-specific/supported-software/r/R-INLA.md | 2 +- docs/version-specific/supported-software/r/R-MXM.md | 2 +- .../supported-software/r/R-bundle-Bioconductor.md | 2 +- docs/version-specific/supported-software/r/R-bundle-CRAN.md | 2 +- docs/version-specific/supported-software/r/R-keras.md | 2 +- docs/version-specific/supported-software/r/R-opencv.md | 2 +- docs/version-specific/supported-software/r/R-tesseract.md | 2 +- docs/version-specific/supported-software/r/R-transport.md | 2 +- docs/version-specific/supported-software/r/R.md | 2 +- docs/version-specific/supported-software/r/R2jags.md | 2 +- docs/version-specific/supported-software/r/RAPSearch2.md | 2 +- docs/version-specific/supported-software/r/RASPA2.md | 2 +- docs/version-specific/supported-software/r/RAxML-NG.md | 2 +- docs/version-specific/supported-software/r/RAxML.md | 2 +- docs/version-specific/supported-software/r/RBFOpt.md | 2 +- docs/version-specific/supported-software/r/RCall.md | 2 +- docs/version-specific/supported-software/r/RDFlib.md | 2 +- docs/version-specific/supported-software/r/RDKit.md | 2 +- docs/version-specific/supported-software/r/RDP-Classifier.md | 2 +- docs/version-specific/supported-software/r/RE2.md | 2 +- docs/version-specific/supported-software/r/RECON.md | 2 +- docs/version-specific/supported-software/r/RELION.md | 2 +- docs/version-specific/supported-software/r/REMORA.md | 2 +- docs/version-specific/supported-software/r/RERconverge.md | 2 +- docs/version-specific/supported-software/r/RFdiffusion.md | 2 +- docs/version-specific/supported-software/r/RHEIA.md | 2 +- docs/version-specific/supported-software/r/RInChI.md | 2 +- docs/version-specific/supported-software/r/RLCard.md | 2 +- docs/version-specific/supported-software/r/RMBlast.md | 2 +- docs/version-specific/supported-software/r/RNA-Bloom.md | 2 +- docs/version-specific/supported-software/r/RNA-SeQC.md | 2 +- docs/version-specific/supported-software/r/RNAIndel.md | 2 +- docs/version-specific/supported-software/r/RNAclust.md | 2 +- docs/version-specific/supported-software/r/RNAcode.md | 2 +- docs/version-specific/supported-software/r/RNAmmer.md | 2 +- docs/version-specific/supported-software/r/RNAz.md | 2 +- docs/version-specific/supported-software/r/ROCR-Runtime.md | 2 +- .../supported-software/r/ROCT-Thunk-Interface.md | 2 +- .../supported-software/r/ROCm-CompilerSupport.md | 2 +- docs/version-specific/supported-software/r/ROCm.md | 2 +- docs/version-specific/supported-software/r/ROI_PAC.md | 2 +- docs/version-specific/supported-software/r/ROME.md | 2 +- docs/version-specific/supported-software/r/ROOT.md | 2 +- docs/version-specific/supported-software/r/RPostgreSQL.md | 2 +- docs/version-specific/supported-software/r/RQGIS3.md | 2 +- docs/version-specific/supported-software/r/RSEM.md | 2 +- docs/version-specific/supported-software/r/RSeQC.md | 2 +- docs/version-specific/supported-software/r/RStan.md | 2 +- docs/version-specific/supported-software/r/RStudio-Server.md | 2 +- docs/version-specific/supported-software/r/RTG-Tools.md | 2 +- docs/version-specific/supported-software/r/RaGOO.md | 2 +- docs/version-specific/supported-software/r/Racon.md | 2 +- docs/version-specific/supported-software/r/RagTag.md | 2 +- docs/version-specific/supported-software/r/Ragout.md | 2 +- docs/version-specific/supported-software/r/RapidJSON.md | 2 +- docs/version-specific/supported-software/r/Raptor.md | 2 +- docs/version-specific/supported-software/r/Rascaf.md | 2 +- docs/version-specific/supported-software/r/Ratatosk.md | 2 +- docs/version-specific/supported-software/r/Raven.md | 2 +- docs/version-specific/supported-software/r/Ray-assembler.md | 2 +- docs/version-specific/supported-software/r/Ray-project.md | 2 +- docs/version-specific/supported-software/r/Raysect.md | 2 +- docs/version-specific/supported-software/r/Rcorrector.md | 2 +- docs/version-specific/supported-software/r/RcppGSL.md | 2 +- docs/version-specific/supported-software/r/ReFrame.md | 2 +- docs/version-specific/supported-software/r/ReMatCh.md | 2 +- docs/version-specific/supported-software/r/Reads2snp.md | 2 +- docs/version-specific/supported-software/r/Reapr.md | 2 +- docs/version-specific/supported-software/r/ReaxFF.md | 2 +- docs/version-specific/supported-software/r/Red.md | 2 +- docs/version-specific/supported-software/r/Redis.md | 2 +- docs/version-specific/supported-software/r/Redundans.md | 2 +- docs/version-specific/supported-software/r/RegTools.md | 2 +- docs/version-specific/supported-software/r/Relate.md | 2 +- docs/version-specific/supported-software/r/RepastHPC.md | 2 +- docs/version-specific/supported-software/r/RepeatMasker.md | 2 +- docs/version-specific/supported-software/r/RepeatModeler.md | 2 +- docs/version-specific/supported-software/r/RepeatScout.md | 2 +- docs/version-specific/supported-software/r/ResistanceGA.md | 2 +- docs/version-specific/supported-software/r/Restrander.md | 2 +- docs/version-specific/supported-software/r/RevBayes.md | 2 +- docs/version-specific/supported-software/r/Rgurobi.md | 2 +- docs/version-specific/supported-software/r/RheoTool.md | 2 +- docs/version-specific/supported-software/r/Rhodium.md | 2 +- docs/version-specific/supported-software/r/Rivet.md | 2 +- docs/version-specific/supported-software/r/Rmath.md | 2 +- docs/version-specific/supported-software/r/RnBeads.md | 2 +- docs/version-specific/supported-software/r/Roary.md | 2 +- docs/version-specific/supported-software/r/Rosetta.md | 2 +- docs/version-specific/supported-software/r/Rtree.md | 2 +- docs/version-specific/supported-software/r/Ruby-Tk.md | 2 +- docs/version-specific/supported-software/r/Ruby.md | 2 +- docs/version-specific/supported-software/r/Rust.md | 2 +- docs/version-specific/supported-software/r/index.md | 2 +- docs/version-specific/supported-software/r/rCUDA.md | 2 +- docs/version-specific/supported-software/r/rMATS-turbo.md | 2 +- docs/version-specific/supported-software/r/radeontop.md | 2 +- docs/version-specific/supported-software/r/radian.md | 2 +- docs/version-specific/supported-software/r/rampart.md | 2 +- docs/version-specific/supported-software/r/randfold.md | 2 +- docs/version-specific/supported-software/r/randrproto.md | 2 +- docs/version-specific/supported-software/r/rapidNJ.md | 2 +- docs/version-specific/supported-software/r/rapidcsv.md | 2 +- docs/version-specific/supported-software/r/rapidtide.md | 2 +- docs/version-specific/supported-software/r/rasterio.md | 2 +- docs/version-specific/supported-software/r/rasterstats.md | 2 +- docs/version-specific/supported-software/r/rclone.md | 2 +- docs/version-specific/supported-software/r/re2c.md | 2 +- docs/version-specific/supported-software/r/redis-py.md | 2 +- docs/version-specific/supported-software/r/regionmask.md | 2 +- docs/version-specific/supported-software/r/remake.md | 2 +- docs/version-specific/supported-software/r/renderproto.md | 2 +- docs/version-specific/supported-software/r/request.md | 2 +- docs/version-specific/supported-software/r/requests.md | 2 +- docs/version-specific/supported-software/r/resolos.md | 2 +- docs/version-specific/supported-software/r/rethinking.md | 2 +- docs/version-specific/supported-software/r/retworkx.md | 2 +- docs/version-specific/supported-software/r/rgdal.md | 2 +- docs/version-specific/supported-software/r/rgeos.md | 2 +- docs/version-specific/supported-software/r/rhdf5.md | 2 +- docs/version-specific/supported-software/r/rickflow.md | 2 +- docs/version-specific/supported-software/r/rioxarray.md | 2 +- docs/version-specific/supported-software/r/ripunzip.md | 2 +- docs/version-specific/supported-software/r/rising.md | 2 +- docs/version-specific/supported-software/r/rjags.md | 2 +- docs/version-specific/supported-software/r/rmarkdown.md | 2 +- docs/version-specific/supported-software/r/rnaQUAST.md | 2 +- docs/version-specific/supported-software/r/rocm-cmake.md | 2 +- docs/version-specific/supported-software/r/rocm-smi.md | 2 +- docs/version-specific/supported-software/r/rocminfo.md | 2 +- docs/version-specific/supported-software/r/root_numpy.md | 2 +- docs/version-specific/supported-software/r/rootpy.md | 2 +- docs/version-specific/supported-software/r/rpmrebuild.md | 2 +- docs/version-specific/supported-software/r/rpy2.md | 2 +- docs/version-specific/supported-software/r/rstanarm.md | 2 +- docs/version-specific/supported-software/r/ruamel.yaml.md | 2 +- docs/version-specific/supported-software/r/ruffus.md | 2 +- docs/version-specific/supported-software/r/ruptures.md | 2 +- docs/version-specific/supported-software/r/rustworkx.md | 2 +- docs/version-specific/supported-software/s/S-Lang.md | 2 +- docs/version-specific/supported-software/s/S4.md | 2 +- docs/version-specific/supported-software/s/SAGE.md | 2 +- docs/version-specific/supported-software/s/SALMON-TDDFT.md | 2 +- docs/version-specific/supported-software/s/SALib.md | 2 +- docs/version-specific/supported-software/s/SAMtools.md | 2 +- docs/version-specific/supported-software/s/SAP.md | 2 +- docs/version-specific/supported-software/s/SAS.md | 2 +- docs/version-specific/supported-software/s/SBCL.md | 2 +- docs/version-specific/supported-software/s/SCALCE.md | 2 +- docs/version-specific/supported-software/s/SCENIC.md | 2 +- docs/version-specific/supported-software/s/SCGid.md | 2 +- docs/version-specific/supported-software/s/SCIP.md | 2 +- docs/version-specific/supported-software/s/SCIPhI.md | 2 +- docs/version-specific/supported-software/s/SCOOP.md | 2 +- docs/version-specific/supported-software/s/SCOTCH.md | 2 +- docs/version-specific/supported-software/s/SCReadCounts.md | 2 +- docs/version-specific/supported-software/s/SCnorm.md | 2 +- docs/version-specific/supported-software/s/SCons.md | 2 +- docs/version-specific/supported-software/s/SCopeLoomR.md | 2 +- docs/version-specific/supported-software/s/SDCC.md | 2 +- docs/version-specific/supported-software/s/SDL.md | 2 +- docs/version-specific/supported-software/s/SDL2.md | 2 +- docs/version-specific/supported-software/s/SDL2_gfx.md | 2 +- docs/version-specific/supported-software/s/SDL2_image.md | 2 +- docs/version-specific/supported-software/s/SDL2_mixer.md | 2 +- docs/version-specific/supported-software/s/SDL2_ttf.md | 2 +- docs/version-specific/supported-software/s/SDL_image.md | 2 +- docs/version-specific/supported-software/s/SDSL.md | 2 +- docs/version-specific/supported-software/s/SEACells.md | 2 +- docs/version-specific/supported-software/s/SECAPR.md | 2 +- docs/version-specific/supported-software/s/SELFIES.md | 2 +- docs/version-specific/supported-software/s/SEPP.md | 2 +- docs/version-specific/supported-software/s/SHAP.md | 2 +- docs/version-specific/supported-software/s/SHAPEIT.md | 2 +- docs/version-specific/supported-software/s/SHAPEIT4.md | 2 +- docs/version-specific/supported-software/s/SHORE.md | 2 +- docs/version-specific/supported-software/s/SHTns.md | 2 +- docs/version-specific/supported-software/s/SICER2.md | 2 +- docs/version-specific/supported-software/s/SIMPLE.md | 2 +- docs/version-specific/supported-software/s/SIONlib.md | 2 +- docs/version-specific/supported-software/s/SIP.md | 2 +- docs/version-specific/supported-software/s/SISSO++.md | 2 +- docs/version-specific/supported-software/s/SISSO.md | 2 +- docs/version-specific/supported-software/s/SKESA.md | 2 +- docs/version-specific/supported-software/s/SLATEC.md | 2 +- docs/version-specific/supported-software/s/SLEPc.md | 2 +- docs/version-specific/supported-software/s/SLiM.md | 2 +- docs/version-specific/supported-software/s/SMAP.md | 2 +- docs/version-specific/supported-software/s/SMARTdenovo.md | 2 +- docs/version-specific/supported-software/s/SMC++.md | 2 +- docs/version-specific/supported-software/s/SMRT-Link.md | 2 +- docs/version-specific/supported-software/s/SMV.md | 2 +- docs/version-specific/supported-software/s/SNAP-ESA-python.md | 2 +- docs/version-specific/supported-software/s/SNAP-ESA.md | 2 +- docs/version-specific/supported-software/s/SNAP-HMM.md | 2 +- docs/version-specific/supported-software/s/SNAP.md | 2 +- docs/version-specific/supported-software/s/SNAPE-pooled.md | 2 +- docs/version-specific/supported-software/s/SNPhylo.md | 2 +- docs/version-specific/supported-software/s/SNPomatic.md | 2 +- docs/version-specific/supported-software/s/SOAPaligner.md | 2 +- docs/version-specific/supported-software/s/SOAPdenovo-Trans.md | 2 +- docs/version-specific/supported-software/s/SOAPdenovo2.md | 2 +- docs/version-specific/supported-software/s/SOAPfuse.md | 2 +- docs/version-specific/supported-software/s/SOCI.md | 2 +- docs/version-specific/supported-software/s/SPAdes.md | 2 +- docs/version-specific/supported-software/s/SPEI.md | 2 +- docs/version-specific/supported-software/s/SPLASH.md | 2 +- docs/version-specific/supported-software/s/SPM.md | 2 +- docs/version-specific/supported-software/s/SPOOLES.md | 2 +- docs/version-specific/supported-software/s/SPOTPY.md | 2 +- docs/version-specific/supported-software/s/SPRNG.md | 2 +- docs/version-specific/supported-software/s/SQLAlchemy.md | 2 +- docs/version-specific/supported-software/s/SQLite.md | 2 +- docs/version-specific/supported-software/s/SRA-Toolkit.md | 2 +- docs/version-specific/supported-software/s/SRPRISM.md | 2 +- docs/version-specific/supported-software/s/SRST2.md | 2 +- docs/version-specific/supported-software/s/SSAHA2.md | 2 +- docs/version-specific/supported-software/s/SSN.md | 2 +- docs/version-specific/supported-software/s/SSPACE_Basic.md | 2 +- docs/version-specific/supported-software/s/SSW.md | 2 +- docs/version-specific/supported-software/s/STACEY.md | 2 +- docs/version-specific/supported-software/s/STAMP.md | 2 +- docs/version-specific/supported-software/s/STAR-CCM+.md | 2 +- docs/version-specific/supported-software/s/STAR-Fusion.md | 2 +- docs/version-specific/supported-software/s/STAR.md | 2 +- docs/version-specific/supported-software/s/STEAK.md | 2 +- docs/version-specific/supported-software/s/STIR.md | 2 +- docs/version-specific/supported-software/s/STREAM.md | 2 +- docs/version-specific/supported-software/s/STRUMPACK.md | 2 +- docs/version-specific/supported-software/s/STRique.md | 2 +- docs/version-specific/supported-software/s/SUMACLUST.md | 2 +- docs/version-specific/supported-software/s/SUMATRA.md | 2 +- docs/version-specific/supported-software/s/SUMO.md | 2 +- docs/version-specific/supported-software/s/SUNDIALS.md | 2 +- docs/version-specific/supported-software/s/SUPPA.md | 2 +- docs/version-specific/supported-software/s/SURVIVOR.md | 2 +- docs/version-specific/supported-software/s/SVDetect.md | 2 +- docs/version-specific/supported-software/s/SVDquest.md | 2 +- docs/version-specific/supported-software/s/SVG.md | 2 +- docs/version-specific/supported-software/s/SVIM.md | 2 +- docs/version-specific/supported-software/s/SVclone.md | 2 +- docs/version-specific/supported-software/s/SWASH.md | 2 +- docs/version-specific/supported-software/s/SWAT+.md | 2 +- docs/version-specific/supported-software/s/SWIG.md | 2 +- docs/version-specific/supported-software/s/SWIPE.md | 2 +- docs/version-specific/supported-software/s/SYMMETRICA.md | 2 +- docs/version-specific/supported-software/s/SYMPHONY.md | 2 +- docs/version-specific/supported-software/s/Sabre.md | 2 +- docs/version-specific/supported-software/s/Safetensors.md | 2 +- docs/version-specific/supported-software/s/Sailfish.md | 2 +- docs/version-specific/supported-software/s/Salmon.md | 2 +- docs/version-specific/supported-software/s/Sambamba.md | 2 +- docs/version-specific/supported-software/s/Samcef.md | 2 +- docs/version-specific/supported-software/s/Satsuma2.md | 2 +- docs/version-specific/supported-software/s/Saxon-HE.md | 2 +- docs/version-specific/supported-software/s/ScaFaCoS.md | 2 +- docs/version-specific/supported-software/s/ScaLAPACK.md | 2 +- docs/version-specific/supported-software/s/Scalasca.md | 2 +- docs/version-specific/supported-software/s/Scalene.md | 2 +- docs/version-specific/supported-software/s/Schrodinger.md | 2 +- docs/version-specific/supported-software/s/SciPy-bundle.md | 2 +- docs/version-specific/supported-software/s/SciTools-Iris.md | 2 +- docs/version-specific/supported-software/s/ScientificPython.md | 2 +- docs/version-specific/supported-software/s/Scoary.md | 2 +- docs/version-specific/supported-software/s/Score-P.md | 2 +- docs/version-specific/supported-software/s/Scrappie.md | 2 +- docs/version-specific/supported-software/s/Scythe.md | 2 +- docs/version-specific/supported-software/s/SeaView.md | 2 +- docs/version-specific/supported-software/s/Seaborn.md | 2 +- docs/version-specific/supported-software/s/SearchGUI.md | 2 +- docs/version-specific/supported-software/s/Seeder.md | 2 +- docs/version-specific/supported-software/s/SeisSol.md | 2 +- docs/version-specific/supported-software/s/SelEstim.md | 2 +- docs/version-specific/supported-software/s/SemiBin.md | 2 +- .../supported-software/s/Sentence-Transformers.md | 2 +- docs/version-specific/supported-software/s/SentencePiece.md | 2 +- docs/version-specific/supported-software/s/Seq-Gen.md | 2 +- docs/version-specific/supported-software/s/SeqAn.md | 2 +- docs/version-specific/supported-software/s/SeqAn3.md | 2 +- docs/version-specific/supported-software/s/SeqKit.md | 2 +- docs/version-specific/supported-software/s/SeqLib.md | 2 +- docs/version-specific/supported-software/s/SeqPrep.md | 2 +- docs/version-specific/supported-software/s/Seqmagick.md | 2 +- docs/version-specific/supported-software/s/Serf.md | 2 +- docs/version-specific/supported-software/s/Seurat.md | 2 +- docs/version-specific/supported-software/s/SeuratData.md | 2 +- docs/version-specific/supported-software/s/SeuratDisk.md | 2 +- docs/version-specific/supported-software/s/SeuratWrappers.md | 2 +- docs/version-specific/supported-software/s/Shannon.md | 2 +- docs/version-specific/supported-software/s/Shapely.md | 2 +- docs/version-specific/supported-software/s/Shasta.md | 2 +- docs/version-specific/supported-software/s/ShengBTE.md | 2 +- docs/version-specific/supported-software/s/Short-Pair.md | 2 +- docs/version-specific/supported-software/s/SiNVICT.md | 2 +- docs/version-specific/supported-software/s/Sibelia.md | 2 +- docs/version-specific/supported-software/s/Siesta.md | 2 +- docs/version-specific/supported-software/s/SignalP.md | 2 +- docs/version-specific/supported-software/s/SimNIBS.md | 2 +- docs/version-specific/supported-software/s/SimPEG.md | 2 +- docs/version-specific/supported-software/s/SimVascular.md | 2 +- docs/version-specific/supported-software/s/Simple-DFTD3.md | 2 +- docs/version-specific/supported-software/s/SimpleElastix.md | 2 +- docs/version-specific/supported-software/s/SimpleITK.md | 2 +- docs/version-specific/supported-software/s/Simstrat.md | 2 +- docs/version-specific/supported-software/s/SingleM.md | 2 +- docs/version-specific/supported-software/s/Singular.md | 2 +- docs/version-specific/supported-software/s/SlamDunk.md | 2 +- docs/version-specific/supported-software/s/Smoldyn.md | 2 +- docs/version-specific/supported-software/s/Sniffles.md | 2 +- docs/version-specific/supported-software/s/SoPlex.md | 2 +- docs/version-specific/supported-software/s/SoQt.md | 2 +- docs/version-specific/supported-software/s/SoX.md | 2 +- docs/version-specific/supported-software/s/SoXt.md | 2 +- docs/version-specific/supported-software/s/SolexaQA++.md | 2 +- docs/version-specific/supported-software/s/SortMeRNA.md | 2 +- docs/version-specific/supported-software/s/SoupX.md | 2 +- docs/version-specific/supported-software/s/SpaceRanger.md | 2 +- docs/version-specific/supported-software/s/Spack.md | 2 +- docs/version-specific/supported-software/s/Spark.md | 2 +- docs/version-specific/supported-software/s/SpatialDE.md | 2 +- docs/version-specific/supported-software/s/SpectrA.md | 2 +- docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md | 2 +- docs/version-specific/supported-software/s/Sphinx.md | 2 +- docs/version-specific/supported-software/s/SpiceyPy.md | 2 +- docs/version-specific/supported-software/s/SpiecEasi.md | 2 +- docs/version-specific/supported-software/s/SplAdder.md | 2 +- docs/version-specific/supported-software/s/SpliceMap.md | 2 +- docs/version-specific/supported-software/s/Spyder.md | 2 +- docs/version-specific/supported-software/s/SqueezeMeta.md | 2 +- docs/version-specific/supported-software/s/Squidpy.md | 2 +- docs/version-specific/supported-software/s/StaMPS.md | 2 +- docs/version-specific/supported-software/s/Stack.md | 2 +- docs/version-specific/supported-software/s/Stacks.md | 2 +- docs/version-specific/supported-software/s/Stampy.md | 2 +- docs/version-specific/supported-software/s/Stata.md | 2 +- docs/version-specific/supported-software/s/Statistics-R.md | 2 +- docs/version-specific/supported-software/s/Strainberry.md | 2 +- docs/version-specific/supported-software/s/StringTie.md | 2 +- docs/version-specific/supported-software/s/Structure.md | 2 +- .../version-specific/supported-software/s/Structure_threader.md | 2 +- docs/version-specific/supported-software/s/SuAVE-biomat.md | 2 +- docs/version-specific/supported-software/s/Subread.md | 2 +- docs/version-specific/supported-software/s/Subversion.md | 2 +- docs/version-specific/supported-software/s/SuiteSparse.md | 2 +- docs/version-specific/supported-software/s/SunPy.md | 2 +- docs/version-specific/supported-software/s/SuperLU.md | 2 +- docs/version-specific/supported-software/s/SuperLU_DIST.md | 2 +- docs/version-specific/supported-software/s/SyRI.md | 2 +- docs/version-specific/supported-software/s/SymEngine-python.md | 2 +- docs/version-specific/supported-software/s/SymEngine.md | 2 +- docs/version-specific/supported-software/s/Szip.md | 2 +- docs/version-specific/supported-software/s/index.md | 2 +- docs/version-specific/supported-software/s/s3fs.md | 2 +- docs/version-specific/supported-software/s/safestringlib.md | 2 +- docs/version-specific/supported-software/s/samblaster.md | 2 +- docs/version-specific/supported-software/s/samclip.md | 2 +- docs/version-specific/supported-software/s/samplot.md | 2 +- docs/version-specific/supported-software/s/sansa.md | 2 +- docs/version-specific/supported-software/s/savvy.md | 2 +- docs/version-specific/supported-software/s/sbt.md | 2 +- docs/version-specific/supported-software/s/scArches.md | 2 +- docs/version-specific/supported-software/s/scCODA.md | 2 +- docs/version-specific/supported-software/s/scGSVA.md | 2 +- docs/version-specific/supported-software/s/scGeneFit.md | 2 +- docs/version-specific/supported-software/s/scHiCExplorer.md | 2 +- docs/version-specific/supported-software/s/scPred.md | 2 +- docs/version-specific/supported-software/s/scVelo.md | 2 +- docs/version-specific/supported-software/s/scanpy.md | 2 +- docs/version-specific/supported-software/s/sceasy.md | 2 +- docs/version-specific/supported-software/s/sciClone.md | 2 +- docs/version-specific/supported-software/s/scib-metrics.md | 2 +- docs/version-specific/supported-software/s/scib.md | 2 +- docs/version-specific/supported-software/s/scikit-allel.md | 2 +- docs/version-specific/supported-software/s/scikit-bio.md | 2 +- docs/version-specific/supported-software/s/scikit-build-core.md | 2 +- docs/version-specific/supported-software/s/scikit-build.md | 2 +- docs/version-specific/supported-software/s/scikit-cuda.md | 2 +- docs/version-specific/supported-software/s/scikit-extremes.md | 2 +- docs/version-specific/supported-software/s/scikit-image.md | 2 +- docs/version-specific/supported-software/s/scikit-learn.md | 2 +- docs/version-specific/supported-software/s/scikit-lego.md | 2 +- docs/version-specific/supported-software/s/scikit-misc.md | 2 +- docs/version-specific/supported-software/s/scikit-multilearn.md | 2 +- docs/version-specific/supported-software/s/scikit-optimize.md | 2 +- docs/version-specific/supported-software/s/scikit-plot.md | 2 +- docs/version-specific/supported-software/s/scikit-uplift.md | 2 +- docs/version-specific/supported-software/s/scipy.md | 2 +- docs/version-specific/supported-software/s/scp.md | 2 +- docs/version-specific/supported-software/s/scrublet.md | 2 +- docs/version-specific/supported-software/s/scvi-tools.md | 2 +- docs/version-specific/supported-software/s/segemehl.md | 2 +- docs/version-specific/supported-software/s/segment-anything.md | 2 +- .../supported-software/s/segmentation-models-pytorch.md | 2 +- .../supported-software/s/segmentation-models.md | 2 +- docs/version-specific/supported-software/s/semla.md | 2 +- docs/version-specific/supported-software/s/sentinelsat.md | 2 +- docs/version-specific/supported-software/s/sep.md | 2 +- docs/version-specific/supported-software/s/seq2HLA.md | 2 +- docs/version-specific/supported-software/s/seqtk.md | 2 +- docs/version-specific/supported-software/s/setuptools-rust.md | 2 +- docs/version-specific/supported-software/s/setuptools.md | 2 +- docs/version-specific/supported-software/s/sf.md | 2 +- docs/version-specific/supported-software/s/sfftk.md | 2 +- docs/version-specific/supported-software/s/shapAAR.md | 2 +- docs/version-specific/supported-software/s/sharutils.md | 2 +- docs/version-specific/supported-software/s/shift.md | 2 +- docs/version-specific/supported-software/s/shovill.md | 2 +- docs/version-specific/supported-software/s/shrinkwrap.md | 2 +- docs/version-specific/supported-software/s/sickle.md | 2 +- docs/version-specific/supported-software/s/silhouetteRank.md | 2 +- docs/version-specific/supported-software/s/silx.md | 2 +- docs/version-specific/supported-software/s/simanneal.md | 2 +- docs/version-specific/supported-software/s/simint.md | 2 +- docs/version-specific/supported-software/s/simpy.md | 2 +- docs/version-specific/supported-software/s/sinto.md | 2 +- docs/version-specific/supported-software/s/siscone.md | 2 +- docs/version-specific/supported-software/s/sketchmap.md | 2 +- docs/version-specific/supported-software/s/skewer.md | 2 +- docs/version-specific/supported-software/s/sklearn-pandas.md | 2 +- docs/version-specific/supported-software/s/sklearn-som.md | 2 +- docs/version-specific/supported-software/s/skorch.md | 2 +- docs/version-specific/supported-software/s/sktime.md | 2 +- docs/version-specific/supported-software/s/slepc4py.md | 2 +- docs/version-specific/supported-software/s/sleuth.md | 2 +- docs/version-specific/supported-software/s/slidingwindow.md | 2 +- docs/version-specific/supported-software/s/slow5tools.md | 2 +- docs/version-specific/supported-software/s/slurm-drmaa.md | 2 +- docs/version-specific/supported-software/s/smafa.md | 2 +- .../supported-software/s/smallgenomeutilities.md | 2 +- docs/version-specific/supported-software/s/smfishHmrf.md | 2 +- docs/version-specific/supported-software/s/smithwaterman.md | 2 +- docs/version-specific/supported-software/s/smooth-topk.md | 2 +- docs/version-specific/supported-software/s/snakemake.md | 2 +- docs/version-specific/supported-software/s/snaphu.md | 2 +- docs/version-specific/supported-software/s/snappy.md | 2 +- docs/version-specific/supported-software/s/snippy.md | 2 +- docs/version-specific/supported-software/s/snp-sites.md | 2 +- docs/version-specific/supported-software/s/snpEff.md | 2 +- docs/version-specific/supported-software/s/socat.md | 2 +- docs/version-specific/supported-software/s/solo.md | 2 +- docs/version-specific/supported-software/s/sonic.md | 2 +- docs/version-specific/supported-software/s/spaCy.md | 2 +- docs/version-specific/supported-software/s/spaln.md | 2 +- .../supported-software/s/sparse-neighbors-search.md | 2 +- docs/version-specific/supported-software/s/sparsehash.md | 2 +- docs/version-specific/supported-software/s/spatialreg.md | 2 +- docs/version-specific/supported-software/s/spdlog.md | 2 +- docs/version-specific/supported-software/s/spectral.methods.md | 2 +- docs/version-specific/supported-software/s/speech_tools.md | 2 +- docs/version-specific/supported-software/s/spektral.md | 2 +- docs/version-specific/supported-software/s/spglib-python.md | 2 +- docs/version-specific/supported-software/s/spglib.md | 2 +- docs/version-specific/supported-software/s/split-seq.md | 2 +- docs/version-specific/supported-software/s/splitRef.md | 2 +- docs/version-specific/supported-software/s/spoa.md | 2 +- docs/version-specific/supported-software/s/sradownloader.md | 2 +- docs/version-specific/supported-software/s/stardist.md | 2 +- docs/version-specific/supported-software/s/starparser.md | 2 +- docs/version-specific/supported-software/s/stars.md | 2 +- docs/version-specific/supported-software/s/statsmodels.md | 2 +- docs/version-specific/supported-software/s/stpipeline.md | 2 +- docs/version-specific/supported-software/s/strace.md | 2 +- docs/version-specific/supported-software/s/strelka.md | 2 +- docs/version-specific/supported-software/s/stripy.md | 2 +- docs/version-specific/supported-software/s/suave.md | 2 +- docs/version-specific/supported-software/s/subset-bam.md | 2 +- docs/version-specific/supported-software/s/subunit.md | 2 +- docs/version-specific/supported-software/s/suds.md | 2 +- docs/version-specific/supported-software/s/supermagic.md | 2 +- docs/version-specific/supported-software/s/supernova.md | 2 +- docs/version-specific/supported-software/s/svist4get.md | 2 +- docs/version-specific/supported-software/s/swarm.md | 2 +- docs/version-specific/supported-software/s/swifter.md | 2 +- docs/version-specific/supported-software/s/swissknife.md | 2 +- docs/version-specific/supported-software/s/sympy.md | 2 +- docs/version-specific/supported-software/s/synapseclient.md | 2 +- docs/version-specific/supported-software/s/synthcity.md | 2 +- docs/version-specific/supported-software/s/sysbench.md | 2 +- docs/version-specific/supported-software/t/T-Coffee.md | 2 +- docs/version-specific/supported-software/t/TALON.md | 2 +- docs/version-specific/supported-software/t/TALYS.md | 2 +- docs/version-specific/supported-software/t/TAMkin.md | 2 +- docs/version-specific/supported-software/t/TBA.md | 2 +- docs/version-specific/supported-software/t/TCC.md | 2 +- docs/version-specific/supported-software/t/TCLAP.md | 2 +- docs/version-specific/supported-software/t/TELEMAC-MASCARET.md | 2 +- docs/version-specific/supported-software/t/TEToolkit.md | 2 +- docs/version-specific/supported-software/t/TEtranscripts.md | 2 +- docs/version-specific/supported-software/t/TF-COMB.md | 2 +- docs/version-specific/supported-software/t/TFEA.md | 2 +- docs/version-specific/supported-software/t/THetA.md | 2 +- docs/version-specific/supported-software/t/TINKER.md | 2 +- docs/version-specific/supported-software/t/TM-align.md | 2 +- docs/version-specific/supported-software/t/TN93.md | 2 +- docs/version-specific/supported-software/t/TOBIAS.md | 2 +- docs/version-specific/supported-software/t/TOML-Fortran.md | 2 +- docs/version-specific/supported-software/t/TOPAS.md | 2 +- docs/version-specific/supported-software/t/TRAVIS-Analyzer.md | 2 +- docs/version-specific/supported-software/t/TRF.md | 2 +- docs/version-specific/supported-software/t/TRIQS-cthyb.md | 2 +- docs/version-specific/supported-software/t/TRIQS-dft_tools.md | 2 +- docs/version-specific/supported-software/t/TRIQS-tprf.md | 2 +- docs/version-specific/supported-software/t/TRIQS.md | 2 +- docs/version-specific/supported-software/t/TRUST.md | 2 +- docs/version-specific/supported-software/t/TRUST4.md | 2 +- docs/version-specific/supported-software/t/TVB-deps.md | 2 +- docs/version-specific/supported-software/t/TVB.md | 2 +- docs/version-specific/supported-software/t/TWL-NINJA.md | 2 +- docs/version-specific/supported-software/t/TXR.md | 2 +- docs/version-specific/supported-software/t/TagDust.md | 2 +- docs/version-specific/supported-software/t/TagLib.md | 2 +- docs/version-specific/supported-software/t/Taiyaki.md | 2 +- docs/version-specific/supported-software/t/Tapenade.md | 2 +- docs/version-specific/supported-software/t/Tcl.md | 2 +- docs/version-specific/supported-software/t/Telescope.md | 2 +- docs/version-specific/supported-software/t/Teneto.md | 2 +- .../supported-software/t/TensorFlow-Datasets.md | 2 +- .../supported-software/t/TensorFlow-Graphics.md | 2 +- docs/version-specific/supported-software/t/TensorFlow.md | 2 +- docs/version-specific/supported-software/t/TensorRT.md | 2 +- .../supported-software/t/Tesla-Deployment-Kit.md | 2 +- docs/version-specific/supported-software/t/TetGen.md | 2 +- docs/version-specific/supported-software/t/Text-CSV.md | 2 +- docs/version-specific/supported-software/t/Theano.md | 2 +- docs/version-specific/supported-software/t/ThemisPy.md | 2 +- docs/version-specific/supported-software/t/TiCCutils.md | 2 +- docs/version-specific/supported-software/t/TiMBL.md | 2 +- docs/version-specific/supported-software/t/Tika.md | 2 +- docs/version-specific/supported-software/t/TinyDB.md | 2 +- docs/version-specific/supported-software/t/TinyXML.md | 2 +- docs/version-specific/supported-software/t/Tk.md | 2 +- docs/version-specific/supported-software/t/Tkinter.md | 2 +- docs/version-specific/supported-software/t/ToFu.md | 2 +- docs/version-specific/supported-software/t/Togl.md | 2 +- docs/version-specific/supported-software/t/Tombo.md | 2 +- docs/version-specific/supported-software/t/TopHat.md | 2 +- docs/version-specific/supported-software/t/TorchIO.md | 2 +- docs/version-specific/supported-software/t/TotalView.md | 2 +- docs/version-specific/supported-software/t/Tracer.md | 2 +- docs/version-specific/supported-software/t/TransDecoder.md | 2 +- docs/version-specific/supported-software/t/TranscriptClean.md | 2 +- docs/version-specific/supported-software/t/Transformers.md | 2 +- docs/version-specific/supported-software/t/Transrate.md | 2 +- docs/version-specific/supported-software/t/TreeMix.md | 2 +- docs/version-specific/supported-software/t/TreeShrink.md | 2 +- docs/version-specific/supported-software/t/Triangle.md | 2 +- docs/version-specific/supported-software/t/Trilinos.md | 2 +- docs/version-specific/supported-software/t/Trim_Galore.md | 2 +- docs/version-specific/supported-software/t/Trimmomatic.md | 2 +- docs/version-specific/supported-software/t/Trinity.md | 2 +- docs/version-specific/supported-software/t/Trinotate.md | 2 +- docs/version-specific/supported-software/t/Triplexator.md | 2 +- docs/version-specific/supported-software/t/Triton.md | 2 +- docs/version-specific/supported-software/t/Trycycler.md | 2 +- docs/version-specific/supported-software/t/TurboVNC.md | 2 +- docs/version-specific/supported-software/t/index.md | 2 +- docs/version-specific/supported-software/t/t-SNE-CUDA.md | 2 +- docs/version-specific/supported-software/t/tMAE.md | 2 +- docs/version-specific/supported-software/t/tRNAscan-SE.md | 2 +- docs/version-specific/supported-software/t/tabix.md | 2 +- docs/version-specific/supported-software/t/tabixpp.md | 2 +- docs/version-specific/supported-software/t/taco.md | 2 +- docs/version-specific/supported-software/t/tantan.md | 2 +- docs/version-specific/supported-software/t/task-spooler.md | 2 +- docs/version-specific/supported-software/t/taxator-tk.md | 2 +- docs/version-specific/supported-software/t/tbb.md | 2 +- docs/version-specific/supported-software/t/tbl2asn.md | 2 +- docs/version-specific/supported-software/t/tcsh.md | 2 +- docs/version-specific/supported-software/t/tecplot360ex.md | 2 +- docs/version-specific/supported-software/t/tensorboard.md | 2 +- docs/version-specific/supported-software/t/tensorboardX.md | 2 +- .../supported-software/t/tensorflow-compression.md | 2 +- .../supported-software/t/tensorflow-probability.md | 2 +- docs/version-specific/supported-software/t/terastructure.md | 2 +- docs/version-specific/supported-software/t/termcolor.md | 2 +- docs/version-specific/supported-software/t/tesseract.md | 2 +- docs/version-specific/supported-software/t/testpath.md | 2 +- docs/version-specific/supported-software/t/texinfo.md | 2 +- docs/version-specific/supported-software/t/texlive.md | 2 +- docs/version-specific/supported-software/t/thirdorder.md | 2 +- docs/version-specific/supported-software/t/thurstonianIRT.md | 2 +- docs/version-specific/supported-software/t/tidybayes.md | 2 +- docs/version-specific/supported-software/t/tidymodels.md | 2 +- docs/version-specific/supported-software/t/tiktoken.md | 2 +- docs/version-specific/supported-software/t/time.md | 2 +- docs/version-specific/supported-software/t/timm.md | 2 +- docs/version-specific/supported-software/t/tiny-cuda-nn.md | 2 +- docs/version-specific/supported-software/t/tmap.md | 2 +- docs/version-specific/supported-software/t/tmux.md | 2 +- docs/version-specific/supported-software/t/toil.md | 2 +- docs/version-specific/supported-software/t/tokenizers.md | 2 +- docs/version-specific/supported-software/t/topaz.md | 2 +- docs/version-specific/supported-software/t/torchaudio.md | 2 +- docs/version-specific/supported-software/t/torchdata.md | 2 +- docs/version-specific/supported-software/t/torchinfo.md | 2 +- docs/version-specific/supported-software/t/torchsampler.md | 2 +- docs/version-specific/supported-software/t/torchtext.md | 2 +- docs/version-specific/supported-software/t/torchvf.md | 2 +- docs/version-specific/supported-software/t/torchvision.md | 2 +- docs/version-specific/supported-software/t/tornado.md | 2 +- docs/version-specific/supported-software/t/tox.md | 2 +- docs/version-specific/supported-software/t/tqdm.md | 2 +- docs/version-specific/supported-software/t/travis.md | 2 +- docs/version-specific/supported-software/t/treatSens.md | 2 +- docs/version-specific/supported-software/t/trimAl.md | 2 +- docs/version-specific/supported-software/t/trimesh.md | 2 +- docs/version-specific/supported-software/t/tseriesEntropy.md | 2 +- docs/version-specific/supported-software/t/tsne.md | 2 +- docs/version-specific/supported-software/t/turbinesFoam.md | 2 +- docs/version-specific/supported-software/t/tvb-data.md | 2 +- docs/version-specific/supported-software/t/tvb-framework.md | 2 +- docs/version-specific/supported-software/t/tvb-library.md | 2 +- docs/version-specific/supported-software/t/typing-extensions.md | 2 +- docs/version-specific/supported-software/u/UCC-CUDA.md | 2 +- docs/version-specific/supported-software/u/UCC.md | 2 +- docs/version-specific/supported-software/u/UCLUST.md | 2 +- docs/version-specific/supported-software/u/UCX-CUDA.md | 2 +- docs/version-specific/supported-software/u/UCX-ROCm.md | 2 +- docs/version-specific/supported-software/u/UCX.md | 2 +- docs/version-specific/supported-software/u/UDUNITS.md | 2 +- docs/version-specific/supported-software/u/UFL.md | 2 +- docs/version-specific/supported-software/u/UMI-tools.md | 2 +- docs/version-specific/supported-software/u/UNAFold.md | 2 +- docs/version-specific/supported-software/u/UQTk.md | 2 +- docs/version-specific/supported-software/u/USEARCH.md | 2 +- docs/version-specific/supported-software/u/USPEX.md | 2 +- docs/version-specific/supported-software/u/UShER.md | 2 +- docs/version-specific/supported-software/u/Ultralytics.md | 2 +- docs/version-specific/supported-software/u/UnZip.md | 2 +- docs/version-specific/supported-software/u/UniFrac.md | 2 +- docs/version-specific/supported-software/u/Unicycler.md | 2 +- docs/version-specific/supported-software/u/Unidecode.md | 2 +- docs/version-specific/supported-software/u/index.md | 2 +- docs/version-specific/supported-software/u/ucx-py.md | 2 +- docs/version-specific/supported-software/u/udocker.md | 2 +- docs/version-specific/supported-software/u/umap-learn.md | 2 +- docs/version-specific/supported-software/u/umi4cPackage.md | 2 +- docs/version-specific/supported-software/u/umis.md | 2 +- docs/version-specific/supported-software/u/uncertainties.md | 2 +- .../supported-software/u/uncertainty-calibration.md | 2 +- docs/version-specific/supported-software/u/unicore-uftp.md | 2 +- docs/version-specific/supported-software/u/unifdef.md | 2 +- docs/version-specific/supported-software/u/unimap.md | 2 +- docs/version-specific/supported-software/u/units.md | 2 +- docs/version-specific/supported-software/u/unixODBC.md | 2 +- docs/version-specific/supported-software/u/unrar.md | 2 +- docs/version-specific/supported-software/u/utf8proc.md | 2 +- docs/version-specific/supported-software/u/util-linux.md | 2 +- docs/version-specific/supported-software/v/V8.md | 2 +- docs/version-specific/supported-software/v/VAMPIRE-ASM.md | 2 +- docs/version-specific/supported-software/v/VASP.md | 2 +- docs/version-specific/supported-software/v/VAtools.md | 2 +- docs/version-specific/supported-software/v/VBZ-Compression.md | 2 +- docs/version-specific/supported-software/v/VCF-kit.md | 2 +- docs/version-specific/supported-software/v/VCFtools.md | 2 +- docs/version-specific/supported-software/v/VEGAS.md | 2 +- docs/version-specific/supported-software/v/VEP.md | 2 +- docs/version-specific/supported-software/v/VERSE.md | 2 +- docs/version-specific/supported-software/v/VESTA.md | 2 +- docs/version-specific/supported-software/v/VMD.md | 2 +- docs/version-specific/supported-software/v/VMTK.md | 2 +- docs/version-specific/supported-software/v/VSCode.md | 2 +- docs/version-specific/supported-software/v/VSEARCH.md | 2 +- docs/version-specific/supported-software/v/VTK.md | 2 +- docs/version-specific/supported-software/v/VTune.md | 2 +- docs/version-specific/supported-software/v/VV.md | 2 +- docs/version-specific/supported-software/v/VXL.md | 2 +- docs/version-specific/supported-software/v/Vala.md | 2 +- docs/version-specific/supported-software/v/Valgrind.md | 2 +- docs/version-specific/supported-software/v/Vamb.md | 2 +- docs/version-specific/supported-software/v/Vampir.md | 2 +- docs/version-specific/supported-software/v/Vampire.md | 2 +- docs/version-specific/supported-software/v/VarDict.md | 2 +- docs/version-specific/supported-software/v/VarScan.md | 2 +- docs/version-specific/supported-software/v/VariantMetaCaller.md | 2 +- docs/version-specific/supported-software/v/Velvet.md | 2 +- docs/version-specific/supported-software/v/ViennaRNA.md | 2 +- docs/version-specific/supported-software/v/Vim.md | 2 +- docs/version-specific/supported-software/v/VirSorter.md | 2 +- docs/version-specific/supported-software/v/VirSorter2.md | 2 +- docs/version-specific/supported-software/v/VirtualGL.md | 2 +- .../supported-software/v/Virtuoso-opensource.md | 2 +- docs/version-specific/supported-software/v/VisPy.md | 2 +- docs/version-specific/supported-software/v/Voro++.md | 2 +- docs/version-specific/supported-software/v/index.md | 2 +- docs/version-specific/supported-software/v/vConTACT2.md | 2 +- docs/version-specific/supported-software/v/vaeda.md | 2 +- docs/version-specific/supported-software/v/variant_tools.md | 2 +- docs/version-specific/supported-software/v/vartools.md | 2 +- docs/version-specific/supported-software/v/vawk.md | 2 +- docs/version-specific/supported-software/v/vcflib.md | 2 +- docs/version-specific/supported-software/v/vcfnp.md | 2 +- docs/version-specific/supported-software/v/velocyto.md | 2 +- docs/version-specific/supported-software/v/verifyBamID.md | 2 +- docs/version-specific/supported-software/v/virtualenv.md | 2 +- docs/version-specific/supported-software/v/visdom.md | 2 +- docs/version-specific/supported-software/v/vispr.md | 2 +- docs/version-specific/supported-software/v/vitessce-python.md | 2 +- docs/version-specific/supported-software/v/vitessceR.md | 2 +- docs/version-specific/supported-software/v/voltools.md | 2 +- docs/version-specific/supported-software/v/vorbis-tools.md | 2 +- docs/version-specific/supported-software/v/vsc-base.md | 2 +- docs/version-specific/supported-software/v/vsc-install.md | 2 +- .../version-specific/supported-software/v/vsc-mympirun-scoop.md | 2 +- docs/version-specific/supported-software/v/vsc-mympirun.md | 2 +- .../version-specific/supported-software/v/vsc-processcontrol.md | 2 +- docs/version-specific/supported-software/v/vt.md | 2 +- docs/version-specific/supported-software/w/WCSLIB.md | 2 +- docs/version-specific/supported-software/w/WCT.md | 2 +- docs/version-specific/supported-software/w/WEKA.md | 2 +- docs/version-specific/supported-software/w/WFA2.md | 2 +- docs/version-specific/supported-software/w/WGDgc.md | 2 +- docs/version-specific/supported-software/w/WHAM.md | 2 +- docs/version-specific/supported-software/w/WIEN2k.md | 2 +- docs/version-specific/supported-software/w/WISExome.md | 2 +- docs/version-specific/supported-software/w/WPS.md | 2 +- docs/version-specific/supported-software/w/WRF-Fire.md | 2 +- docs/version-specific/supported-software/w/WRF.md | 2 +- docs/version-specific/supported-software/w/WSClean.md | 2 +- docs/version-specific/supported-software/w/Wannier90.md | 2 +- docs/version-specific/supported-software/w/WannierTools.md | 2 +- docs/version-specific/supported-software/w/Wayland.md | 2 +- docs/version-specific/supported-software/w/Waylandpp.md | 2 +- docs/version-specific/supported-software/w/WebKitGTK+.md | 2 +- docs/version-specific/supported-software/w/WebSocket++.md | 2 +- docs/version-specific/supported-software/w/WhatsHap.md | 2 +- docs/version-specific/supported-software/w/WildMagic.md | 2 +- docs/version-specific/supported-software/w/Winnowmap.md | 2 +- docs/version-specific/supported-software/w/WisecondorX.md | 2 +- docs/version-specific/supported-software/w/index.md | 2 +- docs/version-specific/supported-software/w/waLBerla.md | 2 +- docs/version-specific/supported-software/w/wandb.md | 2 +- docs/version-specific/supported-software/w/wcwidth.md | 2 +- docs/version-specific/supported-software/w/webin-cli.md | 2 +- docs/version-specific/supported-software/w/wfdb.md | 2 +- docs/version-specific/supported-software/w/wget.md | 2 +- docs/version-specific/supported-software/w/wgsim.md | 2 +- docs/version-specific/supported-software/w/wheel.md | 2 +- docs/version-specific/supported-software/w/wkhtmltopdf.md | 2 +- docs/version-specific/supported-software/w/worker.md | 2 +- docs/version-specific/supported-software/w/wpebackend-fdo.md | 2 +- docs/version-specific/supported-software/w/wrapt.md | 2 +- docs/version-specific/supported-software/w/wrf-python.md | 2 +- docs/version-specific/supported-software/w/wtdbg2.md | 2 +- docs/version-specific/supported-software/w/wxPropertyGrid.md | 2 +- docs/version-specific/supported-software/w/wxPython.md | 2 +- docs/version-specific/supported-software/w/wxWidgets.md | 2 +- docs/version-specific/supported-software/x/X11.md | 2 +- docs/version-specific/supported-software/x/XALT.md | 2 +- docs/version-specific/supported-software/x/XBeach.md | 2 +- docs/version-specific/supported-software/x/XCFun.md | 2 +- docs/version-specific/supported-software/x/XCrySDen.md | 2 +- docs/version-specific/supported-software/x/XGBoost.md | 2 +- docs/version-specific/supported-software/x/XGrafix.md | 2 +- docs/version-specific/supported-software/x/XKeyboardConfig.md | 2 +- docs/version-specific/supported-software/x/XMDS2.md | 2 +- docs/version-specific/supported-software/x/XML-Compile.md | 2 +- docs/version-specific/supported-software/x/XML-LibXML.md | 2 +- docs/version-specific/supported-software/x/XML-Parser.md | 2 +- docs/version-specific/supported-software/x/XMLSec.md | 2 +- docs/version-specific/supported-software/x/XMLStarlet.md | 2 +- docs/version-specific/supported-software/x/XOOPIC.md | 2 +- docs/version-specific/supported-software/x/XPLOR-NIH.md | 2 +- docs/version-specific/supported-software/x/XSD.md | 2 +- docs/version-specific/supported-software/x/XTandem.md | 2 +- docs/version-specific/supported-software/x/XZ.md | 2 +- docs/version-specific/supported-software/x/Xerces-C++.md | 2 +- docs/version-specific/supported-software/x/XlsxWriter.md | 2 +- docs/version-specific/supported-software/x/Xmipp.md | 2 +- docs/version-specific/supported-software/x/Xvfb.md | 2 +- docs/version-specific/supported-software/x/index.md | 2 +- docs/version-specific/supported-software/x/x13as.md | 2 +- docs/version-specific/supported-software/x/x264.md | 2 +- docs/version-specific/supported-software/x/x265.md | 2 +- docs/version-specific/supported-software/x/xCell.md | 2 +- docs/version-specific/supported-software/x/xESMF.md | 2 +- docs/version-specific/supported-software/x/xarray.md | 2 +- docs/version-specific/supported-software/x/xbitmaps.md | 2 +- docs/version-specific/supported-software/x/xcb-proto.md | 2 +- docs/version-specific/supported-software/x/xcb-util-image.md | 2 +- docs/version-specific/supported-software/x/xcb-util-keysyms.md | 2 +- .../supported-software/x/xcb-util-renderutil.md | 2 +- docs/version-specific/supported-software/x/xcb-util-wm.md | 2 +- docs/version-specific/supported-software/x/xcb-util.md | 2 +- docs/version-specific/supported-software/x/xclip.md | 2 +- docs/version-specific/supported-software/x/xdotool.md | 2 +- docs/version-specific/supported-software/x/xextproto.md | 2 +- docs/version-specific/supported-software/x/xf86vidmodeproto.md | 2 +- docs/version-specific/supported-software/x/xineramaproto.md | 2 +- docs/version-specific/supported-software/x/xmitgcm.md | 2 +- docs/version-specific/supported-software/x/xmlf90.md | 2 +- docs/version-specific/supported-software/x/xonsh.md | 2 +- docs/version-specific/supported-software/x/xorg-macros.md | 2 +- docs/version-specific/supported-software/x/xpdf.md | 2 +- docs/version-specific/supported-software/x/xprop.md | 2 +- docs/version-specific/supported-software/x/xproto.md | 2 +- docs/version-specific/supported-software/x/xtb.md | 2 +- docs/version-specific/supported-software/x/xtensor.md | 2 +- docs/version-specific/supported-software/x/xtrans.md | 2 +- docs/version-specific/supported-software/x/xxHash.md | 2 +- docs/version-specific/supported-software/x/xxd.md | 2 +- docs/version-specific/supported-software/y/YACS.md | 2 +- docs/version-specific/supported-software/y/YANK.md | 2 +- docs/version-specific/supported-software/y/YAPS.md | 2 +- docs/version-specific/supported-software/y/YAXT.md | 2 +- docs/version-specific/supported-software/y/YODA.md | 2 +- docs/version-specific/supported-software/y/Yade.md | 2 +- docs/version-specific/supported-software/y/Yambo.md | 2 +- docs/version-specific/supported-software/y/Yasm.md | 2 +- docs/version-specific/supported-software/y/Yices.md | 2 +- docs/version-specific/supported-software/y/index.md | 2 +- docs/version-specific/supported-software/y/yaff.md | 2 +- docs/version-specific/supported-software/y/yaml-cpp.md | 2 +- docs/version-specific/supported-software/y/yt.md | 2 +- docs/version-specific/supported-software/z/Z3.md | 2 +- docs/version-specific/supported-software/z/ZIMPL.md | 2 +- docs/version-specific/supported-software/z/ZPAQ.md | 2 +- docs/version-specific/supported-software/z/Zeo++.md | 2 +- docs/version-specific/supported-software/z/ZeroMQ.md | 2 +- docs/version-specific/supported-software/z/Zgoubi.md | 2 +- docs/version-specific/supported-software/z/Zip.md | 2 +- docs/version-specific/supported-software/z/Zopfli.md | 2 +- docs/version-specific/supported-software/z/index.md | 2 +- docs/version-specific/supported-software/z/zUMIs.md | 2 +- docs/version-specific/supported-software/z/zarr.md | 2 +- docs/version-specific/supported-software/z/zeus-mcmc.md | 2 +- docs/version-specific/supported-software/z/zfp.md | 2 +- docs/version-specific/supported-software/z/zingeR.md | 2 +- docs/version-specific/supported-software/z/zlib-ng.md | 2 +- docs/version-specific/supported-software/z/zlib.md | 2 +- docs/version-specific/supported-software/z/zlibbioc.md | 2 +- docs/version-specific/supported-software/z/zsh.md | 2 +- docs/version-specific/supported-software/z/zstd.md | 2 +- 3579 files changed, 3579 insertions(+), 3579 deletions(-) diff --git a/docs/version-specific/supported-software/0/3d-dna.md b/docs/version-specific/supported-software/0/3d-dna.md index 2830bde95..c599a05e5 100644 --- a/docs/version-specific/supported-software/0/3d-dna.md +++ b/docs/version-specific/supported-software/0/3d-dna.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``180922`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b61da8e04..f2e8a69c9 100644 --- a/docs/version-specific/supported-software/0/3to2.md +++ b/docs/version-specific/supported-software/0/3to2.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c55d6f7a0..786b3d3f7 100644 --- a/docs/version-specific/supported-software/0/4ti2.md +++ b/docs/version-specific/supported-software/0/4ti2.md @@ -15,5 +15,5 @@ version | toolchain ``1.6.9`` | ``GCC/8.2.0-2.31.1`` ``1.6.9`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 91d20dff7..e31afd42c 100644 --- a/docs/version-specific/supported-software/0/index.md +++ b/docs/version-specific/supported-software/0/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (0) -*0* - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +*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) diff --git a/docs/version-specific/supported-software/a/ABAQUS.md b/docs/version-specific/supported-software/a/ABAQUS.md index 7f5f39581..55d2c48ba 100644 --- a/docs/version-specific/supported-software/a/ABAQUS.md +++ b/docs/version-specific/supported-software/a/ABAQUS.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``6.13.5`` | ``-linux-x86_64`` | ``system`` ``6.14.1`` | ``-linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ae5b24ec..3ad453512 100644 --- a/docs/version-specific/supported-software/a/ABINIT.md +++ b/docs/version-specific/supported-software/a/ABINIT.md @@ -38,5 +38,5 @@ version | versionsuffix | toolchain ``9.6.2`` | | ``intel/2021b`` ``9.6.2`` | | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b1ac5d6f..254182562 100644 --- a/docs/version-specific/supported-software/a/ABRA2.md +++ b/docs/version-specific/supported-software/a/ABRA2.md @@ -14,5 +14,5 @@ version | toolchain ``2.23`` | ``GCC/10.2.0`` ``2.23`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f225e2fb..497f92248 100644 --- a/docs/version-specific/supported-software/a/ABRicate.md +++ b/docs/version-specific/supported-software/a/ABRicate.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.9.9`` | | ``gompi/2019b`` ``1.0.0`` | | ``gompi/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bde216083..67d335f91 100644 --- a/docs/version-specific/supported-software/a/ABySS.md +++ b/docs/version-specific/supported-software/a/ABySS.md @@ -21,5 +21,5 @@ version | toolchain ``2.2.5`` | ``foss/2020b`` ``2.3.7`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c10e3a7cd..ea0ed5447 100644 --- a/docs/version-specific/supported-software/a/ACTC.md +++ b/docs/version-specific/supported-software/a/ACTC.md @@ -18,5 +18,5 @@ version | toolchain ``1.1`` | ``GCCcore/9.3.0`` ``1.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index adc205118..67dd4298a 100644 --- a/docs/version-specific/supported-software/a/ADDA.md +++ b/docs/version-specific/supported-software/a/ADDA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3b4`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d14bf2c3c..68bcfdccb 100644 --- a/docs/version-specific/supported-software/a/ADF.md +++ b/docs/version-specific/supported-software/a/ADF.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2016.101`` | | ``system`` ``2019.303`` | ``-intelmpi`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 941efe133..1a274ef54 100644 --- a/docs/version-specific/supported-software/a/ADIOS.md +++ b/docs/version-specific/supported-software/a/ADIOS.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.13.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``20210804`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b49533a4d..4073bc1c8 100644 --- a/docs/version-specific/supported-software/a/ADMIXTURE.md +++ b/docs/version-specific/supported-software/a/ADMIXTURE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7db55dae7..8aca04048 100644 --- a/docs/version-specific/supported-software/a/ADOL-C.md +++ b/docs/version-specific/supported-software/a/ADOL-C.md @@ -13,5 +13,5 @@ version | toolchain ``2.7.0`` | ``gompi/2019a`` ``2.7.2`` | ``gompi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 20fa3789a..cb39e0da3 100644 --- a/docs/version-specific/supported-software/a/AEDT.md +++ b/docs/version-specific/supported-software/a/AEDT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2024R1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3271862fc..88e91e277 100644 --- a/docs/version-specific/supported-software/a/AFNI.md +++ b/docs/version-specific/supported-software/a/AFNI.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``20160329`` | ``-Python-2.7.11`` | ``intel/2016a`` ``24.0.02`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9addc05f1..84d7a2967 100644 --- a/docs/version-specific/supported-software/a/AGAT.md +++ b/docs/version-specific/supported-software/a/AGAT.md @@ -13,5 +13,5 @@ version | toolchain ``0.9.2`` | ``GCC/11.2.0`` ``1.1.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 475b4a66e..6a6b81be3 100644 --- a/docs/version-specific/supported-software/a/AGFusion.md +++ b/docs/version-specific/supported-software/a/AGFusion.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 587a7cca8..06f11b12c 100644 --- a/docs/version-specific/supported-software/a/AGeNT.md +++ b/docs/version-specific/supported-software/a/AGeNT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81241ee4e..e5bda439d 100644 --- a/docs/version-specific/supported-software/a/AICSImageIO.md +++ b/docs/version-specific/supported-software/a/AICSImageIO.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.14.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 205e7fdd2..a5fb27bf8 100644 --- a/docs/version-specific/supported-software/a/AIMAll.md +++ b/docs/version-specific/supported-software/a/AIMAll.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``19.10.12`` | ``-linux_64bit`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8363ee9ce..e2941661f 100644 --- a/docs/version-specific/supported-software/a/ALADIN.md +++ b/docs/version-specific/supported-software/a/ALADIN.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``36t1_op2bf1`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a7bcf480..27d53a7c1 100644 --- a/docs/version-specific/supported-software/a/ALAMODE.md +++ b/docs/version-specific/supported-software/a/ALAMODE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 15b029d1a..2d121d613 100644 --- a/docs/version-specific/supported-software/a/ALFA.md +++ b/docs/version-specific/supported-software/a/ALFA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 127a4af28..13dad8559 100644 --- a/docs/version-specific/supported-software/a/ALL.md +++ b/docs/version-specific/supported-software/a/ALL.md @@ -13,5 +13,5 @@ version | toolchain ``0.9.2`` | ``foss/2022b`` ``0.9.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 62895a6e6..7ae636ca0 100644 --- a/docs/version-specific/supported-software/a/ALLPATHS-LG.md +++ b/docs/version-specific/supported-software/a/ALLPATHS-LG.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``52488`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index db6638e5f..cedd86dfd 100644 --- a/docs/version-specific/supported-software/a/ALPS.md +++ b/docs/version-specific/supported-software/a/ALPS.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.3.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.3.0`` | ``-Python-3.5.2`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 04dab27a6..36e501ea4 100644 --- a/docs/version-specific/supported-software/a/AMAPVox.md +++ b/docs/version-specific/supported-software/a/AMAPVox.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.9.4`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a3fd1622e..a144cb7c4 100644 --- a/docs/version-specific/supported-software/a/AMD-LibM.md +++ b/docs/version-specific/supported-software/a/AMD-LibM.md @@ -13,5 +13,5 @@ version | toolchain ``3.2.2`` | ``GCC/7.3.0-2.30`` ``3.6.0-4`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 31bf3fb27..6cb4ed5e2 100644 --- a/docs/version-specific/supported-software/a/AMD-RNG.md +++ b/docs/version-specific/supported-software/a/AMD-RNG.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``GCC/7.3.0-2.30`` ``2.2-4`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a1431b9ab..a3ffc4955 100644 --- a/docs/version-specific/supported-software/a/AMD-SecureRNG.md +++ b/docs/version-specific/supported-software/a/AMD-SecureRNG.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``GCC/7.3.0-2.30`` ``2.2-4`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f5d71345..fcd94f48c 100644 --- a/docs/version-specific/supported-software/a/AMD-uProf.md +++ b/docs/version-specific/supported-software/a/AMD-uProf.md @@ -14,5 +14,5 @@ version | toolchain ``3.5.671`` | ``system`` ``4.1.424`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4cecc80db..14b705eb0 100644 --- a/docs/version-specific/supported-software/a/AMGX.md +++ b/docs/version-specific/supported-software/a/AMGX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 172959c3a..1f7ed89d9 100644 --- a/docs/version-specific/supported-software/a/AMICA.md +++ b/docs/version-specific/supported-software/a/AMICA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2024.1.19`` | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc3651754..15430d6a6 100644 --- a/docs/version-specific/supported-software/a/AMOS.md +++ b/docs/version-specific/supported-software/a/AMOS.md @@ -14,5 +14,5 @@ version | toolchain ``3.1.0`` | ``foss/2021b`` ``3.1.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d2db3f92..0c799b67e 100644 --- a/docs/version-specific/supported-software/a/AMPHORA2.md +++ b/docs/version-specific/supported-software/a/AMPHORA2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190730`` | ``-Java-13-pthreads-avx2`` | ``gompi/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1a7e69905..d2d2d65c9 100644 --- a/docs/version-specific/supported-software/a/AMPL-MP.md +++ b/docs/version-specific/supported-software/a/AMPL-MP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1.0`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aaa97e699..584d0cf98 100644 --- a/docs/version-specific/supported-software/a/AMPtk.md +++ b/docs/version-specific/supported-software/a/AMPtk.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.4`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cbde4f4ae..036515915 100644 --- a/docs/version-specific/supported-software/a/AMRFinderPlus.md +++ b/docs/version-specific/supported-software/a/AMRFinderPlus.md @@ -13,5 +13,5 @@ version | toolchain ``3.11.18`` | ``gompi/2021b`` ``3.11.18`` | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3dc63e9d7..50a11f53f 100644 --- a/docs/version-specific/supported-software/a/AMS.md +++ b/docs/version-specific/supported-software/a/AMS.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2023.101`` | ``-intelmpi`` | ``iimpi/2022a`` ``2023.104`` | ``-intelmpi`` | ``iimpi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 743a8d07f..22456c1fd 100644 --- a/docs/version-specific/supported-software/a/ANGEL.md +++ b/docs/version-specific/supported-software/a/ANGEL.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1316e6692..786fd6bbe 100644 --- a/docs/version-specific/supported-software/a/ANIcalculator.md +++ b/docs/version-specific/supported-software/a/ANIcalculator.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``GCCcore/10.3.0`` ``1.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 689544814..30ae9edef 100644 --- a/docs/version-specific/supported-software/a/ANSYS.md +++ b/docs/version-specific/supported-software/a/ANSYS.md @@ -14,5 +14,5 @@ version | toolchain ``2022R2`` | ``system`` ``2023R1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c851457f4..7f2e6bc73 100644 --- a/docs/version-specific/supported-software/a/ANSYS_CFD.md +++ b/docs/version-specific/supported-software/a/ANSYS_CFD.md @@ -13,5 +13,5 @@ version | toolchain ``16.2`` | ``system`` ``17.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3ff178f71..caa931091 100644 --- a/docs/version-specific/supported-software/a/ANTIC.md +++ b/docs/version-specific/supported-software/a/ANTIC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.5`` | ``gfbf/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 51c411514..76f28b63b 100644 --- a/docs/version-specific/supported-software/a/ANTLR.md +++ b/docs/version-specific/supported-software/a/ANTLR.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``2.7.7`` | | ``intel/2017b`` ``2.7.7`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d4ff403b1..0b9f9e846 100644 --- a/docs/version-specific/supported-software/a/ANTs.md +++ b/docs/version-specific/supported-software/a/ANTs.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.3.5`` | | ``foss/2021a`` ``2.5.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 07dd54687..3e259b1dd 100644 --- a/docs/version-specific/supported-software/a/AOCC.md +++ b/docs/version-specific/supported-software/a/AOCC.md @@ -23,5 +23,5 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.2.0`` ``4.0.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9b50b4205..c3f97391d 100644 --- a/docs/version-specific/supported-software/a/AOFlagger.md +++ b/docs/version-specific/supported-software/a/AOFlagger.md @@ -13,5 +13,5 @@ version | toolchain ``3.4.0`` | ``foss/2022a`` ``3.4.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b95f3fb73..afb75c50f 100644 --- a/docs/version-specific/supported-software/a/AOMP.md +++ b/docs/version-specific/supported-software/a/AOMP.md @@ -13,5 +13,5 @@ version | toolchain ``13.0-2`` | ``GCCcore/10.2.0`` ``13.0-2`` | ``gcccuda/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3ff839557..22982a2b8 100644 --- a/docs/version-specific/supported-software/a/APBS.md +++ b/docs/version-specific/supported-software/a/APBS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-linux-static-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6e2259e70..feb064efa 100644 --- a/docs/version-specific/supported-software/a/APR-util.md +++ b/docs/version-specific/supported-software/a/APR-util.md @@ -21,5 +21,5 @@ version | toolchain ``1.6.1`` | ``iomkl/2018a`` ``1.6.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e7e4595c..ddba9652a 100644 --- a/docs/version-specific/supported-software/a/APR.md +++ b/docs/version-specific/supported-software/a/APR.md @@ -21,5 +21,5 @@ version | toolchain ``1.7.0`` | ``GCCcore/9.3.0`` ``1.7.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b3726a49..6abcd1286 100644 --- a/docs/version-specific/supported-software/a/ARAGORN.md +++ b/docs/version-specific/supported-software/a/ARAGORN.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.38`` | ``iccifort/2019.5.281`` ``1.2.41`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e5415877f..8d307ea88 100644 --- a/docs/version-specific/supported-software/a/ARCH.md +++ b/docs/version-specific/supported-software/a/ARCH.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb74a49ee..df28f9bdd 100644 --- a/docs/version-specific/supported-software/a/ARGoS.md +++ b/docs/version-specific/supported-software/a/ARGoS.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.0.0-beta53`` | ``-Lua-5.2.4`` | ``foss/2018b`` ``3.0.0-beta59`` | | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 082cce85d..c9ada6b14 100644 --- a/docs/version-specific/supported-software/a/ARPACK++.md +++ b/docs/version-specific/supported-software/a/ARPACK++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2018.03.26`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 36d81dea2..d2b32dd02 100644 --- a/docs/version-specific/supported-software/a/ART.md +++ b/docs/version-specific/supported-software/a/ART.md @@ -13,5 +13,5 @@ version | toolchain ``2016.06.05`` | ``GCCcore/6.4.0`` ``2016.06.05`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 34cde5377..82472d935 100644 --- a/docs/version-specific/supported-software/a/ARTS.md +++ b/docs/version-specific/supported-software/a/ARTS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.64`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f56829591..8cebbeb89 100644 --- a/docs/version-specific/supported-software/a/ARWEN.md +++ b/docs/version-specific/supported-software/a/ARWEN.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.3`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5ae8d8097..0e9d21706 100644 --- a/docs/version-specific/supported-software/a/ASAP.md +++ b/docs/version-specific/supported-software/a/ASAP.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 969927974..bb2b8043a 100644 --- a/docs/version-specific/supported-software/a/ASAP3.md +++ b/docs/version-specific/supported-software/a/ASAP3.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``3.13.3`` | | ``foss/2023a`` ``3.13.3`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 254515b9c..bf4eedd7c 100644 --- a/docs/version-specific/supported-software/a/ASCAT.md +++ b/docs/version-specific/supported-software/a/ASCAT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``3.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae15c76e5..0630af41f 100644 --- a/docs/version-specific/supported-software/a/ASE.md +++ b/docs/version-specific/supported-software/a/ASE.md @@ -65,5 +65,5 @@ version | versionsuffix | toolchain ``3.22.1`` | | ``intel/2022a`` ``3.9.1.4567`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 260cd9a80..b8de6deab 100644 --- a/docs/version-specific/supported-software/a/ASF-SearchAPI.md +++ b/docs/version-specific/supported-software/a/ASF-SearchAPI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.5.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 41628262a..f56b9663f 100644 --- a/docs/version-specific/supported-software/a/ASHS.md +++ b/docs/version-specific/supported-software/a/ASHS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``rev103_20140612`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 52ee7a986..f6eb24e9a 100644 --- a/docs/version-specific/supported-software/a/ASTRID.md +++ b/docs/version-specific/supported-software/a/ASTRID.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.1`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fa014fd22..85ba6a57c 100644 --- a/docs/version-specific/supported-software/a/ATAT.md +++ b/docs/version-specific/supported-software/a/ATAT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.36`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 54609dd79..a2cd1c001 100644 --- a/docs/version-specific/supported-software/a/ATK.md +++ b/docs/version-specific/supported-software/a/ATK.md @@ -35,5 +35,5 @@ version | toolchain ``2.38.0`` | ``GCCcore/12.3.0`` ``2.38.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f659dd25..60df4e0fb 100644 --- a/docs/version-specific/supported-software/a/ATLAS.md +++ b/docs/version-specific/supported-software/a/ATLAS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.10.2`` | ``-LAPACK-3.6.1`` | ``GCC/5.4.0-2.26`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0975d7701..4476e4f83 100644 --- a/docs/version-specific/supported-software/a/ATSAS.md +++ b/docs/version-specific/supported-software/a/ATSAS.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.5.1-1`` | ``.sl5.x86_64`` | ``system`` ``2.7.1-1`` | ``.el7.x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 86894b3cf..1e7f65d10 100644 --- a/docs/version-specific/supported-software/a/AUGUSTUS.md +++ b/docs/version-specific/supported-software/a/AUGUSTUS.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``foss/2022a`` ``3.5.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f42e67051..5b4fcfcad 100644 --- a/docs/version-specific/supported-software/a/AUTO-07p.md +++ b/docs/version-specific/supported-software/a/AUTO-07p.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.3`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cd6585097..d06e2ed60 100644 --- a/docs/version-specific/supported-software/a/Abseil.md +++ b/docs/version-specific/supported-software/a/Abseil.md @@ -16,5 +16,5 @@ version | toolchain ``20230125.3`` | ``GCCcore/12.3.0`` ``20240116.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 670612774..dc82b0345 100644 --- a/docs/version-specific/supported-software/a/AdapterRemoval.md +++ b/docs/version-specific/supported-software/a/AdapterRemoval.md @@ -18,5 +18,5 @@ version | toolchain ``2.3.2`` | ``GCC/11.2.0`` ``2.3.3`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b1405922f..528b470e5 100644 --- a/docs/version-specific/supported-software/a/Advisor.md +++ b/docs/version-specific/supported-software/a/Advisor.md @@ -23,5 +23,5 @@ version | toolchain ``2023.0.0`` | ``system`` ``2023.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 190378996..5b6f63eca 100644 --- a/docs/version-specific/supported-software/a/Albacore.md +++ b/docs/version-specific/supported-software/a/Albacore.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-Python-3.6.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 027e3f453..925324e84 100644 --- a/docs/version-specific/supported-software/a/Albumentations.md +++ b/docs/version-specific/supported-software/a/Albumentations.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.3.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aec991a42..520e868ae 100644 --- a/docs/version-specific/supported-software/a/Alfred.md +++ b/docs/version-specific/supported-software/a/Alfred.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.6`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5911ea95d..4f07c0ef1 100644 --- a/docs/version-specific/supported-software/a/Allinea.md +++ b/docs/version-specific/supported-software/a/Allinea.md @@ -14,5 +14,5 @@ version | toolchain ``4.1-32834-Redhat-6.0-x86_64`` | ``system`` ``6.1.1-Ubuntu-14.04-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ecda4776..bf311da7f 100644 --- a/docs/version-specific/supported-software/a/Alpha.md +++ b/docs/version-specific/supported-software/a/Alpha.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200430`` | ``-Python-2.7.16`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fd764f188..704ed38ac 100644 --- a/docs/version-specific/supported-software/a/AlphaFold.md +++ b/docs/version-specific/supported-software/a/AlphaFold.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``2.3.4`` | ``-CUDA-11.7.0-ColabFold`` | ``foss/2022a`` ``2.3.4`` | ``-ColabFold`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 998fa7098..6ce63a09a 100644 --- a/docs/version-specific/supported-software/a/AlphaPulldown.md +++ b/docs/version-specific/supported-software/a/AlphaPulldown.md @@ -13,5 +13,5 @@ version | toolchain ``0.30.4`` | ``foss/2020b`` ``0.30.4`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 68a742c00..ea33805dc 100644 --- a/docs/version-specific/supported-software/a/Amara.md +++ b/docs/version-specific/supported-software/a/Amara.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.0.2`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.2.0.2`` | ``-Python-2.7.15`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 540c0f06f..f0ce21797 100644 --- a/docs/version-specific/supported-software/a/Amber.md +++ b/docs/version-specific/supported-software/a/Amber.md @@ -35,5 +35,5 @@ version | versionsuffix | toolchain ``22.0`` | ``-AmberTools-22.3`` | ``foss/2021b`` ``22.4`` | ``-AmberTools-22.5-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f7e3f948f..b6ff262d9 100644 --- a/docs/version-specific/supported-software/a/AmberMini.md +++ b/docs/version-specific/supported-software/a/AmberMini.md @@ -13,5 +13,5 @@ version | toolchain ``16.16.0`` | ``intel/2017b`` ``16.16.0`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1964fa49c..7542d0053 100644 --- a/docs/version-specific/supported-software/a/AmberTools.md +++ b/docs/version-specific/supported-software/a/AmberTools.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``21.12`` | | ``foss/2021b`` ``22.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff918ec43..fc2db6fa2 100644 --- a/docs/version-specific/supported-software/a/AmrPlusPlus.md +++ b/docs/version-specific/supported-software/a/AmrPlusPlus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0-20200114`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 08f30dd8c..63fcc9239 100644 --- a/docs/version-specific/supported-software/a/Anaconda2.md +++ b/docs/version-specific/supported-software/a/Anaconda2.md @@ -21,5 +21,5 @@ version | toolchain ``5.1.0`` | ``system`` ``5.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b33fcf92f..9b3f3c3c3 100644 --- a/docs/version-specific/supported-software/a/Anaconda3.md +++ b/docs/version-specific/supported-software/a/Anaconda3.md @@ -32,5 +32,5 @@ version | toolchain ``5.1.0`` | ``system`` ``5.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0fa50916a..9fadea115 100644 --- a/docs/version-specific/supported-software/a/Annif.md +++ b/docs/version-specific/supported-software/a/Annif.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.40.0`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.40.0`` | ``-Python-3.7.2`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d2fb90828..214e36101 100644 --- a/docs/version-specific/supported-software/a/Annocript.md +++ b/docs/version-specific/supported-software/a/Annocript.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7b4acc2ae..1bb7824db 100644 --- a/docs/version-specific/supported-software/a/AptaSUITE.md +++ b/docs/version-specific/supported-software/a/AptaSUITE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.4`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ee8899b7..d5f67605a 100644 --- a/docs/version-specific/supported-software/a/Arb.md +++ b/docs/version-specific/supported-software/a/Arb.md @@ -18,5 +18,5 @@ version | toolchain ``2.22.1`` | ``foss/2021b`` ``2.23.0`` | ``gfbf/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6f49c5607..dc2e9d514 100644 --- a/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md +++ b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md @@ -13,5 +13,5 @@ version | toolchain ``0.7.3`` | ``foss/2021b`` ``0.8.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0cdd50cff..d2daefaf4 100644 --- a/docs/version-specific/supported-software/a/ArchR.md +++ b/docs/version-specific/supported-software/a/ArchR.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.2`` | ``-R-4.2.2`` | ``foss/2022b`` ``1.0.2`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e421b4d8b..3f37fcf3e 100644 --- a/docs/version-specific/supported-software/a/Archive-Zip.md +++ b/docs/version-specific/supported-software/a/Archive-Zip.md @@ -16,5 +16,5 @@ version | toolchain ``1.68`` | ``GCCcore/11.3.0`` ``1.68`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5cbd54a37..e78d38ab0 100644 --- a/docs/version-specific/supported-software/a/AreTomo2.md +++ b/docs/version-specific/supported-software/a/AreTomo2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 272b77311..c48ee2b65 100644 --- a/docs/version-specific/supported-software/a/Arlequin.md +++ b/docs/version-specific/supported-software/a/Arlequin.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.5.2.2`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 51100b312..af64dabe2 100644 --- a/docs/version-specific/supported-software/a/Armadillo.md +++ b/docs/version-specific/supported-software/a/Armadillo.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``9.900.1`` | | ``foss/2019b`` ``9.900.1`` | | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a71f06d48..cfc1d06e5 100644 --- a/docs/version-specific/supported-software/a/ArrayFire.md +++ b/docs/version-specific/supported-software/a/ArrayFire.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.6.4`` | ``-CUDA-9.2.88`` | ``foss/2018b`` ``3.6.4`` | | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84ca4cd8b..bb026753b 100644 --- a/docs/version-specific/supported-software/a/Arriba.md +++ b/docs/version-specific/supported-software/a/Arriba.md @@ -17,5 +17,5 @@ version | toolchain ``2.3.0`` | ``GCC/11.2.0`` ``2.4.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e8c05f4a..4c0f263c5 100644 --- a/docs/version-specific/supported-software/a/Arrow.md +++ b/docs/version-specific/supported-software/a/Arrow.md @@ -31,5 +31,5 @@ version | versionsuffix | toolchain ``8.0.0`` | | ``foss/2022.05`` ``8.0.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b276ab585..b065c1c20 100644 --- a/docs/version-specific/supported-software/a/Artemis.md +++ b/docs/version-specific/supported-software/a/Artemis.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``18.0.3`` | ``-Java-11`` | ``system`` ``18.2.0`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8c497e0bb..36be78300 100644 --- a/docs/version-specific/supported-software/a/ArviZ.md +++ b/docs/version-specific/supported-software/a/ArviZ.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.7.0`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2a0d78a72..15d04ae4a 100644 --- a/docs/version-specific/supported-software/a/Aspera-CLI.md +++ b/docs/version-specific/supported-software/a/Aspera-CLI.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.9.0`` | ``.1326.6985b21`` | ``system`` ``3.9.6`` | ``.1467.159c5b1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f2d2e5441..b131f632a 100644 --- a/docs/version-specific/supported-software/a/Aspera-Connect.md +++ b/docs/version-specific/supported-software/a/Aspera-Connect.md @@ -13,5 +13,5 @@ version | toolchain ``3.6.1`` | ``system`` ``3.9.6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d822dee2f..c871d3bf6 100644 --- a/docs/version-specific/supported-software/a/Assimulo.md +++ b/docs/version-specific/supported-software/a/Assimulo.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.9`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 86dc879ae..acf8c8946 100644 --- a/docs/version-specific/supported-software/a/AtomPAW.md +++ b/docs/version-specific/supported-software/a/AtomPAW.md @@ -13,5 +13,5 @@ version | toolchain ``4.1.0.5`` | ``intel/2018b`` ``4.1.0.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e7f17b68c..6113cae12 100644 --- a/docs/version-specific/supported-software/a/Austin.md +++ b/docs/version-specific/supported-software/a/Austin.md @@ -13,5 +13,5 @@ version | toolchain ``3.2.0`` | ``GCCcore/11.2.0`` ``3.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a6eb46079..346262786 100644 --- a/docs/version-specific/supported-software/a/AutoDock-GPU.md +++ b/docs/version-specific/supported-software/a/AutoDock-GPU.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b240152d5..9a40ab2b2 100644 --- a/docs/version-specific/supported-software/a/AutoDock-Vina.md +++ b/docs/version-specific/supported-software/a/AutoDock-Vina.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.2.3`` | | ``foss/2021a`` ``1.2.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4fdf5d607..2793fd926 100644 --- a/docs/version-specific/supported-software/a/AutoDock.md +++ b/docs/version-specific/supported-software/a/AutoDock.md @@ -13,5 +13,5 @@ version | toolchain ``4.2.5.1`` | ``GCC/5.2.0`` ``4.2.6`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3556401fb..af70a3f3e 100644 --- a/docs/version-specific/supported-software/a/AutoDockSuite.md +++ b/docs/version-specific/supported-software/a/AutoDockSuite.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.2.6`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f3eb01b97..ad68b4298 100644 --- a/docs/version-specific/supported-software/a/AutoGeneS.md +++ b/docs/version-specific/supported-software/a/AutoGeneS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 01d87f2dd..b3efe43f0 100644 --- a/docs/version-specific/supported-software/a/AutoGrid.md +++ b/docs/version-specific/supported-software/a/AutoGrid.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.2.5.1`` | ``GCC/5.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 67c82d468..6a97746c6 100644 --- a/docs/version-specific/supported-software/a/AutoMap.md +++ b/docs/version-specific/supported-software/a/AutoMap.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-20200324`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c397adb09..5e340b4af 100644 --- a/docs/version-specific/supported-software/a/Autoconf-archive.md +++ b/docs/version-specific/supported-software/a/Autoconf-archive.md @@ -14,5 +14,5 @@ version | toolchain ``2021.02.19`` | ``GCCcore/10.2.0`` ``2023.02.20`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 53730ef39..c68f7af67 100644 --- a/docs/version-specific/supported-software/a/Autoconf.md +++ b/docs/version-specific/supported-software/a/Autoconf.md @@ -57,5 +57,5 @@ version | toolchain ``2.71`` | ``system`` ``2.72`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a9d507a85..1c21f0eaa 100644 --- a/docs/version-specific/supported-software/a/Automake.md +++ b/docs/version-specific/supported-software/a/Automake.md @@ -62,5 +62,5 @@ version | toolchain ``1.16.5`` | ``GCCcore/13.3.0`` ``1.16.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 747a459d0..f1049e005 100644 --- a/docs/version-specific/supported-software/a/Autotools.md +++ b/docs/version-specific/supported-software/a/Autotools.md @@ -57,5 +57,5 @@ version | toolchain ``20220317`` | ``system`` ``20231222`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 418b5ecae..bd40b59b6 100644 --- a/docs/version-specific/supported-software/a/Avogadro2.md +++ b/docs/version-specific/supported-software/a/Avogadro2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.97.0`` | ``-linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f78c95257..e66a0f688 100644 --- a/docs/version-specific/supported-software/a/Ax.md +++ b/docs/version-specific/supported-software/a/Ax.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c79e3b65c..fbcf5bd57 100644 --- a/docs/version-specific/supported-software/a/aNCI.md +++ b/docs/version-specific/supported-software/a/aNCI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 565011b97..8cd6c75a6 100644 --- a/docs/version-specific/supported-software/a/abTEM.md +++ b/docs/version-specific/supported-software/a/abTEM.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.0b26`` | ``-ASE-3.22.0`` | ``foss/2020b`` ``1.0.0b26`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0f9932424..6e1a5f7e5 100644 --- a/docs/version-specific/supported-software/a/ack.md +++ b/docs/version-specific/supported-software/a/ack.md @@ -14,5 +14,5 @@ version | toolchain ``3.4.0`` | ``GCCcore/10.2.0`` ``3.5.0`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 527ee24f4..8e81170d7 100644 --- a/docs/version-specific/supported-software/a/ada.md +++ b/docs/version-specific/supported-software/a/ada.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0-5`` | ``-R-3.4.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e7cefeed2..f9fee8ecc 100644 --- a/docs/version-specific/supported-software/a/adjustText.md +++ b/docs/version-specific/supported-software/a/adjustText.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.7.3`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.1.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ebd69e124..eb190ec45 100644 --- a/docs/version-specific/supported-software/a/affinity.md +++ b/docs/version-specific/supported-software/a/affinity.md @@ -13,5 +13,5 @@ version | toolchain ``20230524`` | ``foss/2022a`` ``20230524`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94aad4010..0973dbee4 100644 --- a/docs/version-specific/supported-software/a/aiohttp.md +++ b/docs/version-specific/supported-software/a/aiohttp.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``3.8.5`` | | ``GCCcore/12.3.0`` ``3.9.5`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 87c8d4278..a9d496a39 100644 --- a/docs/version-specific/supported-software/a/alevin-fry.md +++ b/docs/version-specific/supported-software/a/alevin-fry.md @@ -14,5 +14,5 @@ version | toolchain ``0.6.0`` | ``GCCcore/10.3.0`` ``0.9.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 145474ca2..13b6be959 100644 --- a/docs/version-specific/supported-software/a/alleleCount.md +++ b/docs/version-specific/supported-software/a/alleleCount.md @@ -14,5 +14,5 @@ version | toolchain ``4.2.1`` | ``GCC/11.3.0`` ``4.3.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 00cf297de..10d9c847c 100644 --- a/docs/version-specific/supported-software/a/alleleIntegrator.md +++ b/docs/version-specific/supported-software/a/alleleIntegrator.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.8.8`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.8.8`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c3fd3c7f3..17f333432 100644 --- a/docs/version-specific/supported-software/a/almosthere.md +++ b/docs/version-specific/supported-software/a/almosthere.md @@ -14,5 +14,5 @@ version | toolchain ``1.0.10`` | ``GCCcore/9.3.0`` ``2.0.2`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ad2a1c67f..b784564a1 100644 --- a/docs/version-specific/supported-software/a/alsa-lib.md +++ b/docs/version-specific/supported-software/a/alsa-lib.md @@ -16,5 +16,5 @@ version | toolchain ``1.2.8`` | ``GCCcore/11.3.0`` ``1.2.9`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 099fdaa24..02ce36bb2 100644 --- a/docs/version-specific/supported-software/a/amask.md +++ b/docs/version-specific/supported-software/a/amask.md @@ -13,5 +13,5 @@ version | toolchain ``20171106`` | ``foss/2018a`` ``20190404`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5b3b8b971..ec5663ba1 100644 --- a/docs/version-specific/supported-software/a/amdahl.md +++ b/docs/version-specific/supported-software/a/amdahl.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.1`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0a164cb19..229a581dc 100644 --- a/docs/version-specific/supported-software/a/amplimap.md +++ b/docs/version-specific/supported-software/a/amplimap.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.16`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0b95f6c9c..6c5b165a4 100644 --- a/docs/version-specific/supported-software/a/anadama2.md +++ b/docs/version-specific/supported-software/a/anadama2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.10.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 253f9a927..af0516eb6 100644 --- a/docs/version-specific/supported-software/a/andi.md +++ b/docs/version-specific/supported-software/a/andi.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 61a30127c..b0f59bbff 100644 --- a/docs/version-specific/supported-software/a/angsd.md +++ b/docs/version-specific/supported-software/a/angsd.md @@ -19,5 +19,5 @@ version | toolchain ``0.940`` | ``GCC/11.2.0`` ``0.940`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8a7a80c5..38e709f8a 100644 --- a/docs/version-specific/supported-software/a/anndata.md +++ b/docs/version-specific/supported-software/a/anndata.md @@ -15,5 +15,5 @@ version | toolchain ``0.9.2`` | ``foss/2021a`` ``0.9.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a8ae3b4cd..4b68e3280 100644 --- a/docs/version-specific/supported-software/a/annovar.md +++ b/docs/version-specific/supported-software/a/annovar.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``20191024`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` ``20200607`` | ``-Perl-5.34.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7f01641d..f195f1b52 100644 --- a/docs/version-specific/supported-software/a/ant.md +++ b/docs/version-specific/supported-software/a/ant.md @@ -41,5 +41,5 @@ version | versionsuffix | toolchain ``1.9.6`` | ``-Java-1.8.0_77`` | ``system`` ``1.9.7`` | ``-Java-1.8.0_92`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e5921ec11..448e86a02 100644 --- a/docs/version-specific/supported-software/a/antiSMASH.md +++ b/docs/version-specific/supported-software/a/antiSMASH.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``5.2.0`` | | ``foss/2020b`` ``6.0.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 229830299..50e9b028c 100644 --- a/docs/version-specific/supported-software/a/anvio.md +++ b/docs/version-specific/supported-software/a/anvio.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``6.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``8`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 140464080..0a8436622 100644 --- a/docs/version-specific/supported-software/a/any2fasta.md +++ b/docs/version-specific/supported-software/a/any2fasta.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.4.2`` | | ``GCCcore/8.3.0`` ``0.4.2`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 761755d92..22d9891c5 100644 --- a/docs/version-specific/supported-software/a/apex.md +++ b/docs/version-specific/supported-software/a/apex.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20200325`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``20210420`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f6338c667..d18928467 100644 --- a/docs/version-specific/supported-software/a/arcasHLA.md +++ b/docs/version-specific/supported-software/a/arcasHLA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ba5196ae9..f39487872 100644 --- a/docs/version-specific/supported-software/a/archspec.md +++ b/docs/version-specific/supported-software/a/archspec.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.2.1`` | | ``GCCcore/12.3.0`` ``0.2.2`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 89703f32a..8be4fb22e 100644 --- a/docs/version-specific/supported-software/a/argtable.md +++ b/docs/version-specific/supported-software/a/argtable.md @@ -20,5 +20,5 @@ version | toolchain ``2.13`` | ``intel/2018a`` ``2.13`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 17efba3c7..b982990c3 100644 --- a/docs/version-specific/supported-software/a/aria2.md +++ b/docs/version-specific/supported-software/a/aria2.md @@ -13,5 +13,5 @@ version | toolchain ``1.35.0`` | ``GCCcore/10.3.0`` ``1.36.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 243c1731a..bbc3d0443 100644 --- a/docs/version-specific/supported-software/a/arosics.md +++ b/docs/version-specific/supported-software/a/arosics.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.6`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a89688d20..8d4a3ebcc 100644 --- a/docs/version-specific/supported-software/a/arpack-ng.md +++ b/docs/version-specific/supported-software/a/arpack-ng.md @@ -36,5 +36,5 @@ version | toolchain ``3.9.0`` | ``foss/2023b`` ``3.9.1`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c629eb475..552f17873 100644 --- a/docs/version-specific/supported-software/a/arrow-R.md +++ b/docs/version-specific/supported-software/a/arrow-R.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``6.0.0.2`` | ``-R-4.2.0`` | ``foss/2021b`` ``8.0.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bb6f0e809..ae1eda120 100644 --- a/docs/version-specific/supported-software/a/artic-ncov2019.md +++ b/docs/version-specific/supported-software/a/artic-ncov2019.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2020.04.13`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2021.06.24`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76abec230..6c5aeb9e5 100644 --- a/docs/version-specific/supported-software/a/assembly-stats.md +++ b/docs/version-specific/supported-software/a/assembly-stats.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d16cd313..46aabdf27 100644 --- a/docs/version-specific/supported-software/a/assimp.md +++ b/docs/version-specific/supported-software/a/assimp.md @@ -14,5 +14,5 @@ version | toolchain ``5.2.5`` | ``GCCcore/12.3.0`` ``5.3.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ab37724ba..5fd9b142d 100644 --- a/docs/version-specific/supported-software/a/astro-tulips.md +++ b/docs/version-specific/supported-software/a/astro-tulips.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bca428882..978265719 100644 --- a/docs/version-specific/supported-software/a/astropy.md +++ b/docs/version-specific/supported-software/a/astropy.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``5.1.1`` | | ``intel/2022a`` ``5.2.2`` | | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5027d53c9..dec098d49 100644 --- a/docs/version-specific/supported-software/a/at-spi2-atk.md +++ b/docs/version-specific/supported-software/a/at-spi2-atk.md @@ -22,5 +22,5 @@ version | toolchain ``2.38.0`` | ``GCCcore/12.3.0`` ``2.38.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a13066c0b..5c9da3b4d 100644 --- a/docs/version-specific/supported-software/a/at-spi2-core.md +++ b/docs/version-specific/supported-software/a/at-spi2-core.md @@ -22,5 +22,5 @@ version | toolchain ``2.49.91`` | ``GCCcore/12.3.0`` ``2.50.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f2796c7ac..451ebd16b 100644 --- a/docs/version-specific/supported-software/a/atomate.md +++ b/docs/version-specific/supported-software/a/atomate.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 891c9f053..e19435a48 100644 --- a/docs/version-specific/supported-software/a/atools.md +++ b/docs/version-specific/supported-software/a/atools.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.5.1`` | | ``GCCcore/12.3.0`` ``1.5.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f0c9e91d..b9e546894 100644 --- a/docs/version-specific/supported-software/a/atropos.md +++ b/docs/version-specific/supported-software/a/atropos.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.21`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.1.32`` | | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 240a280e9..4bbaf0501 100644 --- a/docs/version-specific/supported-software/a/attr.md +++ b/docs/version-specific/supported-software/a/attr.md @@ -17,5 +17,5 @@ version | toolchain ``2.5.1`` | ``GCCcore/11.3.0`` ``2.5.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 19c78efc6..fdfcd5c7a 100644 --- a/docs/version-specific/supported-software/a/attrdict.md +++ b/docs/version-specific/supported-software/a/attrdict.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6185e70ae..f7635ef49 100644 --- a/docs/version-specific/supported-software/a/attrdict3.md +++ b/docs/version-specific/supported-software/a/attrdict3.md @@ -14,5 +14,5 @@ version | toolchain ``2.0.2`` | ``GCCcore/11.3.0`` ``2.0.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9306e21eb..1113302e7 100644 --- a/docs/version-specific/supported-software/a/augur.md +++ b/docs/version-specific/supported-software/a/augur.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a499851f..b52e2046a 100644 --- a/docs/version-specific/supported-software/a/autopep8.md +++ b/docs/version-specific/supported-software/a/autopep8.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.0.4`` | | ``foss/2022a`` ``2.2.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 873f77b43..8fc20082d 100644 --- a/docs/version-specific/supported-software/a/avro-cpp.md +++ b/docs/version-specific/supported-software/a/avro-cpp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.11.1`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fb68cc272..b1c140403 100644 --- a/docs/version-specific/supported-software/a/awscli.md +++ b/docs/version-specific/supported-software/a/awscli.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``2.11.21`` | | ``GCCcore/11.3.0`` ``2.15.2`` | | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c668d1bb9..9d24111ec 100644 --- a/docs/version-specific/supported-software/a/axel.md +++ b/docs/version-specific/supported-software/a/axel.md @@ -13,5 +13,5 @@ version | toolchain ``2.17.9`` | ``GCCcore/8.3.0`` ``2.17.9`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be0d91b8e..02e615492 100644 --- a/docs/version-specific/supported-software/a/index.md +++ b/docs/version-specific/supported-software/a/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (a) -[../0/index.md](0) - *a* - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[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) diff --git a/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md index c38706c94..ee08a4282 100644 --- a/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md +++ b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.2`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3bedc58e..9cac2b891 100644 --- a/docs/version-specific/supported-software/b/BAGEL.md +++ b/docs/version-specific/supported-software/b/BAGEL.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.2`` | ``foss/2021a`` ``1.2.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 24570412a..c949fb52b 100644 --- a/docs/version-specific/supported-software/b/BAMM.md +++ b/docs/version-specific/supported-software/b/BAMM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 472122b14..7ccb496c6 100644 --- a/docs/version-specific/supported-software/b/BAMSurgeon.md +++ b/docs/version-specific/supported-software/b/BAMSurgeon.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94ce1e207..a742820ac 100644 --- a/docs/version-specific/supported-software/b/BAli-Phy.md +++ b/docs/version-specific/supported-software/b/BAli-Phy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.6.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a959b85d..1f942ca82 100644 --- a/docs/version-specific/supported-software/b/BBMap.md +++ b/docs/version-specific/supported-software/b/BBMap.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``39.01`` | | ``GCC/11.3.0`` ``39.01`` | | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e2ec46965..5dadda44e 100644 --- a/docs/version-specific/supported-software/b/BCALM.md +++ b/docs/version-specific/supported-software/b/BCALM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d3fe558d8..63b44f9bc 100644 --- a/docs/version-specific/supported-software/b/BCEL.md +++ b/docs/version-specific/supported-software/b/BCEL.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.2`` | ``-Java-1.8`` | ``system`` ``6.5.0`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b623a9f2..38074afab 100644 --- a/docs/version-specific/supported-software/b/BCFtools.md +++ b/docs/version-specific/supported-software/b/BCFtools.md @@ -34,5 +34,5 @@ version | toolchain ``1.9`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94d073acc..6c1ce68cc 100644 --- a/docs/version-specific/supported-software/b/BDBag.md +++ b/docs/version-specific/supported-software/b/BDBag.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.6.3`` | | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dfe904ce0..31527d88b 100644 --- a/docs/version-specific/supported-software/b/BEDOPS.md +++ b/docs/version-specific/supported-software/b/BEDOPS.md @@ -20,5 +20,5 @@ version | toolchain ``2.4.35`` | ``foss/2018b`` ``2.4.41`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3d55da098..e2b2d27a6 100644 --- a/docs/version-specific/supported-software/b/BEDTools.md +++ b/docs/version-specific/supported-software/b/BEDTools.md @@ -34,5 +34,5 @@ version | toolchain ``2.30.0`` | ``iccifort/2020.4.304`` ``2.31.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7b055f3e9..faf78f020 100644 --- a/docs/version-specific/supported-software/b/BEEF.md +++ b/docs/version-specific/supported-software/b/BEEF.md @@ -13,5 +13,5 @@ version | toolchain ``0.1.1`` | ``iccifort/2019.5.281`` ``0.1.1`` | ``iccifort/2020.4.304`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d06a773c..6d774d58c 100644 --- a/docs/version-specific/supported-software/b/BFAST.md +++ b/docs/version-specific/supported-software/b/BFAST.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.0a`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 241da7cf3..bc041dafa 100644 --- a/docs/version-specific/supported-software/b/BFC.md +++ b/docs/version-specific/supported-software/b/BFC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e71d3984..827ebeca5 100644 --- a/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md +++ b/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.03`` | ``gompi/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3fc97db43..4a69e37c6 100644 --- a/docs/version-specific/supported-software/b/BLACS.md +++ b/docs/version-specific/supported-software/b/BLACS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``gmvapich2/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index feaa8f7df..dff3cfdc3 100644 --- a/docs/version-specific/supported-software/b/BLASR.md +++ b/docs/version-specific/supported-software/b/BLASR.md @@ -14,5 +14,5 @@ version | toolchain ``20170330`` | ``intel/2017a`` ``5.3.3`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 822711f8c..7dd36785e 100644 --- a/docs/version-specific/supported-software/b/BLAST+.md +++ b/docs/version-specific/supported-software/b/BLAST+.md @@ -38,5 +38,5 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``iimpi/2019a`` ``2.9.0`` | | ``iimpi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ebc50cf6f..5307b1c46 100644 --- a/docs/version-specific/supported-software/b/BLAST.md +++ b/docs/version-specific/supported-software/b/BLAST.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.2.26`` | ``-Linux_x86_64`` | ``system`` ``2.8.1`` | ``-Linux_x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7ead11aa4..905133cfd 100644 --- a/docs/version-specific/supported-software/b/BLAT.md +++ b/docs/version-specific/supported-software/b/BLAT.md @@ -21,5 +21,5 @@ version | toolchain ``3.7`` | ``GCC/11.2.0`` ``3.7`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ac1849b50..ed89b8e21 100644 --- a/docs/version-specific/supported-software/b/BLIS.md +++ b/docs/version-specific/supported-software/b/BLIS.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-amd`` | ``GCCcore/10.3.0`` ``3.1`` | ``-amd`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3e90c148..978ba96ae 100644 --- a/docs/version-specific/supported-software/b/BLT.md +++ b/docs/version-specific/supported-software/b/BLT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20181223`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84620fdb3..effc65cc8 100644 --- a/docs/version-specific/supported-software/b/BMTK.md +++ b/docs/version-specific/supported-software/b/BMTK.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.8`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ffd4c16e..3a47e40c8 100644 --- a/docs/version-specific/supported-software/b/BOINC.md +++ b/docs/version-specific/supported-software/b/BOINC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.2.42`` | ``-client`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d9828f5d6..be8af6977 100644 --- a/docs/version-specific/supported-software/b/BOPTEST.md +++ b/docs/version-specific/supported-software/b/BOPTEST.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d7b5d5b07..5b6b8f861 100644 --- a/docs/version-specific/supported-software/b/BRAKER.md +++ b/docs/version-specific/supported-software/b/BRAKER.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.1.6`` | | ``foss/2021b`` ``2.1.6`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be408d72c..7672db415 100644 --- a/docs/version-specific/supported-software/b/BRiAl.md +++ b/docs/version-specific/supported-software/b/BRiAl.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.12`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3725f9da..a9e862f50 100644 --- a/docs/version-specific/supported-software/b/BSMAPz.md +++ b/docs/version-specific/supported-software/b/BSMAPz.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8e2ef6248..86578c0fb 100644 --- a/docs/version-specific/supported-software/b/BSseeker2.md +++ b/docs/version-specific/supported-software/b/BSseeker2.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 11f0089d9..9fa0ead31 100644 --- a/docs/version-specific/supported-software/b/BUFRLIB.md +++ b/docs/version-specific/supported-software/b/BUFRLIB.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``11.3.0.2`` | ``iccifort/2020.1.217`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3eb155964..600acb5af 100644 --- a/docs/version-specific/supported-software/b/BUSCO.md +++ b/docs/version-specific/supported-software/b/BUSCO.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``5.4.5`` | | ``foss/2022a`` ``5.4.7`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 32150b641..7a9d5ecf1 100644 --- a/docs/version-specific/supported-software/b/BUStools.md +++ b/docs/version-specific/supported-software/b/BUStools.md @@ -14,5 +14,5 @@ version | toolchain ``0.40.0`` | ``foss/2018b`` ``0.43.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3dfe1d382..b96145e39 100644 --- a/docs/version-specific/supported-software/b/BWA.md +++ b/docs/version-specific/supported-software/b/BWA.md @@ -42,5 +42,5 @@ version | toolchain ``0.7.17`` | ``intel/2018b`` ``0.7.18`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eabe2031c..33d94cf1f 100644 --- a/docs/version-specific/supported-software/b/BWISE.md +++ b/docs/version-specific/supported-software/b/BWISE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180820`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a5dd10d07..3b7221efb 100644 --- a/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md +++ b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.11.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7262299d3..923404eeb 100644 --- a/docs/version-specific/supported-software/b/BabelStream.md +++ b/docs/version-specific/supported-software/b/BabelStream.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4`` | ``-omp`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5056cd7d7..f6880ecd2 100644 --- a/docs/version-specific/supported-software/b/Bader.md +++ b/docs/version-specific/supported-software/b/Bader.md @@ -15,5 +15,5 @@ version | toolchain ``1.04`` | ``GCC/11.2.0`` ``1.04`` | ``iccifort/2020.4.304`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b7713a36..c91363c0b 100644 --- a/docs/version-specific/supported-software/b/BamTools.md +++ b/docs/version-specific/supported-software/b/BamTools.md @@ -32,5 +32,5 @@ version | toolchain ``2.5.2`` | ``GCC/12.2.0`` ``2.5.2`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ac443002e..8d215eadd 100644 --- a/docs/version-specific/supported-software/b/BamUtil.md +++ b/docs/version-specific/supported-software/b/BamUtil.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.13`` | ``intel/2016b`` ``1.0.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6efb26e6b..1cebb2d38 100644 --- a/docs/version-specific/supported-software/b/Bambi.md +++ b/docs/version-specific/supported-software/b/Bambi.md @@ -13,5 +13,5 @@ version | toolchain ``0.7.1`` | ``foss/2021b`` ``0.7.1`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3169921c9..aaa17adc4 100644 --- a/docs/version-specific/supported-software/b/Bandage.md +++ b/docs/version-specific/supported-software/b/Bandage.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``GCCcore/11.2.0`` ``0.9.0`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 324608705..19872c961 100644 --- a/docs/version-specific/supported-software/b/Bash.md +++ b/docs/version-specific/supported-software/b/Bash.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3`` | ``GCC/4.9.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e01b6a5e8..1caf4e366 100644 --- a/docs/version-specific/supported-software/b/BatMeth2.md +++ b/docs/version-specific/supported-software/b/BatMeth2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9fd868fc1..e640b0b27 100644 --- a/docs/version-specific/supported-software/b/BayeScEnv.md +++ b/docs/version-specific/supported-software/b/BayeScEnv.md @@ -14,5 +14,5 @@ version | toolchain ``1.1`` | ``foss/2016a`` ``1.1`` | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 299d6d9e6..2f55ac1ac 100644 --- a/docs/version-specific/supported-software/b/BayeScan.md +++ b/docs/version-specific/supported-software/b/BayeScan.md @@ -14,5 +14,5 @@ version | toolchain ``2.1`` | ``foss/2018a`` ``2.1`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1c12aea18..29fae104d 100644 --- a/docs/version-specific/supported-software/b/BayesAss.md +++ b/docs/version-specific/supported-software/b/BayesAss.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.4`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 824c0c0c7..c09119b6a 100644 --- a/docs/version-specific/supported-software/b/BayesAss3-SNPs.md +++ b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 93c827071..708bc821a 100644 --- a/docs/version-specific/supported-software/b/BayesPrism.md +++ b/docs/version-specific/supported-software/b/BayesPrism.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 481514101..db1d6d041 100644 --- a/docs/version-specific/supported-software/b/BayesTraits.md +++ b/docs/version-specific/supported-software/b/BayesTraits.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.0`` | ``-Beta-Linux64`` | ``system`` ``3.0.2`` | ``-Linux`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 99b8ce4a9..1943e8f4f 100644 --- a/docs/version-specific/supported-software/b/Bazel.md +++ b/docs/version-specific/supported-software/b/Bazel.md @@ -43,5 +43,5 @@ version | versionsuffix | toolchain ``6.3.1`` | | ``GCCcore/12.2.0`` ``6.3.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a36843510..9d1edd643 100644 --- a/docs/version-specific/supported-software/b/Beagle.md +++ b/docs/version-specific/supported-software/b/Beagle.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.4.22Jul22.46e`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0481dba04..51a02c879 100644 --- a/docs/version-specific/supported-software/b/Beast.md +++ b/docs/version-specific/supported-software/b/Beast.md @@ -24,5 +24,5 @@ version | toolchain ``2.6.7`` | ``GCC/10.3.0`` ``2.7.3`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 175b7c43b..376d990c3 100644 --- a/docs/version-specific/supported-software/b/BeautifulSoup.md +++ b/docs/version-specific/supported-software/b/BeautifulSoup.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``4.9.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``4.9.3`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f2ccb3fdb..ae11aaa66 100644 --- a/docs/version-specific/supported-software/b/BerkeleyGW.md +++ b/docs/version-specific/supported-software/b/BerkeleyGW.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``intel/2022a`` ``4.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 12745a1a3..0663686ef 100644 --- a/docs/version-specific/supported-software/b/BgeeCall.md +++ b/docs/version-specific/supported-software/b/BgeeCall.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.16.0`` | ``-R-%(rver)s`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0aba79318..be09c211b 100644 --- a/docs/version-specific/supported-software/b/BgeeDB.md +++ b/docs/version-specific/supported-software/b/BgeeDB.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.26.0`` | ``-R-%(rver)s`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ce23f86e..733f8889b 100644 --- a/docs/version-specific/supported-software/b/BiG-SCAPE.md +++ b/docs/version-specific/supported-software/b/BiG-SCAPE.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.5`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 13df56284..6d28fd974 100644 --- a/docs/version-specific/supported-software/b/BiasAdjustCXX.md +++ b/docs/version-specific/supported-software/b/BiasAdjustCXX.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.9.1`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9ec080dd9..06f72c750 100644 --- a/docs/version-specific/supported-software/b/BigDFT.md +++ b/docs/version-specific/supported-software/b/BigDFT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.9.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af709b54c..e877d02c2 100644 --- a/docs/version-specific/supported-software/b/BinSanity.md +++ b/docs/version-specific/supported-software/b/BinSanity.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.5`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2dc55b330..bea5d0282 100644 --- a/docs/version-specific/supported-software/b/Bio-DB-HTS.md +++ b/docs/version-specific/supported-software/b/Bio-DB-HTS.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``3.01`` | | ``GCC/12.2.0`` ``3.01`` | ``-Perl-5.28.1`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 47d65ff2c..1e0137594 100644 --- a/docs/version-specific/supported-software/b/Bio-EUtilities.md +++ b/docs/version-specific/supported-software/b/Bio-EUtilities.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.76`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6be8f1816..fc7e82469 100644 --- a/docs/version-specific/supported-software/b/Bio-FeatureIO.md +++ b/docs/version-specific/supported-software/b/Bio-FeatureIO.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.905`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 360967d20..2a567b4a8 100644 --- a/docs/version-specific/supported-software/b/Bio-SamTools.md +++ b/docs/version-specific/supported-software/b/Bio-SamTools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.43`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 40c5434ff..f2643389a 100644 --- a/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md +++ b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md @@ -16,5 +16,5 @@ version | toolchain ``1.7.3`` | ``GCC/11.3.0`` ``1.7.3`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc67aedc5..babb757ec 100644 --- a/docs/version-specific/supported-software/b/BioPP.md +++ b/docs/version-specific/supported-software/b/BioPP.md @@ -13,5 +13,5 @@ version | toolchain ``2.4.1`` | ``GCC/8.2.0-2.31.1`` ``2.4.1`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc5f53ba0..5288687c8 100644 --- a/docs/version-specific/supported-software/b/BioPerl.md +++ b/docs/version-specific/supported-software/b/BioPerl.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``1.7.8`` | | ``GCCcore/12.2.0`` ``1.7.8`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1f6ed2529..0b166cd06 100644 --- a/docs/version-specific/supported-software/b/BioServices.md +++ b/docs/version-specific/supported-software/b/BioServices.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.9`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 924e063b4..d4495cbad 100644 --- a/docs/version-specific/supported-software/b/Biopython.md +++ b/docs/version-specific/supported-software/b/Biopython.md @@ -50,5 +50,5 @@ version | versionsuffix | toolchain ``1.81`` | | ``foss/2022b`` ``1.83`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8b605b415..736a47e87 100644 --- a/docs/version-specific/supported-software/b/BirdNET.md +++ b/docs/version-specific/supported-software/b/BirdNET.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20201214`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae1de6e44..d4a49b158 100644 --- a/docs/version-specific/supported-software/b/Bismark.md +++ b/docs/version-specific/supported-software/b/Bismark.md @@ -17,5 +17,5 @@ version | toolchain ``0.24.0`` | ``GCC/11.3.0`` ``0.24.1`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca55eca27..3a781b0ff 100644 --- a/docs/version-specific/supported-software/b/Bison.md +++ b/docs/version-specific/supported-software/b/Bison.md @@ -90,5 +90,5 @@ version | toolchain ``3.8.2`` | ``GCCcore/9.5.0`` ``3.8.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3072d3483..62bbe4dd7 100644 --- a/docs/version-specific/supported-software/b/Blender.md +++ b/docs/version-specific/supported-software/b/Blender.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``3.6.5`` | ``-linux-x86_64-CUDA-12.1.1`` | ``system`` ``4.0.1`` | ``-linux-x86_64-CUDA-12.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 15e6faf3d..12be83f5b 100644 --- a/docs/version-specific/supported-software/b/Blitz++.md +++ b/docs/version-specific/supported-software/b/Blitz++.md @@ -19,5 +19,5 @@ version | toolchain ``1.0.2`` | ``GCCcore/13.2.0`` ``1.0.2`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f13e03e28..c131a5657 100644 --- a/docs/version-specific/supported-software/b/BlobTools.md +++ b/docs/version-specific/supported-software/b/BlobTools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180528`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 523089e0e..adbd0aef4 100644 --- a/docs/version-specific/supported-software/b/Block.md +++ b/docs/version-specific/supported-software/b/Block.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.3-20200525`` | ``foss/2022a`` ``1.5.3-20200525`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 956e6b80f..c08e28a1b 100644 --- a/docs/version-specific/supported-software/b/Blosc.md +++ b/docs/version-specific/supported-software/b/Blosc.md @@ -29,5 +29,5 @@ version | toolchain ``1.21.5`` | ``GCCcore/12.3.0`` ``1.21.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb7bb769b..9b365951e 100644 --- a/docs/version-specific/supported-software/b/Blosc2.md +++ b/docs/version-specific/supported-software/b/Blosc2.md @@ -19,5 +19,5 @@ version | toolchain ``2.8.0`` | ``GCCcore/12.2.0`` ``2.8.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 582068d0e..de4a74b2b 100644 --- a/docs/version-specific/supported-software/b/BoltzTraP.md +++ b/docs/version-specific/supported-software/b/BoltzTraP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.5`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f169110eb..e864c8964 100644 --- a/docs/version-specific/supported-software/b/BoltzTraP2.md +++ b/docs/version-specific/supported-software/b/BoltzTraP2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``22.12.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 931c5adfa..a93134c94 100644 --- a/docs/version-specific/supported-software/b/Bonito.md +++ b/docs/version-specific/supported-software/b/Bonito.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.3.8`` | | ``fosscuda/2020b`` ``0.4.0`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 198158de4..abecf25de 100644 --- a/docs/version-specific/supported-software/b/Bonmin.md +++ b/docs/version-specific/supported-software/b/Bonmin.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.7`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 073d2255f..02f4eae69 100644 --- a/docs/version-specific/supported-software/b/Bonnie++.md +++ b/docs/version-specific/supported-software/b/Bonnie++.md @@ -13,5 +13,5 @@ version | toolchain ``1.97`` | ``foss/2016a`` ``2.00a`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0286146d6..597e526be 100644 --- a/docs/version-specific/supported-software/b/Boost.MPI.md +++ b/docs/version-specific/supported-software/b/Boost.MPI.md @@ -17,5 +17,5 @@ version | toolchain ``1.81.0`` | ``gompi/2022b`` ``1.82.0`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf3ebe940..fcc94a8c3 100644 --- a/docs/version-specific/supported-software/b/Boost.Python-NumPy.md +++ b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.79.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 12eb5d6df..acd92fbac 100644 --- a/docs/version-specific/supported-software/b/Boost.Python.md +++ b/docs/version-specific/supported-software/b/Boost.Python.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``1.79.0`` | | ``GCC/11.3.0`` ``1.83.0`` | | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 874d4f19b..7c7651fab 100644 --- a/docs/version-specific/supported-software/b/Boost.md +++ b/docs/version-specific/supported-software/b/Boost.md @@ -105,5 +105,5 @@ version | versionsuffix | toolchain ``1.83.0`` | | ``GCC/13.2.0`` ``1.85.0`` | | ``GCC/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ec63aeb1..dab6f0db8 100644 --- a/docs/version-specific/supported-software/b/Bottleneck.md +++ b/docs/version-specific/supported-software/b/Bottleneck.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.6`` | | ``foss/2022a`` ``1.3.7`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3b215c9af..c9baf97b5 100644 --- a/docs/version-specific/supported-software/b/Bowtie.md +++ b/docs/version-specific/supported-software/b/Bowtie.md @@ -33,5 +33,5 @@ version | toolchain ``1.3.1`` | ``GCC/11.2.0`` ``1.3.1`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8ff567f2b..29b3efe09 100644 --- a/docs/version-specific/supported-software/b/Bowtie2.md +++ b/docs/version-specific/supported-software/b/Bowtie2.md @@ -38,5 +38,5 @@ version | toolchain ``2.5.1`` | ``GCC/12.2.0`` ``2.5.1`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c93b65ab2..fba9543e2 100644 --- a/docs/version-specific/supported-software/b/Bpipe.md +++ b/docs/version-specific/supported-software/b/Bpipe.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.9.2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d4338ff6..b52000cd6 100644 --- a/docs/version-specific/supported-software/b/Bracken.md +++ b/docs/version-specific/supported-software/b/Bracken.md @@ -15,5 +15,5 @@ version | toolchain ``2.7`` | ``GCCcore/11.2.0`` ``2.9`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ebc1647e9..4e0ac17c8 100644 --- a/docs/version-specific/supported-software/b/Braindecode.md +++ b/docs/version-specific/supported-software/b/Braindecode.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` ``0.8.1`` | ``-PyTorch-2.1.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3319f0618..6f565e012 100644 --- a/docs/version-specific/supported-software/b/BreakDancer.md +++ b/docs/version-specific/supported-software/b/BreakDancer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.5`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aec7543b9..8cf99a229 100644 --- a/docs/version-specific/supported-software/b/Brotli-python.md +++ b/docs/version-specific/supported-software/b/Brotli-python.md @@ -17,5 +17,5 @@ version | toolchain ``1.0.9`` | ``GCCcore/12.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8030924af..1c7867343 100644 --- a/docs/version-specific/supported-software/b/Brotli.md +++ b/docs/version-specific/supported-software/b/Brotli.md @@ -20,5 +20,5 @@ version | toolchain ``1.1.0`` | ``GCCcore/13.2.0`` ``1.1.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d90e5ec5..826afcc8d 100644 --- a/docs/version-specific/supported-software/b/Brunsli.md +++ b/docs/version-specific/supported-software/b/Brunsli.md @@ -16,5 +16,5 @@ version | toolchain ``0.1`` | ``GCCcore/12.2.0`` ``0.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 65ca6aa1c..3ed98c0e3 100644 --- a/docs/version-specific/supported-software/b/Bsoft.md +++ b/docs/version-specific/supported-software/b/Bsoft.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.2`` | ``foss/2017b`` ``2.0.7`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fa0a7c184..2b78e6f9d 100644 --- a/docs/version-specific/supported-software/b/BuDDy.md +++ b/docs/version-specific/supported-software/b/BuDDy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0e5c8e986..763d9bae1 100644 --- a/docs/version-specific/supported-software/b/Bullet.md +++ b/docs/version-specific/supported-software/b/Bullet.md @@ -13,5 +13,5 @@ version | toolchain ``2.83.7`` | ``foss/2016a`` ``2.83.7`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2c512b922..3298fe3d5 100644 --- a/docs/version-specific/supported-software/b/babl.md +++ b/docs/version-specific/supported-software/b/babl.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.86`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d8c4eb7ee..a27a64d93 100644 --- a/docs/version-specific/supported-software/b/bam-readcount.md +++ b/docs/version-specific/supported-software/b/bam-readcount.md @@ -15,5 +15,5 @@ version | toolchain ``0.8.0`` | ``foss/2018b`` ``1.0.1`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2a61087d4..05e957564 100644 --- a/docs/version-specific/supported-software/b/bamFilters.md +++ b/docs/version-specific/supported-software/b/bamFilters.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2022-06-30`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5e0b7c59..6263ecf9a 100644 --- a/docs/version-specific/supported-software/b/bamtofastq.md +++ b/docs/version-specific/supported-software/b/bamtofastq.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.0`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff1a3556e..022bd861f 100644 --- a/docs/version-specific/supported-software/b/barrnap.md +++ b/docs/version-specific/supported-software/b/barrnap.md @@ -16,5 +16,5 @@ version | toolchain ``0.9`` | ``gompi/2021b`` ``0.9`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b6d78508f..2c5aa3574 100644 --- a/docs/version-specific/supported-software/b/basemap.md +++ b/docs/version-specific/supported-software/b/basemap.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.3.6`` | | ``foss/2022a`` ``1.3.9`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bf02084b..a8ea41bfa 100644 --- a/docs/version-specific/supported-software/b/bases2fastq.md +++ b/docs/version-specific/supported-software/b/bases2fastq.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a9463c87..39d489a3a 100644 --- a/docs/version-specific/supported-software/b/bashplotlib.md +++ b/docs/version-specific/supported-software/b/bashplotlib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.5`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 54c4a6829..7ca15f182 100644 --- a/docs/version-specific/supported-software/b/bat.md +++ b/docs/version-specific/supported-software/b/bat.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-Python-3.6.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 70fad50df..1046b8da7 100644 --- a/docs/version-specific/supported-software/b/batchgenerators.md +++ b/docs/version-specific/supported-software/b/batchgenerators.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.25`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf2f4f90e..25c78ff29 100644 --- a/docs/version-specific/supported-software/b/bbFTP.md +++ b/docs/version-specific/supported-software/b/bbFTP.md @@ -14,5 +14,5 @@ version | toolchain ``3.2.1`` | ``intel/2016a`` ``3.2.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f141e4946..25bb946ca 100644 --- a/docs/version-specific/supported-software/b/bbcp.md +++ b/docs/version-specific/supported-software/b/bbcp.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``12.01.30.00.0`` | ``-amd64_linux26`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 083a31fd0..5c13a24b9 100644 --- a/docs/version-specific/supported-software/b/bc.md +++ b/docs/version-specific/supported-software/b/bc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.06.95`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3cdd6b2a..03a8fbb32 100644 --- a/docs/version-specific/supported-software/b/bcbio-gff.md +++ b/docs/version-specific/supported-software/b/bcbio-gff.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.7.0`` | | ``foss/2022a`` ``0.7.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 157ad1641..95c54f34a 100644 --- a/docs/version-specific/supported-software/b/bcgTree.md +++ b/docs/version-specific/supported-software/b/bcgTree.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.10`` | ``-Perl-5.26.1`` | ``intel/2018a`` ``1.1.0`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d102ecb0..2c9118236 100644 --- a/docs/version-specific/supported-software/b/bcl-convert.md +++ b/docs/version-specific/supported-software/b/bcl-convert.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.3-2`` | ``el7.x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1bd9355b..54c84b7b4 100644 --- a/docs/version-specific/supported-software/b/bcl2fastq2.md +++ b/docs/version-specific/supported-software/b/bcl2fastq2.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``2.20.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.20.0`` | | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ac09c257..ce391bfd8 100644 --- a/docs/version-specific/supported-software/b/bcolz.md +++ b/docs/version-specific/supported-software/b/bcolz.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.2.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 58ad958ef..23c205fc1 100644 --- a/docs/version-specific/supported-software/b/bcrypt.md +++ b/docs/version-specific/supported-software/b/bcrypt.md @@ -13,5 +13,5 @@ version | toolchain ``4.0.1`` | ``GCCcore/12.3.0`` ``4.1.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e46ad7faf..06b0489d3 100644 --- a/docs/version-specific/supported-software/b/beagle-lib.md +++ b/docs/version-specific/supported-software/b/beagle-lib.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``3.1.2`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``4.0.0`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0046f4d25..bb8be9bc6 100644 --- a/docs/version-specific/supported-software/b/behave.md +++ b/docs/version-specific/supported-software/b/behave.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.5`` | ``-Python-2.7.12`` | ``foss/2016b`` ``1.2.6`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d8c70644..437f4b2a0 100644 --- a/docs/version-specific/supported-software/b/bench.md +++ b/docs/version-specific/supported-software/b/bench.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4344d3851..9bd481a89 100644 --- a/docs/version-specific/supported-software/b/bgen-reader.md +++ b/docs/version-specific/supported-software/b/bgen-reader.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b78c73381..be800dc86 100644 --- a/docs/version-specific/supported-software/b/bgen.md +++ b/docs/version-specific/supported-software/b/bgen.md @@ -14,5 +14,5 @@ version | toolchain ``3.0.3`` | ``GCCcore/9.3.0`` ``4.1.3`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 19435f2e9..d9f581c50 100644 --- a/docs/version-specific/supported-software/b/bibtexparser.md +++ b/docs/version-specific/supported-software/b/bibtexparser.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d37b829ad..6d74b1a44 100644 --- a/docs/version-specific/supported-software/b/binutils.md +++ b/docs/version-specific/supported-software/b/binutils.md @@ -74,5 +74,5 @@ version | toolchain ``2.42`` | ``GCCcore/14.1.0`` ``2.42`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9f35adddf..4c6b079b1 100644 --- a/docs/version-specific/supported-software/b/bioawk.md +++ b/docs/version-specific/supported-software/b/bioawk.md @@ -14,5 +14,5 @@ version | toolchain ``1.0`` | ``GCC/11.2.0`` ``1.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be9df683d..72af4d359 100644 --- a/docs/version-specific/supported-software/b/biobakery-workflows.md +++ b/docs/version-specific/supported-software/b/biobakery-workflows.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a840dc2c0..d256e1b50 100644 --- a/docs/version-specific/supported-software/b/biobambam2.md +++ b/docs/version-specific/supported-software/b/biobambam2.md @@ -14,5 +14,5 @@ version | toolchain ``2.0.87`` | ``GCC/11.3.0`` ``2.0.87`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f308c0634..a3245bdf8 100644 --- a/docs/version-specific/supported-software/b/biogeme.md +++ b/docs/version-specific/supported-software/b/biogeme.md @@ -15,5 +15,5 @@ version | toolchain ``3.2.6`` | ``foss/2022a`` ``3.2.8`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 96b5b32a5..4e0344135 100644 --- a/docs/version-specific/supported-software/b/biom-format.md +++ b/docs/version-specific/supported-software/b/biom-format.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.1.15`` | | ``foss/2022b`` ``2.1.15`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 963ccf8ea..cb082ae3f 100644 --- a/docs/version-specific/supported-software/b/biomart-perl.md +++ b/docs/version-specific/supported-software/b/biomart-perl.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7_e6db561`` | ``-Perl-5.26.0`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2e6701b9..d643b94c4 100644 --- a/docs/version-specific/supported-software/b/biscuit.md +++ b/docs/version-specific/supported-software/b/biscuit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.4`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f12a3cb22..009305e41 100644 --- a/docs/version-specific/supported-software/b/bitarray.md +++ b/docs/version-specific/supported-software/b/bitarray.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.5.3`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e534cfc9d..2ba09270d 100644 --- a/docs/version-specific/supported-software/b/bitshuffle.md +++ b/docs/version-specific/supported-software/b/bitshuffle.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 260e8d90b..cf2ad67b1 100644 --- a/docs/version-specific/supported-software/b/blasr_libcpp.md +++ b/docs/version-specific/supported-software/b/blasr_libcpp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20170426`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 839a09b67..359f84b01 100644 --- a/docs/version-specific/supported-software/b/bmtagger.md +++ b/docs/version-specific/supported-software/b/bmtagger.md @@ -14,5 +14,5 @@ version | toolchain ``3.101`` | ``gompi/2019a`` ``3.101`` | ``gompi/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 58b650801..98ff9402b 100644 --- a/docs/version-specific/supported-software/b/bnpy.md +++ b/docs/version-specific/supported-software/b/bnpy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 112b4c241..6d13f21dd 100644 --- a/docs/version-specific/supported-software/b/bokeh.md +++ b/docs/version-specific/supported-software/b/bokeh.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``3.2.2`` | | ``foss/2023a`` ``3.4.1`` | | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94370bcb1..ef96c5bad 100644 --- a/docs/version-specific/supported-software/b/boost_histogram.md +++ b/docs/version-specific/supported-software/b/boost_histogram.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd2b0523f..517588f9e 100644 --- a/docs/version-specific/supported-software/b/boto3.md +++ b/docs/version-specific/supported-software/b/boto3.md @@ -16,5 +16,5 @@ version | toolchain ``1.26.37`` | ``GCCcore/11.3.0`` ``1.28.70`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 596f8ca4e..70657175c 100644 --- a/docs/version-specific/supported-software/b/bpp.md +++ b/docs/version-specific/supported-software/b/bpp.md @@ -13,5 +13,5 @@ version | toolchain ``4.3.8`` | ``GCC/8.3.0`` ``4.4.0`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 77e2243ee..6fcb5c682 100644 --- a/docs/version-specific/supported-software/b/bpytop.md +++ b/docs/version-specific/supported-software/b/bpytop.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.60`` | ``GCCcore/10.2.0`` ``1.0.67`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b8770245..aca8d4301 100644 --- a/docs/version-specific/supported-software/b/breseq.md +++ b/docs/version-specific/supported-software/b/breseq.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.36.1`` | | ``foss/2021b`` ``0.38.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4a912fd0d..8070e1479 100644 --- a/docs/version-specific/supported-software/b/bsddb3.md +++ b/docs/version-specific/supported-software/b/bsddb3.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``6.2.9`` | | ``GCCcore/10.2.0`` ``6.2.9`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 52c7884cd..a664d25f0 100644 --- a/docs/version-specific/supported-software/b/btllib.md +++ b/docs/version-specific/supported-software/b/btllib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index affcbe434..7825b80d5 100644 --- a/docs/version-specific/supported-software/b/build.md +++ b/docs/version-specific/supported-software/b/build.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.3`` | ``foss/2023a`` ``1.0.3`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3a9e9e836..2a57a67eb 100644 --- a/docs/version-specific/supported-software/b/buildenv.md +++ b/docs/version-specific/supported-software/b/buildenv.md @@ -47,5 +47,5 @@ version | versionsuffix | toolchain ``default`` | | ``intelcuda/2020b`` ``default`` | | ``nvompi/2022.07`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d45ff4061..72d7fe9ed 100644 --- a/docs/version-specific/supported-software/b/buildingspy.md +++ b/docs/version-specific/supported-software/b/buildingspy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 63ddaaa75..117889cbc 100644 --- a/docs/version-specific/supported-software/b/bwa-mem2.md +++ b/docs/version-specific/supported-software/b/bwa-mem2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.1`` | ``intel-compilers/2023.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e9081b6a7..9a7e10b88 100644 --- a/docs/version-specific/supported-software/b/bwa-meth.md +++ b/docs/version-specific/supported-software/b/bwa-meth.md @@ -14,5 +14,5 @@ version | toolchain ``0.2.2`` | ``iccifort/2019.5.281`` ``0.2.6`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2769d48ba..22934a3f0 100644 --- a/docs/version-specific/supported-software/b/bwakit.md +++ b/docs/version-specific/supported-software/b/bwakit.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.15`` | ``_x64-linux`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fa0037e82..04052393c 100644 --- a/docs/version-specific/supported-software/b/bwidget.md +++ b/docs/version-specific/supported-software/b/bwidget.md @@ -17,5 +17,5 @@ version | toolchain ``1.9.15`` | ``GCCcore/11.2.0`` ``1.9.15`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3b5a8ed1..a8f528be9 100644 --- a/docs/version-specific/supported-software/b/bx-python.md +++ b/docs/version-specific/supported-software/b/bx-python.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``0.8.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.9.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 96cb076f6..06e4e2212 100644 --- a/docs/version-specific/supported-software/b/byacc.md +++ b/docs/version-specific/supported-software/b/byacc.md @@ -15,5 +15,5 @@ version | toolchain ``20160606`` | ``intel/2016b`` ``20170709`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 93100f1e5..ab31fc091 100644 --- a/docs/version-specific/supported-software/b/byobu.md +++ b/docs/version-specific/supported-software/b/byobu.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.133`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d7e0e889..1fadbfe36 100644 --- a/docs/version-specific/supported-software/b/bzip2.md +++ b/docs/version-specific/supported-software/b/bzip2.md @@ -48,5 +48,5 @@ version | toolchain ``1.0.8`` | ``GCCcore/9.3.0`` ``1.0.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 574febfe2..4ea1d61b4 100644 --- a/docs/version-specific/supported-software/b/index.md +++ b/docs/version-specific/supported-software/b/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (b) -[../0/index.md](0) - [../a/index.md](a) - *b* - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[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) diff --git a/docs/version-specific/supported-software/c/C3D.md b/docs/version-specific/supported-software/c/C3D.md index de9c990f5..3f75e90ca 100644 --- a/docs/version-specific/supported-software/c/C3D.md +++ b/docs/version-specific/supported-software/c/C3D.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 54dea09ad..5688ce1e3 100644 --- a/docs/version-specific/supported-software/c/CAFE5.md +++ b/docs/version-specific/supported-software/c/CAFE5.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.0`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f5faa5562..ca80d831f 100644 --- a/docs/version-specific/supported-software/c/CAMPARI.md +++ b/docs/version-specific/supported-software/c/CAMPARI.md @@ -13,5 +13,5 @@ version | toolchain ``4.0`` | ``intel/2020b`` ``4.0`` | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 43c71afbf..c80933d6e 100644 --- a/docs/version-specific/supported-software/c/CAP3.md +++ b/docs/version-specific/supported-software/c/CAP3.md @@ -14,5 +14,5 @@ version | toolchain ``20071221-intel-x86_64`` | ``system`` ``20071221-opteron`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9c8e3a6be..6ee234cb3 100644 --- a/docs/version-specific/supported-software/c/CASA.md +++ b/docs/version-specific/supported-software/c/CASA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.5.5-21`` | ``-py3.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 207657cd8..0bb4e27b6 100644 --- a/docs/version-specific/supported-software/c/CASPR.md +++ b/docs/version-specific/supported-software/c/CASPR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20200730`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fc3d885e3..f4f2418b6 100644 --- a/docs/version-specific/supported-software/c/CASTEP.md +++ b/docs/version-specific/supported-software/c/CASTEP.md @@ -18,5 +18,5 @@ version | toolchain ``22.11`` | ``foss/2022a`` ``23.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 72fe522e0..8109aed79 100644 --- a/docs/version-specific/supported-software/c/CAT-BAT.md +++ b/docs/version-specific/supported-software/c/CAT-BAT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.2.3`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 45142a986..577a63686 100644 --- a/docs/version-specific/supported-software/c/CAVIAR.md +++ b/docs/version-specific/supported-software/c/CAVIAR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2-20190419`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5b02b5f0e..f396fa9aa 100644 --- a/docs/version-specific/supported-software/c/CBLAS.md +++ b/docs/version-specific/supported-software/c/CBLAS.md @@ -14,5 +14,5 @@ version | toolchain ``20110120`` | ``intel/2019b`` ``20110120`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2a90f9f41..35cb7dcff 100644 --- a/docs/version-specific/supported-software/c/CCCL.md +++ b/docs/version-specific/supported-software/c/CCCL.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f355bf6b6..3e7959aa9 100644 --- a/docs/version-specific/supported-software/c/CCL.md +++ b/docs/version-specific/supported-software/c/CCL.md @@ -17,5 +17,5 @@ version | toolchain ``1.12.2`` | ``GCCcore/12.3.0`` ``1.12.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4cae72657..c36648c42 100644 --- a/docs/version-specific/supported-software/c/CCfits.md +++ b/docs/version-specific/supported-software/c/CCfits.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7917642ee..f18cfb646 100644 --- a/docs/version-specific/supported-software/c/CD-HIT.md +++ b/docs/version-specific/supported-software/c/CD-HIT.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``4.8.1`` | | ``foss/2018b`` ``4.8.1`` | | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 27e554eec..0a72c5602 100644 --- a/docs/version-specific/supported-software/c/CDAT.md +++ b/docs/version-specific/supported-software/c/CDAT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e0b16e472..926a596b5 100644 --- a/docs/version-specific/supported-software/c/CDBtools.md +++ b/docs/version-specific/supported-software/c/CDBtools.md @@ -13,5 +13,5 @@ version | toolchain ``0.99`` | ``GCC/10.2.0`` ``0.99`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd0eaef64..416db888b 100644 --- a/docs/version-specific/supported-software/c/CDFlib.md +++ b/docs/version-specific/supported-software/c/CDFlib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.9`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bc60bfd48..dabf5163c 100644 --- a/docs/version-specific/supported-software/c/CDO.md +++ b/docs/version-specific/supported-software/c/CDO.md @@ -28,5 +28,5 @@ version | toolchain ``2.2.2`` | ``gompi/2023a`` ``2.2.2`` | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a0c58eba0..0830f14f8 100644 --- a/docs/version-specific/supported-software/c/CENSO.md +++ b/docs/version-specific/supported-software/c/CENSO.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 816dee37c..5542537d1 100644 --- a/docs/version-specific/supported-software/c/CESM-deps.md +++ b/docs/version-specific/supported-software/c/CESM-deps.md @@ -16,5 +16,5 @@ version | toolchain ``2`` | ``intel/2018b`` ``2`` | ``iomkl/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fc2fe4434..6d9dc392c 100644 --- a/docs/version-specific/supported-software/c/CFDEMcoupling.md +++ b/docs/version-specific/supported-software/c/CFDEMcoupling.md @@ -13,5 +13,5 @@ version | toolchain ``3.8.0`` | ``foss/2018a`` ``3.8.0`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e6b619773..ee99aa6c9 100644 --- a/docs/version-specific/supported-software/c/CFITSIO.md +++ b/docs/version-specific/supported-software/c/CFITSIO.md @@ -30,5 +30,5 @@ version | toolchain ``4.3.0`` | ``GCCcore/12.3.0`` ``4.3.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5f041a8bd..cd3106a26 100644 --- a/docs/version-specific/supported-software/c/CGAL.md +++ b/docs/version-specific/supported-software/c/CGAL.md @@ -45,5 +45,5 @@ version | versionsuffix | toolchain ``5.6`` | | ``GCCcore/12.3.0`` ``5.6.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0e49c4f51..408fa4842 100644 --- a/docs/version-specific/supported-software/c/CGNS.md +++ b/docs/version-specific/supported-software/c/CGNS.md @@ -13,5 +13,5 @@ version | toolchain ``3.3.1`` | ``foss/2016b`` ``4.1.0`` | ``intelcuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7eaacab4f..03502c07c 100644 --- a/docs/version-specific/supported-software/c/CGmapTools.md +++ b/docs/version-specific/supported-software/c/CGmapTools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.2`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b54f55c08..dcaca3c48 100644 --- a/docs/version-specific/supported-software/c/CHASE.md +++ b/docs/version-specific/supported-software/c/CHASE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20130626`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4e6cb0793..33287603e 100644 --- a/docs/version-specific/supported-software/c/CHERAB.md +++ b/docs/version-specific/supported-software/c/CHERAB.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``foss/2020b`` ``1.4.0`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5362a0c0..082db8501 100644 --- a/docs/version-specific/supported-software/c/CIF2Cell.md +++ b/docs/version-specific/supported-software/c/CIF2Cell.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.10`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0167f7a50..8ac1562a9 100644 --- a/docs/version-specific/supported-software/c/CIRCexplorer.md +++ b/docs/version-specific/supported-software/c/CIRCexplorer.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.10`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bacb2d104..3eaafe212 100644 --- a/docs/version-specific/supported-software/c/CIRCexplorer2.md +++ b/docs/version-specific/supported-software/c/CIRCexplorer2.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3.8`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.3.8`` | ``-Python-2.7.18`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 74062dfdf..294de5bcd 100644 --- a/docs/version-specific/supported-software/c/CIRI-long.md +++ b/docs/version-specific/supported-software/c/CIRI-long.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e309e33ad..29ea4e581 100644 --- a/docs/version-specific/supported-software/c/CIRI.md +++ b/docs/version-specific/supported-software/c/CIRI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.6`` | ``-Perl-5.26.0`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5c60d7adb..ac3d9d9c4 100644 --- a/docs/version-specific/supported-software/c/CIRIquant.md +++ b/docs/version-specific/supported-software/c/CIRIquant.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2-20221201`` | ``-Python-2.7.18`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 07cbfbef0..7070b190e 100644 --- a/docs/version-specific/supported-software/c/CITE-seq-Count.md +++ b/docs/version-specific/supported-software/c/CITE-seq-Count.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.4.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6304f6f01..5148c5159 100644 --- a/docs/version-specific/supported-software/c/CLAPACK.md +++ b/docs/version-specific/supported-software/c/CLAPACK.md @@ -14,5 +14,5 @@ version | toolchain ``3.2.1`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``3.2.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 87bf17956..c2a3611a0 100644 --- a/docs/version-specific/supported-software/c/CLEAR.md +++ b/docs/version-specific/supported-software/c/CLEAR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210117`` | ``-Python-2.7.18`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cf22a4ace..beaff879b 100644 --- a/docs/version-specific/supported-software/c/CLEASE.md +++ b/docs/version-specific/supported-software/c/CLEASE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.10.6`` | ``intel/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 53e79bb7c..40188ecb1 100644 --- a/docs/version-specific/supported-software/c/CLHEP.md +++ b/docs/version-specific/supported-software/c/CLHEP.md @@ -30,5 +30,5 @@ version | toolchain ``2.4.6.2`` | ``GCC/11.3.0`` ``2.4.6.4`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 42391f1d2..32398b09a 100644 --- a/docs/version-specific/supported-software/c/CLIP.md +++ b/docs/version-specific/supported-software/c/CLIP.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20230220`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c1f9eb7b5..ded884951 100644 --- a/docs/version-specific/supported-software/c/CLISP.md +++ b/docs/version-specific/supported-software/c/CLISP.md @@ -13,5 +13,5 @@ version | toolchain ``2.49`` | ``GCCcore/6.4.0`` ``2.49`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 172a78645..77d4a7d4e 100644 --- a/docs/version-specific/supported-software/c/CLooG.md +++ b/docs/version-specific/supported-software/c/CLooG.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.18.1`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bff7fa235..9090c7a3c 100644 --- a/docs/version-specific/supported-software/c/CMAverse.md +++ b/docs/version-specific/supported-software/c/CMAverse.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220112`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d715b300..3233ecdea 100644 --- a/docs/version-specific/supported-software/c/CMSeq.md +++ b/docs/version-specific/supported-software/c/CMSeq.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.0.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 556a32745..55aeb7f61 100644 --- a/docs/version-specific/supported-software/c/CMake.md +++ b/docs/version-specific/supported-software/c/CMake.md @@ -96,5 +96,5 @@ version | toolchain ``3.9.5`` | ``GCCcore/6.4.0`` ``3.9.6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f473612fb..0bf082d78 100644 --- a/docs/version-specific/supported-software/c/CNT-ILP.md +++ b/docs/version-specific/supported-software/c/CNT-ILP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20171031`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e3d20989d..ce0d050da 100644 --- a/docs/version-specific/supported-software/c/CNVkit.md +++ b/docs/version-specific/supported-software/c/CNVkit.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.9.6`` | ``-Python-3.7.2-R-3.6.0`` | ``foss/2019a`` ``0.9.8`` | ``-R-4.0.3`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c9d8391ec..504ac0f44 100644 --- a/docs/version-specific/supported-software/c/CNVnator.md +++ b/docs/version-specific/supported-software/c/CNVnator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.3`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a47528fed..0c04242a7 100644 --- a/docs/version-specific/supported-software/c/COBRApy.md +++ b/docs/version-specific/supported-software/c/COBRApy.md @@ -13,5 +13,5 @@ version | toolchain ``0.26.0`` | ``foss/2021a`` ``0.29.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e9b4cf909..50502a2df 100644 --- a/docs/version-specific/supported-software/c/CODEX2.md +++ b/docs/version-specific/supported-software/c/CODEX2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180227`` | ``-R-3.4.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6e1d37286..4f6274b72 100644 --- a/docs/version-specific/supported-software/c/COMEBin.md +++ b/docs/version-specific/supported-software/c/COMEBin.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3-20240310`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 092689e69..254a18b83 100644 --- a/docs/version-specific/supported-software/c/COMSOL.md +++ b/docs/version-specific/supported-software/c/COMSOL.md @@ -13,5 +13,5 @@ version | toolchain ``5.4.0.225`` | ``system`` ``6.2.0.290`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4464dd981..d5d7a42b9 100644 --- a/docs/version-specific/supported-software/c/CONCOCT.md +++ b/docs/version-specific/supported-software/c/CONCOCT.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.1.0`` | ``-Python-2.7.18`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bb8e648ab..75971ebcf 100644 --- a/docs/version-specific/supported-software/c/CONN.md +++ b/docs/version-specific/supported-software/c/CONN.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``21a`` | ``-MATLAB-2021a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 59b1337b1..355a4d5c3 100644 --- a/docs/version-specific/supported-software/c/CP2K.md +++ b/docs/version-specific/supported-software/c/CP2K.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``8.2`` | | ``intel/2021a`` ``9.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c33d0fed3..805ccb853 100644 --- a/docs/version-specific/supported-software/c/CPB.md +++ b/docs/version-specific/supported-software/c/CPB.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``11-4-2011`` | ``-Python-2.7.13`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3046c1dc2..59eacff51 100644 --- a/docs/version-specific/supported-software/c/CPC2.md +++ b/docs/version-specific/supported-software/c/CPC2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0dc7d785a..010281354 100644 --- a/docs/version-specific/supported-software/c/CPLEX.md +++ b/docs/version-specific/supported-software/c/CPLEX.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``22.1.1`` | | ``GCCcore/11.2.0`` ``22.1.1`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fb0dfbf35..06f16354a 100644 --- a/docs/version-specific/supported-software/c/CPMD.md +++ b/docs/version-specific/supported-software/c/CPMD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3c0271eb5..ea0f6873b 100644 --- a/docs/version-specific/supported-software/c/CPPE.md +++ b/docs/version-specific/supported-software/c/CPPE.md @@ -13,5 +13,5 @@ version | toolchain ``0.3.1`` | ``GCC/11.3.0`` ``0.3.1`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3d477637c..985e0f07c 100644 --- a/docs/version-specific/supported-software/c/CREST.md +++ b/docs/version-specific/supported-software/c/CREST.md @@ -17,5 +17,5 @@ version | toolchain ``20240319`` | ``gfbf/2023a`` ``3.0.1`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 485058dc6..74a5d9621 100644 --- a/docs/version-specific/supported-software/c/CRF++.md +++ b/docs/version-specific/supported-software/c/CRF++.md @@ -13,5 +13,5 @@ version | toolchain ``0.58`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``0.58`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6f80447bd..20bba081d 100644 --- a/docs/version-specific/supported-software/c/CRISPR-DAV.md +++ b/docs/version-specific/supported-software/c/CRISPR-DAV.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d402a4349..70507f767 100644 --- a/docs/version-specific/supported-software/c/CRISPResso2.md +++ b/docs/version-specific/supported-software/c/CRISPResso2.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.1.2`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.2.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a5de77c32..2edf1d068 100644 --- a/docs/version-specific/supported-software/c/CRPropa.md +++ b/docs/version-specific/supported-software/c/CRPropa.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` ``3.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 91d64337e..d8056a290 100644 --- a/docs/version-specific/supported-software/c/CSB.md +++ b/docs/version-specific/supported-software/c/CSB.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.5`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index df72f82ed..7201bd8bc 100644 --- a/docs/version-specific/supported-software/c/CSBDeep.md +++ b/docs/version-specific/supported-software/c/CSBDeep.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.7.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.7.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c5ae286a6..29734cd19 100644 --- a/docs/version-specific/supported-software/c/CSBLAST.md +++ b/docs/version-specific/supported-software/c/CSBLAST.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.3`` | ``GCCcore/8.3.0`` ``2.2.4`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f9c2f51f6..cbfbb3bbf 100644 --- a/docs/version-specific/supported-software/c/CTPL.md +++ b/docs/version-specific/supported-software/c/CTPL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.2`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 31b47e0fd..91983be96 100644 --- a/docs/version-specific/supported-software/c/CUDA-Samples.md +++ b/docs/version-specific/supported-software/c/CUDA-Samples.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``11.6`` | ``-CUDA-11.7.0`` | ``GCC/11.3.0`` ``12.1`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fc1eb7ef2..2e6339e7a 100644 --- a/docs/version-specific/supported-software/c/CUDA.md +++ b/docs/version-specific/supported-software/c/CUDA.md @@ -63,5 +63,5 @@ version | toolchain ``9.2.88`` | ``GCC/7.3.0-2.30`` ``9.2.88`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2ef81f366..039210f14 100644 --- a/docs/version-specific/supported-software/c/CUDAcompat.md +++ b/docs/version-specific/supported-software/c/CUDAcompat.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``11.7`` | | ``system`` ``11`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d82a90ebe..00c71c120 100644 --- a/docs/version-specific/supported-software/c/CUDAcore.md +++ b/docs/version-specific/supported-software/c/CUDAcore.md @@ -18,5 +18,5 @@ version | toolchain ``11.4.0`` | ``system`` ``11.5.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b2f84eacf..cf5bbed2e 100644 --- a/docs/version-specific/supported-software/c/CUDD.md +++ b/docs/version-specific/supported-software/c/CUDD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.0`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1f6ec88c0..3a19d9e1a 100644 --- a/docs/version-specific/supported-software/c/CUTLASS.md +++ b/docs/version-specific/supported-software/c/CUTLASS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 186c53e59..24098b663 100644 --- a/docs/version-specific/supported-software/c/CUnit.md +++ b/docs/version-specific/supported-software/c/CUnit.md @@ -15,5 +15,5 @@ version | toolchain ``2.1-3`` | ``GCCcore/12.3.0`` ``2.1-3`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a9399eab9..18f61a74a 100644 --- a/docs/version-specific/supported-software/c/CVX.md +++ b/docs/version-specific/supported-software/c/CVX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2`` | ``-MATLAB-2023a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8cff7bae8..e3eb5a3fc 100644 --- a/docs/version-specific/supported-software/c/CVXOPT.md +++ b/docs/version-specific/supported-software/c/CVXOPT.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``1.2.6`` | | ``foss/2021a`` ``1.3.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d809f4e5..264c6d6bf 100644 --- a/docs/version-specific/supported-software/c/CVXPY.md +++ b/docs/version-specific/supported-software/c/CVXPY.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``foss/2022a`` ``1.4.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a1df68bf1..d34084df5 100644 --- a/docs/version-specific/supported-software/c/CVglasso.md +++ b/docs/version-specific/supported-software/c/CVglasso.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3dd5be543..b307e4dc9 100644 --- a/docs/version-specific/supported-software/c/CWIPI.md +++ b/docs/version-specific/supported-software/c/CWIPI.md @@ -13,5 +13,5 @@ version | toolchain ``0.12.0`` | ``gompi/2021a`` ``0.12.0`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2564e8949..1c8b77b65 100644 --- a/docs/version-specific/supported-software/c/CaDiCaL.md +++ b/docs/version-specific/supported-software/c/CaDiCaL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1f412acc4..7ce9f9c68 100644 --- a/docs/version-specific/supported-software/c/CaSpER.md +++ b/docs/version-specific/supported-software/c/CaSpER.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4be4d401e..aa63821d8 100644 --- a/docs/version-specific/supported-software/c/CaVEMan.md +++ b/docs/version-specific/supported-software/c/CaVEMan.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.13.2`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ea342df97..9d190167c 100644 --- a/docs/version-specific/supported-software/c/Caffe.md +++ b/docs/version-specific/supported-software/c/Caffe.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``rc3`` | ``-CUDA-7.5.18-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a2598be09..5dbb387f2 100644 --- a/docs/version-specific/supported-software/c/Calcam.md +++ b/docs/version-specific/supported-software/c/Calcam.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.1.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 88457a5c1..25822b192 100644 --- a/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md +++ b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md @@ -14,5 +14,5 @@ version | toolchain ``2.20`` | ``foss/2022b`` ``2.20`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 59a0f2347..e4a7ca4b7 100644 --- a/docs/version-specific/supported-software/c/Calendrical.md +++ b/docs/version-specific/supported-software/c/Calendrical.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.0.2a`` | ``-Python-3.6.4`` | ``intel/2018a`` ``2.0.2a`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 563bcf526..e0d3ad5d7 100644 --- a/docs/version-specific/supported-software/c/Calib.md +++ b/docs/version-specific/supported-software/c/Calib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.4`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c408004d8..53df25e37 100644 --- a/docs/version-specific/supported-software/c/Cantera.md +++ b/docs/version-specific/supported-software/c/Cantera.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2.6.0`` | | ``foss/2022a`` ``3.0.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 149a661b0..0de9702fd 100644 --- a/docs/version-specific/supported-software/c/Canvas.md +++ b/docs/version-specific/supported-software/c/Canvas.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.39.0.1598`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8adb622a2..52309a4d9 100644 --- a/docs/version-specific/supported-software/c/CapnProto.md +++ b/docs/version-specific/supported-software/c/CapnProto.md @@ -21,5 +21,5 @@ version | toolchain ``1.0.1`` | ``GCCcore/12.3.0`` ``1.0.1.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5b90103e9..066d04c96 100644 --- a/docs/version-specific/supported-software/c/Cargo.md +++ b/docs/version-specific/supported-software/c/Cargo.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13.0`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c3c506196..042da6283 100644 --- a/docs/version-specific/supported-software/c/Carma.md +++ b/docs/version-specific/supported-software/c/Carma.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.01`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a62920fab..0bfd05a05 100644 --- a/docs/version-specific/supported-software/c/Cartopy.md +++ b/docs/version-specific/supported-software/c/Cartopy.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``0.20.3`` | | ``foss/2022a`` ``0.22.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 65f6e0f65..b2e4e9e6c 100644 --- a/docs/version-specific/supported-software/c/Casanovo.md +++ b/docs/version-specific/supported-software/c/Casanovo.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``3.3.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d9e613234..0ba3ffbc0 100644 --- a/docs/version-specific/supported-software/c/Cassiopeia.md +++ b/docs/version-specific/supported-software/c/Cassiopeia.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 84dc8ab67..ba86b4a4a 100644 --- a/docs/version-specific/supported-software/c/CastXML.md +++ b/docs/version-specific/supported-software/c/CastXML.md @@ -14,5 +14,5 @@ version | toolchain ``20160617`` | ``foss/2016a`` ``20180806`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2b31fb5dd..f3867f7bc 100644 --- a/docs/version-specific/supported-software/c/CatBoost.md +++ b/docs/version-specific/supported-software/c/CatBoost.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index acb45773c..bdaf25b82 100644 --- a/docs/version-specific/supported-software/c/CatLearn.md +++ b/docs/version-specific/supported-software/c/CatLearn.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.2`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e2083d767..26b001c72 100644 --- a/docs/version-specific/supported-software/c/CatMAP.md +++ b/docs/version-specific/supported-software/c/CatMAP.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20170927`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20220519`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 63aa3045f..bd37d3107 100644 --- a/docs/version-specific/supported-software/c/Catch2.md +++ b/docs/version-specific/supported-software/c/Catch2.md @@ -18,5 +18,5 @@ version | toolchain ``2.13.9`` | ``system`` ``2.9.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1a8627362..ef7ee9288 100644 --- a/docs/version-specific/supported-software/c/Cbc.md +++ b/docs/version-specific/supported-software/c/Cbc.md @@ -16,5 +16,5 @@ version | toolchain ``2.10.5`` | ``foss/2021a`` ``2.10.5`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0e53ee209..6ba12de4d 100644 --- a/docs/version-specific/supported-software/c/CellBender.md +++ b/docs/version-specific/supported-software/c/CellBender.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``0.3.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d0216b1a1..9aa835e0e 100644 --- a/docs/version-specific/supported-software/c/CellChat.md +++ b/docs/version-specific/supported-software/c/CellChat.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d9d1d0f8f..d9427920e 100644 --- a/docs/version-specific/supported-software/c/CellMix.md +++ b/docs/version-specific/supported-software/c/CellMix.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 93c123491..48c3577d9 100644 --- a/docs/version-specific/supported-software/c/CellOracle.md +++ b/docs/version-specific/supported-software/c/CellOracle.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.12.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6e1597508..7daaf69d3 100644 --- a/docs/version-specific/supported-software/c/CellRanger-ARC.md +++ b/docs/version-specific/supported-software/c/CellRanger-ARC.md @@ -15,5 +15,5 @@ version | toolchain ``2.0.1`` | ``system`` ``2.0.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d72c2bae9..565925d6d 100644 --- a/docs/version-specific/supported-software/c/CellRanger-ATAC.md +++ b/docs/version-specific/supported-software/c/CellRanger-ATAC.md @@ -14,5 +14,5 @@ version | toolchain ``2.0.0`` | ``system`` ``2.1.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8e8d8fa29..6c8b1ab53 100644 --- a/docs/version-specific/supported-software/c/CellRanger.md +++ b/docs/version-specific/supported-software/c/CellRanger.md @@ -26,5 +26,5 @@ version | toolchain ``8.0.0`` | ``system`` ``8.0.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f9a01d41b..4b839ef56 100644 --- a/docs/version-specific/supported-software/c/CellRank.md +++ b/docs/version-specific/supported-software/c/CellRank.md @@ -13,5 +13,5 @@ version | toolchain ``1.4.0`` | ``foss/2021a`` ``2.0.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5b3a35cda..b3b484e75 100644 --- a/docs/version-specific/supported-software/c/CellTypist.md +++ b/docs/version-specific/supported-software/c/CellTypist.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.0`` | ``foss/2021b`` ``1.6.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 42228682c..4fa5f8fd8 100644 --- a/docs/version-specific/supported-software/c/Cellpose.md +++ b/docs/version-specific/supported-software/c/Cellpose.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.2.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4aafef85f..84a291ce6 100644 --- a/docs/version-specific/supported-software/c/Centrifuge.md +++ b/docs/version-specific/supported-software/c/Centrifuge.md @@ -16,5 +16,5 @@ version | toolchain ``1.0.4`` | ``gompi/2020b`` ``1.0.4`` | ``gompi/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e4c75504e..b111ac06f 100644 --- a/docs/version-specific/supported-software/c/Cereal.md +++ b/docs/version-specific/supported-software/c/Cereal.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.2`` | ``GCCcore/12.2.0`` ``1.3.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c50963a9d..1b8b733ca 100644 --- a/docs/version-specific/supported-software/c/Cgl.md +++ b/docs/version-specific/supported-software/c/Cgl.md @@ -16,5 +16,5 @@ version | toolchain ``0.60.7`` | ``foss/2022b`` ``0.60.8`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index decf39e12..5fbbcf7e7 100644 --- a/docs/version-specific/supported-software/c/ChIPseeker.md +++ b/docs/version-specific/supported-software/c/ChIPseeker.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.32.1`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0c68b722c..0e9f560f9 100644 --- a/docs/version-specific/supported-software/c/CharLS.md +++ b/docs/version-specific/supported-software/c/CharLS.md @@ -20,5 +20,5 @@ version | toolchain ``2.4.2`` | ``GCCcore/12.2.0`` ``2.4.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0961f0b7a..0df63408f 100644 --- a/docs/version-specific/supported-software/c/CheMPS2.md +++ b/docs/version-specific/supported-software/c/CheMPS2.md @@ -25,5 +25,5 @@ version | toolchain ``1.8.9`` | ``intel/2019a`` ``1.8.9`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fde808781..cf27bfd9f 100644 --- a/docs/version-specific/supported-software/c/Check.md +++ b/docs/version-specific/supported-software/c/Check.md @@ -20,5 +20,5 @@ version | toolchain ``0.15.2`` | ``GCCcore/13.2.0`` ``0.15.2`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c699dcd1d..11177a0e3 100644 --- a/docs/version-specific/supported-software/c/CheckM-Database.md +++ b/docs/version-specific/supported-software/c/CheckM-Database.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2015_01_16`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cdb1d645e..6afb43b70 100644 --- a/docs/version-specific/supported-software/c/CheckM.md +++ b/docs/version-specific/supported-software/c/CheckM.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``1.1.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``1.2.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ca6faf0ac..9cf9317e0 100644 --- a/docs/version-specific/supported-software/c/CheckM2.md +++ b/docs/version-specific/supported-software/c/CheckM2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index deb3802b5..37b71c499 100644 --- a/docs/version-specific/supported-software/c/Cheetah.md +++ b/docs/version-specific/supported-software/c/Cheetah.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.4`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8e45e36e2..2076ef498 100644 --- a/docs/version-specific/supported-software/c/Chemaxon-Marvin.md +++ b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md @@ -13,5 +13,5 @@ version | toolchain ``21.14`` | ``system`` ``23.9`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 988b7f556..32825a02e 100644 --- a/docs/version-specific/supported-software/c/ChimPipe.md +++ b/docs/version-specific/supported-software/c/ChimPipe.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.9.5`` | ``-Python-2.7.12`` | ``foss/2016b`` ``0.9.5`` | | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 41501a4a1..9c64139e3 100644 --- a/docs/version-specific/supported-software/c/Chimera.md +++ b/docs/version-specific/supported-software/c/Chimera.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.10`` | ``-linux_x86_64`` | ``system`` ``1.16`` | ``-linux_x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 99d1537db..59fec7c5a 100644 --- a/docs/version-specific/supported-software/c/Chromaprint.md +++ b/docs/version-specific/supported-software/c/Chromaprint.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.3`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7e19f11a1..5bf16cb82 100644 --- a/docs/version-specific/supported-software/c/Circlator.md +++ b/docs/version-specific/supported-software/c/Circlator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.5`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 76caeeab8..1d336aac2 100644 --- a/docs/version-specific/supported-software/c/Circos.md +++ b/docs/version-specific/supported-software/c/Circos.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.69-9`` | | ``GCCcore/11.3.0`` ``0.69-9`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e0547b5c1..c053520b3 100644 --- a/docs/version-specific/supported-software/c/Circuitscape.md +++ b/docs/version-specific/supported-software/c/Circuitscape.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.12.3`` | ``-Julia-1.7.2`` | ``system`` ``5.12.3`` | ``-Julia-1.9.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 64d8a6cdc..cfdf54c7c 100644 --- a/docs/version-specific/supported-software/c/Clair3.md +++ b/docs/version-specific/supported-software/c/Clair3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2f7504d86..3d7c4551e 100644 --- a/docs/version-specific/supported-software/c/Clang-AOMP.md +++ b/docs/version-specific/supported-software/c/Clang-AOMP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d66446c57..85e239e81 100644 --- a/docs/version-specific/supported-software/c/Clang-Python-bindings.md +++ b/docs/version-specific/supported-software/c/Clang-Python-bindings.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``16.0.6`` | | ``GCCcore/12.3.0`` ``8.0.0`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a0b4823fe..b72f9f460 100644 --- a/docs/version-specific/supported-software/c/Clang.md +++ b/docs/version-specific/supported-software/c/Clang.md @@ -54,5 +54,5 @@ version | versionsuffix | toolchain ``9.0.1`` | | ``GCCcore/8.3.0`` ``9.0.1`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 90ffe3043..1089da0a8 100644 --- a/docs/version-specific/supported-software/c/Clarabel.rs.md +++ b/docs/version-specific/supported-software/c/Clarabel.rs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.1`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ab9841f74..9e2e1e6b0 100644 --- a/docs/version-specific/supported-software/c/CliMetLab.md +++ b/docs/version-specific/supported-software/c/CliMetLab.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.12.6`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0def3e70b..0cddaf76c 100644 --- a/docs/version-specific/supported-software/c/ClonalFrameML.md +++ b/docs/version-specific/supported-software/c/ClonalFrameML.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.11`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bc67b1ba5..4a8d7ec96 100644 --- a/docs/version-specific/supported-software/c/CloudCompare.md +++ b/docs/version-specific/supported-software/c/CloudCompare.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.12.4`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3029a3147..29c5ec3be 100644 --- a/docs/version-specific/supported-software/c/Clp.md +++ b/docs/version-specific/supported-software/c/Clp.md @@ -17,5 +17,5 @@ version | toolchain ``1.17.8`` | ``foss/2022b`` ``1.17.9`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3faefa4b6..ea01047b5 100644 --- a/docs/version-specific/supported-software/c/Clustal-Omega.md +++ b/docs/version-specific/supported-software/c/Clustal-Omega.md @@ -20,5 +20,5 @@ version | toolchain ``1.2.4`` | ``intel/2018b`` ``1.2.4`` | ``intel-compilers/2021.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3c6c1f11b..0021ec5d6 100644 --- a/docs/version-specific/supported-software/c/ClustalW2.md +++ b/docs/version-specific/supported-software/c/ClustalW2.md @@ -21,5 +21,5 @@ version | toolchain ``2.1`` | ``intel/2018b`` ``2.1`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a27f8b617..77beebfb7 100644 --- a/docs/version-specific/supported-software/c/Cluster-Buster.md +++ b/docs/version-specific/supported-software/c/Cluster-Buster.md @@ -13,5 +13,5 @@ version | toolchain ``20160106`` | ``intel/2016a`` ``20200507`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index de8d8fb71..71198979b 100644 --- a/docs/version-specific/supported-software/c/ClusterShell.md +++ b/docs/version-specific/supported-software/c/ClusterShell.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e4a6ca293..0750ad76d 100644 --- a/docs/version-specific/supported-software/c/CmdStanR.md +++ b/docs/version-specific/supported-software/c/CmdStanR.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.5.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.7.1`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b9445e6e6..79d5af95a 100644 --- a/docs/version-specific/supported-software/c/Co-phylog.md +++ b/docs/version-specific/supported-software/c/Co-phylog.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20201012`` | ``GCC/7.3.0-2.30`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 352a346fc..511454e75 100644 --- a/docs/version-specific/supported-software/c/CoCoALib.md +++ b/docs/version-specific/supported-software/c/CoCoALib.md @@ -15,5 +15,5 @@ version | toolchain ``0.99818`` | ``GCC/11.3.0`` ``0.99850`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5cd759b43..6aecab0b2 100644 --- a/docs/version-specific/supported-software/c/CoSymLib.md +++ b/docs/version-specific/supported-software/c/CoSymLib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.10.9`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index db89ca7a0..8a3863299 100644 --- a/docs/version-specific/supported-software/c/CodAn.md +++ b/docs/version-specific/supported-software/c/CodAn.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a57fb5616..3d0be730f 100644 --- a/docs/version-specific/supported-software/c/CodingQuarry.md +++ b/docs/version-specific/supported-software/c/CodingQuarry.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f92a64497..4ad89e74d 100644 --- a/docs/version-specific/supported-software/c/Cogent.md +++ b/docs/version-specific/supported-software/c/Cogent.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``8.0.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9dbce7e39..b39d24b0f 100644 --- a/docs/version-specific/supported-software/c/Coin.md +++ b/docs/version-specific/supported-software/c/Coin.md @@ -13,5 +13,5 @@ version | toolchain ``4.0.0`` | ``GCC/10.3.0`` ``4.0.0`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c04780fa1..ce3f4aae5 100644 --- a/docs/version-specific/supported-software/c/CoinUtils.md +++ b/docs/version-specific/supported-software/c/CoinUtils.md @@ -18,5 +18,5 @@ version | toolchain ``2.11.6`` | ``GCC/11.2.0`` ``2.11.9`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7df2aef7d..15830db56 100644 --- a/docs/version-specific/supported-software/c/ColabFold.md +++ b/docs/version-specific/supported-software/c/ColabFold.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.5.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6902a9253..aa5e36fec 100644 --- a/docs/version-specific/supported-software/c/Commet.md +++ b/docs/version-specific/supported-software/c/Commet.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20150415`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 75f046a77..ab08cd5ca 100644 --- a/docs/version-specific/supported-software/c/CompareM.md +++ b/docs/version-specific/supported-software/c/CompareM.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.0.23`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.1.2`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6a43be889..c33014c1a 100644 --- a/docs/version-specific/supported-software/c/Compass.md +++ b/docs/version-specific/supported-software/c/Compass.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2024.04`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 16c4d9102..296ad61bb 100644 --- a/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md +++ b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md @@ -13,5 +13,5 @@ version | toolchain ``2.202`` | ``GCCcore/11.3.0`` ``2.202`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a3dc6bcf4..8b153ed10 100644 --- a/docs/version-specific/supported-software/c/Con3F.md +++ b/docs/version-specific/supported-software/c/Con3F.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20190329`` | ``-Python-3.7.2`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 195f1e356..a92b99ff0 100644 --- a/docs/version-specific/supported-software/c/Concorde.md +++ b/docs/version-specific/supported-software/c/Concorde.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20031219`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cde1c2b23..438c8f8b7 100644 --- a/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md +++ b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md @@ -15,5 +15,5 @@ version | toolchain ``1.11.23`` | ``GCCcore/4.9.3`` ``1.11.23`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ad51470e6..a06b5882f 100644 --- a/docs/version-specific/supported-software/c/ConnectomeWorkbench.md +++ b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.4.2`` | ``-rh_linux64`` | ``system`` ``1.5.0`` | | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index acecd0f6c..104cd5356 100644 --- a/docs/version-specific/supported-software/c/Control-FREEC.md +++ b/docs/version-specific/supported-software/c/Control-FREEC.md @@ -14,5 +14,5 @@ version | toolchain ``11.5`` | ``GCC/8.2.0-2.31.1`` ``11.6`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 43b334390..6e25ee203 100644 --- a/docs/version-specific/supported-software/c/CoordgenLibs.md +++ b/docs/version-specific/supported-software/c/CoordgenLibs.md @@ -18,5 +18,5 @@ version | toolchain ``3.0.1`` | ``iimpi/2020a`` ``3.0.2`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ca488938f..213512159 100644 --- a/docs/version-specific/supported-software/c/Coot.md +++ b/docs/version-specific/supported-software/c/Coot.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0a24b3f9d..38289801e 100644 --- a/docs/version-specific/supported-software/c/CopyKAT.md +++ b/docs/version-specific/supported-software/c/CopyKAT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.1.0`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ade19ae24..f63db0fbb 100644 --- a/docs/version-specific/supported-software/c/Coreutils.md +++ b/docs/version-specific/supported-software/c/Coreutils.md @@ -19,5 +19,5 @@ version | toolchain ``9.1`` | ``GCCcore/11.3.0`` ``9.1`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 94b2842d0..ea7886ff1 100644 --- a/docs/version-specific/supported-software/c/CppHeaderParser.md +++ b/docs/version-specific/supported-software/c/CppHeaderParser.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.7.4`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b59db7a75..bf4d1e49a 100644 --- a/docs/version-specific/supported-software/c/CppUnit.md +++ b/docs/version-specific/supported-software/c/CppUnit.md @@ -21,5 +21,5 @@ version | toolchain ``1.15.1`` | ``GCCcore/8.3.0`` ``1.15.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e130a7548..476c0516a 100644 --- a/docs/version-specific/supported-software/c/CrayCCE.md +++ b/docs/version-specific/supported-software/c/CrayCCE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e13cbac40..4a20ea709 100644 --- a/docs/version-specific/supported-software/c/CrayGNU.md +++ b/docs/version-specific/supported-software/c/CrayGNU.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fe2b12f3b..bfb293a52 100644 --- a/docs/version-specific/supported-software/c/CrayIntel.md +++ b/docs/version-specific/supported-software/c/CrayIntel.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 295858154..96b1ab061 100644 --- a/docs/version-specific/supported-software/c/CrayPGI.md +++ b/docs/version-specific/supported-software/c/CrayPGI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bb6fd7b36..05092e377 100644 --- a/docs/version-specific/supported-software/c/CrossMap.md +++ b/docs/version-specific/supported-software/c/CrossMap.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.9`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a56c34689..ffc82228c 100644 --- a/docs/version-specific/supported-software/c/CrossTalkZ.md +++ b/docs/version-specific/supported-software/c/CrossTalkZ.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 566153379..fb806fbb1 100644 --- a/docs/version-specific/supported-software/c/Crumble.md +++ b/docs/version-specific/supported-software/c/Crumble.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.3`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 53c37c014..a397dce85 100644 --- a/docs/version-specific/supported-software/c/CryptoMiniSat.md +++ b/docs/version-specific/supported-software/c/CryptoMiniSat.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 640482eb3..4a39faed5 100644 --- a/docs/version-specific/supported-software/c/CrystFEL.md +++ b/docs/version-specific/supported-software/c/CrystFEL.md @@ -13,5 +13,5 @@ version | toolchain ``0.8.0`` | ``foss/2019a`` ``0.8.0`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 75faa2cf0..015c9d76c 100644 --- a/docs/version-specific/supported-software/c/CuCLARK.md +++ b/docs/version-specific/supported-software/c/CuCLARK.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7662a7e5d..0f7cc379f 100644 --- a/docs/version-specific/supported-software/c/CuPy.md +++ b/docs/version-specific/supported-software/c/CuPy.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``8.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``8.5.0`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 29907a377..bf0cdb401 100644 --- a/docs/version-specific/supported-software/c/Cube.md +++ b/docs/version-specific/supported-software/c/Cube.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3.4`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f8b15bf92..f9aedb2aa 100644 --- a/docs/version-specific/supported-software/c/CubeGUI.md +++ b/docs/version-specific/supported-software/c/CubeGUI.md @@ -16,5 +16,5 @@ version | toolchain ``4.6`` | ``GCCcore/10.3.0`` ``4.8`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8ade9a582..3ae34269c 100644 --- a/docs/version-specific/supported-software/c/CubeLib.md +++ b/docs/version-specific/supported-software/c/CubeLib.md @@ -22,5 +22,5 @@ version | toolchain ``4.8.2`` | ``GCCcore/12.2.0`` ``4.8.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5f704e657..505a5aefb 100644 --- a/docs/version-specific/supported-software/c/CubeWriter.md +++ b/docs/version-specific/supported-software/c/CubeWriter.md @@ -23,5 +23,5 @@ version | toolchain ``4.8.2`` | ``GCCcore/12.2.0`` ``4.8.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2da76e428..f0ceb2741 100644 --- a/docs/version-specific/supported-software/c/Cufflinks.md +++ b/docs/version-specific/supported-software/c/Cufflinks.md @@ -20,5 +20,5 @@ version | toolchain ``20190706`` | ``GCC/11.2.0`` ``20190706`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9c983d308..1504e00e9 100644 --- a/docs/version-specific/supported-software/c/Cython.md +++ b/docs/version-specific/supported-software/c/Cython.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``3.0.8`` | | ``GCCcore/12.3.0`` ``3.0a5`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9a5af8648..3e33f80ac 100644 --- a/docs/version-specific/supported-software/c/Cytoscape.md +++ b/docs/version-specific/supported-software/c/Cytoscape.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.9.1`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6a4587749..e7e452459 100644 --- a/docs/version-specific/supported-software/c/c-ares.md +++ b/docs/version-specific/supported-software/c/c-ares.md @@ -17,5 +17,5 @@ version | toolchain ``1.19.1`` | ``GCCcore/12.3.0`` ``1.27.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cc4bf3672..8da09876c 100644 --- a/docs/version-specific/supported-software/c/cDNA_Cupcake.md +++ b/docs/version-specific/supported-software/c/cDNA_Cupcake.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``26.0.0`` | | ``foss/2021a`` ``5.8`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b168f31dd..5c6d2c384 100644 --- a/docs/version-specific/supported-software/c/cURL.md +++ b/docs/version-specific/supported-software/c/cURL.md @@ -48,5 +48,5 @@ version | toolchain ``8.3.0`` | ``GCCcore/13.2.0`` ``8.7.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5ec3805e0..c1458a8f9 100644 --- a/docs/version-specific/supported-software/c/cadaver.md +++ b/docs/version-specific/supported-software/c/cadaver.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.23.3`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 31ad4833c..2908e097c 100644 --- a/docs/version-specific/supported-software/c/cairo.md +++ b/docs/version-specific/supported-software/c/cairo.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``1.17.8`` | | ``GCCcore/12.3.0`` ``1.18.0`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1a5a66f20..aa4902867 100644 --- a/docs/version-specific/supported-software/c/cairomm.md +++ b/docs/version-specific/supported-software/c/cairomm.md @@ -14,5 +14,5 @@ version | toolchain ``1.12.2`` | ``GCCcore/7.3.0`` ``1.16.2`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5dd06d801..a00d8e87d 100644 --- a/docs/version-specific/supported-software/c/canu.md +++ b/docs/version-specific/supported-software/c/canu.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``2.2`` | | ``GCCcore/11.2.0`` ``2.2`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ee20a282e..f33b91f7d 100644 --- a/docs/version-specific/supported-software/c/captum.md +++ b/docs/version-specific/supported-software/c/captum.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.5.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 302e6dcad..07d8ded9e 100644 --- a/docs/version-specific/supported-software/c/carputils.md +++ b/docs/version-specific/supported-software/c/carputils.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20200915`` | ``-Python-3.8.2`` | ``foss/2020a`` ``20210513`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b360f83be..a82ae0b29 100644 --- a/docs/version-specific/supported-software/c/casacore.md +++ b/docs/version-specific/supported-software/c/casacore.md @@ -14,5 +14,5 @@ version | toolchain ``3.5.0`` | ``foss/2022a`` ``3.5.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1dc981ad5..0cb2e6b37 100644 --- a/docs/version-specific/supported-software/c/castor.md +++ b/docs/version-specific/supported-software/c/castor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.11`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8a3039c43..3b3d2d945 100644 --- a/docs/version-specific/supported-software/c/category_encoders.md +++ b/docs/version-specific/supported-software/c/category_encoders.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 581b8de6c..e07c34a1b 100644 --- a/docs/version-specific/supported-software/c/causallift.md +++ b/docs/version-specific/supported-software/c/causallift.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aab63ff48..310d82d25 100644 --- a/docs/version-specific/supported-software/c/causalml.md +++ b/docs/version-specific/supported-software/c/causalml.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.0-20180610`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.8.0-20200909`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 27aa353ab..088343894 100644 --- a/docs/version-specific/supported-software/c/ccache.md +++ b/docs/version-specific/supported-software/c/ccache.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``4.9`` | | ``GCCcore/12.3.0`` ``4.9`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 154b9c0b9..c98a27cf4 100644 --- a/docs/version-specific/supported-software/c/cclib.md +++ b/docs/version-specific/supported-software/c/cclib.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.7.2`` | | ``foss/2021b`` ``1.8`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e9015b262..cb41c0db0 100644 --- a/docs/version-specific/supported-software/c/cctbx-base.md +++ b/docs/version-specific/supported-software/c/cctbx-base.md @@ -13,5 +13,5 @@ version | toolchain ``2020.8`` | ``foss/2020b`` ``2020.8`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a20a4dc9e..6011bc537 100644 --- a/docs/version-specific/supported-software/c/cctools.md +++ b/docs/version-specific/supported-software/c/cctools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.0.22`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d63d7fe51..7f66f6d84 100644 --- a/docs/version-specific/supported-software/c/cdbfasta.md +++ b/docs/version-specific/supported-software/c/cdbfasta.md @@ -14,5 +14,5 @@ version | toolchain ``0.99`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``0.99`` | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7c58dbd56..7b3237a13 100644 --- a/docs/version-specific/supported-software/c/cddlib.md +++ b/docs/version-specific/supported-software/c/cddlib.md @@ -15,5 +15,5 @@ version | toolchain ``0.94m`` | ``GCCcore/11.3.0`` ``0.94m`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8a54d382d..27965a99d 100644 --- a/docs/version-specific/supported-software/c/cdo-bindings.md +++ b/docs/version-specific/supported-software/c/cdo-bindings.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.7`` | ``foss/2021b`` ``1.6.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index be2b4194a..a928509ed 100644 --- a/docs/version-specific/supported-software/c/cdsapi.md +++ b/docs/version-specific/supported-software/c/cdsapi.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.3.0`` | | ``GCCcore/9.3.0`` ``0.5.1`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ef5f97027..50b33349d 100644 --- a/docs/version-specific/supported-software/c/cell2location.md +++ b/docs/version-specific/supported-software/c/cell2location.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.05-alpha`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5376e4429..e797e3ae0 100644 --- a/docs/version-specific/supported-software/c/centerline.md +++ b/docs/version-specific/supported-software/c/centerline.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 837835862..a8601eba1 100644 --- a/docs/version-specific/supported-software/c/cffi.md +++ b/docs/version-specific/supported-software/c/cffi.md @@ -15,5 +15,5 @@ version | toolchain ``1.15.1`` | ``GCCcore/13.2.0`` ``1.16.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8360d7682..7d8b36f69 100644 --- a/docs/version-specific/supported-software/c/cftime.md +++ b/docs/version-specific/supported-software/c/cftime.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``1.0.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d1080ad0..2d6bb4dc6 100644 --- a/docs/version-specific/supported-software/c/cget.md +++ b/docs/version-specific/supported-software/c/cget.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 683868a57..c98fb18bd 100644 --- a/docs/version-specific/supported-software/c/charm-gems.md +++ b/docs/version-specific/supported-software/c/charm-gems.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.3`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d3e19b2a..e1bd81b6e 100644 --- a/docs/version-specific/supported-software/c/chemprop.md +++ b/docs/version-specific/supported-software/c/chemprop.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.5.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 961c22fc3..f073864e2 100644 --- a/docs/version-specific/supported-software/c/chewBBACA.md +++ b/docs/version-specific/supported-software/c/chewBBACA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.5`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5adf3cfdb..990916325 100644 --- a/docs/version-specific/supported-software/c/chi2comb.md +++ b/docs/version-specific/supported-software/c/chi2comb.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.3`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d7ad727fd..670f2120a 100644 --- a/docs/version-specific/supported-software/c/chromVARmotifs.md +++ b/docs/version-specific/supported-software/c/chromVARmotifs.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 37fcee4c1..abaa4548c 100644 --- a/docs/version-specific/supported-software/c/cicero.md +++ b/docs/version-specific/supported-software/c/cicero.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.3.4.11`` | ``-R-4.0.3-Monocle3`` | ``foss/2020b`` ``1.3.8`` | ``-R-4.2.1-Monocle3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2796e8eea..53fe46a6a 100644 --- a/docs/version-specific/supported-software/c/cimfomfa.md +++ b/docs/version-specific/supported-software/c/cimfomfa.md @@ -14,5 +14,5 @@ version | toolchain ``22.273`` | ``GCCcore/11.3.0`` ``22.273`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 02bffb00d..3c5e16839 100644 --- a/docs/version-specific/supported-software/c/cisTEM.md +++ b/docs/version-specific/supported-software/c/cisTEM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0-beta`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a27901ebc..c89a92fce 100644 --- a/docs/version-specific/supported-software/c/cliquer.md +++ b/docs/version-specific/supported-software/c/cliquer.md @@ -13,5 +13,5 @@ version | toolchain ``1.21`` | ``GCCcore/11.3.0`` ``1.21`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e0e980d2e..a14c85e70 100644 --- a/docs/version-specific/supported-software/c/cmocean.md +++ b/docs/version-specific/supported-software/c/cmocean.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 264ffb1b2..8f164d29b 100644 --- a/docs/version-specific/supported-software/c/cmph.md +++ b/docs/version-specific/supported-software/c/cmph.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 25ebe737c..b90d71a68 100644 --- a/docs/version-specific/supported-software/c/code-cli.md +++ b/docs/version-specific/supported-software/c/code-cli.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.85.1`` | ``-x64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd119ed4d..ce623c3a2 100644 --- a/docs/version-specific/supported-software/c/code-server.md +++ b/docs/version-specific/supported-software/c/code-server.md @@ -17,5 +17,5 @@ version | toolchain ``4.89.1`` | ``system`` ``4.9.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8a6ea0bfc..25b7d3e11 100644 --- a/docs/version-specific/supported-software/c/colossalai.md +++ b/docs/version-specific/supported-software/c/colossalai.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.8`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c723d6d20..83ea29df1 100644 --- a/docs/version-specific/supported-software/c/conan.md +++ b/docs/version-specific/supported-software/c/conan.md @@ -13,5 +13,5 @@ version | toolchain ``1.58.0`` | ``GCCcore/11.3.0`` ``1.60.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 93f918fec..99899a5bd 100644 --- a/docs/version-specific/supported-software/c/configparser.md +++ b/docs/version-specific/supported-software/c/configparser.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``3.5.0`` | ``-Python-3.5.2`` | ``intel/2016b`` ``3.5.0`` | ``-Python-3.6.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4be955397..a2f4a574a 100644 --- a/docs/version-specific/supported-software/c/configurable-http-proxy.md +++ b/docs/version-specific/supported-software/c/configurable-http-proxy.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``4.5.6`` | | ``GCCcore/12.3.0`` ``4.6.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d325c22b..556781710 100644 --- a/docs/version-specific/supported-software/c/connected-components-3d.md +++ b/docs/version-specific/supported-software/c/connected-components-3d.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.12.1`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a7b1c36b4..906dd3ad3 100644 --- a/docs/version-specific/supported-software/c/contextily.md +++ b/docs/version-specific/supported-software/c/contextily.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b8c8363a7..0e4438fc2 100644 --- a/docs/version-specific/supported-software/c/cooler.md +++ b/docs/version-specific/supported-software/c/cooler.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5d9ebf76a..877c86e7f 100644 --- a/docs/version-specific/supported-software/c/core-counter.md +++ b/docs/version-specific/supported-software/c/core-counter.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8c7c508bf..eb0d0e919 100644 --- a/docs/version-specific/supported-software/c/corner.md +++ b/docs/version-specific/supported-software/c/corner.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``2.2.2`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5a1866bac..7a9c4967f 100644 --- a/docs/version-specific/supported-software/c/coverage.md +++ b/docs/version-specific/supported-software/c/coverage.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``7.2.7`` | | ``GCCcore/11.3.0`` ``7.4.4`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f02ed3e59..754f494ec 100644 --- a/docs/version-specific/supported-software/c/cowsay.md +++ b/docs/version-specific/supported-software/c/cowsay.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.04`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 101d7907d..568e4ecf4 100644 --- a/docs/version-specific/supported-software/c/cpio.md +++ b/docs/version-specific/supported-software/c/cpio.md @@ -16,5 +16,5 @@ version | toolchain ``2.15`` | ``GCCcore/13.2.0`` ``2.15`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 20fef7787..4947b8e4d 100644 --- a/docs/version-specific/supported-software/c/cppy.md +++ b/docs/version-specific/supported-software/c/cppy.md @@ -17,5 +17,5 @@ version | toolchain ``1.2.1`` | ``GCCcore/12.3.0`` ``1.2.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f623b3bea..9c7bbae9a 100644 --- a/docs/version-specific/supported-software/c/cppyy.md +++ b/docs/version-specific/supported-software/c/cppyy.md @@ -13,5 +13,5 @@ version | toolchain ``3.0.0`` | ``GCCcore/11.3.0`` ``3.1.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fe13ea23c..edc2a8fbf 100644 --- a/docs/version-specific/supported-software/c/cppzmq.md +++ b/docs/version-specific/supported-software/c/cppzmq.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.9.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1e2f0563b..0e16d54af 100644 --- a/docs/version-specific/supported-software/c/cpu_features.md +++ b/docs/version-specific/supported-software/c/cpu_features.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.0`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e5e140def..3d1339ddf 100644 --- a/docs/version-specific/supported-software/c/cram.md +++ b/docs/version-specific/supported-software/c/cram.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 064278ad9..9e04c826b 100644 --- a/docs/version-specific/supported-software/c/cramtools.md +++ b/docs/version-specific/supported-software/c/cramtools.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0`` | ``-Java-1.7.0_80`` | ``system`` ``3.0`` | ``-Java-1.7.0_80`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3f4225a35..292b6162b 100644 --- a/docs/version-specific/supported-software/c/crb-blast.md +++ b/docs/version-specific/supported-software/c/crb-blast.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.6.9`` | | ``gompi/2021b`` ``0.6.9`` | | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 19b02d467..471890dd1 100644 --- a/docs/version-specific/supported-software/c/cromwell.md +++ b/docs/version-specific/supported-software/c/cromwell.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``56`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d67151525..20e32b92a 100644 --- a/docs/version-specific/supported-software/c/crossguid.md +++ b/docs/version-specific/supported-software/c/crossguid.md @@ -13,5 +13,5 @@ version | toolchain ``20190529`` | ``GCCcore/11.2.0`` ``20190529`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a868de99c..c622b20aa 100644 --- a/docs/version-specific/supported-software/c/cryoCARE.md +++ b/docs/version-specific/supported-software/c/cryoCARE.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.2.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2b7ab4045..1738032d3 100644 --- a/docs/version-specific/supported-software/c/cryoDRGN.md +++ b/docs/version-specific/supported-software/c/cryoDRGN.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.3.5`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.0-beta`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e671552c8..be93766aa 100644 --- a/docs/version-specific/supported-software/c/cryptography.md +++ b/docs/version-specific/supported-software/c/cryptography.md @@ -13,5 +13,5 @@ version | toolchain ``41.0.1`` | ``GCCcore/12.3.0`` ``41.0.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c478a7329..71cc52ae8 100644 --- a/docs/version-specific/supported-software/c/cscope.md +++ b/docs/version-specific/supported-software/c/cscope.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``15.9`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c5e92bee8..1f98a7f87 100644 --- a/docs/version-specific/supported-software/c/csvkit.md +++ b/docs/version-specific/supported-software/c/csvkit.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.5`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.1.0`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5ec7220e7..0aea2549a 100644 --- a/docs/version-specific/supported-software/c/ctags.md +++ b/docs/version-specific/supported-software/c/ctags.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 878d0f801..62594abcb 100644 --- a/docs/version-specific/supported-software/c/ctffind.md +++ b/docs/version-specific/supported-software/c/ctffind.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``4.1.14`` | | ``fosscuda/2019b`` ``4.1.14`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 92e5b2d03..2252f25af 100644 --- a/docs/version-specific/supported-software/c/ctffind5.md +++ b/docs/version-specific/supported-software/c/ctffind5.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7c7d3106e..ad7803ef7 100644 --- a/docs/version-specific/supported-software/c/cuDNN.md +++ b/docs/version-specific/supported-software/c/cuDNN.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``8.9.2.26`` | ``-CUDA-12.2.0`` | ``system`` ``8.9.7.29`` | ``-CUDA-12.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2113794d7..1b5d3f937 100644 --- a/docs/version-specific/supported-software/c/cuSPARSELt.md +++ b/docs/version-specific/supported-software/c/cuSPARSELt.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.0.3`` | ``-CUDA-11.4.1`` | ``system`` ``0.6.0.6`` | ``-CUDA-12.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 86775394a..b00c5bafe 100644 --- a/docs/version-specific/supported-software/c/cuTENSOR.md +++ b/docs/version-specific/supported-software/c/cuTENSOR.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``2.0.1.2`` | ``-CUDA-12.1.1`` | ``system`` ``2.0.1.2`` | ``-CUDA-12.2.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8cde0d8cc..d7dac5660 100644 --- a/docs/version-specific/supported-software/c/currentNe.md +++ b/docs/version-specific/supported-software/c/currentNe.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index eb0ca5a43..5f5bf8590 100644 --- a/docs/version-specific/supported-software/c/custodian.md +++ b/docs/version-specific/supported-software/c/custodian.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 857691370..da3689d18 100644 --- a/docs/version-specific/supported-software/c/cutadapt.md +++ b/docs/version-specific/supported-software/c/cutadapt.md @@ -40,5 +40,5 @@ version | versionsuffix | toolchain ``4.2`` | | ``GCCcore/11.3.0`` ``4.4`` | | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cf7da57d3..253bc8f6b 100644 --- a/docs/version-specific/supported-software/c/cuteSV.md +++ b/docs/version-specific/supported-software/c/cuteSV.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd1f38c7c..0045e067e 100644 --- a/docs/version-specific/supported-software/c/cwltool.md +++ b/docs/version-specific/supported-software/c/cwltool.md @@ -13,5 +13,5 @@ version | toolchain ``3.1.20221008225030`` | ``foss/2021a`` ``3.1.20221018083734`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 82c66066c..78c6c66d8 100644 --- a/docs/version-specific/supported-software/c/cxxopts.md +++ b/docs/version-specific/supported-software/c/cxxopts.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b4701a244..4da105040 100644 --- a/docs/version-specific/supported-software/c/cysignals.md +++ b/docs/version-specific/supported-software/c/cysignals.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.11.2`` | | ``GCCcore/11.3.0`` ``1.11.4`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 664304d97..8da964be3 100644 --- a/docs/version-specific/supported-software/c/cython-blis.md +++ b/docs/version-specific/supported-software/c/cython-blis.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f0ae3fcca..f9ca5225a 100644 --- a/docs/version-specific/supported-software/c/cytoolz.md +++ b/docs/version-specific/supported-software/c/cytoolz.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.10.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``0.10.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 703a76c52..540069405 100644 --- a/docs/version-specific/supported-software/c/cytosim.md +++ b/docs/version-specific/supported-software/c/cytosim.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190117`` | ``-mkl`` | ``gomkl/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 654e15858..32b279ad6 100644 --- a/docs/version-specific/supported-software/c/cyvcf2.md +++ b/docs/version-specific/supported-software/c/cyvcf2.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.11.5`` | | ``foss/2019a`` ``0.11.5`` | | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e1d8a9140..8b527b4d2 100644 --- a/docs/version-specific/supported-software/c/index.md +++ b/docs/version-specific/supported-software/c/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (c) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - *c* - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[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) diff --git a/docs/version-specific/supported-software/d/DALI.md b/docs/version-specific/supported-software/d/DALI.md index 56537d8e3..7cc39a95e 100644 --- a/docs/version-specific/supported-software/d/DALI.md +++ b/docs/version-specific/supported-software/d/DALI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90b548629..f8106ce59 100644 --- a/docs/version-specific/supported-software/d/DANPOS2.md +++ b/docs/version-specific/supported-software/d/DANPOS2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e51dd5734..53e714fa7 100644 --- a/docs/version-specific/supported-software/d/DAS_Tool.md +++ b/docs/version-specific/supported-software/d/DAS_Tool.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-R-4.1.2`` | ``foss/2021b`` ``1.1.3`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2698852c7..cc4170dde 100644 --- a/docs/version-specific/supported-software/d/DB.md +++ b/docs/version-specific/supported-software/d/DB.md @@ -29,5 +29,5 @@ version | toolchain ``6.2.32`` | ``GCCcore/6.4.0`` ``6.2.32`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c02b6c91b..e7d8f3313 100644 --- a/docs/version-specific/supported-software/d/DBCSR.md +++ b/docs/version-specific/supported-software/d/DBCSR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 25a86cce5..8d9920630 100644 --- a/docs/version-specific/supported-software/d/DBD-mysql.md +++ b/docs/version-specific/supported-software/d/DBD-mysql.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``4.050`` | | ``GCC/12.2.0`` ``4.050`` | ``-Perl-5.28.1`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 71176941a..249bfc034 100644 --- a/docs/version-specific/supported-software/d/DBG2OLC.md +++ b/docs/version-specific/supported-software/d/DBG2OLC.md @@ -16,5 +16,5 @@ version | toolchain ``20180221`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``20200724`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 705e77389..cdfd1813e 100644 --- a/docs/version-specific/supported-software/d/DB_File.md +++ b/docs/version-specific/supported-software/d/DB_File.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``1.858`` | | ``GCCcore/11.3.0`` ``1.859`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dec0a7dd8..433611744 100644 --- a/docs/version-specific/supported-software/d/DBus.md +++ b/docs/version-specific/supported-software/d/DBus.md @@ -29,5 +29,5 @@ version | toolchain ``1.15.4`` | ``GCCcore/12.3.0`` ``1.15.8`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3be746173..b8cfb33e4 100644 --- a/docs/version-specific/supported-software/d/DCMTK.md +++ b/docs/version-specific/supported-software/d/DCMTK.md @@ -17,5 +17,5 @@ version | toolchain ``3.6.6`` | ``GCCcore/11.2.0`` ``3.6.7`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8338fc82f..0f3bb1b8f 100644 --- a/docs/version-specific/supported-software/d/DEICODE.md +++ b/docs/version-specific/supported-software/d/DEICODE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 514678f3e..b2fbf5f1d 100644 --- a/docs/version-specific/supported-software/d/DETONATE.md +++ b/docs/version-specific/supported-software/d/DETONATE.md @@ -13,5 +13,5 @@ version | toolchain ``1.11`` | ``GCC/12.3.0`` ``1.11`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84804834d..bcf19a7ec 100644 --- a/docs/version-specific/supported-software/d/DFA.md +++ b/docs/version-specific/supported-software/d/DFA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.4`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``2.1.2`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 96a24c9d5..2ffa53573 100644 --- a/docs/version-specific/supported-software/d/DFT-D3.md +++ b/docs/version-specific/supported-software/d/DFT-D3.md @@ -17,5 +17,5 @@ version | toolchain ``3.2.0`` | ``intel-compilers/2021.4.0`` ``3.2.0`` | ``intel-compilers/2022.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 958465626..24bff39fd 100644 --- a/docs/version-specific/supported-software/d/DFT-D4.md +++ b/docs/version-specific/supported-software/d/DFT-D4.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``3.6.0`` | | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d7cf80c5e..d9e93fec0 100644 --- a/docs/version-specific/supported-software/d/DFTB+.md +++ b/docs/version-specific/supported-software/d/DFTB+.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``19.1`` | ``-Python-2.7.16`` | ``foss/2019b`` ``21.1`` | | ``intel/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e40a3d2d..0bd1d494b 100644 --- a/docs/version-specific/supported-software/d/DGL.md +++ b/docs/version-specific/supported-software/d/DGL.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3cd8b58ac..4c9957d0f 100644 --- a/docs/version-specific/supported-software/d/DIA-NN.md +++ b/docs/version-specific/supported-software/d/DIA-NN.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bfad96161..1f756a2ae 100644 --- a/docs/version-specific/supported-software/d/DIAL.md +++ b/docs/version-specific/supported-software/d/DIAL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2011.06.06`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d02a091e7..9ff756881 100644 --- a/docs/version-specific/supported-software/d/DIALOGUE.md +++ b/docs/version-specific/supported-software/d/DIALOGUE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20230228`` | ``-R-4.2.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6116ec5e0..fa3542a97 100644 --- a/docs/version-specific/supported-software/d/DIAMOND.md +++ b/docs/version-specific/supported-software/d/DIAMOND.md @@ -30,5 +30,5 @@ version | toolchain ``2.1.8`` | ``GCC/12.3.0`` ``2.1.9`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cc17d69b7..cfb229eb9 100644 --- a/docs/version-specific/supported-software/d/DIRAC.md +++ b/docs/version-specific/supported-software/d/DIRAC.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``23.0`` | ``-int64`` | ``intel/2023a`` ``23.0`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ba45e49d6..d8a616de4 100644 --- a/docs/version-specific/supported-software/d/DLPack.md +++ b/docs/version-specific/supported-software/d/DLPack.md @@ -13,5 +13,5 @@ version | toolchain ``0.3`` | ``GCC/10.3.0`` ``0.8`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8cc00b210..eae418029 100644 --- a/docs/version-specific/supported-software/d/DL_POLY_4.md +++ b/docs/version-specific/supported-software/d/DL_POLY_4.md @@ -15,5 +15,5 @@ version | toolchain ``5.1.0`` | ``foss/2022b`` ``5.1.0`` | ``intel/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 21611bdf2..ac205352c 100644 --- a/docs/version-specific/supported-software/d/DL_POLY_Classic.md +++ b/docs/version-specific/supported-software/d/DL_POLY_Classic.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.9`` | ``-PLUMED-2.2.3`` | ``intel/2016b`` ``1.9`` | | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5e45cfa0a..ab7a238df 100644 --- a/docs/version-specific/supported-software/d/DMCfun.md +++ b/docs/version-specific/supported-software/d/DMCfun.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.0`` | ``-R-3.6.2`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5bab0d2dd..430595f0c 100644 --- a/docs/version-specific/supported-software/d/DMLC-Core.md +++ b/docs/version-specific/supported-software/d/DMLC-Core.md @@ -13,5 +13,5 @@ version | toolchain ``0.5`` | ``GCC/10.3.0`` ``0.5`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b0b82dc1..65fefe03b 100644 --- a/docs/version-specific/supported-software/d/DMTCP.md +++ b/docs/version-specific/supported-software/d/DMTCP.md @@ -20,5 +20,5 @@ version | toolchain ``2.6.0`` | ``GCCcore/9.3.0`` ``3.0.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d0d3c3223..3cfa39152 100644 --- a/docs/version-specific/supported-software/d/DOLFIN.md +++ b/docs/version-specific/supported-software/d/DOLFIN.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2018.1.0.post1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a4d5b8ef6..ab2fc9ccc 100644 --- a/docs/version-specific/supported-software/d/DP3.md +++ b/docs/version-specific/supported-software/d/DP3.md @@ -13,5 +13,5 @@ version | toolchain ``6.0`` | ``foss/2022a`` ``6.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ee4e1418b..881ffdb88 100644 --- a/docs/version-specific/supported-software/d/DRAGMAP.md +++ b/docs/version-specific/supported-software/d/DRAGMAP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 33dfc9886..47f338583 100644 --- a/docs/version-specific/supported-software/d/DROP.md +++ b/docs/version-specific/supported-software/d/DROP.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.1.1`` | ``-R-4.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f46b38ad6..7ede02ba7 100644 --- a/docs/version-specific/supported-software/d/DSA.md +++ b/docs/version-specific/supported-software/d/DSA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 324f67183..75cf214b5 100644 --- a/docs/version-specific/supported-software/d/DSRC.md +++ b/docs/version-specific/supported-software/d/DSRC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0rc`` | ``-linux-64-bit`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d2c7ad9a2..183fe4a97 100644 --- a/docs/version-specific/supported-software/d/DUBStepR.md +++ b/docs/version-specific/supported-software/d/DUBStepR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-R-4.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9cc06f0cf..a34fb241d 100644 --- a/docs/version-specific/supported-software/d/Dakota.md +++ b/docs/version-specific/supported-software/d/Dakota.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.16.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 158c8902d..44aee6288 100644 --- a/docs/version-specific/supported-software/d/DaliLite.md +++ b/docs/version-specific/supported-software/d/DaliLite.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.1`` | ``gompi/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bcf06949..73593ac83 100644 --- a/docs/version-specific/supported-software/d/Dalton.md +++ b/docs/version-specific/supported-software/d/Dalton.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2020.0`` | | ``foss/2021a`` ``2020.1`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3bd126cd7..7fbebb83a 100644 --- a/docs/version-specific/supported-software/d/DeMixT.md +++ b/docs/version-specific/supported-software/d/DeMixT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b5da87658..b8de23497 100644 --- a/docs/version-specific/supported-software/d/DeconICA.md +++ b/docs/version-specific/supported-software/d/DeconICA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7e635e5f1..68732a1a1 100644 --- a/docs/version-specific/supported-software/d/DeepLabCut.md +++ b/docs/version-specific/supported-software/d/DeepLabCut.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.2.0.6`` | | ``foss/2021a`` ``2.3.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d2f9c5fd..afbd4b909 100644 --- a/docs/version-specific/supported-software/d/DeepLoc.md +++ b/docs/version-specific/supported-software/d/DeepLoc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe9c69699..4b6d91c6f 100644 --- a/docs/version-specific/supported-software/d/DeepMod2.md +++ b/docs/version-specific/supported-software/d/DeepMod2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff6c3d636..93f14adba 100644 --- a/docs/version-specific/supported-software/d/DeepSurv.md +++ b/docs/version-specific/supported-software/d/DeepSurv.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0-20180922`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9db86c5e2..27ae2e832 100644 --- a/docs/version-specific/supported-software/d/Delft3D.md +++ b/docs/version-specific/supported-software/d/Delft3D.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.04.01`` | ``-FLOW`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7c0e89f11..8d2cb2331 100644 --- a/docs/version-specific/supported-software/d/Delly.md +++ b/docs/version-specific/supported-software/d/Delly.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.1.5`` | | ``GCC/11.3.0`` ``1.1.6`` | | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c6f75f2e4..242331bc5 100644 --- a/docs/version-specific/supported-software/d/DeltaLake.md +++ b/docs/version-specific/supported-software/d/DeltaLake.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.15.1`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5485ec939..a2108e237 100644 --- a/docs/version-specific/supported-software/d/Demystify.md +++ b/docs/version-specific/supported-software/d/Demystify.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.17`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c3623b00b..1fa750339 100644 --- a/docs/version-specific/supported-software/d/DendroPy.md +++ b/docs/version-specific/supported-software/d/DendroPy.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``4.5.2`` | | ``GCCcore/12.2.0`` ``4.6.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6f82dafda..510c6f1a5 100644 --- a/docs/version-specific/supported-software/d/DensPart.md +++ b/docs/version-specific/supported-software/d/DensPart.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220603`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 28a6428d1..d0bc0435a 100644 --- a/docs/version-specific/supported-software/d/Deprecated.md +++ b/docs/version-specific/supported-software/d/Deprecated.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.13`` | ``foss/2022a`` ``1.2.14`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7103a83a3..73a1e2cf7 100644 --- a/docs/version-specific/supported-software/d/Detectron2.md +++ b/docs/version-specific/supported-software/d/Detectron2.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.6`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3091fc54..9d2a4b629 100644 --- a/docs/version-specific/supported-software/d/Devito.md +++ b/docs/version-specific/supported-software/d/Devito.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.6.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 91459ee7b..87d449698 100644 --- a/docs/version-specific/supported-software/d/DiCE-ML.md +++ b/docs/version-specific/supported-software/d/DiCE-ML.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a27b6039c..048b09dc5 100644 --- a/docs/version-specific/supported-software/d/Dice.md +++ b/docs/version-specific/supported-software/d/Dice.md @@ -13,5 +13,5 @@ version | toolchain ``20221025`` | ``foss/2022a`` ``20240101`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 863da237d..a1296bfc9 100644 --- a/docs/version-specific/supported-software/d/DicomBrowser.md +++ b/docs/version-specific/supported-software/d/DicomBrowser.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.0b5`` | ``-Java-1.7.0_80`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 89495c06f..058a22338 100644 --- a/docs/version-specific/supported-software/d/DiffBind.md +++ b/docs/version-specific/supported-software/d/DiffBind.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.6.5`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e2c2cf997..4b1780a42 100644 --- a/docs/version-specific/supported-software/d/Diffutils.md +++ b/docs/version-specific/supported-software/d/Diffutils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4c43006fb..da35c8fca 100644 --- a/docs/version-specific/supported-software/d/DistributedStream.md +++ b/docs/version-specific/supported-software/d/DistributedStream.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``gompi/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 407d9766b..34634be6d 100644 --- a/docs/version-specific/supported-software/d/DjVuLibre.md +++ b/docs/version-specific/supported-software/d/DjVuLibre.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.5.28`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b08bcaa24..9501a2450 100644 --- a/docs/version-specific/supported-software/d/Doris.md +++ b/docs/version-specific/supported-software/d/Doris.md @@ -15,5 +15,5 @@ version | toolchain ``4.04beta4`` | ``intel/2017a`` ``4.06beta2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d86e60c93..d8f2ab05e 100644 --- a/docs/version-specific/supported-software/d/DosageConvertor.md +++ b/docs/version-specific/supported-software/d/DosageConvertor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.4`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9100ab91c..737df0b44 100644 --- a/docs/version-specific/supported-software/d/DoubletFinder.md +++ b/docs/version-specific/supported-software/d/DoubletFinder.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.0.3-20230819`` | ``-R-4.2.2`` | ``foss/2022b`` ``2.0.3`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 41e8dc76a..c6fe7af6f 100644 --- a/docs/version-specific/supported-software/d/Doxygen.md +++ b/docs/version-specific/supported-software/d/Doxygen.md @@ -39,5 +39,5 @@ version | toolchain ``1.9.7`` | ``GCCcore/12.3.0`` ``1.9.8`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5e0875978..a5842743f 100644 --- a/docs/version-specific/supported-software/d/Drake.md +++ b/docs/version-specific/supported-software/d/Drake.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8005c4afa..8123b2760 100644 --- a/docs/version-specific/supported-software/d/Dsuite.md +++ b/docs/version-specific/supported-software/d/Dsuite.md @@ -14,5 +14,5 @@ version | toolchain ``20210718`` | ``GCC/10.3.0`` ``20210718`` | ``intel-compilers/2021.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 815606d14..49d572189 100644 --- a/docs/version-specific/supported-software/d/DualSPHysics.md +++ b/docs/version-specific/supported-software/d/DualSPHysics.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.0.175`` | ``-CUDA-%(cudaver)s`` | ``GCC/11.2.0`` ``5.0.175`` | | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9b535cce..11534931b 100644 --- a/docs/version-specific/supported-software/d/DyMat.md +++ b/docs/version-specific/supported-software/d/DyMat.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-2020-12-12`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bc5a69c5b..5a1269589 100644 --- a/docs/version-specific/supported-software/d/dRep.md +++ b/docs/version-specific/supported-software/d/dRep.md @@ -13,5 +13,5 @@ version | toolchain ``3.0.0`` | ``foss/2021a`` ``3.4.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b34e6ef6..d5bfa98ce 100644 --- a/docs/version-specific/supported-software/d/dSFMT.md +++ b/docs/version-specific/supported-software/d/dSFMT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.5`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f7c4ff387..83227fe57 100644 --- a/docs/version-specific/supported-software/d/dadi.md +++ b/docs/version-specific/supported-software/d/dadi.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.0`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 602f5107c..f7939d542 100644 --- a/docs/version-specific/supported-software/d/dagitty.md +++ b/docs/version-specific/supported-software/d/dagitty.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2-2`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcf73ceaa..7785a868c 100644 --- a/docs/version-specific/supported-software/d/damageproto.md +++ b/docs/version-specific/supported-software/d/damageproto.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.1`` | ``foss/2016a`` ``1.2.1`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a29795a97..99a484335 100644 --- a/docs/version-specific/supported-software/d/dammit.md +++ b/docs/version-specific/supported-software/d/dammit.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.2`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1604e67fe..67698b235 100644 --- a/docs/version-specific/supported-software/d/dask-labextension.md +++ b/docs/version-specific/supported-software/d/dask-labextension.md @@ -14,5 +14,5 @@ version | toolchain ``7.0.0`` | ``foss/2023a`` ``7.0.0`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7228145f9..36341c075 100644 --- a/docs/version-specific/supported-software/d/dask.md +++ b/docs/version-specific/supported-software/d/dask.md @@ -51,5 +51,5 @@ version | versionsuffix | toolchain ``2023.9.2`` | | ``foss/2023a`` ``2024.5.1`` | | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 88fd3327b..0f8345689 100644 --- a/docs/version-specific/supported-software/d/datalad.md +++ b/docs/version-specific/supported-software/d/datalad.md @@ -13,5 +13,5 @@ version | toolchain ``0.18.4`` | ``GCCcore/12.2.0`` ``0.19.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 08e442f76..6478129b2 100644 --- a/docs/version-specific/supported-software/d/datamash.md +++ b/docs/version-specific/supported-software/d/datamash.md @@ -16,5 +16,5 @@ version | toolchain ``1.5`` | ``GCCcore/8.3.0`` ``1.8`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7e2302a00..675c46c5a 100644 --- a/docs/version-specific/supported-software/d/davix.md +++ b/docs/version-specific/supported-software/d/davix.md @@ -13,5 +13,5 @@ version | toolchain ``0.6.6`` | ``intel/2017a`` ``0.7.5`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cbc962fa2..341e97a3c 100644 --- a/docs/version-specific/supported-software/d/dbus-glib.md +++ b/docs/version-specific/supported-software/d/dbus-glib.md @@ -22,5 +22,5 @@ version | toolchain ``0.112`` | ``GCCcore/11.2.0`` ``0.112`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b1c87aed..ba5a9136b 100644 --- a/docs/version-specific/supported-software/d/dclone.md +++ b/docs/version-specific/supported-software/d/dclone.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3-0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 970c828f3..4aa3145ae 100644 --- a/docs/version-specific/supported-software/d/dcm2niix.md +++ b/docs/version-specific/supported-software/d/dcm2niix.md @@ -20,5 +20,5 @@ version | toolchain ``1.0.20220720`` | ``GCCcore/11.3.0`` ``1.0.20230411`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3aa1b687e..8e6cce0d1 100644 --- a/docs/version-specific/supported-software/d/dd.md +++ b/docs/version-specific/supported-software/d/dd.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a4ccc6dbd..241f9a231 100644 --- a/docs/version-specific/supported-software/d/deal.II.md +++ b/docs/version-specific/supported-software/d/deal.II.md @@ -15,5 +15,5 @@ version | toolchain ``9.3.3`` | ``foss/2021a`` ``9.5.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 071d4897e..63fbb4b11 100644 --- a/docs/version-specific/supported-software/d/deap.md +++ b/docs/version-specific/supported-software/d/deap.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7813606a2..c340d01c8 100644 --- a/docs/version-specific/supported-software/d/decona.md +++ b/docs/version-specific/supported-software/d/decona.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d016fd5c9..054c38682 100644 --- a/docs/version-specific/supported-software/d/deconf.md +++ b/docs/version-specific/supported-software/d/deconf.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f66d2d1cc..5d67784b2 100644 --- a/docs/version-specific/supported-software/d/deepTools.md +++ b/docs/version-specific/supported-software/d/deepTools.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``3.5.1`` | | ``foss/2021b`` ``3.5.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ec22b5b9..c4bb708ac 100644 --- a/docs/version-specific/supported-software/d/deepdiff.md +++ b/docs/version-specific/supported-software/d/deepdiff.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``6.7.1`` | | ``GCCcore/12.2.0`` ``6.7.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fd6cd9c32..90578c8e9 100644 --- a/docs/version-specific/supported-software/d/deepfold.md +++ b/docs/version-specific/supported-software/d/deepfold.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20240308`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fdc96f4cb..63cc65128 100644 --- a/docs/version-specific/supported-software/d/deepmedic.md +++ b/docs/version-specific/supported-software/d/deepmedic.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.8.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.8.2`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1a19de48c..f3a8fc242 100644 --- a/docs/version-specific/supported-software/d/denseweight.md +++ b/docs/version-specific/supported-software/d/denseweight.md @@ -13,5 +13,5 @@ version | toolchain ``0.1.2`` | ``foss/2022a`` ``0.1.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0e8190966..ac0d53a5b 100644 --- a/docs/version-specific/supported-software/d/desktop-file-utils.md +++ b/docs/version-specific/supported-software/d/desktop-file-utils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.27`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 74c66f5fc..5336ea8af 100644 --- a/docs/version-specific/supported-software/d/destiny.md +++ b/docs/version-specific/supported-software/d/destiny.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.6`` | ``-R-3.4.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 29763aa99..1508ec202 100644 --- a/docs/version-specific/supported-software/d/devbio-napari.md +++ b/docs/version-specific/supported-software/d/devbio-napari.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.10.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.10.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cd6cffa0c..bc29e0de9 100644 --- a/docs/version-specific/supported-software/d/dftd3-lib.md +++ b/docs/version-specific/supported-software/d/dftd3-lib.md @@ -13,5 +13,5 @@ version | toolchain ``0.9`` | ``GCC/8.3.0`` ``0.9`` | ``intel-compilers/2021.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 21866cbf4..9cce18745 100644 --- a/docs/version-specific/supported-software/d/dftd4.md +++ b/docs/version-specific/supported-software/d/dftd4.md @@ -13,5 +13,5 @@ version | toolchain ``3.4.0`` | ``gfbf/2022b`` ``3.4.0`` | ``iimkl/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 767eaefcc..61df0fb27 100644 --- a/docs/version-specific/supported-software/d/dialog.md +++ b/docs/version-specific/supported-software/d/dialog.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3-20231002`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2c03848b0..cd67019e5 100644 --- a/docs/version-specific/supported-software/d/dicom2nifti.md +++ b/docs/version-specific/supported-software/d/dicom2nifti.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``foss/2020b`` ``2.3.0`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 70a7c72f6..adf6683a2 100644 --- a/docs/version-specific/supported-software/d/dijitso.md +++ b/docs/version-specific/supported-software/d/dijitso.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a9d2f5b1c..9b7efacf1 100644 --- a/docs/version-specific/supported-software/d/dill.md +++ b/docs/version-specific/supported-software/d/dill.md @@ -19,5 +19,5 @@ version | toolchain ``0.3.7`` | ``GCCcore/12.2.0`` ``0.3.7`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aa47bb6b2..ef870c0a3 100644 --- a/docs/version-specific/supported-software/d/distributed.md +++ b/docs/version-specific/supported-software/d/distributed.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.14.3`` | ``-Python-3.5.2`` | ``intel/2016b`` ``1.21.6`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9c29043fe..3205ef63e 100644 --- a/docs/version-specific/supported-software/d/dlb.md +++ b/docs/version-specific/supported-software/d/dlb.md @@ -17,5 +17,5 @@ version | toolchain ``3.4`` | ``gompi/2023b`` ``3.4`` | ``iimpi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5bd89b506..70bfba6ee 100644 --- a/docs/version-specific/supported-software/d/dlib.md +++ b/docs/version-specific/supported-software/d/dlib.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``19.22`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``19.22`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18e705194..eabea009d 100644 --- a/docs/version-specific/supported-software/d/dm-haiku.md +++ b/docs/version-specific/supported-software/d/dm-haiku.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.0.9`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.0.9`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6191902d8..97f29a783 100644 --- a/docs/version-specific/supported-software/d/dm-reverb.md +++ b/docs/version-specific/supported-software/d/dm-reverb.md @@ -13,5 +13,5 @@ version | toolchain ``0.2.0`` | ``foss/2020b`` ``0.7.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cb9aee877..eb285919c 100644 --- a/docs/version-specific/supported-software/d/dm-tree.md +++ b/docs/version-specific/supported-software/d/dm-tree.md @@ -17,5 +17,5 @@ version | toolchain ``0.1.8`` | ``GCCcore/11.3.0`` ``0.1.8`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0503088f3..f0aa6bbaa 100644 --- a/docs/version-specific/supported-software/d/dominate.md +++ b/docs/version-specific/supported-software/d/dominate.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6331576d2..bb623f024 100644 --- a/docs/version-specific/supported-software/d/dorado.md +++ b/docs/version-specific/supported-software/d/dorado.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.5.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f10036bd7..ab9de91b6 100644 --- a/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md +++ b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md @@ -14,5 +14,5 @@ version | toolchain ``5.0.17`` | ``GCCcore/10.3.0`` ``6.0.1`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 75f839cb5..e4016b78a 100644 --- a/docs/version-specific/supported-software/d/dotNET-Core.md +++ b/docs/version-specific/supported-software/d/dotNET-Core.md @@ -15,5 +15,5 @@ version | toolchain ``8.0.203`` | ``system`` ``8.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ece55be71..94016780b 100644 --- a/docs/version-specific/supported-software/d/dotNET-SDK.md +++ b/docs/version-specific/supported-software/d/dotNET-SDK.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.1.300`` | ``-linux-x64`` | ``system`` ``6.0.101`` | ``-linux-x64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b831741d1..1efc4a8c8 100644 --- a/docs/version-specific/supported-software/d/double-conversion.md +++ b/docs/version-specific/supported-software/d/double-conversion.md @@ -22,5 +22,5 @@ version | toolchain ``3.3.0`` | ``GCCcore/12.3.0`` ``3.3.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2ae793a2e..f4fe1d71f 100644 --- a/docs/version-specific/supported-software/d/drmaa-python.md +++ b/docs/version-specific/supported-software/d/drmaa-python.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.9`` | ``-slurm`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b15ed1e71..0c6903426 100644 --- a/docs/version-specific/supported-software/d/dropEst.md +++ b/docs/version-specific/supported-software/d/dropEst.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.1`` | ``-R-3.4.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 301a173fc..78aea203d 100644 --- a/docs/version-specific/supported-software/d/dtcmp.md +++ b/docs/version-specific/supported-software/d/dtcmp.md @@ -18,5 +18,5 @@ version | toolchain ``1.1.4`` | ``gompi/2022a`` ``1.1.4`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b71c01ca..e7612e28f 100644 --- a/docs/version-specific/supported-software/d/dtcwt.md +++ b/docs/version-specific/supported-software/d/dtcwt.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.12.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.12.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f90a7bc14..a3bcdfb0c 100644 --- a/docs/version-specific/supported-software/d/dune-core.md +++ b/docs/version-specific/supported-software/d/dune-core.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.0.post1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a381c1eb0..14f522cfc 100644 --- a/docs/version-specific/supported-software/d/dune-fem.md +++ b/docs/version-specific/supported-software/d/dune-fem.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.0.6`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8e400cefb..4106b6cd5 100644 --- a/docs/version-specific/supported-software/d/duplex-tools.md +++ b/docs/version-specific/supported-software/d/duplex-tools.md @@ -13,5 +13,5 @@ version | toolchain ``0.3.1`` | ``foss/2022a`` ``0.3.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 441e655ff..5588d5d43 100644 --- a/docs/version-specific/supported-software/d/dx-toolkit.md +++ b/docs/version-specific/supported-software/d/dx-toolkit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.350.1`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 61b9d280c..2a289dc72 100644 --- a/docs/version-specific/supported-software/d/dxpy.md +++ b/docs/version-specific/supported-software/d/dxpy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.266.1`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.345.0`` | | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0dd87eb3a..9333dbd45 100644 --- a/docs/version-specific/supported-software/d/dynesty.md +++ b/docs/version-specific/supported-software/d/dynesty.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.3`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 48050e8e9..de7f54e68 100644 --- a/docs/version-specific/supported-software/d/index.md +++ b/docs/version-specific/supported-software/d/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (d) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - *d* - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[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) diff --git a/docs/version-specific/supported-software/e/E-ANTIC.md b/docs/version-specific/supported-software/e/E-ANTIC.md index d1e247860..67e9d0b8d 100644 --- a/docs/version-specific/supported-software/e/E-ANTIC.md +++ b/docs/version-specific/supported-software/e/E-ANTIC.md @@ -15,5 +15,5 @@ version | toolchain ``1.3.0`` | ``gfbf/2022a`` ``2.0.2`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a5729ac80..737463353 100644 --- a/docs/version-specific/supported-software/e/ECL.md +++ b/docs/version-specific/supported-software/e/ECL.md @@ -13,5 +13,5 @@ version | toolchain ``23.9.9`` | ``GCCcore/11.3.0`` ``24.5.10`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ccb26756..e9381076a 100644 --- a/docs/version-specific/supported-software/e/ED2.md +++ b/docs/version-specific/supported-software/e/ED2.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20170201`` | ``-serial`` | ``intel/2017a`` ``20170201`` | | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d3286b749..0c71577a5 100644 --- a/docs/version-specific/supported-software/e/EDirect.md +++ b/docs/version-specific/supported-software/e/EDirect.md @@ -14,5 +14,5 @@ version | toolchain ``20.5.20231006`` | ``GCCcore/12.2.0`` ``20.5.20231006`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f9b1ecfc9..f90082315 100644 --- a/docs/version-specific/supported-software/e/EGTtools.md +++ b/docs/version-specific/supported-software/e/EGTtools.md @@ -13,5 +13,5 @@ version | toolchain ``0.1.10.dev2`` | ``foss/2021b`` ``0.1.11`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d91868761..6e44eb276 100644 --- a/docs/version-specific/supported-software/e/EIGENSOFT.md +++ b/docs/version-specific/supported-software/e/EIGENSOFT.md @@ -20,5 +20,5 @@ version | toolchain ``7.2.1`` | ``foss/2021a`` ``7.2.1`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8282216e2..227657efd 100644 --- a/docs/version-specific/supported-software/e/ELFIO.md +++ b/docs/version-specific/supported-software/e/ELFIO.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.9`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d2bd7fe4..c395bb0fb 100644 --- a/docs/version-specific/supported-software/e/ELPA.md +++ b/docs/version-specific/supported-software/e/ELPA.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``2023.11.001`` | | ``foss/2023b`` ``2023.11.001`` | | ``intel/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5003ab6ca..f91e0c684 100644 --- a/docs/version-specific/supported-software/e/ELPH.md +++ b/docs/version-specific/supported-software/e/ELPH.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9c8addb27..616e088f5 100644 --- a/docs/version-specific/supported-software/e/ELSI-RCI.md +++ b/docs/version-specific/supported-software/e/ELSI-RCI.md @@ -17,5 +17,5 @@ version | toolchain ``0.1.0`` | ``intel-compilers/2021.2.0`` ``0.1.0`` | ``intel-compilers/2021.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 788a2d860..03d9da44f 100644 --- a/docs/version-specific/supported-software/e/ELSI.md +++ b/docs/version-specific/supported-software/e/ELSI.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``2.7.1`` | ``-PEXSI`` | ``foss/2021a`` ``2.7.1`` | ``-PEXSI`` | ``intel/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f8285b857..f24985f81 100644 --- a/docs/version-specific/supported-software/e/EMAN2.md +++ b/docs/version-specific/supported-software/e/EMAN2.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` ``2.3`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 063140fa3..4ad26584a 100644 --- a/docs/version-specific/supported-software/e/EMBOSS.md +++ b/docs/version-specific/supported-software/e/EMBOSS.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``6.6.0`` | | ``intel/2017a`` ``6.6.0`` | | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c771d0bb1..59355966f 100644 --- a/docs/version-specific/supported-software/e/EMU.md +++ b/docs/version-specific/supported-software/e/EMU.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.66`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 424c2021f..7c4c5ad71 100644 --- a/docs/version-specific/supported-software/e/EPD.md +++ b/docs/version-specific/supported-software/e/EPD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.3-2-rh5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9659496cd..3713b8ca7 100644 --- a/docs/version-specific/supported-software/e/EPIC.md +++ b/docs/version-specific/supported-software/e/EPIC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 104e62344..5643ff467 100644 --- a/docs/version-specific/supported-software/e/ESL-Bundle.md +++ b/docs/version-specific/supported-software/e/ESL-Bundle.md @@ -13,5 +13,5 @@ version | toolchain ``0.6.1`` | ``foss/2020b`` ``0.6.1`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c6cd3ea49..985f66bf6 100644 --- a/docs/version-specific/supported-software/e/ESM-2.md +++ b/docs/version-specific/supported-software/e/ESM-2.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.0.0`` | | ``foss/2022b`` ``2.0.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9bbdd3873..fbe5320c9 100644 --- a/docs/version-specific/supported-software/e/ESMF.md +++ b/docs/version-specific/supported-software/e/ESMF.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``8.3.0`` | | ``intel/2022a`` ``8.4.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a9472c4f1..7c76d05db 100644 --- a/docs/version-specific/supported-software/e/ESMPy.md +++ b/docs/version-specific/supported-software/e/ESMPy.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``8.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``8.0.1`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eef467718..afd43d792 100644 --- a/docs/version-specific/supported-software/e/ESMValTool.md +++ b/docs/version-specific/supported-software/e/ESMValTool.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f2c583fc..e99ee0750 100644 --- a/docs/version-specific/supported-software/e/ESPResSo.md +++ b/docs/version-specific/supported-software/e/ESPResSo.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``4.2.1`` | | ``foss/2023a`` ``4.2.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 758d29c6c..ad4e09f10 100644 --- a/docs/version-specific/supported-software/e/ETE.md +++ b/docs/version-specific/supported-software/e/ETE.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``3.1.3`` | | ``foss/2022b`` ``3.1.3`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cdb56107d..67051fd0c 100644 --- a/docs/version-specific/supported-software/e/ETSF_IO.md +++ b/docs/version-specific/supported-software/e/ETSF_IO.md @@ -17,5 +17,5 @@ version | toolchain ``1.0.4`` | ``intel/2018a`` ``1.0.4`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e69e3d277..a441d9443 100644 --- a/docs/version-specific/supported-software/e/EUKulele.md +++ b/docs/version-specific/supported-software/e/EUKulele.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.6`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea403cdee..982bd1851 100644 --- a/docs/version-specific/supported-software/e/EVcouplings.md +++ b/docs/version-specific/supported-software/e/EVcouplings.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 406026a34..1e69f351e 100644 --- a/docs/version-specific/supported-software/e/EZC3D.md +++ b/docs/version-specific/supported-software/e/EZC3D.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9aecf747a..e1d868900 100644 --- a/docs/version-specific/supported-software/e/EasyBuild.md +++ b/docs/version-specific/supported-software/e/EasyBuild.md @@ -112,5 +112,5 @@ version | toolchain ``4.9.0`` | ``system`` ``4.9.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2acd20821..ae62d51b6 100644 --- a/docs/version-specific/supported-software/e/EasyMocap.md +++ b/docs/version-specific/supported-software/e/EasyMocap.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a22ae97a..03f821a6d 100644 --- a/docs/version-specific/supported-software/e/EasyQC.md +++ b/docs/version-specific/supported-software/e/EasyQC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.2`` | ``-R-3.3.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf110abb6..424ea6b50 100644 --- a/docs/version-specific/supported-software/e/EggLib.md +++ b/docs/version-specific/supported-software/e/EggLib.md @@ -13,5 +13,5 @@ version | toolchain ``2.1.10`` | ``intel/2016a`` ``3.3.0`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c7bdd42b1..b0cfd4caf 100644 --- a/docs/version-specific/supported-software/e/Eigen.md +++ b/docs/version-specific/supported-software/e/Eigen.md @@ -42,5 +42,5 @@ version | toolchain ``3.4.0`` | ``GCCcore/13.2.0`` ``3.4.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 13ade5a8c..1ff02838c 100644 --- a/docs/version-specific/supported-software/e/EigenExa.md +++ b/docs/version-specific/supported-software/e/EigenExa.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.11`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cfcd8c586..d82335cec 100644 --- a/docs/version-specific/supported-software/e/Elk.md +++ b/docs/version-specific/supported-software/e/Elk.md @@ -17,5 +17,5 @@ version | toolchain ``7.2.42`` | ``foss/2021a`` ``8.5.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e59f1dda..7080494d6 100644 --- a/docs/version-specific/supported-software/e/Elmer.md +++ b/docs/version-specific/supported-software/e/Elmer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``9.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index db3dfae40..2ef98fb8a 100644 --- a/docs/version-specific/supported-software/e/Emacs.md +++ b/docs/version-specific/supported-software/e/Emacs.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``28.1`` | | ``GCCcore/10.2.0`` ``28.2`` | | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aa6182ae0..e6e0034bc 100644 --- a/docs/version-specific/supported-software/e/Embree.md +++ b/docs/version-specific/supported-software/e/Embree.md @@ -13,5 +13,5 @@ version | toolchain ``3.13.4`` | ``system`` ``3.4.0`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a0ca3570a..987042096 100644 --- a/docs/version-specific/supported-software/e/EnergyPlus.md +++ b/docs/version-specific/supported-software/e/EnergyPlus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``23.2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c36cbf4da..301d02e9a 100644 --- a/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md +++ b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``96.0-r20190601`` | ``-Perl-5.28.1`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 54ce7fea3..31410e1c0 100644 --- a/docs/version-specific/supported-software/e/EpiSCORE.md +++ b/docs/version-specific/supported-software/e/EpiSCORE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.5-20220621`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3a7459054..9c0ee394d 100644 --- a/docs/version-specific/supported-software/e/EricScript.md +++ b/docs/version-specific/supported-software/e/EricScript.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.5`` | ``-R-3.4.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 31116642c..b1e48a3d9 100644 --- a/docs/version-specific/supported-software/e/Essentia.md +++ b/docs/version-specific/supported-software/e/Essentia.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1_beta5`` | ``-Python-2.7.15`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2a9084def..055137064 100644 --- a/docs/version-specific/supported-software/e/Evcxr-REPL.md +++ b/docs/version-specific/supported-software/e/Evcxr-REPL.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.14.2`` | ``-Rust-1.65.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 261cf7dc0..609a7f04f 100644 --- a/docs/version-specific/supported-software/e/EveryBeam.md +++ b/docs/version-specific/supported-software/e/EveryBeam.md @@ -13,5 +13,5 @@ version | toolchain ``0.5.2`` | ``foss/2022a`` ``0.5.2`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bff5cce20..45d40f7a4 100644 --- a/docs/version-specific/supported-software/e/EvidentialGene.md +++ b/docs/version-specific/supported-software/e/EvidentialGene.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2018.01.01`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``2022.01.14`` | | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81a5baea2..17ec6fd7e 100644 --- a/docs/version-specific/supported-software/e/ExaBayes.md +++ b/docs/version-specific/supported-software/e/ExaBayes.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d11f9426e..f548580a9 100644 --- a/docs/version-specific/supported-software/e/ExaML.md +++ b/docs/version-specific/supported-software/e/ExaML.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.22`` | ``-hybrid-avx`` | ``gompi/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 52eb60f4a..898f9a961 100644 --- a/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md +++ b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.09`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 66bc7bb16..86e585415 100644 --- a/docs/version-specific/supported-software/e/ExifTool.md +++ b/docs/version-specific/supported-software/e/ExifTool.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``12.00`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c1584cfa2..5eb57c850 100644 --- a/docs/version-specific/supported-software/e/Exonerate.md +++ b/docs/version-specific/supported-software/e/Exonerate.md @@ -24,5 +24,5 @@ version | toolchain ``2.4.0`` | ``iccifort/2019.5.281`` ``2.4.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e43f6485a..6d16301c2 100644 --- a/docs/version-specific/supported-software/e/ExpressBetaDiversity.md +++ b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.10`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f56e86382..2fd2119cd 100644 --- a/docs/version-specific/supported-software/e/Extrae.md +++ b/docs/version-specific/supported-software/e/Extrae.md @@ -16,5 +16,5 @@ version | toolchain ``3.8.3`` | ``gompi/2021a`` ``4.0.4`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3f117a09a..a8bb5f74b 100644 --- a/docs/version-specific/supported-software/e/ExtremeLy.md +++ b/docs/version-specific/supported-software/e/ExtremeLy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff4e7cb8e..dd3433391 100644 --- a/docs/version-specific/supported-software/e/e3nn.md +++ b/docs/version-specific/supported-software/e/e3nn.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.3.3`` | | ``foss/2022a`` ``0.3.3`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 85b5d8f00..50958953b 100644 --- a/docs/version-specific/supported-software/e/eQuilibrator.md +++ b/docs/version-specific/supported-software/e/eQuilibrator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.7`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ce624183e..8c4057226 100644 --- a/docs/version-specific/supported-software/e/eSpeak-NG.md +++ b/docs/version-specific/supported-software/e/eSpeak-NG.md @@ -13,5 +13,5 @@ version | toolchain ``1.50`` | ``gompi/2020a`` ``1.51`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 09ae27bec..725f98b87 100644 --- a/docs/version-specific/supported-software/e/eXpress.md +++ b/docs/version-specific/supported-software/e/eXpress.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.1`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index baddcf341..d8a5816ea 100644 --- a/docs/version-specific/supported-software/e/ea-utils.md +++ b/docs/version-specific/supported-software/e/ea-utils.md @@ -14,5 +14,5 @@ version | toolchain ``1.04.807`` | ``foss/2016b`` ``1.04.807`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 412c118c3..7b5259690 100644 --- a/docs/version-specific/supported-software/e/earthengine-api.md +++ b/docs/version-specific/supported-software/e/earthengine-api.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.143`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fee45e4ed..974be2dea 100644 --- a/docs/version-specific/supported-software/e/easel.md +++ b/docs/version-specific/supported-software/e/easel.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.48`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dfe74ac69..ed720c49d 100644 --- a/docs/version-specific/supported-software/e/ebGSEA.md +++ b/docs/version-specific/supported-software/e/ebGSEA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7773eb370..0082984bd 100644 --- a/docs/version-specific/supported-software/e/ecBuild.md +++ b/docs/version-specific/supported-software/e/ecBuild.md @@ -13,5 +13,5 @@ version | toolchain ``3.7.0`` | ``system`` ``3.8.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3a529e78f..ed77b1f7a 100644 --- a/docs/version-specific/supported-software/e/ecCodes.md +++ b/docs/version-specific/supported-software/e/ecCodes.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``2.9.2`` | | ``intel/2018b`` ``2.9.2`` | | ``iomkl/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4867da0a4..2742f2150 100644 --- a/docs/version-specific/supported-software/e/ecFlow.md +++ b/docs/version-specific/supported-software/e/ecFlow.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.7.0`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1c3cc172c..1e517407f 100644 --- a/docs/version-specific/supported-software/e/eccodes-python.md +++ b/docs/version-specific/supported-software/e/eccodes-python.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.0`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 59e587120..b5af91137 100644 --- a/docs/version-specific/supported-software/e/eclib.md +++ b/docs/version-specific/supported-software/e/eclib.md @@ -13,5 +13,5 @@ version | toolchain ``20230424`` | ``GCC/11.3.0`` ``20240408`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f3b32ee77..12f856d18 100644 --- a/docs/version-specific/supported-software/e/edlib.md +++ b/docs/version-specific/supported-software/e/edlib.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``1.3.9`` | | ``GCC/12.2.0`` ``1.3.9`` | | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7219a8d62..910175172 100644 --- a/docs/version-specific/supported-software/e/eggnog-mapper.md +++ b/docs/version-specific/supported-software/e/eggnog-mapper.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.1.7`` | | ``foss/2021b`` ``2.1.9`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0a1dafd5b..a4b0b630a 100644 --- a/docs/version-specific/supported-software/e/eht-imaging.md +++ b/docs/version-specific/supported-software/e/eht-imaging.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d835d048f..c82e2b524 100644 --- a/docs/version-specific/supported-software/e/einops.md +++ b/docs/version-specific/supported-software/e/einops.md @@ -15,5 +15,5 @@ version | toolchain ``0.4.1`` | ``GCCcore/11.3.0`` ``0.7.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8269c06af..5506fd796 100644 --- a/docs/version-specific/supported-software/e/elastix.md +++ b/docs/version-specific/supported-software/e/elastix.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.9.0`` | | ``foss/2018a`` ``5.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5cad4285c..2ab2414df 100644 --- a/docs/version-specific/supported-software/e/elbencho.md +++ b/docs/version-specific/supported-software/e/elbencho.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0-3`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 79ddf5c58..3e5b8845f 100644 --- a/docs/version-specific/supported-software/e/elfutils.md +++ b/docs/version-specific/supported-software/e/elfutils.md @@ -21,5 +21,5 @@ version | toolchain ``0.189`` | ``GCCcore/12.3.0`` ``0.190`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 98f0bbf0a..bd2606bca 100644 --- a/docs/version-specific/supported-software/e/elprep.md +++ b/docs/version-specific/supported-software/e/elprep.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e61f14a8e..c6a31b4f2 100644 --- a/docs/version-specific/supported-software/e/emcee.md +++ b/docs/version-specific/supported-software/e/emcee.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``3.1.4`` | | ``foss/2021b`` ``3.1.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a20ed5c2..269267bad 100644 --- a/docs/version-specific/supported-software/e/enaBrowserTool.md +++ b/docs/version-specific/supported-software/e/enaBrowserTool.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5.4`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``1.6`` | | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b4c3022a6..fa9dd51cd 100644 --- a/docs/version-specific/supported-software/e/enchant-2.md +++ b/docs/version-specific/supported-software/e/enchant-2.md @@ -14,5 +14,5 @@ version | toolchain ``2.3.3`` | ``GCCcore/11.3.0`` ``2.6.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 576c0841e..9729a0fc4 100644 --- a/docs/version-specific/supported-software/e/enchant.md +++ b/docs/version-specific/supported-software/e/enchant.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 278567fd8..297f9b8cd 100644 --- a/docs/version-specific/supported-software/e/ensmallen.md +++ b/docs/version-specific/supported-software/e/ensmallen.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.21.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e30780bcf..587015dfb 100644 --- a/docs/version-specific/supported-software/e/entrypoints.md +++ b/docs/version-specific/supported-software/e/entrypoints.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.2.2`` | ``-Python-3.5.2`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c43b12a6b..c96f073b2 100644 --- a/docs/version-specific/supported-software/e/epct.md +++ b/docs/version-specific/supported-software/e/epct.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b2f369ae9..edb557fc4 100644 --- a/docs/version-specific/supported-software/e/epiScanpy.md +++ b/docs/version-specific/supported-software/e/epiScanpy.md @@ -14,5 +14,5 @@ version | toolchain ``0.4.0`` | ``foss/2022a`` ``0.4.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 05716c747..dd50c145c 100644 --- a/docs/version-specific/supported-software/e/eudev.md +++ b/docs/version-specific/supported-software/e/eudev.md @@ -16,5 +16,5 @@ version | toolchain ``3.2`` | ``GCCcore/4.9.3`` ``3.2.2`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1837cffda..2bfba2205 100644 --- a/docs/version-specific/supported-software/e/evince.md +++ b/docs/version-specific/supported-software/e/evince.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``45.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 22f9856cf..f5fa33f9b 100644 --- a/docs/version-specific/supported-software/e/evmix.md +++ b/docs/version-specific/supported-software/e/evmix.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.6`` | ``-R-3.3.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 64321d7c1..b2f03b810 100644 --- a/docs/version-specific/supported-software/e/exiv2.md +++ b/docs/version-specific/supported-software/e/exiv2.md @@ -14,5 +14,5 @@ version | toolchain ``0.27.5`` | ``GCCcore/11.2.0`` ``0.28.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fbae7e5a6..59be46fbb 100644 --- a/docs/version-specific/supported-software/e/expat.md +++ b/docs/version-specific/supported-software/e/expat.md @@ -39,5 +39,5 @@ version | toolchain ``2.5.0`` | ``GCCcore/13.2.0`` ``2.6.2`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4c23464bf..d969cc5f3 100644 --- a/docs/version-specific/supported-software/e/expect.md +++ b/docs/version-specific/supported-software/e/expect.md @@ -13,5 +13,5 @@ version | toolchain ``5.45.4`` | ``GCCcore/7.3.0`` ``5.45.4`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 96bf39498..050134611 100644 --- a/docs/version-specific/supported-software/e/expecttest.md +++ b/docs/version-specific/supported-software/e/expecttest.md @@ -18,5 +18,5 @@ version | toolchain ``0.1.5`` | ``GCCcore/12.3.0`` ``0.2.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 08a54444a..3beac93d1 100644 --- a/docs/version-specific/supported-software/e/index.md +++ b/docs/version-specific/supported-software/e/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (e) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - *e* - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[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) diff --git a/docs/version-specific/supported-software/f/FACE.md b/docs/version-specific/supported-software/f/FACE.md index 356200d3d..96ac9332e 100644 --- a/docs/version-specific/supported-software/f/FACE.md +++ b/docs/version-specific/supported-software/f/FACE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81f0cc363..58c7c2222 100644 --- a/docs/version-specific/supported-software/f/FALCON.md +++ b/docs/version-specific/supported-software/f/FALCON.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.8.8`` | | ``intel/2017b`` ``1.8.8`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 07140dff0..c9d31b4df 100644 --- a/docs/version-specific/supported-software/f/FANN.md +++ b/docs/version-specific/supported-software/f/FANN.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.0`` | ``GCCcore/6.4.0`` ``2.2.0`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cc82cf439..236e45640 100644 --- a/docs/version-specific/supported-software/f/FASTA.md +++ b/docs/version-specific/supported-software/f/FASTA.md @@ -14,5 +14,5 @@ version | toolchain ``36.3.8i`` | ``GCC/11.2.0`` ``36.3.8i`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0103de190..efe2e0635 100644 --- a/docs/version-specific/supported-software/f/FASTX-Toolkit.md +++ b/docs/version-specific/supported-software/f/FASTX-Toolkit.md @@ -19,5 +19,5 @@ version | toolchain ``0.0.14`` | ``foss/2016b`` ``0.0.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 08676def8..77dc55508 100644 --- a/docs/version-specific/supported-software/f/FBPIC.md +++ b/docs/version-specific/supported-software/f/FBPIC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.20.3`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4cec2d5df..2c79aaa3c 100644 --- a/docs/version-specific/supported-software/f/FCC.md +++ b/docs/version-specific/supported-software/f/FCC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3bb1d18f2..7c07049e4 100644 --- a/docs/version-specific/supported-software/f/FCM.md +++ b/docs/version-specific/supported-software/f/FCM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c99b528c6..09e1d71b1 100644 --- a/docs/version-specific/supported-software/f/FDMNES.md +++ b/docs/version-specific/supported-software/f/FDMNES.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2024-02-29`` | ``gomkl/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2297d8906..8210bcf61 100644 --- a/docs/version-specific/supported-software/f/FDS.md +++ b/docs/version-specific/supported-software/f/FDS.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``6.7.9`` | | ``intel/2022a`` ``6.8.0`` | | ``intel/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8958d76f9..c271e2380 100644 --- a/docs/version-specific/supported-software/f/FDTD_Solutions.md +++ b/docs/version-specific/supported-software/f/FDTD_Solutions.md @@ -15,5 +15,5 @@ version | toolchain ``8.20.1731`` | ``system`` ``8.6.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bcc70902f..2b560b94d 100644 --- a/docs/version-specific/supported-software/f/FEniCS.md +++ b/docs/version-specific/supported-software/f/FEniCS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 42d4e04c2..345d08094 100644 --- a/docs/version-specific/supported-software/f/FFAVES.md +++ b/docs/version-specific/supported-software/f/FFAVES.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2022.11.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5c2710f0c..724828b64 100644 --- a/docs/version-specific/supported-software/f/FFC.md +++ b/docs/version-specific/supported-software/f/FFC.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 751301e36..b19ef3fe9 100644 --- a/docs/version-specific/supported-software/f/FFLAS-FFPACK.md +++ b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md @@ -14,5 +14,5 @@ version | toolchain ``2.5.0`` | ``gfbf/2022a`` ``2.5.0`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a03fbd3d0..746a3f945 100644 --- a/docs/version-specific/supported-software/f/FFTW.MPI.md +++ b/docs/version-specific/supported-software/f/FFTW.MPI.md @@ -20,5 +20,5 @@ version | toolchain ``3.3.10`` | ``gompi/2024.05`` ``3.3.10`` | ``nvompi/2022.07`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1f44ed04..513a92103 100644 --- a/docs/version-specific/supported-software/f/FFTW.md +++ b/docs/version-specific/supported-software/f/FFTW.md @@ -83,5 +83,5 @@ version | versionsuffix | toolchain ``3.3.9`` | | ``gompi/2021a`` ``3.3.9`` | | ``intel/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe70ba8c2..c028822a5 100644 --- a/docs/version-specific/supported-software/f/FFmpeg.md +++ b/docs/version-specific/supported-software/f/FFmpeg.md @@ -46,5 +46,5 @@ version | toolchain ``6.0`` | ``GCCcore/12.3.0`` ``6.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0b94ef375..c8434d1a9 100644 --- a/docs/version-specific/supported-software/f/FGSL.md +++ b/docs/version-specific/supported-software/f/FGSL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e12b4e8a9..628da9e9c 100644 --- a/docs/version-specific/supported-software/f/FHI-aims.md +++ b/docs/version-specific/supported-software/f/FHI-aims.md @@ -13,5 +13,5 @@ version | toolchain ``200112_2`` | ``intel/2019b`` ``221103`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5e03373a9..fd8422168 100644 --- a/docs/version-specific/supported-software/f/FIAT.md +++ b/docs/version-specific/supported-software/f/FIAT.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 191c04639..be36cd7e0 100644 --- a/docs/version-specific/supported-software/f/FIGARO.md +++ b/docs/version-specific/supported-software/f/FIGARO.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.2`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 699d8d57b..b9fbcb61d 100644 --- a/docs/version-specific/supported-software/f/FIRESTARTER.md +++ b/docs/version-specific/supported-software/f/FIRESTARTER.md @@ -13,5 +13,5 @@ version | toolchain ``2.0`` | ``gcccuda/2020a`` ``2.0`` | ``gcccuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 558a58eee..39c1ad57e 100644 --- a/docs/version-specific/supported-software/f/FIX.md +++ b/docs/version-specific/supported-software/f/FIX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.06.12`` | ``-Octave-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b206e8dad..adbabd2e5 100644 --- a/docs/version-specific/supported-software/f/FIt-SNE.md +++ b/docs/version-specific/supported-software/f/FIt-SNE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``gompi/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 93b567524..c0fca3924 100644 --- a/docs/version-specific/supported-software/f/FLAC.md +++ b/docs/version-specific/supported-software/f/FLAC.md @@ -17,5 +17,5 @@ version | toolchain ``1.4.2`` | ``GCCcore/12.2.0`` ``1.4.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7e54f9975..1195bbcea 100644 --- a/docs/version-specific/supported-software/f/FLAIR.md +++ b/docs/version-specific/supported-software/f/FLAIR.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.5.1-20200630`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3cce3cfc9..2f58be1bc 100644 --- a/docs/version-specific/supported-software/f/FLANN.md +++ b/docs/version-specific/supported-software/f/FLANN.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.8.4`` | ``-Python-2.7.14`` | ``intel/2017b`` ``1.9.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f43373b56..1781ebc64 100644 --- a/docs/version-specific/supported-software/f/FLASH.md +++ b/docs/version-specific/supported-software/f/FLASH.md @@ -19,5 +19,5 @@ version | toolchain ``2.2.00`` | ``foss/2018b`` ``2.2.00`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e01fb23ae..d71b6316b 100644 --- a/docs/version-specific/supported-software/f/FLEUR.md +++ b/docs/version-specific/supported-software/f/FLEUR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.26e`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0cd20eda8..3fa8c52d3 100644 --- a/docs/version-specific/supported-software/f/FLINT.md +++ b/docs/version-specific/supported-software/f/FLINT.md @@ -20,5 +20,5 @@ version | toolchain ``2.9.0`` | ``gfbf/2022b`` ``3.1.1`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 982ee5c56..53c1277f9 100644 --- a/docs/version-specific/supported-software/f/FLTK.md +++ b/docs/version-specific/supported-software/f/FLTK.md @@ -36,5 +36,5 @@ version | toolchain ``1.3.8`` | ``GCCcore/12.3.0`` ``1.3.9`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d313e398..b5e3930b6 100644 --- a/docs/version-specific/supported-software/f/FLUENT.md +++ b/docs/version-specific/supported-software/f/FLUENT.md @@ -21,5 +21,5 @@ version | toolchain ``2021R1`` | ``system`` ``2021R2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a2ec24bfe..fd7e2557c 100644 --- a/docs/version-specific/supported-software/f/FMILibrary.md +++ b/docs/version-specific/supported-software/f/FMILibrary.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.3`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a402da2cc..57ccf9618 100644 --- a/docs/version-specific/supported-software/f/FMM3D.md +++ b/docs/version-specific/supported-software/f/FMM3D.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.4`` | ``foss/2023a`` ``20211018`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c186e9826..ee7da10f1 100644 --- a/docs/version-specific/supported-software/f/FMPy.md +++ b/docs/version-specific/supported-software/f/FMPy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 52f4f86f3..894bbae25 100644 --- a/docs/version-specific/supported-software/f/FMRIprep.md +++ b/docs/version-specific/supported-software/f/FMRIprep.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.8`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.4.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 519cdd0db..0495c8116 100644 --- a/docs/version-specific/supported-software/f/FMS.md +++ b/docs/version-specific/supported-software/f/FMS.md @@ -13,5 +13,5 @@ version | toolchain ``2022.02`` | ``gompi/2022a`` ``2022.02`` | ``iimpi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7d7e9ea98..4886e2724 100644 --- a/docs/version-specific/supported-software/f/FORD.md +++ b/docs/version-specific/supported-software/f/FORD.md @@ -14,5 +14,5 @@ version | toolchain ``6.1.15`` | ``GCCcore/11.3.0`` ``6.1.6`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e030605c7..93340d7c6 100644 --- a/docs/version-specific/supported-software/f/FOX-Toolkit.md +++ b/docs/version-specific/supported-software/f/FOX-Toolkit.md @@ -13,5 +13,5 @@ version | toolchain ``1.6.57`` | ``GCCcore/11.2.0`` ``1.6.57`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b44b952d8..7258e4ba0 100644 --- a/docs/version-specific/supported-software/f/FPM.md +++ b/docs/version-specific/supported-software/f/FPM.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.15.1`` | | ``GCCcore/12.2.0`` ``1.3.3`` | ``-Ruby-2.1.6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c096429d0..18b580149 100644 --- a/docs/version-specific/supported-software/f/FRANz.md +++ b/docs/version-specific/supported-software/f/FRANz.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9b823f8fa..85f19fa0a 100644 --- a/docs/version-specific/supported-software/f/FRUIT.md +++ b/docs/version-specific/supported-software/f/FRUIT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b45f9f2bb..d38229ac5 100644 --- a/docs/version-specific/supported-software/f/FRUIT_processor.md +++ b/docs/version-specific/supported-software/f/FRUIT_processor.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a5dfdd1a8..834a260ff 100644 --- a/docs/version-specific/supported-software/f/FSL.md +++ b/docs/version-specific/supported-software/f/FSL.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``6.0.4`` | ``-Python-3.7.4`` | ``foss/2019b`` ``6.0.5.1`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2ded4e98d..2832dff97 100644 --- a/docs/version-specific/supported-software/f/FSLeyes.md +++ b/docs/version-specific/supported-software/f/FSLeyes.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.15.0`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca402b483..7f62eb942 100644 --- a/docs/version-specific/supported-software/f/FSON.md +++ b/docs/version-specific/supported-software/f/FSON.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.5`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 319b2121e..1fb7014a2 100644 --- a/docs/version-specific/supported-software/f/FTGL.md +++ b/docs/version-specific/supported-software/f/FTGL.md @@ -18,5 +18,5 @@ version | toolchain ``2.1.3-rc5`` | ``intel/2017b`` ``2.4.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e0eebf72c..58a40a1e9 100644 --- a/docs/version-specific/supported-software/f/FUNWAVE-TVD.md +++ b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.1-20170525`` | ``-no-storm`` | ``intel/2017a`` ``3.1-20170525`` | | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d14196fe7..d10bb1998 100644 --- a/docs/version-specific/supported-software/f/FUSE.md +++ b/docs/version-specific/supported-software/f/FUSE.md @@ -15,5 +15,5 @@ version | toolchain ``3.2.6`` | ``intel/2018a`` ``3.4.1`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d0b25ff4..b0a87a53b 100644 --- a/docs/version-specific/supported-software/f/FabIO.md +++ b/docs/version-specific/supported-software/f/FabIO.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.11.0`` | | ``fosscuda/2020b`` ``0.14.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ce14e7b9d..500360848 100644 --- a/docs/version-specific/supported-software/f/Faber.md +++ b/docs/version-specific/supported-software/f/Faber.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd81069fb..ae7cc1016 100644 --- a/docs/version-specific/supported-software/f/Faiss.md +++ b/docs/version-specific/supported-software/f/Faiss.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 75274cf50..fe69b4a01 100644 --- a/docs/version-specific/supported-software/f/FastANI.md +++ b/docs/version-specific/supported-software/f/FastANI.md @@ -24,5 +24,5 @@ version | toolchain ``1.33`` | ``intel-compilers/2021.4.0`` ``1.34`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 57469fcad..51d65b7b5 100644 --- a/docs/version-specific/supported-software/f/FastFold.md +++ b/docs/version-specific/supported-software/f/FastFold.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220729`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 413a9f6aa..e6e208715 100644 --- a/docs/version-specific/supported-software/f/FastME.md +++ b/docs/version-specific/supported-software/f/FastME.md @@ -18,5 +18,5 @@ version | toolchain ``2.1.6.1`` | ``intel/2018b`` ``2.1.6.3`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d472725e..36388ba7b 100644 --- a/docs/version-specific/supported-software/f/FastQC.md +++ b/docs/version-specific/supported-software/f/FastQC.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``0.11.9`` | ``-Java-11`` | ``system`` ``0.12.1`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb8780f51..0ce5f176b 100644 --- a/docs/version-specific/supported-software/f/FastQTL.md +++ b/docs/version-specific/supported-software/f/FastQTL.md @@ -13,5 +13,5 @@ version | toolchain ``2.184`` | ``GCC/11.2.0`` ``2.184`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8ebe1220..f6b484e4c 100644 --- a/docs/version-specific/supported-software/f/FastQ_Screen.md +++ b/docs/version-specific/supported-software/f/FastQ_Screen.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.13.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``0.14.0`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 86fe9c344..027dfad4b 100644 --- a/docs/version-specific/supported-software/f/FastRFS.md +++ b/docs/version-specific/supported-software/f/FastRFS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0-20190613`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1fde0ff1b..953d7eb89 100644 --- a/docs/version-specific/supported-software/f/FastTree.md +++ b/docs/version-specific/supported-software/f/FastTree.md @@ -23,5 +23,5 @@ version | toolchain ``2.1.11`` | ``GCCcore/8.3.0`` ``2.1.11`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 572161bfa..c2a4c8334 100644 --- a/docs/version-specific/supported-software/f/FastViromeExplorer.md +++ b/docs/version-specific/supported-software/f/FastViromeExplorer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20180422`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8cfc86183..51e2013fa 100644 --- a/docs/version-specific/supported-software/f/FastaIndex.md +++ b/docs/version-specific/supported-software/f/FastaIndex.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.11rc7`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55f2c504b..85175cded 100644 --- a/docs/version-specific/supported-software/f/Fastaq.md +++ b/docs/version-specific/supported-software/f/Fastaq.md @@ -13,5 +13,5 @@ version | toolchain ``3.17.0`` | ``GCC/10.3.0`` ``3.17.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4e23a5891..dcd983b84 100644 --- a/docs/version-specific/supported-software/f/Ferret.md +++ b/docs/version-specific/supported-software/f/Ferret.md @@ -14,5 +14,5 @@ version | toolchain ``7.5.0`` | ``foss/2019b`` ``7.6.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf516882b..458f69065 100644 --- a/docs/version-specific/supported-software/f/FigureGen.md +++ b/docs/version-specific/supported-software/f/FigureGen.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``51-20190516`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bdb9decb..4e76386ec 100644 --- a/docs/version-specific/supported-software/f/Fiji.md +++ b/docs/version-specific/supported-software/f/Fiji.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``20191119-2057`` | | ``system`` ``20201104-1356`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e73b42ed3..998aad8a8 100644 --- a/docs/version-specific/supported-software/f/Filtlong.md +++ b/docs/version-specific/supported-software/f/Filtlong.md @@ -14,5 +14,5 @@ version | toolchain ``0.2.0`` | ``foss/2016b`` ``0.2.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ac838e18..b2fc1d780 100644 --- a/docs/version-specific/supported-software/f/Fiona.md +++ b/docs/version-specific/supported-software/f/Fiona.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``1.9.2`` | | ``foss/2022b`` ``1.9.5`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 201ac4e23..e50c06ccf 100644 --- a/docs/version-specific/supported-software/f/FireWorks.md +++ b/docs/version-specific/supported-software/f/FireWorks.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 837543801..9d90d11b8 100644 --- a/docs/version-specific/supported-software/f/Firefox.md +++ b/docs/version-specific/supported-software/f/Firefox.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``44.0.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44c163816..9b76a3f19 100644 --- a/docs/version-specific/supported-software/f/Flask.md +++ b/docs/version-specific/supported-software/f/Flask.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2.3.3`` | | ``GCCcore/12.3.0`` ``3.0.0`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9bf692fbd..46c0be63f 100644 --- a/docs/version-specific/supported-software/f/Flexbar.md +++ b/docs/version-specific/supported-software/f/Flexbar.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.5.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 03c789d64..448c5d2f4 100644 --- a/docs/version-specific/supported-software/f/FlexiBLAS.md +++ b/docs/version-specific/supported-software/f/FlexiBLAS.md @@ -20,5 +20,5 @@ version | toolchain ``3.3.1`` | ``GCC/13.2.0`` ``3.4.4`` | ``GCC/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d32dffa2..b8274e277 100644 --- a/docs/version-specific/supported-software/f/FlexiDot.md +++ b/docs/version-specific/supported-software/f/FlexiDot.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.06`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 33c6c16fb..6f02362d0 100644 --- a/docs/version-specific/supported-software/f/Flink.md +++ b/docs/version-specific/supported-software/f/Flink.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.11.2`` | ``-bin-scala_2.11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index adba496ba..7acee30d4 100644 --- a/docs/version-specific/supported-software/f/Flye.md +++ b/docs/version-specific/supported-software/f/Flye.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``2.9.3`` | | ``GCC/10.3.0`` ``2.9.3`` | | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d4a38ab83..2e2cba771 100644 --- a/docs/version-specific/supported-software/f/FoBiS.md +++ b/docs/version-specific/supported-software/f/FoBiS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b1e82ecf1..4063eaaeb 100644 --- a/docs/version-specific/supported-software/f/FoX.md +++ b/docs/version-specific/supported-software/f/FoX.md @@ -15,5 +15,5 @@ version | toolchain ``4.1.2`` | ``intel/2017b`` ``4.1.2`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9ba8e0b43..11ac1d8c0 100644 --- a/docs/version-specific/supported-software/f/FoldX.md +++ b/docs/version-specific/supported-software/f/FoldX.md @@ -15,5 +15,5 @@ version | toolchain ``3.0-beta6.1`` | ``system`` ``3.0-beta6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9fe7da30d..6682c831e 100644 --- a/docs/version-specific/supported-software/f/FragGeneScan.md +++ b/docs/version-specific/supported-software/f/FragGeneScan.md @@ -17,5 +17,5 @@ version | toolchain ``1.31`` | ``GCCcore/8.2.0`` ``1.31`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d3269618..0bf0c682d 100644 --- a/docs/version-specific/supported-software/f/FragPipe.md +++ b/docs/version-specific/supported-software/f/FragPipe.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20.0`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4564abe72..d365b07ad 100644 --- a/docs/version-specific/supported-software/f/FreeBarcodes.md +++ b/docs/version-specific/supported-software/f/FreeBarcodes.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.a5`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c1b0c9d55..b30cf6756 100644 --- a/docs/version-specific/supported-software/f/FreeFEM.md +++ b/docs/version-specific/supported-software/f/FreeFEM.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.5`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b1e3c1f38..68decb188 100644 --- a/docs/version-specific/supported-software/f/FreeFem++.md +++ b/docs/version-specific/supported-software/f/FreeFem++.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.60`` | ``-downloaded-deps`` | ``intel/2018a`` ``3.61-1`` | ``-downloaded-deps`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 35674571f..125600c2f 100644 --- a/docs/version-specific/supported-software/f/FreeImage.md +++ b/docs/version-specific/supported-software/f/FreeImage.md @@ -20,5 +20,5 @@ version | toolchain ``3.18.0`` | ``GCCcore/8.3.0`` ``3.18.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 99fbe4130..8318593c5 100644 --- a/docs/version-specific/supported-software/f/FreeSASA.md +++ b/docs/version-specific/supported-software/f/FreeSASA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.3`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 40bdfa739..c5b8844a4 100644 --- a/docs/version-specific/supported-software/f/FreeSurfer.md +++ b/docs/version-specific/supported-software/f/FreeSurfer.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``7.4.1`` | ``-ubuntu20_amd64`` | ``system`` ``7.4.1`` | ``-ubuntu22_amd64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f3500fdea..9a6b40560 100644 --- a/docs/version-specific/supported-software/f/FreeTDS.md +++ b/docs/version-specific/supported-software/f/FreeTDS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.3`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1733c3e2a..654258c65 100644 --- a/docs/version-specific/supported-software/f/FreeXL.md +++ b/docs/version-specific/supported-software/f/FreeXL.md @@ -18,5 +18,5 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.3.0`` ``1.0.6`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7d2aaa448..98f181c04 100644 --- a/docs/version-specific/supported-software/f/FriBidi.md +++ b/docs/version-specific/supported-software/f/FriBidi.md @@ -25,5 +25,5 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.3.0`` ``1.0.9`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3a4d51eca..b1d98fc11 100644 --- a/docs/version-specific/supported-software/f/FuSeq.md +++ b/docs/version-specific/supported-software/f/FuSeq.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.2`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index da3caf880..83e1420a6 100644 --- a/docs/version-specific/supported-software/f/Fujitsu.md +++ b/docs/version-specific/supported-software/f/Fujitsu.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``21.05`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 03395ca6d..0c0a6d4f9 100644 --- a/docs/version-specific/supported-software/f/FunGAP.md +++ b/docs/version-specific/supported-software/f/FunGAP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f5a0b8dc..0c800bd29 100644 --- a/docs/version-specific/supported-software/f/FusionCatcher.md +++ b/docs/version-specific/supported-software/f/FusionCatcher.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.20`` | ``-Python-2.7.16`` | ``foss/2019b`` ``1.30`` | ``-Python-2.7.16`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index acd53f170..dea799025 100644 --- a/docs/version-specific/supported-software/f/f90cache.md +++ b/docs/version-specific/supported-software/f/f90cache.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.96`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4233dd307..4281f527e 100644 --- a/docs/version-specific/supported-software/f/f90nml.md +++ b/docs/version-specific/supported-software/f/f90nml.md @@ -13,5 +13,5 @@ version | toolchain ``1.4.4`` | ``GCCcore/12.2.0`` ``1.4.4`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b8e7c4783..d992ff28b 100644 --- a/docs/version-specific/supported-software/f/f90wrap.md +++ b/docs/version-specific/supported-software/f/f90wrap.md @@ -14,5 +14,5 @@ version | toolchain ``0.2.13`` | ``foss/2023a`` ``0.2.8`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 46bcaf17c..7dbdc9026 100644 --- a/docs/version-specific/supported-software/f/faceswap.md +++ b/docs/version-specific/supported-software/f/faceswap.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180212`` | ``-Python-3.6.3`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d616f47c2..5a3d7d334 100644 --- a/docs/version-specific/supported-software/f/fast5.md +++ b/docs/version-specific/supported-software/f/fast5.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 126283084..a0e87c19e 100644 --- a/docs/version-specific/supported-software/f/fastPHASE.md +++ b/docs/version-specific/supported-software/f/fastPHASE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dbd2b9a21..db9955167 100644 --- a/docs/version-specific/supported-software/f/fastStructure.md +++ b/docs/version-specific/supported-software/f/fastStructure.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` ``1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f1d59dad..b30e9821c 100644 --- a/docs/version-specific/supported-software/f/fasta-reader.md +++ b/docs/version-specific/supported-software/f/fasta-reader.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.2`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 43216578a..e39c2af6a 100644 --- a/docs/version-specific/supported-software/f/fastahack.md +++ b/docs/version-specific/supported-software/f/fastahack.md @@ -17,5 +17,5 @@ version | toolchain ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c23bb5384..29400dcb7 100644 --- a/docs/version-specific/supported-software/f/fastai.md +++ b/docs/version-specific/supported-software/f/fastai.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.7.10`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.7.10`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9a7b576d5..849ae9d6b 100644 --- a/docs/version-specific/supported-software/f/fastjet-contrib.md +++ b/docs/version-specific/supported-software/f/fastjet-contrib.md @@ -13,5 +13,5 @@ version | toolchain ``1.049`` | ``gompi/2022a`` ``1.053`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dc98df478..a5d9dbc2b 100644 --- a/docs/version-specific/supported-software/f/fastjet.md +++ b/docs/version-specific/supported-software/f/fastjet.md @@ -13,5 +13,5 @@ version | toolchain ``3.4.0`` | ``gompi/2022a`` ``3.4.2`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index de8ebc930..66b0fd99c 100644 --- a/docs/version-specific/supported-software/f/fastml.md +++ b/docs/version-specific/supported-software/f/fastml.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a7bb64b46..222d0fe94 100644 --- a/docs/version-specific/supported-software/f/fastp.md +++ b/docs/version-specific/supported-software/f/fastp.md @@ -21,5 +21,5 @@ version | toolchain ``0.23.4`` | ``GCC/12.2.0`` ``0.23.4`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b28d14efa..34909b1f5 100644 --- a/docs/version-specific/supported-software/f/fastparquet.md +++ b/docs/version-specific/supported-software/f/fastparquet.md @@ -14,5 +14,5 @@ version | toolchain ``0.8.0`` | ``foss/2021b`` ``2023.4.0`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1acd12764..1605bfce1 100644 --- a/docs/version-specific/supported-software/f/fastq-pair.md +++ b/docs/version-specific/supported-software/f/fastq-pair.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae730fb12..3e01f831e 100644 --- a/docs/version-specific/supported-software/f/fastq-tools.md +++ b/docs/version-specific/supported-software/f/fastq-tools.md @@ -15,5 +15,5 @@ version | toolchain ``0.8.3`` | ``GCC/10.3.0`` ``0.8.3`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06e86bc75..085fee9bf 100644 --- a/docs/version-specific/supported-software/f/fastqsplitter.md +++ b/docs/version-specific/supported-software/f/fastqsplitter.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8490f1688..4b00b54d8 100644 --- a/docs/version-specific/supported-software/f/fastqz.md +++ b/docs/version-specific/supported-software/f/fastqz.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3fbebb9a1..da4babbe5 100644 --- a/docs/version-specific/supported-software/f/fatslim.md +++ b/docs/version-specific/supported-software/f/fatslim.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2dbbe848a..8f5649fbf 100644 --- a/docs/version-specific/supported-software/f/fbm.md +++ b/docs/version-specific/supported-software/f/fbm.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55c9f4e4e..839a8f140 100644 --- a/docs/version-specific/supported-software/f/fdict.md +++ b/docs/version-specific/supported-software/f/fdict.md @@ -17,5 +17,5 @@ version | toolchain ``0.8.0`` | ``intel-compilers/2021.2.0`` ``0.8.0`` | ``intel-compilers/2021.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e27d3e47..261de4eb9 100644 --- a/docs/version-specific/supported-software/f/fdstools.md +++ b/docs/version-specific/supported-software/f/fdstools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160322`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 434cfcd13..840256d08 100644 --- a/docs/version-specific/supported-software/f/feh.md +++ b/docs/version-specific/supported-software/f/feh.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.26`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 74dd8db25..31a9b88cf 100644 --- a/docs/version-specific/supported-software/f/fermi-lite.md +++ b/docs/version-specific/supported-software/f/fermi-lite.md @@ -16,5 +16,5 @@ version | toolchain ``20190320`` | ``GCCcore/12.3.0`` ``20190320`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5ff2dc8f1..70df14b3b 100644 --- a/docs/version-specific/supported-software/f/festival.md +++ b/docs/version-specific/supported-software/f/festival.md @@ -13,5 +13,5 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8f1d0c9f6..76abe8aba 100644 --- a/docs/version-specific/supported-software/f/fetchMG.md +++ b/docs/version-specific/supported-software/f/fetchMG.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``GCCcore/8.3.0`` ``1.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8eaa2ecd8..9f330e9d3 100644 --- a/docs/version-specific/supported-software/f/ffmpi.md +++ b/docs/version-specific/supported-software/f/ffmpi.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ebf499e2f..438482f78 100644 --- a/docs/version-specific/supported-software/f/ffnet.md +++ b/docs/version-specific/supported-software/f/ffnet.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.3`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d99b83907..8f6a70741 100644 --- a/docs/version-specific/supported-software/f/ffnvcodec.md +++ b/docs/version-specific/supported-software/f/ffnvcodec.md @@ -14,5 +14,5 @@ version | toolchain ``12.0.16.0`` | ``system`` ``12.1.14.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0f5860a39..781d1e570 100644 --- a/docs/version-specific/supported-software/f/fftlib.md +++ b/docs/version-specific/supported-software/f/fftlib.md @@ -13,5 +13,5 @@ version | toolchain ``20170628`` | ``gompi/2020b`` ``20170628`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f03418e21..d5f2c3a31 100644 --- a/docs/version-specific/supported-software/f/fgbio.md +++ b/docs/version-specific/supported-software/f/fgbio.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``system`` ``2.2.1`` | ``-Java-8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3dc8baa2..a4a0c923c 100644 --- a/docs/version-specific/supported-software/f/file.md +++ b/docs/version-specific/supported-software/f/file.md @@ -25,5 +25,5 @@ version | toolchain ``5.43`` | ``GCCcore/12.2.0`` ``5.43`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a23fe791..6b641eb9b 100644 --- a/docs/version-specific/supported-software/f/filevercmp.md +++ b/docs/version-specific/supported-software/f/filevercmp.md @@ -17,5 +17,5 @@ version | toolchain ``20191210`` | ``GCCcore/11.3.0`` ``20191210`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0499bf0c9..573e4f29c 100644 --- a/docs/version-specific/supported-software/f/find_circ.md +++ b/docs/version-specific/supported-software/f/find_circ.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2-20170228`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 62c747eb9..56f8e4f69 100644 --- a/docs/version-specific/supported-software/f/finder.md +++ b/docs/version-specific/supported-software/f/finder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8b2df0d72..cd41d85db 100644 --- a/docs/version-specific/supported-software/f/findhap.md +++ b/docs/version-specific/supported-software/f/findhap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4cd8631cd..ebf6fcb3b 100644 --- a/docs/version-specific/supported-software/f/findutils.md +++ b/docs/version-specific/supported-software/f/findutils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.4.2`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf99ac7c4..292502015 100644 --- a/docs/version-specific/supported-software/f/fineRADstructure.md +++ b/docs/version-specific/supported-software/f/fineRADstructure.md @@ -13,5 +13,5 @@ version | toolchain ``20180709`` | ``intel/2018a`` ``20210514`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 848e66ee0..b560742a6 100644 --- a/docs/version-specific/supported-software/f/fineSTRUCTURE.md +++ b/docs/version-specific/supported-software/f/fineSTRUCTURE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1916c9ac1..1ef4d3528 100644 --- a/docs/version-specific/supported-software/f/fio.md +++ b/docs/version-specific/supported-software/f/fio.md @@ -15,5 +15,5 @@ version | toolchain ``3.34`` | ``GCCcore/12.2.0`` ``3.36`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d7c777af0..7ee6e652a 100644 --- a/docs/version-specific/supported-software/f/fixesproto.md +++ b/docs/version-specific/supported-software/f/fixesproto.md @@ -14,5 +14,5 @@ version | toolchain ``5.0`` | ``gimkl/2.11.5`` ``5.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 101ff9e00..5721f0b0b 100644 --- a/docs/version-specific/supported-software/f/flair-NLP.md +++ b/docs/version-specific/supported-software/f/flair-NLP.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.11.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.11.3`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6f78c7339..090c560d3 100644 --- a/docs/version-specific/supported-software/f/flatbuffers-python.md +++ b/docs/version-specific/supported-software/f/flatbuffers-python.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``23.1.4`` | | ``GCCcore/12.2.0`` ``23.5.26`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 723ac6947..fc5d64432 100644 --- a/docs/version-specific/supported-software/f/flatbuffers.md +++ b/docs/version-specific/supported-software/f/flatbuffers.md @@ -21,5 +21,5 @@ version | toolchain ``23.5.26`` | ``GCCcore/12.3.0`` ``23.5.26`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4e11ff89..ea05b5b90 100644 --- a/docs/version-specific/supported-software/f/flex.md +++ b/docs/version-specific/supported-software/f/flex.md @@ -85,5 +85,5 @@ version | toolchain ``2.6.4`` | ``GCCcore/system`` ``2.6.4`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 36bd761ab..9fde6edf4 100644 --- a/docs/version-specific/supported-software/f/flit.md +++ b/docs/version-specific/supported-software/f/flit.md @@ -13,5 +13,5 @@ version | toolchain ``3.9.0`` | ``GCCcore/12.3.0`` ``3.9.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 08a3c3700..a1c93e675 100644 --- a/docs/version-specific/supported-software/f/flook.md +++ b/docs/version-specific/supported-software/f/flook.md @@ -18,5 +18,5 @@ version | toolchain ``0.8.1`` | ``intel-compilers/2021.2.0`` ``0.8.1`` | ``intel-compilers/2021.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d41ca542d..fe6c20d8e 100644 --- a/docs/version-specific/supported-software/f/flowFDA.md +++ b/docs/version-specific/supported-software/f/flowFDA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.99-20220602`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4be6321cb..d7624ed0e 100644 --- a/docs/version-specific/supported-software/f/fmt.md +++ b/docs/version-specific/supported-software/f/fmt.md @@ -26,5 +26,5 @@ version | toolchain ``9.1.0`` | ``GCCcore/11.3.0`` ``9.1.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bee1f2137..a233ce3a6 100644 --- a/docs/version-specific/supported-software/f/fontconfig.md +++ b/docs/version-specific/supported-software/f/fontconfig.md @@ -36,5 +36,5 @@ version | versionsuffix | toolchain ``2.14.2`` | | ``GCCcore/13.2.0`` ``2.15.0`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7835fd625..4e18f1d26 100644 --- a/docs/version-specific/supported-software/f/fontsproto.md +++ b/docs/version-specific/supported-software/f/fontsproto.md @@ -14,5 +14,5 @@ version | toolchain ``2.1.3`` | ``gimkl/2.11.5`` ``2.1.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7ba4da8f..dfc4dd934 100644 --- a/docs/version-specific/supported-software/f/forbear.md +++ b/docs/version-specific/supported-software/f/forbear.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.0`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 414597707..ceb84a788 100644 --- a/docs/version-specific/supported-software/f/foss.md +++ b/docs/version-specific/supported-software/f/foss.md @@ -36,5 +36,5 @@ version | toolchain ``2023b`` | ``system`` ``2024.05`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3193e1024..b39d5fd5a 100644 --- a/docs/version-specific/supported-software/f/fosscuda.md +++ b/docs/version-specific/supported-software/f/fosscuda.md @@ -18,5 +18,5 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc817e2cd..89aa79ff0 100644 --- a/docs/version-specific/supported-software/f/fplll.md +++ b/docs/version-specific/supported-software/f/fplll.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.4.5`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 883c65b8d..ca881647d 100644 --- a/docs/version-specific/supported-software/f/fpocket.md +++ b/docs/version-specific/supported-software/f/fpocket.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1.4.2`` | ``gompi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 732bf92ec..18b241598 100644 --- a/docs/version-specific/supported-software/f/fpylll.md +++ b/docs/version-specific/supported-software/f/fpylll.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.9`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 91ddfd383..1d16c29b5 100644 --- a/docs/version-specific/supported-software/f/fqtrim.md +++ b/docs/version-specific/supported-software/f/fqtrim.md @@ -13,5 +13,5 @@ version | toolchain ``0.9.4`` | ``intel/2016b`` ``0.9.5`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9f91f99e1..eb1ed3e30 100644 --- a/docs/version-specific/supported-software/f/fqzcomp.md +++ b/docs/version-specific/supported-software/f/fqzcomp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.6`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e50f45184..01bab13be 100644 --- a/docs/version-specific/supported-software/f/freebayes.md +++ b/docs/version-specific/supported-software/f/freebayes.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.3.6`` | ``-R-4.1.2`` | ``foss/2021b`` ``1.3.7`` | ``-R-4.3.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e9907b23c..74aba83e8 100644 --- a/docs/version-specific/supported-software/f/freeglut.md +++ b/docs/version-specific/supported-software/f/freeglut.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``3.4.0`` | | ``GCCcore/12.2.0`` ``3.4.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 518623017..aed7e4cdb 100644 --- a/docs/version-specific/supported-software/f/freetype-py.md +++ b/docs/version-specific/supported-software/f/freetype-py.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``2.4.0`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84a073163..d851e4154 100644 --- a/docs/version-specific/supported-software/f/freetype.md +++ b/docs/version-specific/supported-software/f/freetype.md @@ -42,5 +42,5 @@ version | versionsuffix | toolchain ``2.9.1`` | | ``GCCcore/7.3.0`` ``2.9.1`` | | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3f8f2298..55c89d337 100644 --- a/docs/version-specific/supported-software/f/freud-analysis.md +++ b/docs/version-specific/supported-software/f/freud-analysis.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.6.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b2c1b501b..8d5772da8 100644 --- a/docs/version-specific/supported-software/f/fsom.md +++ b/docs/version-specific/supported-software/f/fsom.md @@ -17,5 +17,5 @@ version | toolchain ``20151117`` | ``GCCcore/11.3.0`` ``20151117`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2df652068..04c7f09dd 100644 --- a/docs/version-specific/supported-software/f/ftfy.md +++ b/docs/version-specific/supported-software/f/ftfy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.1.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2efa0d3e4..547ffc698 100644 --- a/docs/version-specific/supported-software/f/fugue.md +++ b/docs/version-specific/supported-software/f/fugue.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.7`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea0e940b8..0fb097158 100644 --- a/docs/version-specific/supported-software/f/fullrmc.md +++ b/docs/version-specific/supported-software/f/fullrmc.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0db0ebeaa..35a67da31 100644 --- a/docs/version-specific/supported-software/f/fumi_tools.md +++ b/docs/version-specific/supported-software/f/fumi_tools.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.18.2`` | | ``GCC/11.2.0`` ``0.18.2`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 116ea8478..ddcb2a8bf 100644 --- a/docs/version-specific/supported-software/f/funannotate.md +++ b/docs/version-specific/supported-software/f/funannotate.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.13`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d9732ac3..8c819a8b1 100644 --- a/docs/version-specific/supported-software/f/futhark.md +++ b/docs/version-specific/supported-software/f/futhark.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.19.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4fd36af2..3c9bdaecc 100644 --- a/docs/version-specific/supported-software/f/futile.md +++ b/docs/version-specific/supported-software/f/futile.md @@ -18,5 +18,5 @@ version | toolchain ``1.8.3`` | ``intel/2021a`` ``1.8.3`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d48b5d27b..aaa46941a 100644 --- a/docs/version-specific/supported-software/f/future.md +++ b/docs/version-specific/supported-software/f/future.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.16.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.16.0`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 82a54244e..0a89c1da6 100644 --- a/docs/version-specific/supported-software/f/fxtract.md +++ b/docs/version-specific/supported-software/f/fxtract.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 92e7b5b60..8d5380316 100644 --- a/docs/version-specific/supported-software/f/index.md +++ b/docs/version-specific/supported-software/f/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (f) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - *f* - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../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) diff --git a/docs/version-specific/supported-software/g/G-PhoCS.md b/docs/version-specific/supported-software/g/G-PhoCS.md index 258279758..3c25c3f8b 100644 --- a/docs/version-specific/supported-software/g/G-PhoCS.md +++ b/docs/version-specific/supported-software/g/G-PhoCS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.3`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 45bfc2c5e..543c4070a 100644 --- a/docs/version-specific/supported-software/g/GAMESS-US.md +++ b/docs/version-specific/supported-software/g/GAMESS-US.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``20230930-R2`` | | ``gompi/2022a`` ``20230930-R2`` | | ``intel-compilers/2022.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5e4c0e0b4..046dd6dbd 100644 --- a/docs/version-specific/supported-software/g/GAPPadder.md +++ b/docs/version-specific/supported-software/g/GAPPadder.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170601`` | ``-Python-2.7.18`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fb8baa906..309301912 100644 --- a/docs/version-specific/supported-software/g/GARLI.md +++ b/docs/version-specific/supported-software/g/GARLI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.01`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af8110be5..d8974295b 100644 --- a/docs/version-specific/supported-software/g/GAT.md +++ b/docs/version-specific/supported-software/g/GAT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.2`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea4df1b72..670231164 100644 --- a/docs/version-specific/supported-software/g/GATB-Core.md +++ b/docs/version-specific/supported-software/g/GATB-Core.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.2`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d80d1cc1..4dc7810d2 100644 --- a/docs/version-specific/supported-software/g/GATE.md +++ b/docs/version-specific/supported-software/g/GATE.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``9.2`` | | ``foss/2021b`` ``9.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c1e07a329..6a8a7af34 100644 --- a/docs/version-specific/supported-software/g/GATK.md +++ b/docs/version-specific/supported-software/g/GATK.md @@ -54,5 +54,5 @@ version | versionsuffix | toolchain ``4.4.0.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` ``4.5.0.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 532e18633..fb7d545ea 100644 --- a/docs/version-specific/supported-software/g/GBprocesS.md +++ b/docs/version-specific/supported-software/g/GBprocesS.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``4.0.0.post1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5db93510a..9f5ba4c06 100644 --- a/docs/version-specific/supported-software/g/GC3Pie.md +++ b/docs/version-specific/supported-software/g/GC3Pie.md @@ -14,5 +14,5 @@ version | toolchain ``2.5.0`` | ``system`` ``2.5.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 150a1bea8..a33199c20 100644 --- a/docs/version-specific/supported-software/g/GCC.md +++ b/docs/version-specific/supported-software/g/GCC.md @@ -80,5 +80,5 @@ version | versionsuffix | toolchain ``system`` | ``-2.29`` | ``system`` ``system`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe0e664e3..791a1a27f 100644 --- a/docs/version-specific/supported-software/g/GCCcore.md +++ b/docs/version-specific/supported-software/g/GCCcore.md @@ -50,5 +50,5 @@ version | toolchain ``9.5.0`` | ``system`` ``system`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 814063f5e..21a085992 100644 --- a/docs/version-specific/supported-software/g/GCTA.md +++ b/docs/version-specific/supported-software/g/GCTA.md @@ -15,5 +15,5 @@ version | toolchain ``1.94.1`` | ``gfbf/2022a`` ``1.94.1`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0887c560f..bc53cf66e 100644 --- a/docs/version-specific/supported-software/g/GConf.md +++ b/docs/version-specific/supported-software/g/GConf.md @@ -22,5 +22,5 @@ version | toolchain ``3.2.6`` | ``intel/2017a`` ``3.2.6`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 00d6cd169..f07aeb98c 100644 --- a/docs/version-specific/supported-software/g/GD.md +++ b/docs/version-specific/supported-software/g/GD.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.73`` | | ``GCCcore/10.3.0`` ``2.75`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 54d554ac7..db4e5cc5c 100644 --- a/docs/version-specific/supported-software/g/GDAL.md +++ b/docs/version-specific/supported-software/g/GDAL.md @@ -58,5 +58,5 @@ version | versionsuffix | toolchain ``3.6.2`` | | ``foss/2022b`` ``3.7.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81cec6429..e479e9ed9 100644 --- a/docs/version-specific/supported-software/g/GDB.md +++ b/docs/version-specific/supported-software/g/GDB.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``8.3`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``9.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 658faa9cf..b918f7b93 100644 --- a/docs/version-specific/supported-software/g/GDCHART.md +++ b/docs/version-specific/supported-software/g/GDCHART.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.11.5dev`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 553d97208..fc513f13e 100644 --- a/docs/version-specific/supported-software/g/GDCM.md +++ b/docs/version-specific/supported-software/g/GDCM.md @@ -19,5 +19,5 @@ version | toolchain ``3.0.8`` | ``GCCcore/10.2.0`` ``3.0.8`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8fab6ccba..d57f666be 100644 --- a/docs/version-specific/supported-software/g/GDGraph.md +++ b/docs/version-specific/supported-software/g/GDGraph.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.54`` | ``-Perl-5.26.1`` | ``intel/2018a`` ``1.56`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ad5f65298..757d92a8b 100644 --- a/docs/version-specific/supported-software/g/GDRCopy.md +++ b/docs/version-specific/supported-software/g/GDRCopy.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``2.4`` | | ``GCCcore/13.2.0`` ``2.4.1`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0e032ee75..a7457debe 100644 --- a/docs/version-specific/supported-software/g/GEGL.md +++ b/docs/version-specific/supported-software/g/GEGL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.30`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf51d92ca..4da8615e2 100644 --- a/docs/version-specific/supported-software/g/GEM-library.md +++ b/docs/version-specific/supported-software/g/GEM-library.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20130406-045632`` | ``_pre-release-3_Linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e6790e060..5b62669ee 100644 --- a/docs/version-specific/supported-software/g/GEM.md +++ b/docs/version-specific/supported-software/g/GEM.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.1`` | ``foss/2022a`` ``1.5.1`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 405fc2303..454fa05b3 100644 --- a/docs/version-specific/supported-software/g/GEMMA.md +++ b/docs/version-specific/supported-software/g/GEMMA.md @@ -17,5 +17,5 @@ version | toolchain ``0.98.5`` | ``foss/2021b`` ``0.98.5`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5df6e7f0..a6264b1d6 100644 --- a/docs/version-specific/supported-software/g/GEOS.md +++ b/docs/version-specific/supported-software/g/GEOS.md @@ -48,5 +48,5 @@ version | versionsuffix | toolchain ``3.9.1`` | | ``iccifort/2020.4.304`` ``3.9.1`` | | ``intel-compilers/2021.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aa304f4ab..6b98c3db8 100644 --- a/docs/version-specific/supported-software/g/GETORB.md +++ b/docs/version-specific/supported-software/g/GETORB.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bffe73f0..023849c83 100644 --- a/docs/version-specific/supported-software/g/GFF3-toolkit.md +++ b/docs/version-specific/supported-software/g/GFF3-toolkit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ef5609bc..21928a630 100644 --- a/docs/version-specific/supported-software/g/GFOLD.md +++ b/docs/version-specific/supported-software/g/GFOLD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.4`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8b69d4dc..a6ddf4531 100644 --- a/docs/version-specific/supported-software/g/GHC.md +++ b/docs/version-specific/supported-software/g/GHC.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``9.2.2`` | ``-x86_64`` | ``system`` ``9.4.6`` | ``-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 67f3e2f0f..70c947aa7 100644 --- a/docs/version-specific/supported-software/g/GI-DocGen.md +++ b/docs/version-specific/supported-software/g/GI-DocGen.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2023.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 98b303f29..4a4caf760 100644 --- a/docs/version-specific/supported-software/g/GIMIC.md +++ b/docs/version-specific/supported-software/g/GIMIC.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.2.1`` | | ``foss/2022a`` ``2018.04.20`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 53c08799e..555248186 100644 --- a/docs/version-specific/supported-software/g/GIMP.md +++ b/docs/version-specific/supported-software/g/GIMP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.10.24`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 430218a19..e7fa17bce 100644 --- a/docs/version-specific/supported-software/g/GIMPS.md +++ b/docs/version-specific/supported-software/g/GIMPS.md @@ -13,5 +13,5 @@ version | toolchain ``p95v279`` | ``GCC/4.8.2`` ``p95v279.linux64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 470ff179a..f81e63e12 100644 --- a/docs/version-specific/supported-software/g/GKeyll.md +++ b/docs/version-specific/supported-software/g/GKeyll.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220803`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76b581780..c1a8ac87a 100644 --- a/docs/version-specific/supported-software/g/GKlib-METIS.md +++ b/docs/version-specific/supported-software/g/GKlib-METIS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.1.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 286fd26ba..0c78a8ce2 100644 --- a/docs/version-specific/supported-software/g/GL2PS.md +++ b/docs/version-specific/supported-software/g/GL2PS.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``1.4.2`` | | ``GCCcore/12.3.0`` ``1.4.2`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9c6d8c6f8..2d71a3633 100644 --- a/docs/version-specific/supported-software/g/GLFW.md +++ b/docs/version-specific/supported-software/g/GLFW.md @@ -19,5 +19,5 @@ version | toolchain ``3.4`` | ``GCCcore/12.2.0`` ``3.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 925abc3a2..f1f22298c 100644 --- a/docs/version-specific/supported-software/g/GLI.md +++ b/docs/version-specific/supported-software/g/GLI.md @@ -13,5 +13,5 @@ version | toolchain ``4.5.31`` | ``GCCcore/10.2.0`` ``4.5.31`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0914d6000..e455ee2c4 100644 --- a/docs/version-specific/supported-software/g/GLIMMER.md +++ b/docs/version-specific/supported-software/g/GLIMMER.md @@ -13,5 +13,5 @@ version | toolchain ``3.02b`` | ``foss/2016b`` ``3.02b`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c6ae113ed..8976de7bf 100644 --- a/docs/version-specific/supported-software/g/GLIMPSE.md +++ b/docs/version-specific/supported-software/g/GLIMPSE.md @@ -14,5 +14,5 @@ version | toolchain ``2.0.0`` | ``GCC/11.3.0`` ``2.0.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ef8eb7788..8d7b79d9e 100644 --- a/docs/version-specific/supported-software/g/GLM-AED.md +++ b/docs/version-specific/supported-software/g/GLM-AED.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3.0a5`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e2744c6e6..c0809a31d 100644 --- a/docs/version-specific/supported-software/g/GLM.md +++ b/docs/version-specific/supported-software/g/GLM.md @@ -22,5 +22,5 @@ version | toolchain ``0.9.9.8`` | ``GCCcore/12.3.0`` ``0.9.9.8`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3a572b7e3..a2230a830 100644 --- a/docs/version-specific/supported-software/g/GLPK.md +++ b/docs/version-specific/supported-software/g/GLPK.md @@ -28,5 +28,5 @@ version | toolchain ``5.0`` | ``GCCcore/12.3.0`` ``5.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c91e0c9c9..81d238135 100644 --- a/docs/version-specific/supported-software/g/GLib.md +++ b/docs/version-specific/supported-software/g/GLib.md @@ -37,5 +37,5 @@ version | toolchain ``2.77.1`` | ``GCCcore/12.3.0`` ``2.78.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bb453c679..3d5d25e87 100644 --- a/docs/version-specific/supported-software/g/GLibmm.md +++ b/docs/version-specific/supported-software/g/GLibmm.md @@ -15,5 +15,5 @@ version | toolchain ``2.49.7`` | ``GCCcore/8.3.0`` ``2.66.4`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 840e3f7ef..3c38bd53f 100644 --- a/docs/version-specific/supported-software/g/GMAP-GSNAP.md +++ b/docs/version-specific/supported-software/g/GMAP-GSNAP.md @@ -22,5 +22,5 @@ version | toolchain ``2023-04-20`` | ``GCC/10.3.0`` ``2023-04-20`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cba080146..fe3500925 100644 --- a/docs/version-specific/supported-software/g/GMP-ECM.md +++ b/docs/version-specific/supported-software/g/GMP-ECM.md @@ -13,5 +13,5 @@ version | toolchain ``7.0.5`` | ``GCCcore/11.3.0`` ``7.0.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7b31a4a0d..f8c5271d1 100644 --- a/docs/version-specific/supported-software/g/GMP.md +++ b/docs/version-specific/supported-software/g/GMP.md @@ -46,5 +46,5 @@ version | toolchain ``6.3.0`` | ``GCCcore/13.2.0`` ``6.3.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2ce7a9be8..4b5270c5a 100644 --- a/docs/version-specific/supported-software/g/GMT.md +++ b/docs/version-specific/supported-software/g/GMT.md @@ -18,5 +18,5 @@ version | toolchain ``6.2.0`` | ``foss/2019b`` ``6.2.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7bdd9ac68..c0ee03152 100644 --- a/docs/version-specific/supported-software/g/GNU.md +++ b/docs/version-specific/supported-software/g/GNU.md @@ -14,5 +14,5 @@ version | toolchain ``4.9.3-2.25`` | ``system`` ``5.1.0-2.25`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 743faf8bd..f8285bae3 100644 --- a/docs/version-specific/supported-software/g/GOATOOLS.md +++ b/docs/version-specific/supported-software/g/GOATOOLS.md @@ -15,5 +15,5 @@ version | toolchain ``1.3.1`` | ``foss/2022a`` ``1.4.5`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90f6a9034..da4c71440 100644 --- a/docs/version-specific/supported-software/g/GOBNILP.md +++ b/docs/version-specific/supported-software/g/GOBNILP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.3`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 089587ef2..19ba66a9a 100644 --- a/docs/version-specific/supported-software/g/GObject-Introspection.md +++ b/docs/version-specific/supported-software/g/GObject-Introspection.md @@ -38,5 +38,5 @@ version | versionsuffix | toolchain ``1.76.1`` | | ``GCCcore/12.3.0`` ``1.78.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1f6ccf6de..f9edaada1 100644 --- a/docs/version-specific/supported-software/g/GP2C.md +++ b/docs/version-specific/supported-software/g/GP2C.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.9pl5`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bad4c161..2ef7375d8 100644 --- a/docs/version-specific/supported-software/g/GPAW-setups.md +++ b/docs/version-specific/supported-software/g/GPAW-setups.md @@ -16,5 +16,5 @@ version | toolchain ``0.9.9672`` | ``system`` ``24.1.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca0faf292..db4b95e42 100644 --- a/docs/version-specific/supported-software/g/GPAW.md +++ b/docs/version-specific/supported-software/g/GPAW.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``24.1.0`` | | ``intel/2022a`` ``24.1.0`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f05447db2..bca4cbc70 100644 --- a/docs/version-specific/supported-software/g/GPy.md +++ b/docs/version-specific/supported-software/g/GPy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.10.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b3dd1faf..25f4963a0 100644 --- a/docs/version-specific/supported-software/g/GPyOpt.md +++ b/docs/version-specific/supported-software/g/GPyOpt.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.6`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e1ae0cc4..ef06bfa36 100644 --- a/docs/version-specific/supported-software/g/GPyTorch.md +++ b/docs/version-specific/supported-software/g/GPyTorch.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``foss/2020b`` ``1.9.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0fec62cfe..f033524a6 100644 --- a/docs/version-specific/supported-software/g/GRASP-suite.md +++ b/docs/version-specific/supported-software/g/GRASP-suite.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2023-05-09`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 30ad23a76..556e5210f 100644 --- a/docs/version-specific/supported-software/g/GRASP.md +++ b/docs/version-specific/supported-software/g/GRASP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2018`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9f1f886fe..e967a7d02 100644 --- a/docs/version-specific/supported-software/g/GRASS.md +++ b/docs/version-specific/supported-software/g/GRASS.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``7.8.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``8.2.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 623fd7acc..b55e3cfc1 100644 --- a/docs/version-specific/supported-software/g/GRIDSS.md +++ b/docs/version-specific/supported-software/g/GRIDSS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.13.2`` | ``-Java-11`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ad9bc5dc2..50c026c94 100644 --- a/docs/version-specific/supported-software/g/GRIT.md +++ b/docs/version-specific/supported-software/g/GRIT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.5`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be484addf..93ff7e4aa 100644 --- a/docs/version-specific/supported-software/g/GRNBoost.md +++ b/docs/version-specific/supported-software/g/GRNBoost.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20171009`` | ``-Java-1.8.0_152`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af7873731..244d75457 100644 --- a/docs/version-specific/supported-software/g/GROMACS.md +++ b/docs/version-specific/supported-software/g/GROMACS.md @@ -79,5 +79,5 @@ version | versionsuffix | toolchain ``5.1.4`` | ``-hybrid`` | ``foss/2016b`` ``5.1.4`` | ``-mt`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5aefed391..92c6025bc 100644 --- a/docs/version-specific/supported-software/g/GSD.md +++ b/docs/version-specific/supported-software/g/GSD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 732848448..55e1db1ad 100644 --- a/docs/version-specific/supported-software/g/GSEA.md +++ b/docs/version-specific/supported-software/g/GSEA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 00aa24c1b..6e52c6a84 100644 --- a/docs/version-specific/supported-software/g/GSL.md +++ b/docs/version-specific/supported-software/g/GSL.md @@ -45,5 +45,5 @@ version | toolchain ``2.7`` | ``intel-compilers/2021.4.0`` ``2.7`` | ``intel-compilers/2022.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 57d2be767..b1190e9e7 100644 --- a/docs/version-specific/supported-software/g/GST-plugins-bad.md +++ b/docs/version-specific/supported-software/g/GST-plugins-bad.md @@ -14,5 +14,5 @@ version | toolchain ``1.22.5`` | ``GCC/12.2.0`` ``1.22.5`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a85cea6cc..6314f3346 100644 --- a/docs/version-specific/supported-software/g/GST-plugins-base.md +++ b/docs/version-specific/supported-software/g/GST-plugins-base.md @@ -28,5 +28,5 @@ version | toolchain ``1.6.4`` | ``foss/2016a`` ``1.8.3`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0c7cb2710..1566b22e4 100644 --- a/docs/version-specific/supported-software/g/GStreamer.md +++ b/docs/version-specific/supported-software/g/GStreamer.md @@ -29,5 +29,5 @@ version | toolchain ``1.6.4`` | ``foss/2016a`` ``1.8.3`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55c2c1797..697628e9d 100644 --- a/docs/version-specific/supported-software/g/GTDB-Tk.md +++ b/docs/version-specific/supported-software/g/GTDB-Tk.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``2.3.2`` | | ``foss/2023a`` ``2.4.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a51e69653..573fff53b 100644 --- a/docs/version-specific/supported-software/g/GTK+.md +++ b/docs/version-specific/supported-software/g/GTK+.md @@ -28,5 +28,5 @@ version | toolchain ``3.24.23`` | ``GCCcore/10.2.0`` ``3.24.8`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe962cdf8..68399b5fa 100644 --- a/docs/version-specific/supported-software/g/GTK2.md +++ b/docs/version-specific/supported-software/g/GTK2.md @@ -13,5 +13,5 @@ version | toolchain ``2.24.33`` | ``GCCcore/10.3.0`` ``2.24.33`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f13bb7c22..9f4be0089 100644 --- a/docs/version-specific/supported-software/g/GTK3.md +++ b/docs/version-specific/supported-software/g/GTK3.md @@ -17,5 +17,5 @@ version | toolchain ``3.24.37`` | ``GCCcore/12.3.0`` ``3.24.39`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 98e880b7e..7d50bbccb 100644 --- a/docs/version-specific/supported-software/g/GTK4.md +++ b/docs/version-specific/supported-software/g/GTK4.md @@ -14,5 +14,5 @@ version | toolchain ``4.13.1`` | ``GCC/12.3.0`` ``4.7.0`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bc5858a3d..e3f4dc260 100644 --- a/docs/version-specific/supported-software/g/GTOOL.md +++ b/docs/version-specific/supported-software/g/GTOOL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1e7d1ab40..6059763ef 100644 --- a/docs/version-specific/supported-software/g/GTS.md +++ b/docs/version-specific/supported-software/g/GTS.md @@ -28,5 +28,5 @@ version | toolchain ``0.7.6`` | ``intel/2018a`` ``20121130`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ede49e770..d5f6ab67b 100644 --- a/docs/version-specific/supported-software/g/GUIDANCE.md +++ b/docs/version-specific/supported-software/g/GUIDANCE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.02`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a86e8cd6..4365d6966 100644 --- a/docs/version-specific/supported-software/g/GULP.md +++ b/docs/version-specific/supported-software/g/GULP.md @@ -13,5 +13,5 @@ version | toolchain ``5.1`` | ``intel/2019a`` ``6.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 515e73db2..11e2e6c97 100644 --- a/docs/version-specific/supported-software/g/GUSHR.md +++ b/docs/version-specific/supported-software/g/GUSHR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2020-09-28`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d930a3654..a02e204b3 100644 --- a/docs/version-specific/supported-software/g/Gaia.md +++ b/docs/version-specific/supported-software/g/Gaia.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.5`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca03de4a8..6f199c9d0 100644 --- a/docs/version-specific/supported-software/g/GapCloser.md +++ b/docs/version-specific/supported-software/g/GapCloser.md @@ -13,5 +13,5 @@ version | toolchain ``1.12-r6`` | ``foss/2018a`` ``1.12-r6`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1bfb820b5..6304ccfd5 100644 --- a/docs/version-specific/supported-software/g/GapFiller.md +++ b/docs/version-specific/supported-software/g/GapFiller.md @@ -13,5 +13,5 @@ version | toolchain ``2.1.1`` | ``intel/2017a`` ``2.1.2`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 75c56d00d..be55623a5 100644 --- a/docs/version-specific/supported-software/g/Gaussian.md +++ b/docs/version-specific/supported-software/g/Gaussian.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``09.e.01`` | ``-AVX`` | ``system`` ``16.A.03`` | ``-AVX2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea843e0c8..c9bd9f0d6 100644 --- a/docs/version-specific/supported-software/g/Gblocks.md +++ b/docs/version-specific/supported-software/g/Gblocks.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.91b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 63546762e..b2c8441a5 100644 --- a/docs/version-specific/supported-software/g/Gctf.md +++ b/docs/version-specific/supported-software/g/Gctf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.06`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd8f956d2..45de4142f 100644 --- a/docs/version-specific/supported-software/g/Gdk-Pixbuf.md +++ b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md @@ -35,5 +35,5 @@ version | toolchain ``2.42.6`` | ``GCCcore/11.2.0`` ``2.42.8`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cd603bbf8..f56c6fa42 100644 --- a/docs/version-specific/supported-software/g/Gdspy.md +++ b/docs/version-specific/supported-software/g/Gdspy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.13`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 02e616c2f..38f555aca 100644 --- a/docs/version-specific/supported-software/g/Geant4-data.md +++ b/docs/version-specific/supported-software/g/Geant4-data.md @@ -14,5 +14,5 @@ version | toolchain ``20201103`` | ``system`` ``20210510`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d32735a2e..3423dd190 100644 --- a/docs/version-specific/supported-software/g/Geant4.md +++ b/docs/version-specific/supported-software/g/Geant4.md @@ -31,5 +31,5 @@ version | toolchain ``9.5.p02`` | ``intel/2016a`` ``9.6.p04`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9a0c707b8..64bf747fb 100644 --- a/docs/version-specific/supported-software/g/GenMap.md +++ b/docs/version-specific/supported-software/g/GenMap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b5f24109..365dd5b37 100644 --- a/docs/version-specific/supported-software/g/GeneMark-ET.md +++ b/docs/version-specific/supported-software/g/GeneMark-ET.md @@ -16,5 +16,5 @@ version | toolchain ``4.71`` | ``GCCcore/11.2.0`` ``4.71`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a505fddc..21bfa6a6e 100644 --- a/docs/version-specific/supported-software/g/GenerativeModels.md +++ b/docs/version-specific/supported-software/g/GenerativeModels.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cb5f5500d..46aa2e7c3 100644 --- a/docs/version-specific/supported-software/g/GenomeComb.md +++ b/docs/version-specific/supported-software/g/GenomeComb.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.106.0`` | ``-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4d4404f04..dff740f10 100644 --- a/docs/version-specific/supported-software/g/GenomeMapper.md +++ b/docs/version-specific/supported-software/g/GenomeMapper.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.4`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 37dbb1d8a..0c46acdad 100644 --- a/docs/version-specific/supported-software/g/GenomeTester4.md +++ b/docs/version-specific/supported-software/g/GenomeTester4.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6c7873ba3..7e3508e7a 100644 --- a/docs/version-specific/supported-software/g/GenomeThreader.md +++ b/docs/version-specific/supported-software/g/GenomeThreader.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.7.1`` | ``-Linux_x86_64-64bit`` | ``system`` ``1.7.3`` | ``-Linux_x86_64-64bit`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a95ba0fbe..157e84083 100644 --- a/docs/version-specific/supported-software/g/GenomeTools.md +++ b/docs/version-specific/supported-software/g/GenomeTools.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``1.6.2`` | | ``GCC/11.3.0`` ``1.6.2`` | | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 373d326f7..7f6f81588 100644 --- a/docs/version-specific/supported-software/g/GenomeWorks.md +++ b/docs/version-specific/supported-software/g/GenomeWorks.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2021.02.2`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 287ecb6ee..02557c6cc 100644 --- a/docs/version-specific/supported-software/g/Genome_Profiler.md +++ b/docs/version-specific/supported-software/g/Genome_Profiler.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1`` | ``-Perl-5.24.0`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb7135874..c9b3a1ab9 100644 --- a/docs/version-specific/supported-software/g/GenotypeHarmonizer.md +++ b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.14`` | ``-Java-1.7.0_80`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af899674d..4c1febdd6 100644 --- a/docs/version-specific/supported-software/g/Gerris.md +++ b/docs/version-specific/supported-software/g/Gerris.md @@ -13,5 +13,5 @@ version | toolchain ``20131206`` | ``foss/2017b`` ``20131206`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8575784f0..bee2daaf2 100644 --- a/docs/version-specific/supported-software/g/GetOrganelle.md +++ b/docs/version-specific/supported-software/g/GetOrganelle.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.7.6.1`` | | ``foss/2021b`` ``1.7.7.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae1af62dd..ad5275e43 100644 --- a/docs/version-specific/supported-software/g/GffCompare.md +++ b/docs/version-specific/supported-software/g/GffCompare.md @@ -17,5 +17,5 @@ version | toolchain ``0.12.2`` | ``GCC/10.3.0`` ``0.12.6`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9cd47993..801c9a7db 100644 --- a/docs/version-specific/supported-software/g/Ghostscript.md +++ b/docs/version-specific/supported-software/g/Ghostscript.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``9.54.0`` | | ``GCCcore/11.2.0`` ``9.56.1`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 91c786eb1..21546425a 100644 --- a/docs/version-specific/supported-software/g/Gibbs2.md +++ b/docs/version-specific/supported-software/g/Gibbs2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 644fb227f..d3904a9a3 100644 --- a/docs/version-specific/supported-software/g/GimmeMotifs.md +++ b/docs/version-specific/supported-software/g/GimmeMotifs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.17.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2e4935313..59f946cda 100644 --- a/docs/version-specific/supported-software/g/Giotto-Suite.md +++ b/docs/version-specific/supported-software/g/Giotto-Suite.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c08dc4c81..52cc1b33e 100644 --- a/docs/version-specific/supported-software/g/GitPython.md +++ b/docs/version-specific/supported-software/g/GitPython.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``3.1.42`` | | ``GCCcore/13.2.0`` ``3.1.9`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 13915f2c7..6f5836d07 100644 --- a/docs/version-specific/supported-software/g/Givaro.md +++ b/docs/version-specific/supported-software/g/Givaro.md @@ -14,5 +14,5 @@ version | toolchain ``4.2.0`` | ``GCCcore/11.3.0`` ``4.2.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ab00bb80..2bc0567b1 100644 --- a/docs/version-specific/supported-software/g/Giza.md +++ b/docs/version-specific/supported-software/g/Giza.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.0`` | ``foss/2018b`` ``1.4.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b775024c8..f28c02e1a 100644 --- a/docs/version-specific/supported-software/g/Glade.md +++ b/docs/version-specific/supported-software/g/Glade.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.8.6`` | ``-Python-2.7.15`` | ``foss/2018b`` ``3.8.6`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6f5c91d51..728e40304 100644 --- a/docs/version-specific/supported-software/g/GlimmerHMM.md +++ b/docs/version-specific/supported-software/g/GlimmerHMM.md @@ -16,5 +16,5 @@ version | toolchain ``3.0.4c`` | ``GCC/11.2.0`` ``3.0.4c`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 31868b5ba..9db14d7c9 100644 --- a/docs/version-specific/supported-software/g/GlobalArrays.md +++ b/docs/version-specific/supported-software/g/GlobalArrays.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``5.8.2`` | | ``intel/2022a`` ``5.8.2`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c7121803a..a82333a9b 100644 --- a/docs/version-specific/supported-software/g/Globus-CLI.md +++ b/docs/version-specific/supported-software/g/Globus-CLI.md @@ -15,5 +15,5 @@ version | toolchain ``3.2.0`` | ``GCCcore/10.3.0`` ``3.6.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 190388a84..55e7b69ec 100644 --- a/docs/version-specific/supported-software/g/GlobusConnectPersonal.md +++ b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4b8105837..a42199821 100644 --- a/docs/version-specific/supported-software/g/Glucose.md +++ b/docs/version-specific/supported-software/g/Glucose.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.1`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6fb84770c..334065ac2 100644 --- a/docs/version-specific/supported-software/g/GnuTLS.md +++ b/docs/version-specific/supported-software/g/GnuTLS.md @@ -18,5 +18,5 @@ version | toolchain ``3.7.8`` | ``GCCcore/11.3.0`` ``3.7.8`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1a4dd8248..70e114910 100644 --- a/docs/version-specific/supported-software/g/Go.md +++ b/docs/version-specific/supported-software/g/Go.md @@ -33,5 +33,5 @@ version | toolchain ``1.5`` | ``GCC/4.8.4`` ``1.8.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 365b32471..f098d5a62 100644 --- a/docs/version-specific/supported-software/g/Godon.md +++ b/docs/version-specific/supported-software/g/Godon.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210913`` | ``-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4ed951b73..0d43fa495 100644 --- a/docs/version-specific/supported-software/g/GraPhlAn.md +++ b/docs/version-specific/supported-software/g/GraPhlAn.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-2.7.16`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5535387e5..acfa8f464 100644 --- a/docs/version-specific/supported-software/g/Grace.md +++ b/docs/version-specific/supported-software/g/Grace.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``5.1.25`` | ``-5build1`` | ``intel/2019a`` ``5.1.25`` | ``-5build1`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 471be6554..279bbf4eb 100644 --- a/docs/version-specific/supported-software/g/Gradle.md +++ b/docs/version-specific/supported-software/g/Gradle.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``6.9.1`` | | ``system`` ``8.6`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3711cd39e..8c263c7f1 100644 --- a/docs/version-specific/supported-software/g/GraphDB.md +++ b/docs/version-specific/supported-software/g/GraphDB.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``10.1.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7d26104b3..5d5d7060f 100644 --- a/docs/version-specific/supported-software/g/GraphMap.md +++ b/docs/version-specific/supported-software/g/GraphMap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ad90f3afc..06766695a 100644 --- a/docs/version-specific/supported-software/g/GraphMap2.md +++ b/docs/version-specific/supported-software/g/GraphMap2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f8bd05fa4..7dec6ed10 100644 --- a/docs/version-specific/supported-software/g/Graphene.md +++ b/docs/version-specific/supported-software/g/Graphene.md @@ -16,5 +16,5 @@ version | toolchain ``1.10.8`` | ``GCCcore/13.2.0`` ``1.6.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5af519f4e..35175f195 100644 --- a/docs/version-specific/supported-software/g/GraphicsMagick.md +++ b/docs/version-specific/supported-software/g/GraphicsMagick.md @@ -21,5 +21,5 @@ version | toolchain ``1.3.36`` | ``GCCcore/11.2.0`` ``1.3.36`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9bf5da72..f9cee07ea 100644 --- a/docs/version-specific/supported-software/g/Graphviz.md +++ b/docs/version-specific/supported-software/g/Graphviz.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``8.1.0`` | | ``GCCcore/12.2.0`` ``8.1.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c0badbf68..8eb06950c 100644 --- a/docs/version-specific/supported-software/g/Greenlet.md +++ b/docs/version-specific/supported-software/g/Greenlet.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``3.0.2`` | | ``GCCcore/12.3.0`` ``3.0.3`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d5c16d33..8774ca204 100644 --- a/docs/version-specific/supported-software/g/Grep.md +++ b/docs/version-specific/supported-software/g/Grep.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.21`` | ``GCC/4.9.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 37edf3b5c..5d795b725 100644 --- a/docs/version-specific/supported-software/g/GroIMP.md +++ b/docs/version-specific/supported-software/g/GroIMP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af507c473..9fca1a625 100644 --- a/docs/version-specific/supported-software/g/GromacsWrapper.md +++ b/docs/version-specific/supported-software/g/GromacsWrapper.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c51c41e1a..c469c3526 100644 --- a/docs/version-specific/supported-software/g/Groovy.md +++ b/docs/version-specific/supported-software/g/Groovy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.5.9`` | ``-Java-11`` | ``system`` ``4.0.3`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18221dd49..89bba1d47 100644 --- a/docs/version-specific/supported-software/g/GtkSourceView.md +++ b/docs/version-specific/supported-software/g/GtkSourceView.md @@ -14,5 +14,5 @@ version | toolchain ``3.24.11`` | ``GCCcore/8.2.0`` ``4.4.0`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cea2e0f7d..02141df39 100644 --- a/docs/version-specific/supported-software/g/Guile.md +++ b/docs/version-specific/supported-software/g/Guile.md @@ -33,5 +33,5 @@ version | toolchain ``3.0.9`` | ``GCCcore/10.2.0`` ``3.0.9`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9a220891e..ebdcab400 100644 --- a/docs/version-specific/supported-software/g/Gurobi.md +++ b/docs/version-specific/supported-software/g/Gurobi.md @@ -36,5 +36,5 @@ version | versionsuffix | toolchain ``9.5.0`` | | ``GCCcore/11.2.0`` ``9.5.2`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index da01410c0..828f76295 100644 --- a/docs/version-specific/supported-software/g/g2clib.md +++ b/docs/version-specific/supported-software/g/g2clib.md @@ -22,5 +22,5 @@ version | toolchain ``1.6.3`` | ``GCCcore/11.2.0`` ``1.7.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f97df74c5..30424bbbb 100644 --- a/docs/version-specific/supported-software/g/g2lib.md +++ b/docs/version-specific/supported-software/g/g2lib.md @@ -20,5 +20,5 @@ version | toolchain ``3.2.0`` | ``GCCcore/10.2.0`` ``3.2.0`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a53ea675b..fcf4a0606 100644 --- a/docs/version-specific/supported-software/g/g2log.md +++ b/docs/version-specific/supported-software/g/g2log.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``GCCcore/8.3.0`` ``1.0`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 05e473245..f3489b957 100644 --- a/docs/version-specific/supported-software/g/gRPC.md +++ b/docs/version-specific/supported-software/g/gRPC.md @@ -14,5 +14,5 @@ version | toolchain ``1.57.0`` | ``GCCcore/12.3.0`` ``1.62.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5f3e824d..c915c969f 100644 --- a/docs/version-specific/supported-software/g/gSOAP.md +++ b/docs/version-specific/supported-software/g/gSOAP.md @@ -13,5 +13,5 @@ version | toolchain ``2.8.100`` | ``GCCcore/8.3.0`` ``2.8.48`` | ``GCCcore/6.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f6533f020..3585572b0 100644 --- a/docs/version-specific/supported-software/g/gap.md +++ b/docs/version-specific/supported-software/g/gap.md @@ -14,5 +14,5 @@ version | toolchain ``4.12.2`` | ``foss/2022a`` ``4.9.3`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 364eb910c..35956f6d8 100644 --- a/docs/version-specific/supported-software/g/gappa.md +++ b/docs/version-specific/supported-software/g/gappa.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 73e4525c3..1885ea61c 100644 --- a/docs/version-specific/supported-software/g/garnett.md +++ b/docs/version-specific/supported-software/g/garnett.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.20`` | ``-R-4.0.3`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c9feb0f17..e65d57eef 100644 --- a/docs/version-specific/supported-software/g/gawk.md +++ b/docs/version-specific/supported-software/g/gawk.md @@ -17,5 +17,5 @@ version | toolchain ``5.3.0`` | ``GCC/12.2.0`` ``5.3.0`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7f2ea26ba..cbe372b03 100644 --- a/docs/version-specific/supported-software/g/gbasis.md +++ b/docs/version-specific/supported-software/g/gbasis.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20210904`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 99e1201fc..e83c0e18b 100644 --- a/docs/version-specific/supported-software/g/gbs2ploidy.md +++ b/docs/version-specific/supported-software/g/gbs2ploidy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-3.4.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9a7130fce..7e12068ea 100644 --- a/docs/version-specific/supported-software/g/gc.md +++ b/docs/version-specific/supported-software/g/gc.md @@ -24,5 +24,5 @@ version | toolchain ``8.2.4`` | ``GCCcore/12.3.0`` ``8.2.6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 448ad8966..bda1ed496 100644 --- a/docs/version-specific/supported-software/g/gcccuda.md +++ b/docs/version-specific/supported-software/g/gcccuda.md @@ -19,5 +19,5 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94a37f022..fe1109a42 100644 --- a/docs/version-specific/supported-software/g/gcloud.md +++ b/docs/version-specific/supported-software/g/gcloud.md @@ -13,5 +13,5 @@ version | toolchain ``382.0.0`` | ``system`` ``472.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a1d4af50f..855deea59 100644 --- a/docs/version-specific/supported-software/g/gcsfs.md +++ b/docs/version-specific/supported-software/g/gcsfs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2023.12.2.post1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 28afd2368..4f866ca27 100644 --- a/docs/version-specific/supported-software/g/gdbgui.md +++ b/docs/version-specific/supported-software/g/gdbgui.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.13.1.2`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9cefdf69b..21c3412d0 100644 --- a/docs/version-specific/supported-software/g/gdbm.md +++ b/docs/version-specific/supported-software/g/gdbm.md @@ -13,5 +13,5 @@ version | toolchain ``1.18.1`` | ``foss/2020a`` ``1.21`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 443df1a72..ac08ff10b 100644 --- a/docs/version-specific/supported-software/g/gdc-client.md +++ b/docs/version-specific/supported-software/g/gdc-client.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``1.6.0`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5742582a..531cbe73b 100644 --- a/docs/version-specific/supported-software/g/gdist.md +++ b/docs/version-specific/supported-software/g/gdist.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f1d1d3c8..e2f7c007a 100644 --- a/docs/version-specific/supported-software/g/gearshifft.md +++ b/docs/version-specific/supported-software/g/gearshifft.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 017cc491d..444c785dc 100644 --- a/docs/version-specific/supported-software/g/gemelli.md +++ b/docs/version-specific/supported-software/g/gemelli.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.9`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ef10b422..94a6039a8 100644 --- a/docs/version-specific/supported-software/g/gemmi.md +++ b/docs/version-specific/supported-software/g/gemmi.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.5`` | ``GCCcore/10.2.0`` ``0.6.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c563a7b08..4425f41ae 100644 --- a/docs/version-specific/supported-software/g/gencore_variant_detection.md +++ b/docs/version-specific/supported-software/g/gencore_variant_detection.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 037613b12..d46b89407 100644 --- a/docs/version-specific/supported-software/g/gengetopt.md +++ b/docs/version-specific/supported-software/g/gengetopt.md @@ -16,5 +16,5 @@ version | toolchain ``2.23`` | ``GCCcore/13.2.0`` ``2.23`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 64a8822c8..2f639e905 100644 --- a/docs/version-specific/supported-software/g/genomepy.md +++ b/docs/version-specific/supported-software/g/genomepy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.15.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 455b5d282..43db5a99d 100644 --- a/docs/version-specific/supported-software/g/genozip.md +++ b/docs/version-specific/supported-software/g/genozip.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``13.0.5`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2efc21668..39260488d 100644 --- a/docs/version-specific/supported-software/g/gensim.md +++ b/docs/version-specific/supported-software/g/gensim.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.8.3`` | | ``intel/2020b`` ``4.2.0`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f01f8917c..f4771d7fa 100644 --- a/docs/version-specific/supported-software/g/geocube.md +++ b/docs/version-specific/supported-software/g/geocube.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.0.14`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.4.3`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ebea6a8ce..27a263b33 100644 --- a/docs/version-specific/supported-software/g/geopandas.md +++ b/docs/version-specific/supported-software/g/geopandas.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.8.1`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3de4e2693..627d37606 100644 --- a/docs/version-specific/supported-software/g/geopy.md +++ b/docs/version-specific/supported-software/g/geopy.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.1.0`` | | ``GCCcore/10.2.0`` ``2.4.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18eeaf314..d0faeea75 100644 --- a/docs/version-specific/supported-software/g/georges.md +++ b/docs/version-specific/supported-software/g/georges.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2019.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2019.2`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1afb69d31..ffd9b2097 100644 --- a/docs/version-specific/supported-software/g/geosphere.md +++ b/docs/version-specific/supported-software/g/geosphere.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5-18`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94a6bcfd7..766b5f7a6 100644 --- a/docs/version-specific/supported-software/g/gettext.md +++ b/docs/version-specific/supported-software/g/gettext.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``0.22.5`` | | ``system`` ``0.22`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44ea59c4d..c7262f9e6 100644 --- a/docs/version-specific/supported-software/g/gexiv2.md +++ b/docs/version-specific/supported-software/g/gexiv2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.12.2`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 08396c6c7..ca8c83d96 100644 --- a/docs/version-specific/supported-software/g/gfbf.md +++ b/docs/version-specific/supported-software/g/gfbf.md @@ -17,5 +17,5 @@ version | toolchain ``2023b`` | ``system`` ``2024.05`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 869340e6a..f82897f19 100644 --- a/docs/version-specific/supported-software/g/gffread.md +++ b/docs/version-specific/supported-software/g/gffread.md @@ -18,5 +18,5 @@ version | toolchain ``0.12.7`` | ``GCCcore/12.2.0`` ``0.9.12`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f691c65f..a915c1dc1 100644 --- a/docs/version-specific/supported-software/g/gffutils.md +++ b/docs/version-specific/supported-software/g/gffutils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.12`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9795623db..a6a3144e4 100644 --- a/docs/version-specific/supported-software/g/gflags.md +++ b/docs/version-specific/supported-software/g/gflags.md @@ -23,5 +23,5 @@ version | toolchain ``2.2.2`` | ``GCCcore/8.3.0`` ``2.2.2`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bbac3b93a..932eeb697 100644 --- a/docs/version-specific/supported-software/g/gh.md +++ b/docs/version-specific/supported-software/g/gh.md @@ -13,5 +13,5 @@ version | toolchain ``1.3.1`` | ``system`` ``2.20.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b261d102f..9e43d5312 100644 --- a/docs/version-specific/supported-software/g/giac.md +++ b/docs/version-specific/supported-software/g/giac.md @@ -13,5 +13,5 @@ version | toolchain ``1.9.0-69`` | ``gfbf/2022a`` ``1.9.0-99`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 403628dee..935ce0a65 100644 --- a/docs/version-specific/supported-software/g/giflib.md +++ b/docs/version-specific/supported-software/g/giflib.md @@ -22,5 +22,5 @@ version | toolchain ``5.2.1`` | ``GCCcore/8.3.0`` ``5.2.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d44e5cc7f..069916da4 100644 --- a/docs/version-specific/supported-software/g/gifsicle.md +++ b/docs/version-specific/supported-software/g/gifsicle.md @@ -13,5 +13,5 @@ version | toolchain ``1.92`` | ``GCCcore/8.2.0`` ``1.93`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 873262d38..814eceda5 100644 --- a/docs/version-specific/supported-software/g/gimkl.md +++ b/docs/version-specific/supported-software/g/gimkl.md @@ -14,5 +14,5 @@ version | toolchain ``2017a`` | ``system`` ``2018b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 875c35364..f0020b34a 100644 --- a/docs/version-specific/supported-software/g/gimpi.md +++ b/docs/version-specific/supported-software/g/gimpi.md @@ -16,5 +16,5 @@ version | toolchain ``2018a`` | ``system`` ``2018b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e5050dd05..4206d36f6 100644 --- a/docs/version-specific/supported-software/g/gimpic.md +++ b/docs/version-specific/supported-software/g/gimpic.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2017b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 367ee1e58..710626a9a 100644 --- a/docs/version-specific/supported-software/g/giolf.md +++ b/docs/version-specific/supported-software/g/giolf.md @@ -13,5 +13,5 @@ version | toolchain ``2017b`` | ``system`` ``2018a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 79f378b74..54f69a149 100644 --- a/docs/version-specific/supported-software/g/giolfc.md +++ b/docs/version-specific/supported-software/g/giolfc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2017b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 01de8161e..6987fa7c2 100644 --- a/docs/version-specific/supported-software/g/git-annex.md +++ b/docs/version-specific/supported-software/g/git-annex.md @@ -13,5 +13,5 @@ version | toolchain ``10.20230802`` | ``GCCcore/12.2.0`` ``10.20230802`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f41a9db5..40ba0ffa2 100644 --- a/docs/version-specific/supported-software/g/git-extras.md +++ b/docs/version-specific/supported-software/g/git-extras.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.1.0`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 732cccdcf..6909ce5a4 100644 --- a/docs/version-specific/supported-software/g/git-lfs.md +++ b/docs/version-specific/supported-software/g/git-lfs.md @@ -18,5 +18,5 @@ version | toolchain ``3.4.1`` | ``system`` ``3.5.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d355dff9d..e69aa260d 100644 --- a/docs/version-specific/supported-software/g/git.md +++ b/docs/version-specific/supported-software/g/git.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``2.45.1`` | | ``GCCcore/13.3.0`` ``2.8.0`` | | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9ade481e3..c1d2cefd5 100644 --- a/docs/version-specific/supported-software/g/gkmSVM.md +++ b/docs/version-specific/supported-software/g/gkmSVM.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.82.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 37bb71f3a..88bc18c02 100644 --- a/docs/version-specific/supported-software/g/glew.md +++ b/docs/version-specific/supported-software/g/glew.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-egl`` | ``GCCcore/12.3.0`` ``2.2.0`` | ``-osmesa`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 11b521a78..f1c318c10 100644 --- a/docs/version-specific/supported-software/g/glib-networking.md +++ b/docs/version-specific/supported-software/g/glib-networking.md @@ -14,5 +14,5 @@ version | toolchain ``2.72.1`` | ``GCCcore/11.2.0`` ``2.72.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f872074c2..b7c48e81a 100644 --- a/docs/version-specific/supported-software/g/glibc.md +++ b/docs/version-specific/supported-software/g/glibc.md @@ -14,5 +14,5 @@ version | toolchain ``2.26`` | ``GCCcore/6.4.0`` ``2.30`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4e0bb41a..0d877fdc4 100644 --- a/docs/version-specific/supported-software/g/glog.md +++ b/docs/version-specific/supported-software/g/glog.md @@ -20,5 +20,5 @@ version | toolchain ``0.5.0`` | ``GCCcore/10.2.0`` ``0.6.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c082aeadc..48e31b792 100644 --- a/docs/version-specific/supported-software/g/glproto.md +++ b/docs/version-specific/supported-software/g/glproto.md @@ -14,5 +14,5 @@ version | toolchain ``1.4.17`` | ``gimkl/2.11.5`` ``1.4.17`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index da0afb383..fafcbc72c 100644 --- a/docs/version-specific/supported-software/g/gmpich.md +++ b/docs/version-specific/supported-software/g/gmpich.md @@ -13,5 +13,5 @@ version | toolchain ``2016a`` | ``system`` ``2017.08`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cb5fd7c51..459049318 100644 --- a/docs/version-specific/supported-software/g/gmpolf.md +++ b/docs/version-specific/supported-software/g/gmpolf.md @@ -13,5 +13,5 @@ version | toolchain ``2016a`` | ``system`` ``2017.10`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea6f82374..987123008 100644 --- a/docs/version-specific/supported-software/g/gmpy2.md +++ b/docs/version-specific/supported-software/g/gmpy2.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``2.1.5`` | | ``GCC/12.3.0`` ``2.1.5`` | | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d4b256e4..fe272f6a7 100644 --- a/docs/version-specific/supported-software/g/gmsh.md +++ b/docs/version-specific/supported-software/g/gmsh.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``4.8.4`` | ``-Python-3.6.4`` | ``foss/2018a`` ``4.9.0`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 811f0c858..e57ad2e36 100644 --- a/docs/version-specific/supported-software/g/gmvapich2.md +++ b/docs/version-specific/supported-software/g/gmvapich2.md @@ -13,5 +13,5 @@ version | toolchain ``1.7.20`` | ``system`` ``2016a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3f61e5177..948a42179 100644 --- a/docs/version-specific/supported-software/g/gmvolf.md +++ b/docs/version-specific/supported-software/g/gmvolf.md @@ -13,5 +13,5 @@ version | toolchain ``1.7.20`` | ``system`` ``2016a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18fc3fc56..bc4b8d485 100644 --- a/docs/version-specific/supported-software/g/gnupg-bundle.md +++ b/docs/version-specific/supported-software/g/gnupg-bundle.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20240306`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 66f4ae9a1..1d771c537 100644 --- a/docs/version-specific/supported-software/g/gnuplot.md +++ b/docs/version-specific/supported-software/g/gnuplot.md @@ -32,5 +32,5 @@ version | toolchain ``5.4.6`` | ``GCCcore/12.2.0`` ``5.4.8`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d38cb806..558c9c383 100644 --- a/docs/version-specific/supported-software/g/goalign.md +++ b/docs/version-specific/supported-software/g/goalign.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 958500818..875e336d9 100644 --- a/docs/version-specific/supported-software/g/gobff.md +++ b/docs/version-specific/supported-software/g/gobff.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2020b`` | | ``system`` ``2021a`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d98f943f2..d42c58075 100644 --- a/docs/version-specific/supported-software/g/goblf.md +++ b/docs/version-specific/supported-software/g/goblf.md @@ -13,5 +13,5 @@ version | toolchain ``2018b`` | ``system`` ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a2779a83a..635755731 100644 --- a/docs/version-specific/supported-software/g/gofasta.md +++ b/docs/version-specific/supported-software/g/gofasta.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d7b2a85f..6638c44cc 100644 --- a/docs/version-specific/supported-software/g/golf.md +++ b/docs/version-specific/supported-software/g/golf.md @@ -13,5 +13,5 @@ version | toolchain ``2018a`` | ``system`` ``2020a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 72cd079ee..77bb6ff19 100644 --- a/docs/version-specific/supported-software/g/gomkl.md +++ b/docs/version-specific/supported-software/g/gomkl.md @@ -19,5 +19,5 @@ version | toolchain ``2022a`` | ``system`` ``2023a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f82db771a..b6698c54a 100644 --- a/docs/version-specific/supported-software/g/gompi.md +++ b/docs/version-specific/supported-software/g/gompi.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``2024.05`` | | ``system`` ``system`` | ``-2.29`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76b0e71a1..ff29f5eb4 100644 --- a/docs/version-specific/supported-software/g/gompic.md +++ b/docs/version-specific/supported-software/g/gompic.md @@ -18,5 +18,5 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b38b1465..56e867fdc 100644 --- a/docs/version-specific/supported-software/g/google-java-format.md +++ b/docs/version-specific/supported-software/g/google-java-format.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 10d2f274e..fd3b0db0e 100644 --- a/docs/version-specific/supported-software/g/googletest.md +++ b/docs/version-specific/supported-software/g/googletest.md @@ -25,5 +25,5 @@ version | toolchain ``1.8.0`` | ``intel/2016b`` ``1.8.1`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5af5824eb..9d4a2b853 100644 --- a/docs/version-specific/supported-software/g/gotree.md +++ b/docs/version-specific/supported-software/g/gotree.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a28536fc7..430e8a2b2 100644 --- a/docs/version-specific/supported-software/g/gperf.md +++ b/docs/version-specific/supported-software/g/gperf.md @@ -31,5 +31,5 @@ version | toolchain ``3.1`` | ``GCCcore/8.3.0`` ``3.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7eae4fbbc..2ec87084e 100644 --- a/docs/version-specific/supported-software/g/gperftools.md +++ b/docs/version-specific/supported-software/g/gperftools.md @@ -24,5 +24,5 @@ version | toolchain ``2.9.1`` | ``GCCcore/10.3.0`` ``2.9.1`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8d66ce481..aa0f70e06 100644 --- a/docs/version-specific/supported-software/g/gpustat.md +++ b/docs/version-specific/supported-software/g/gpustat.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.0.0b1`` | | ``GCCcore/11.2.0`` ``1.1`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8e4a78a6..7688cf303 100644 --- a/docs/version-specific/supported-software/g/gradunwarp.md +++ b/docs/version-specific/supported-software/g/gradunwarp.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.2.0`` | ``-HCP-Python-2.7.15`` | ``foss/2019a`` ``1.2.0`` | ``-HCP-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06765b555..3d213b320 100644 --- a/docs/version-specific/supported-software/g/graph-tool.md +++ b/docs/version-specific/supported-software/g/graph-tool.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.27`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.55`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index db95bd66d..ceea948ba 100644 --- a/docs/version-specific/supported-software/g/graphite2.md +++ b/docs/version-specific/supported-software/g/graphite2.md @@ -19,5 +19,5 @@ version | toolchain ``1.3.14`` | ``GCCcore/13.2.0`` ``1.3.14`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 17ae75bef..8b4f5ccf1 100644 --- a/docs/version-specific/supported-software/g/graphviz-python.md +++ b/docs/version-specific/supported-software/g/graphviz-python.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.5.1`` | ``-Python-3.5.2`` | ``intel/2016b`` ``0.8.2`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e44f5f82c..a59df02da 100644 --- a/docs/version-specific/supported-software/g/gretl.md +++ b/docs/version-specific/supported-software/g/gretl.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2020a`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4b6ebe62d..3f80a8c9c 100644 --- a/docs/version-specific/supported-software/g/grib_api.md +++ b/docs/version-specific/supported-software/g/grib_api.md @@ -16,5 +16,5 @@ version | toolchain ``1.24.0`` | ``intel/2017a`` ``1.24.0`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a0baec5ec..b5fb09db3 100644 --- a/docs/version-specific/supported-software/g/grid.md +++ b/docs/version-specific/supported-software/g/grid.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220610`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5294413f9..0f5930cca 100644 --- a/docs/version-specific/supported-software/g/groff.md +++ b/docs/version-specific/supported-software/g/groff.md @@ -22,5 +22,5 @@ version | toolchain ``1.22.4`` | ``GCCcore/9.3.0`` ``1.23.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81fb5550f..e810f3129 100644 --- a/docs/version-specific/supported-software/g/grpcio.md +++ b/docs/version-specific/supported-software/g/grpcio.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.57.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b0544b0cf..768635100 100644 --- a/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md +++ b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.34.0`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 827eda665..6ce8e7767 100644 --- a/docs/version-specific/supported-software/g/gspell.md +++ b/docs/version-specific/supported-software/g/gspell.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.12.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d73e75efc..320cd9d7d 100644 --- a/docs/version-specific/supported-software/g/gsport.md +++ b/docs/version-specific/supported-software/g/gsport.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 32ddfada4..c78d3f9e8 100644 --- a/docs/version-specific/supported-software/g/gsutil.md +++ b/docs/version-specific/supported-software/g/gsutil.md @@ -13,5 +13,5 @@ version | toolchain ``5.10`` | ``GCCcore/11.2.0`` ``5.29`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e5ad4935b..8552a3b70 100644 --- a/docs/version-specific/supported-software/g/gsw.md +++ b/docs/version-specific/supported-software/g/gsw.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.6.16`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 54c490441..0c3f4c1f9 100644 --- a/docs/version-specific/supported-software/g/gubbins.md +++ b/docs/version-specific/supported-software/g/gubbins.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d7c780bd..65676cb15 100644 --- a/docs/version-specific/supported-software/g/guenomu.md +++ b/docs/version-specific/supported-software/g/guenomu.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.07.05`` | ``-mpi`` | ``iimpi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d67aa5b2e..6eb83da1c 100644 --- a/docs/version-specific/supported-software/g/gzip.md +++ b/docs/version-specific/supported-software/g/gzip.md @@ -26,5 +26,5 @@ version | toolchain ``1.8`` | ``GCCcore/6.4.0`` ``1.9`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2eca06294..349d78d14 100644 --- a/docs/version-specific/supported-software/g/index.md +++ b/docs/version-specific/supported-software/g/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (g) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - *g* - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../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) diff --git a/docs/version-specific/supported-software/h/H5hut.md b/docs/version-specific/supported-software/h/H5hut.md index 32a94bda5..df5a3ece5 100644 --- a/docs/version-specific/supported-software/h/H5hut.md +++ b/docs/version-specific/supported-software/h/H5hut.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.99.13`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d1fcd71ef..418274c94 100644 --- a/docs/version-specific/supported-software/h/HAL.md +++ b/docs/version-specific/supported-software/h/HAL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a92cf311..a1418307e 100644 --- a/docs/version-specific/supported-software/h/HAPGEN2.md +++ b/docs/version-specific/supported-software/h/HAPGEN2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a5eef4343..e8f2b946c 100644 --- a/docs/version-specific/supported-software/h/HBase.md +++ b/docs/version-specific/supported-software/h/HBase.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 430816b7d..f4cbc4c78 100644 --- a/docs/version-specific/supported-software/h/HD-BET.md +++ b/docs/version-specific/supported-software/h/HD-BET.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20220318`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``20220318`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a067e2c8..732729d7b 100644 --- a/docs/version-specific/supported-software/h/HDBSCAN.md +++ b/docs/version-specific/supported-software/h/HDBSCAN.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.8.27`` | | ``foss/2021a`` ``0.8.29`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06f1039d7..ef31239c4 100644 --- a/docs/version-specific/supported-software/h/HDDM.md +++ b/docs/version-specific/supported-software/h/HDDM.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.9.9`` | | ``foss/2021b`` ``0.9.9`` | | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a7f43c66c..3f8637688 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS.md +++ b/docs/version-specific/supported-software/h/HDF-EOS.md @@ -14,5 +14,5 @@ version | toolchain ``2.20`` | ``GCCcore/7.3.0`` ``2.20`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9464bb5aa..8b88a1d88 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS2.md +++ b/docs/version-specific/supported-software/h/HDF-EOS2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 49f925c07..cfe77b3c1 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS5.md +++ b/docs/version-specific/supported-software/h/HDF-EOS5.md @@ -14,5 +14,5 @@ version | toolchain ``1.16`` | ``gompi/2019b`` ``1.16`` | ``gompi/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 434b99693..c8c5f8cc1 100644 --- a/docs/version-specific/supported-software/h/HDF.md +++ b/docs/version-specific/supported-software/h/HDF.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``4.2.16-2`` | | ``GCCcore/13.2.0`` ``4.2.16`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 22f9d6e44..b2ef02247 100644 --- a/docs/version-specific/supported-software/h/HDF5.md +++ b/docs/version-specific/supported-software/h/HDF5.md @@ -110,5 +110,5 @@ version | versionsuffix | toolchain ``1.8.20`` | | ``intel/2017b`` ``1.8.20`` | | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 652c8fb5a..69b0b8349 100644 --- a/docs/version-specific/supported-software/h/HDFView.md +++ b/docs/version-specific/supported-software/h/HDFView.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.14`` | ``-Java-1.8.0_152-centos6`` | ``system`` ``2.14`` | ``-Java-1.8.0_152-centos7`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 11b29aaa0..6b704c5d3 100644 --- a/docs/version-specific/supported-software/h/HEALPix.md +++ b/docs/version-specific/supported-software/h/HEALPix.md @@ -13,5 +13,5 @@ version | toolchain ``3.50`` | ``GCCcore/7.3.0`` ``3.50`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 276d278f1..dd467db32 100644 --- a/docs/version-specific/supported-software/h/HF-Datasets.md +++ b/docs/version-specific/supported-software/h/HF-Datasets.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.18.0`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e48461555..4f36a5f45 100644 --- a/docs/version-specific/supported-software/h/HH-suite.md +++ b/docs/version-specific/supported-software/h/HH-suite.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``3.3.0`` | ``-Python-3.7.4`` | ``gompic/2019b`` ``3.3.0`` | | ``gompic/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 594624ada..f1b227300 100644 --- a/docs/version-specific/supported-software/h/HIP.md +++ b/docs/version-specific/supported-software/h/HIP.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.5.0`` | ``-amd`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 333dffef1..c8d49220c 100644 --- a/docs/version-specific/supported-software/h/HIPS.md +++ b/docs/version-specific/supported-software/h/HIPS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2b-rc5`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 874a870be..6db22e5a0 100644 --- a/docs/version-specific/supported-software/h/HISAT2.md +++ b/docs/version-specific/supported-software/h/HISAT2.md @@ -27,5 +27,5 @@ version | toolchain ``2.2.1`` | ``gompi/2022a`` ``2.2.1`` | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 132280602..ca4994358 100644 --- a/docs/version-specific/supported-software/h/HLAminer.md +++ b/docs/version-specific/supported-software/h/HLAminer.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-Perl-5.28.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0722f4d63..f079af7c6 100644 --- a/docs/version-specific/supported-software/h/HMMER.md +++ b/docs/version-specific/supported-software/h/HMMER.md @@ -37,5 +37,5 @@ version | toolchain ``3.3.2`` | ``iimpi/2021b`` ``3.4`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9893f3cf..89e85283b 100644 --- a/docs/version-specific/supported-software/h/HMMER2.md +++ b/docs/version-specific/supported-software/h/HMMER2.md @@ -14,5 +14,5 @@ version | toolchain ``2.3.2`` | ``GCC/10.3.0`` ``2.3.2`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0dea264eb..d92a2e2a9 100644 --- a/docs/version-specific/supported-software/h/HOME.md +++ b/docs/version-specific/supported-software/h/HOME.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9`` | ``-Python-2.7.13`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index baccee3d4..026f87d31 100644 --- a/docs/version-specific/supported-software/h/HOMER.md +++ b/docs/version-specific/supported-software/h/HOMER.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.11`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ffc0dddc1..897d9f42b 100644 --- a/docs/version-specific/supported-software/h/HOOMD-blue.md +++ b/docs/version-specific/supported-software/h/HOOMD-blue.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``4.0.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ded004379..29875093a 100644 --- a/docs/version-specific/supported-software/h/HPCC.md +++ b/docs/version-specific/supported-software/h/HPCC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 35531da6f..00fd1da43 100644 --- a/docs/version-specific/supported-software/h/HPCG.md +++ b/docs/version-specific/supported-software/h/HPCG.md @@ -26,5 +26,5 @@ version | toolchain ``3.1`` | ``intel/2022b`` ``3.1`` | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8c0a71ee5..b7954f3ab 100644 --- a/docs/version-specific/supported-software/h/HPCX.md +++ b/docs/version-specific/supported-software/h/HPCX.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.0`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8f98d05c1..60085fe8f 100644 --- a/docs/version-specific/supported-software/h/HPDBSCAN.md +++ b/docs/version-specific/supported-software/h/HPDBSCAN.md @@ -13,5 +13,5 @@ version | toolchain ``20171110`` | ``foss/2017b`` ``20210826`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2082fb04f..32d1203f4 100644 --- a/docs/version-specific/supported-software/h/HPL.md +++ b/docs/version-specific/supported-software/h/HPL.md @@ -131,5 +131,5 @@ version | versionsuffix | toolchain ``2.3`` | | ``iomkl/2021a`` ``2.3`` | | ``iomkl/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3eb7446df..b62682ea9 100644 --- a/docs/version-specific/supported-software/h/HTSeq.md +++ b/docs/version-specific/supported-software/h/HTSeq.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.0.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d52b8613..9d26e23a1 100644 --- a/docs/version-specific/supported-software/h/HTSlib.md +++ b/docs/version-specific/supported-software/h/HTSlib.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``1.9`` | | ``intel/2018b`` ``20160107`` | ``-PacBio`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4d5e5319d..e23aed6ec 100644 --- a/docs/version-specific/supported-software/h/HTSplotter.md +++ b/docs/version-specific/supported-software/h/HTSplotter.md @@ -13,5 +13,5 @@ version | toolchain ``0.15`` | ``foss/2022a`` ``2.11`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ee9d79571..9a211aff0 100644 --- a/docs/version-specific/supported-software/h/Hadoop.md +++ b/docs/version-specific/supported-software/h/Hadoop.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2.6.0-cdh5.8.0`` | ``-native`` | ``system`` ``2.9.2`` | ``-native`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 96c1cf667..f533fa897 100644 --- a/docs/version-specific/supported-software/h/HarfBuzz.md +++ b/docs/version-specific/supported-software/h/HarfBuzz.md @@ -36,5 +36,5 @@ version | toolchain ``5.3.1`` | ``GCCcore/12.3.0`` ``8.2.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 80fcc3201..3c7e7f8e6 100644 --- a/docs/version-specific/supported-software/h/Harminv.md +++ b/docs/version-specific/supported-software/h/Harminv.md @@ -17,5 +17,5 @@ version | toolchain ``1.4.1`` | ``intel/2020a`` ``1.4.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 728a8d448..0993d2991 100644 --- a/docs/version-specific/supported-software/h/HeFFTe.md +++ b/docs/version-specific/supported-software/h/HeFFTe.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``foss/2020a`` ``2.4.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 71ffefd37..7083280a2 100644 --- a/docs/version-specific/supported-software/h/Health-GPS.md +++ b/docs/version-specific/supported-software/h/Health-GPS.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.3.0`` | ``GCCcore/11.3.0`` ``1.2.2.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f415e495..ad1901cef 100644 --- a/docs/version-specific/supported-software/h/Hello.md +++ b/docs/version-specific/supported-software/h/Hello.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.10`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5328ff879..2960a1139 100644 --- a/docs/version-specific/supported-software/h/HepMC.md +++ b/docs/version-specific/supported-software/h/HepMC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.06.11`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44dfdd8bf..682900550 100644 --- a/docs/version-specific/supported-software/h/HepMC3.md +++ b/docs/version-specific/supported-software/h/HepMC3.md @@ -13,5 +13,5 @@ version | toolchain ``3.2.5`` | ``GCC/11.3.0`` ``3.2.6`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e2d99b722..a5e8ff34b 100644 --- a/docs/version-specific/supported-software/h/HiC-Pro.md +++ b/docs/version-specific/supported-software/h/HiC-Pro.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.9.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``3.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3e38ecaf..99dc01df5 100644 --- a/docs/version-specific/supported-software/h/HiCExplorer.md +++ b/docs/version-specific/supported-software/h/HiCExplorer.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``3.7.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4031d1780..a5968fdc8 100644 --- a/docs/version-specific/supported-software/h/HiCMatrix.md +++ b/docs/version-specific/supported-software/h/HiCMatrix.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``17`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eddfd157d..ed64c929e 100644 --- a/docs/version-specific/supported-software/h/HiGHS.md +++ b/docs/version-specific/supported-software/h/HiGHS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.0`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 336e8f889..13a2ed38d 100644 --- a/docs/version-specific/supported-software/h/HighFive.md +++ b/docs/version-specific/supported-software/h/HighFive.md @@ -14,5 +14,5 @@ version | toolchain ``2.6.2`` | ``gompi/2022a`` ``2.7.1`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 778b285f5..0d3430d6b 100644 --- a/docs/version-specific/supported-software/h/Highway.md +++ b/docs/version-specific/supported-software/h/Highway.md @@ -18,5 +18,5 @@ version | toolchain ``1.0.4`` | ``GCCcore/12.3.0`` ``1.0.7`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fb2d67939..d882101f5 100644 --- a/docs/version-specific/supported-software/h/Horovod.md +++ b/docs/version-specific/supported-software/h/Horovod.md @@ -45,5 +45,5 @@ version | versionsuffix | toolchain ``0.28.1`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` ``0.9.10`` | ``-Python-3.6.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2108502b7..6c40a9faf 100644 --- a/docs/version-specific/supported-software/h/HyPhy.md +++ b/docs/version-specific/supported-software/h/HyPhy.md @@ -15,5 +15,5 @@ version | toolchain ``2.5.33`` | ``gompi/2021a`` ``2.5.60`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 686446f54..8dc7640d5 100644 --- a/docs/version-specific/supported-software/h/HyPo.md +++ b/docs/version-specific/supported-software/h/HyPo.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7b18aa893..57605e17d 100644 --- a/docs/version-specific/supported-software/h/Hybpiper.md +++ b/docs/version-specific/supported-software/h/Hybpiper.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.6`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44f3440c5..80a9cfc67 100644 --- a/docs/version-specific/supported-software/h/Hydra.md +++ b/docs/version-specific/supported-software/h/Hydra.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.2`` | ``GCCcore/11.3.0`` ``1.3.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 333f45d03..9621d5e40 100644 --- a/docs/version-specific/supported-software/h/HyperQueue.md +++ b/docs/version-specific/supported-software/h/HyperQueue.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eda72be8d..9d06c8a42 100644 --- a/docs/version-specific/supported-software/h/Hyperopt.md +++ b/docs/version-specific/supported-software/h/Hyperopt.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.2.7`` | | ``foss/2021a`` ``0.2.7`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 953ea80f7..22e10afdf 100644 --- a/docs/version-specific/supported-software/h/Hypre.md +++ b/docs/version-specific/supported-software/h/Hypre.md @@ -30,5 +30,5 @@ version | toolchain ``2.27.0`` | ``foss/2022b`` ``2.29.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 32fac499d..bfb1cd66c 100644 --- a/docs/version-specific/supported-software/h/h4toh5.md +++ b/docs/version-specific/supported-software/h/h4toh5.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.2.3`` | | ``gompi/2020b`` ``2.2.5`` | | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9191fcbb4..c524e5ef7 100644 --- a/docs/version-specific/supported-software/h/h5netcdf.md +++ b/docs/version-specific/supported-software/h/h5netcdf.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.0`` | ``foss/2022a`` ``1.2.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 346a82b83..1eec4d467 100644 --- a/docs/version-specific/supported-software/h/h5py.md +++ b/docs/version-specific/supported-software/h/h5py.md @@ -83,5 +83,5 @@ version | versionsuffix | toolchain ``3.8.0`` | | ``foss/2022b`` ``3.9.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d8f22845..dfffe050f 100644 --- a/docs/version-specific/supported-software/h/hampel.md +++ b/docs/version-specific/supported-software/h/hampel.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 01defe656..d1974a033 100644 --- a/docs/version-specific/supported-software/h/hanythingondemand.md +++ b/docs/version-specific/supported-software/h/hanythingondemand.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``3.2.2`` | ``-cli`` | ``system`` ``3.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be951b738..3ebc061c9 100644 --- a/docs/version-specific/supported-software/h/harmony.md +++ b/docs/version-specific/supported-software/h/harmony.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.0-20210528`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.0.0-20200224`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b3bdef8c..278833d48 100644 --- a/docs/version-specific/supported-software/h/hatch-jupyter-builder.md +++ b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d9ddd7cd8..c771c39b4 100644 --- a/docs/version-specific/supported-software/h/hatchling.md +++ b/docs/version-specific/supported-software/h/hatchling.md @@ -13,5 +13,5 @@ version | toolchain ``1.18.0`` | ``GCCcore/12.3.0`` ``1.18.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 766c476ba..020d4b3d3 100644 --- a/docs/version-specific/supported-software/h/hdWGCNA.md +++ b/docs/version-specific/supported-software/h/hdWGCNA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.00`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f65ecbb31..8393c9720 100644 --- a/docs/version-specific/supported-software/h/hdf5storage.md +++ b/docs/version-specific/supported-software/h/hdf5storage.md @@ -13,5 +13,5 @@ version | toolchain ``0.1.15`` | ``foss/2019a`` ``0.1.15`` | ``fosscuda/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 670d958da..3acfc79b4 100644 --- a/docs/version-specific/supported-software/h/heaptrack.md +++ b/docs/version-specific/supported-software/h/heaptrack.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2dbf7b7d0..d69101e39 100644 --- a/docs/version-specific/supported-software/h/hector.md +++ b/docs/version-specific/supported-software/h/hector.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.0`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 65ed1713c..cf6f82cbd 100644 --- a/docs/version-specific/supported-software/h/help2man.md +++ b/docs/version-specific/supported-software/h/help2man.md @@ -47,5 +47,5 @@ version | toolchain ``1.49.3`` | ``GCCcore/13.3.0`` ``1.49.3`` | ``GCCcore/14.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 791f609a7..ab1f2c1a1 100644 --- a/docs/version-specific/supported-software/h/hevea.md +++ b/docs/version-specific/supported-software/h/hevea.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.36`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 184c208c8..030196430 100644 --- a/docs/version-specific/supported-software/h/hic-straw.md +++ b/docs/version-specific/supported-software/h/hic-straw.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 50841e72e..aa97ae54f 100644 --- a/docs/version-specific/supported-software/h/hierfstat.md +++ b/docs/version-specific/supported-software/h/hierfstat.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5-7`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 627c0d352..e01910081 100644 --- a/docs/version-specific/supported-software/h/hifiasm.md +++ b/docs/version-specific/supported-software/h/hifiasm.md @@ -16,5 +16,5 @@ version | toolchain ``0.19.5`` | ``GCCcore/11.2.0`` ``0.19.7`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 78e630d5a..379e7c27b 100644 --- a/docs/version-specific/supported-software/h/hipSYCL.md +++ b/docs/version-specific/supported-software/h/hipSYCL.md @@ -13,5 +13,5 @@ version | toolchain ``0.9.1`` | ``GCC/10.2.0`` ``0.9.1`` | ``gcccuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a72b2b95..7e3d9cb5f 100644 --- a/docs/version-specific/supported-software/h/hipify-clang.md +++ b/docs/version-specific/supported-software/h/hipify-clang.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.2.0`` | ``gcccuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8b3c090f5..dc5b5bfd0 100644 --- a/docs/version-specific/supported-software/h/hiredis.md +++ b/docs/version-specific/supported-software/h/hiredis.md @@ -16,5 +16,5 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 05c04160e..bace92724 100644 --- a/docs/version-specific/supported-software/h/histolab.md +++ b/docs/version-specific/supported-software/h/histolab.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.1`` | ``foss/2021a`` ``0.4.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 92d88b8d0..8cb0b0d44 100644 --- a/docs/version-specific/supported-software/h/hivtrace.md +++ b/docs/version-specific/supported-software/h/hivtrace.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bd0b0deaa..766b25bcc 100644 --- a/docs/version-specific/supported-software/h/hl7apy.md +++ b/docs/version-specific/supported-software/h/hl7apy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d85340234..63c923b4c 100644 --- a/docs/version-specific/supported-software/h/hmmcopy_utils.md +++ b/docs/version-specific/supported-software/h/hmmcopy_utils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20210728`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 43804216a..4ddb2e22f 100644 --- a/docs/version-specific/supported-software/h/hmmlearn.md +++ b/docs/version-specific/supported-software/h/hmmlearn.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.3.0`` | | ``foss/2022b`` ``0.3.0`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1aa598cc..e7b2cb481 100644 --- a/docs/version-specific/supported-software/h/horton.md +++ b/docs/version-specific/supported-software/h/horton.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``2.1.1`` | ``-Python-2.7.18`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0aa1dfa06..5b3547998 100644 --- 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 @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3fcec562d..ca85974e9 100644 --- a/docs/version-specific/supported-software/h/htop.md +++ b/docs/version-specific/supported-software/h/htop.md @@ -15,5 +15,5 @@ version | toolchain ``3.2.1`` | ``system`` ``3.2.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1bd447af..c6a3c8ed0 100644 --- a/docs/version-specific/supported-software/h/hub.md +++ b/docs/version-specific/supported-software/h/hub.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.2`` | ``-linux-amd64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a26343d5..2803907dc 100644 --- a/docs/version-specific/supported-software/h/humann.md +++ b/docs/version-specific/supported-software/h/humann.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.6`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a00fcfc62..25dbb6acc 100644 --- a/docs/version-specific/supported-software/h/hunspell.md +++ b/docs/version-specific/supported-software/h/hunspell.md @@ -16,5 +16,5 @@ version | toolchain ``1.7.1`` | ``GCCcore/11.3.0`` ``1.7.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1d637405f..183c2410c 100644 --- a/docs/version-specific/supported-software/h/hwloc.md +++ b/docs/version-specific/supported-software/h/hwloc.md @@ -59,5 +59,5 @@ version | toolchain ``2.9.1`` | ``GCCcore/12.3.0`` ``2.9.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d1d611fb1..c415f595f 100644 --- a/docs/version-specific/supported-software/h/hyperspy.md +++ b/docs/version-specific/supported-software/h/hyperspy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.5.2`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b730c3522..dace43c3f 100644 --- a/docs/version-specific/supported-software/h/hypothesis.md +++ b/docs/version-specific/supported-software/h/hypothesis.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``6.82.0`` | | ``GCCcore/12.3.0`` ``6.90.0`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0bdc585c1..fcc804330 100644 --- a/docs/version-specific/supported-software/h/index.md +++ b/docs/version-specific/supported-software/h/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (h) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - *h* - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../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) diff --git a/docs/version-specific/supported-software/i/I-TASSER.md b/docs/version-specific/supported-software/i/I-TASSER.md index b5fc797a1..be9523735 100644 --- a/docs/version-specific/supported-software/i/I-TASSER.md +++ b/docs/version-specific/supported-software/i/I-TASSER.md @@ -14,5 +14,5 @@ version | toolchain ``4.2`` | ``system`` ``5.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf8a56262..dd4545e67 100644 --- a/docs/version-specific/supported-software/i/ICA-AROMA.md +++ b/docs/version-specific/supported-software/i/ICA-AROMA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4-beta`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b0fcff20d..24ebd6454 100644 --- a/docs/version-specific/supported-software/i/ICON.md +++ b/docs/version-specific/supported-software/i/ICON.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2024.01`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a4a26ebba..1a670fc13 100644 --- a/docs/version-specific/supported-software/i/ICU.md +++ b/docs/version-specific/supported-software/i/ICU.md @@ -25,5 +25,5 @@ version | toolchain ``74.1`` | ``GCCcore/13.2.0`` ``75.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a8376da54..5424e6e66 100644 --- a/docs/version-specific/supported-software/i/IDBA-UD.md +++ b/docs/version-specific/supported-software/i/IDBA-UD.md @@ -19,5 +19,5 @@ version | toolchain ``1.1.3`` | ``foss/2018a`` ``1.1.3`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3091f4b99..f8c2e8fe5 100644 --- a/docs/version-specific/supported-software/i/IDG.md +++ b/docs/version-specific/supported-software/i/IDG.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 23e8efb78..053080c87 100644 --- a/docs/version-specific/supported-software/i/IGMPlot.md +++ b/docs/version-specific/supported-software/i/IGMPlot.md @@ -14,5 +14,5 @@ version | toolchain ``2.4.2`` | ``iccifort/2019.5.281`` ``2.6.9b`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e963179b9..42be4bd67 100644 --- a/docs/version-specific/supported-software/i/IGV.md +++ b/docs/version-specific/supported-software/i/IGV.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.8.0`` | ``-Java-11`` | ``system`` ``2.9.4`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44d3c8669..25dc1eb43 100644 --- a/docs/version-specific/supported-software/i/IGVTools.md +++ b/docs/version-specific/supported-software/i/IGVTools.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3.75`` | ``-Java-1.7.0_80`` | ``system`` ``2.4.18`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9addf24b7..68b5ac180 100644 --- a/docs/version-specific/supported-software/i/IJulia.md +++ b/docs/version-specific/supported-software/i/IJulia.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.23.3`` | ``-Julia-1.6.7`` | ``system`` ``1.24.0`` | ``-Julia-1.8.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bcd5fb60..9ae1efa8f 100644 --- a/docs/version-specific/supported-software/i/ILAMB.md +++ b/docs/version-specific/supported-software/i/ILAMB.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 513d69d5f..d0db3a846 100644 --- a/docs/version-specific/supported-software/i/IMB.md +++ b/docs/version-specific/supported-software/i/IMB.md @@ -24,5 +24,5 @@ version | toolchain ``4.1`` | ``intel/2017.02`` ``4.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb45e524b..dccf43fa8 100644 --- a/docs/version-specific/supported-software/i/IML.md +++ b/docs/version-specific/supported-software/i/IML.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.5`` | ``gfbf/2022a`` ``1.0.5`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1f2389cc2..6d4415c3f 100644 --- a/docs/version-specific/supported-software/i/IMOD.md +++ b/docs/version-specific/supported-software/i/IMOD.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``4.11.5`` | | ``fosscuda/2020b`` ``4.7.15`` | ``_RHEL6-64_CUDA6.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dc80df2b2..be9abeb1e 100644 --- a/docs/version-specific/supported-software/i/IMPUTE2.md +++ b/docs/version-specific/supported-software/i/IMPUTE2.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3.2`` | ``_x86_64_dynamic`` | ``system`` ``2.3.2`` | ``_x86_64_static`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a98d21462..87078a653 100644 --- a/docs/version-specific/supported-software/i/IMa2.md +++ b/docs/version-specific/supported-software/i/IMa2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``8.27.12`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3f0851a2b..efe0128fb 100644 --- a/docs/version-specific/supported-software/i/IMa2p.md +++ b/docs/version-specific/supported-software/i/IMa2p.md @@ -13,5 +13,5 @@ version | toolchain ``20151123`` | ``foss/2016a`` ``20160804`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b2de37c3e..cc593a6c5 100644 --- a/docs/version-specific/supported-software/i/INTEGRATE-Neo.md +++ b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e414e60b5..7ecde78c9 100644 --- a/docs/version-specific/supported-software/i/INTEGRATE.md +++ b/docs/version-specific/supported-software/i/INTEGRATE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.6`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b5452fed9..ac26a4eec 100644 --- a/docs/version-specific/supported-software/i/IOR.md +++ b/docs/version-specific/supported-software/i/IOR.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``3.3.0`` | | ``gompi/2022a`` ``4.0.0`` | | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 01cf3fdbe..5c88a55f2 100644 --- a/docs/version-specific/supported-software/i/IOzone.md +++ b/docs/version-specific/supported-software/i/IOzone.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.434`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf7b955d4..4baf8dd21 100644 --- a/docs/version-specific/supported-software/i/IPM.md +++ b/docs/version-specific/supported-software/i/IPM.md @@ -16,5 +16,5 @@ version | toolchain ``2.0.6`` | ``iimpi/2020a`` ``2.0.6`` | ``iompi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f76611d73..fd808b3bf 100644 --- a/docs/version-specific/supported-software/i/IPy.md +++ b/docs/version-specific/supported-software/i/IPy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.83`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6291abcac..24db93857 100644 --- a/docs/version-specific/supported-software/i/IPython.md +++ b/docs/version-specific/supported-software/i/IPython.md @@ -60,5 +60,5 @@ version | versionsuffix | toolchain ``8.17.2`` | | ``GCCcore/13.2.0`` ``8.5.0`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b23280c2d..87d260f45 100644 --- a/docs/version-specific/supported-software/i/IQ-TREE.md +++ b/docs/version-specific/supported-software/i/IQ-TREE.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``2.2.2.6`` | | ``gompi/2022b`` ``2.2.2.7`` | | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84d23bd1f..239384872 100644 --- a/docs/version-specific/supported-software/i/IRkernel.md +++ b/docs/version-specific/supported-software/i/IRkernel.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.3.2`` | ``-R-4.3.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3f1d5dc0..a1f2aafb0 100644 --- a/docs/version-specific/supported-software/i/ISA-L.md +++ b/docs/version-specific/supported-software/i/ISA-L.md @@ -18,5 +18,5 @@ version | toolchain ``2.30.0`` | ``GCCcore/12.3.0`` ``2.31.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ed0eda7b9..126dae6ef 100644 --- a/docs/version-specific/supported-software/i/ISL.md +++ b/docs/version-specific/supported-software/i/ISL.md @@ -26,5 +26,5 @@ version | toolchain ``0.26`` | ``GCCcore/13.2.0`` ``0.26`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5c9f9e869..e199267c4 100644 --- a/docs/version-specific/supported-software/i/ITK.md +++ b/docs/version-specific/supported-software/i/ITK.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``5.2.1`` | | ``fosscuda/2020b`` ``5.3.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 52c10ebff..1f3259c0e 100644 --- a/docs/version-specific/supported-software/i/ITSTool.md +++ b/docs/version-specific/supported-software/i/ITSTool.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.0.7`` | | ``GCCcore/11.3.0`` ``2.0.7`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 74e219041..143f2e64c 100644 --- a/docs/version-specific/supported-software/i/ITSx.md +++ b/docs/version-specific/supported-software/i/ITSx.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.3`` | ``GCCcore/10.3.0`` ``1.1.3`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d2a10684..c2ef3eec9 100644 --- a/docs/version-specific/supported-software/i/IgBLAST.md +++ b/docs/version-specific/supported-software/i/IgBLAST.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.18.0`` | ``-x64-linux`` | ``system`` ``1.21.0`` | ``-x64-linux`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9bac256a2..75ade087d 100644 --- a/docs/version-specific/supported-software/i/ImageJ.md +++ b/docs/version-specific/supported-software/i/ImageJ.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.51k`` | | ``system`` ``1.52q`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index db560710d..aca655f72 100644 --- a/docs/version-specific/supported-software/i/ImageMagick.md +++ b/docs/version-specific/supported-software/i/ImageMagick.md @@ -36,5 +36,5 @@ version | versionsuffix | toolchain ``7.1.0-53`` | | ``GCCcore/12.2.0`` ``7.1.1-15`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9bb21ccb1..60e5d73b6 100644 --- a/docs/version-specific/supported-software/i/Imath.md +++ b/docs/version-specific/supported-software/i/Imath.md @@ -15,5 +15,5 @@ version | toolchain ``3.1.7`` | ``GCCcore/12.3.0`` ``3.1.9`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 27b59d68e..5913f61e0 100644 --- a/docs/version-specific/supported-software/i/Imlib2.md +++ b/docs/version-specific/supported-software/i/Imlib2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.1`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a40e76765..a02e03ebe 100644 --- a/docs/version-specific/supported-software/i/InChI.md +++ b/docs/version-specific/supported-software/i/InChI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.06`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 41e7a09c1..85849e57f 100644 --- a/docs/version-specific/supported-software/i/InParanoid.md +++ b/docs/version-specific/supported-software/i/InParanoid.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0-20220607`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9fa56b35a..14bd56f54 100644 --- a/docs/version-specific/supported-software/i/Inelastica.md +++ b/docs/version-specific/supported-software/i/Inelastica.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b94ab5aa..359bcc3a2 100644 --- a/docs/version-specific/supported-software/i/Inferelator.md +++ b/docs/version-specific/supported-software/i/Inferelator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94cfc683b..ce3a1d50f 100644 --- a/docs/version-specific/supported-software/i/Infernal.md +++ b/docs/version-specific/supported-software/i/Infernal.md @@ -20,5 +20,5 @@ version | toolchain ``1.1.4`` | ``foss/2022a`` ``1.1.4`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a330cc00..6667309a0 100644 --- a/docs/version-specific/supported-software/i/Infomap.md +++ b/docs/version-specific/supported-software/i/Infomap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20190308`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c43e7afe6..b8ee5e685 100644 --- a/docs/version-specific/supported-software/i/Inspector.md +++ b/docs/version-specific/supported-software/i/Inspector.md @@ -25,5 +25,5 @@ version | toolchain ``2022.1.0`` | ``system`` ``2023.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3a654e071..b1424b24e 100644 --- a/docs/version-specific/supported-software/i/IntaRNA.md +++ b/docs/version-specific/supported-software/i/IntaRNA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e2d409395..8004de32b 100644 --- a/docs/version-specific/supported-software/i/IntelClusterChecker.md +++ b/docs/version-specific/supported-software/i/IntelClusterChecker.md @@ -13,5 +13,5 @@ version | toolchain ``2017.1.016`` | ``system`` ``2021.5.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 938a15471..d5ed456e4 100644 --- a/docs/version-specific/supported-software/i/IntelDAAL.md +++ b/docs/version-specific/supported-software/i/IntelDAAL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2019.4.007`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7166d176f..f7deca597 100644 --- a/docs/version-specific/supported-software/i/IntelPython.md +++ b/docs/version-specific/supported-software/i/IntelPython.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.7.15`` | ``-2019.2.066`` | ``system`` ``3.6.8`` | ``-2019.2.066`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 09c2f9254..e4204a81e 100644 --- a/docs/version-specific/supported-software/i/InterOp.md +++ b/docs/version-specific/supported-software/i/InterOp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.4`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2cc0ceaa5..0b279620c 100644 --- a/docs/version-specific/supported-software/i/InterProScan.md +++ b/docs/version-specific/supported-software/i/InterProScan.md @@ -17,5 +17,5 @@ version | toolchain ``5.55-88.0`` | ``foss/2021a`` ``5.62-94.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9e214aaa..3db0d53d5 100644 --- a/docs/version-specific/supported-software/i/InterProScan_data.md +++ b/docs/version-specific/supported-software/i/InterProScan_data.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.55-88.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 87652bb3e..06588d946 100644 --- a/docs/version-specific/supported-software/i/IonQuant.md +++ b/docs/version-specific/supported-software/i/IonQuant.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.10.12`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 17491706b..f799269d4 100644 --- a/docs/version-specific/supported-software/i/Ipopt.md +++ b/docs/version-specific/supported-software/i/Ipopt.md @@ -13,5 +13,5 @@ version | toolchain ``3.12.13`` | ``intel/2019a`` ``3.12.9`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 051f0f22c..513cd5363 100644 --- a/docs/version-specific/supported-software/i/Iris.md +++ b/docs/version-specific/supported-software/i/Iris.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.5`` | ``-Java-15`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8079e249b..181f7b11e 100644 --- a/docs/version-specific/supported-software/i/IronPython.md +++ b/docs/version-specific/supported-software/i/IronPython.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.7`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e25362693..3e53bf453 100644 --- a/docs/version-specific/supported-software/i/IsoNet.md +++ b/docs/version-specific/supported-software/i/IsoNet.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1_20210822_04_674f67f`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 317f248d1..08144aaf5 100644 --- a/docs/version-specific/supported-software/i/IsoQuant.md +++ b/docs/version-specific/supported-software/i/IsoQuant.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 34e3b14fe..50c7c3834 100644 --- a/docs/version-specific/supported-software/i/IsoSeq.md +++ b/docs/version-specific/supported-software/i/IsoSeq.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.8.2`` | ``-linux-x86_64`` | ``system`` ``4.0.0`` | ``-linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e6ab09b56..5765365eb 100644 --- a/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md +++ b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.18.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c7a7e7c59..d83cd0fab 100644 --- a/docs/version-specific/supported-software/i/i-PI.md +++ b/docs/version-specific/supported-software/i/i-PI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20160213`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b11c8f4f7..7ffc09a29 100644 --- a/docs/version-specific/supported-software/i/i-cisTarget.md +++ b/docs/version-specific/supported-software/i/i-cisTarget.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160602`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 586ba7ce2..1121797e7 100644 --- a/docs/version-specific/supported-software/i/i7z.md +++ b/docs/version-specific/supported-software/i/i7z.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20131012`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bd1d4f4fd..7584a7544 100644 --- a/docs/version-specific/supported-software/i/iCount.md +++ b/docs/version-specific/supported-software/i/iCount.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180820`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 32b90690d..7053378dc 100644 --- a/docs/version-specific/supported-software/i/iVar.md +++ b/docs/version-specific/supported-software/i/iVar.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.1`` | ``GCC/10.2.0`` ``1.3.1`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e8e6f9f44..f7387080c 100644 --- a/docs/version-specific/supported-software/i/icc.md +++ b/docs/version-specific/supported-software/i/icc.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index adcfda8ca..d87f268cd 100644 --- a/docs/version-specific/supported-software/i/iccifort.md +++ b/docs/version-specific/supported-software/i/iccifort.md @@ -41,5 +41,5 @@ version | versionsuffix | toolchain ``2020.4.304`` | | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a15f6c27f..c3dacb21c 100644 --- a/docs/version-specific/supported-software/i/iccifortcuda.md +++ b/docs/version-specific/supported-software/i/iccifortcuda.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2020a`` | | ``system`` ``2020b`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b8d45f858..4aa20afc3 100644 --- a/docs/version-specific/supported-software/i/iced.md +++ b/docs/version-specific/supported-software/i/iced.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.10`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 507ba3358..45f12fdea 100644 --- a/docs/version-specific/supported-software/i/ichorCNA.md +++ b/docs/version-specific/supported-software/i/ichorCNA.md @@ -13,5 +13,5 @@ version | toolchain ``0.2.0`` | ``foss/2019b`` ``0.3.2-20191219`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 255f046c9..679c157b0 100644 --- a/docs/version-specific/supported-software/i/icmake.md +++ b/docs/version-specific/supported-software/i/icmake.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.23.02`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a750c6579..92bdf762c 100644 --- a/docs/version-specific/supported-software/i/idemux.md +++ b/docs/version-specific/supported-software/i/idemux.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.6`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index acb64118a..0202bd4e7 100644 --- a/docs/version-specific/supported-software/i/ieeg-cli.md +++ b/docs/version-specific/supported-software/i/ieeg-cli.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.14.56`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7ae6b019b..14268ce5a 100644 --- a/docs/version-specific/supported-software/i/ifort.md +++ b/docs/version-specific/supported-software/i/ifort.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4a441741c..a12df4772 100644 --- a/docs/version-specific/supported-software/i/igraph.md +++ b/docs/version-specific/supported-software/i/igraph.md @@ -24,5 +24,5 @@ version | toolchain ``0.9.4`` | ``foss/2021a`` ``0.9.5`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1a69e5ffc..f7441a794 100644 --- a/docs/version-specific/supported-software/i/igv-reports.md +++ b/docs/version-specific/supported-software/i/igv-reports.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.8`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 113c33276..fac46af7e 100644 --- a/docs/version-specific/supported-software/i/igvShiny.md +++ b/docs/version-specific/supported-software/i/igvShiny.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20240112`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e39a6ed39..581061283 100644 --- a/docs/version-specific/supported-software/i/iibff.md +++ b/docs/version-specific/supported-software/i/iibff.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dba45d0e6..70b51f51c 100644 --- a/docs/version-specific/supported-software/i/iimkl.md +++ b/docs/version-specific/supported-software/i/iimkl.md @@ -16,5 +16,5 @@ version | toolchain ``2023a`` | ``system`` ``2023b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 415a087de..268a2c5ca 100644 --- a/docs/version-specific/supported-software/i/iimpi.md +++ b/docs/version-specific/supported-software/i/iimpi.md @@ -58,5 +58,5 @@ version | versionsuffix | toolchain ``8.1.5`` | ``-GCC-4.9.3-2.25`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 65c69643f..b205b542e 100644 --- a/docs/version-specific/supported-software/i/iimpic.md +++ b/docs/version-specific/supported-software/i/iimpic.md @@ -17,5 +17,5 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3020c354a..e08b774c4 100644 --- a/docs/version-specific/supported-software/i/imagecodecs.md +++ b/docs/version-specific/supported-software/i/imagecodecs.md @@ -15,5 +15,5 @@ version | toolchain ``2022.9.26`` | ``foss/2022a`` ``2024.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 501a77714..f7cb4266c 100644 --- a/docs/version-specific/supported-software/i/imageio.md +++ b/docs/version-specific/supported-software/i/imageio.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``fosscuda/2020b`` ``2.9.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5cdfdcedd..4b38618d0 100644 --- a/docs/version-specific/supported-software/i/imake.md +++ b/docs/version-specific/supported-software/i/imake.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.8`` | ``GCCcore/10.3.0`` ``1.0.8`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9af31e952..300c152e7 100644 --- a/docs/version-specific/supported-software/i/imbalanced-learn.md +++ b/docs/version-specific/supported-software/i/imbalanced-learn.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.7.0`` | | ``foss/2020b`` ``0.9.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dde33f020..daf3099e9 100644 --- a/docs/version-specific/supported-software/i/imgaug.md +++ b/docs/version-specific/supported-software/i/imgaug.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``foss/2022a`` ``0.4.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 98f0fe373..b6512aff4 100644 --- a/docs/version-specific/supported-software/i/imkl-FFTW.md +++ b/docs/version-specific/supported-software/i/imkl-FFTW.md @@ -25,5 +25,5 @@ version | toolchain ``2023.2.0`` | ``iimpi/2023b`` ``2024.0.0`` | ``iimpi/2023.11`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0668bb87e..3df7b0015 100644 --- a/docs/version-specific/supported-software/i/imkl.md +++ b/docs/version-specific/supported-software/i/imkl.md @@ -94,5 +94,5 @@ version | versionsuffix | toolchain ``2023.2.0`` | | ``system`` ``2024.0.0`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e988f2882..46f6c4607 100644 --- a/docs/version-specific/supported-software/i/immunedeconv.md +++ b/docs/version-specific/supported-software/i/immunedeconv.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 61bf46e92..e09fdc920 100644 --- a/docs/version-specific/supported-software/i/impi.md +++ b/docs/version-specific/supported-software/i/impi.md @@ -76,5 +76,5 @@ version | versionsuffix | toolchain ``5.1.3.181`` | | ``iccifortcuda/2016.10`` ``system`` | | ``iccifort/system-GCC-system-2.29`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d40b10984..57157fa9e 100644 --- a/docs/version-specific/supported-software/i/imutils.md +++ b/docs/version-specific/supported-software/i/imutils.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.5.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.4`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f333651bd..c1e66d95b 100644 --- a/docs/version-specific/supported-software/i/index.md +++ b/docs/version-specific/supported-software/i/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (i) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - *i* - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../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) diff --git a/docs/version-specific/supported-software/i/indicators.md b/docs/version-specific/supported-software/i/indicators.md index c8cb24d45..791518167 100644 --- a/docs/version-specific/supported-software/i/indicators.md +++ b/docs/version-specific/supported-software/i/indicators.md @@ -13,5 +13,5 @@ version | toolchain ``2.2`` | ``GCCcore/11.2.0`` ``2.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 24a3994db..cc408a066 100644 --- a/docs/version-specific/supported-software/i/inferCNV.md +++ b/docs/version-specific/supported-software/i/inferCNV.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``1.3.3`` | | ``foss/2020b`` ``1.3.3`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 46640704c..9e2a51390 100644 --- a/docs/version-specific/supported-software/i/infercnvpy.md +++ b/docs/version-specific/supported-software/i/infercnvpy.md @@ -14,5 +14,5 @@ version | toolchain ``0.4.2`` | ``foss/2022a`` ``0.4.3`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af6aa1652..0b0c66733 100644 --- a/docs/version-specific/supported-software/i/inflection.md +++ b/docs/version-specific/supported-software/i/inflection.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.5`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4a96bbe64..862277fdf 100644 --- a/docs/version-specific/supported-software/i/inih.md +++ b/docs/version-specific/supported-software/i/inih.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``57`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81787f430..8d2076a74 100644 --- a/docs/version-specific/supported-software/i/inline.md +++ b/docs/version-specific/supported-software/i/inline.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.19`` | ``-R-4.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 450303063..24f926bb2 100644 --- a/docs/version-specific/supported-software/i/inputproto.md +++ b/docs/version-specific/supported-software/i/inputproto.md @@ -15,5 +15,5 @@ version | toolchain ``2.3.1`` | ``intel/2016a`` ``2.3.2`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 50fad3ce2..cf544d9a3 100644 --- a/docs/version-specific/supported-software/i/intel-compilers.md +++ b/docs/version-specific/supported-software/i/intel-compilers.md @@ -24,5 +24,5 @@ version | toolchain ``2023.2.1`` | ``system`` ``2024.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c589f6e39..0f7ebe7a8 100644 --- a/docs/version-specific/supported-software/i/intel.md +++ b/docs/version-specific/supported-software/i/intel.md @@ -57,5 +57,5 @@ version | versionsuffix | toolchain ``2023a`` | | ``system`` ``2023b`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 78448064d..664a20cc1 100644 --- a/docs/version-specific/supported-software/i/intelcuda.md +++ b/docs/version-specific/supported-software/i/intelcuda.md @@ -17,5 +17,5 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a8770bce7..f0505a165 100644 --- a/docs/version-specific/supported-software/i/intervaltree-python.md +++ b/docs/version-specific/supported-software/i/intervaltree-python.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``GCCcore/12.2.0`` ``3.1.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 23502befc..56070d6b4 100644 --- a/docs/version-specific/supported-software/i/intervaltree.md +++ b/docs/version-specific/supported-software/i/intervaltree.md @@ -17,5 +17,5 @@ version | toolchain ``0.1`` | ``GCCcore/12.3.0`` ``0.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 74909d178..f82b01551 100644 --- a/docs/version-specific/supported-software/i/intltool.md +++ b/docs/version-specific/supported-software/i/intltool.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``0.51.0`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``0.51.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fb513d414..91923858b 100644 --- a/docs/version-specific/supported-software/i/io_lib.md +++ b/docs/version-specific/supported-software/i/io_lib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.14.8`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9b1179632..3a4fd87ef 100644 --- a/docs/version-specific/supported-software/i/ioapi.md +++ b/docs/version-specific/supported-software/i/ioapi.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2-2020111`` | ``-nocpl`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f20595a6..b98faacd5 100644 --- a/docs/version-specific/supported-software/i/iodata.md +++ b/docs/version-specific/supported-software/i/iodata.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0a2`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dfc5c4233..6a62636eb 100644 --- a/docs/version-specific/supported-software/i/iomkl.md +++ b/docs/version-specific/supported-software/i/iomkl.md @@ -26,5 +26,5 @@ version | toolchain ``2021a`` | ``system`` ``2021b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b6164256d..708314e1f 100644 --- a/docs/version-specific/supported-software/i/iompi.md +++ b/docs/version-specific/supported-software/i/iompi.md @@ -26,5 +26,5 @@ version | toolchain ``2021a`` | ``system`` ``2021b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bfd8127b8..013543b7a 100644 --- a/docs/version-specific/supported-software/i/iperf.md +++ b/docs/version-specific/supported-software/i/iperf.md @@ -14,5 +14,5 @@ version | toolchain ``3.15`` | ``system`` ``3.16`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7661885aa..5d4c022b8 100644 --- a/docs/version-specific/supported-software/i/ipp.md +++ b/docs/version-specific/supported-software/i/ipp.md @@ -15,5 +15,5 @@ version | toolchain ``8.1.0.144`` | ``system`` ``9.0.1.150`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5742003e..646960553 100644 --- a/docs/version-specific/supported-software/i/ipympl.md +++ b/docs/version-specific/supported-software/i/ipympl.md @@ -14,5 +14,5 @@ version | toolchain ``0.9.3`` | ``gfbf/2023a`` ``0.9.4`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 930fc3e81..54cd340f2 100644 --- a/docs/version-specific/supported-software/i/ipyparallel.md +++ b/docs/version-specific/supported-software/i/ipyparallel.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.2.2`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9f6331400..c31131250 100644 --- a/docs/version-specific/supported-software/i/ipyrad.md +++ b/docs/version-specific/supported-software/i/ipyrad.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.15`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d7343bf04..8d9be112f 100644 --- a/docs/version-specific/supported-software/i/irodsfs.md +++ b/docs/version-specific/supported-software/i/irodsfs.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.8.12`` | ``-linux-amd64`` | ``system`` ``0.8.9`` | ``-linux-amd64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3424d747e..732931d0f 100644 --- a/docs/version-specific/supported-software/i/isoCirc.md +++ b/docs/version-specific/supported-software/i/isoCirc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1114be99..3fed8bb11 100644 --- a/docs/version-specific/supported-software/i/ispc.md +++ b/docs/version-specific/supported-software/i/ispc.md @@ -15,5 +15,5 @@ version | toolchain ``1.16.0`` | ``system`` ``1.6.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca0383b7d..7f05427f9 100644 --- a/docs/version-specific/supported-software/i/itac.md +++ b/docs/version-specific/supported-software/i/itac.md @@ -23,5 +23,5 @@ version | toolchain ``8.1.4.045`` | ``system`` ``9.0.3.051`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 439bcd167..79445a222 100644 --- a/docs/version-specific/supported-software/i/itpp.md +++ b/docs/version-specific/supported-software/i/itpp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3.1`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9153bce4a..4d93aa709 100644 --- a/docs/version-specific/supported-software/j/JAGS.md +++ b/docs/version-specific/supported-software/j/JAGS.md @@ -27,5 +27,5 @@ version | toolchain ``4.3.2`` | ``foss/2022b`` ``4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ceaf4c70..1eca7c769 100644 --- a/docs/version-specific/supported-software/j/JAXFrontCE.md +++ b/docs/version-specific/supported-software/j/JAXFrontCE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.75`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ba255b42c..d9303cbde 100644 --- a/docs/version-specific/supported-software/j/JSON-GLib.md +++ b/docs/version-specific/supported-software/j/JSON-GLib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.2`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7099be93d..9e094b486 100644 --- a/docs/version-specific/supported-software/j/JUBE.md +++ b/docs/version-specific/supported-software/j/JUBE.md @@ -17,5 +17,5 @@ version | toolchain ``2.4.1`` | ``system`` ``2.4.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a735ac14f..e062ece95 100644 --- a/docs/version-specific/supported-software/j/JUnit.md +++ b/docs/version-specific/supported-software/j/JUnit.md @@ -29,5 +29,5 @@ version | versionsuffix | toolchain ``4.12`` | ``-Java-1.8.0_92`` | ``system`` ``4.12`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8c5ab43d..f05f17d3d 100644 --- a/docs/version-specific/supported-software/j/JWM.md +++ b/docs/version-specific/supported-software/j/JWM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.5`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c32ba43c8..a58f2cac2 100644 --- a/docs/version-specific/supported-software/j/Jansson.md +++ b/docs/version-specific/supported-software/j/Jansson.md @@ -16,5 +16,5 @@ version | toolchain ``2.14`` | ``GCC/12.3.0`` ``2.6`` | ``GCC/4.8.3`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc4312786..2194622d4 100644 --- a/docs/version-specific/supported-software/j/JasPer.md +++ b/docs/version-specific/supported-software/j/JasPer.md @@ -37,5 +37,5 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.3.0`` ``4.0.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 190608b4c..7b36d29e5 100644 --- a/docs/version-specific/supported-software/j/Jasmine.md +++ b/docs/version-specific/supported-software/j/Jasmine.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-Java-15`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fd6acb191..b79c9c0df 100644 --- a/docs/version-specific/supported-software/j/Java.md +++ b/docs/version-specific/supported-software/j/Java.md @@ -83,5 +83,5 @@ version | versionsuffix | toolchain ``8.402`` | | ``system`` ``8`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f54b77b4..28d00dd84 100644 --- a/docs/version-specific/supported-software/j/JavaFX.md +++ b/docs/version-specific/supported-software/j/JavaFX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``11.0.2`` | ``_linux-x64_bin-sdk`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94252b560..a4764b378 100644 --- a/docs/version-specific/supported-software/j/Jblob.md +++ b/docs/version-specific/supported-software/j/Jblob.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e42895a7..fbbf41b36 100644 --- a/docs/version-specific/supported-software/j/Jellyfish.md +++ b/docs/version-specific/supported-software/j/Jellyfish.md @@ -26,5 +26,5 @@ version | toolchain ``2.3.0`` | ``GCC/8.2.0-2.31.1`` ``2.3.0`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 33b4c5845..c3fbb9cd3 100644 --- a/docs/version-specific/supported-software/j/JiTCODE.md +++ b/docs/version-specific/supported-software/j/JiTCODE.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.4.0`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c598612fc..0f6dbab16 100644 --- a/docs/version-specific/supported-software/j/Jmol.md +++ b/docs/version-specific/supported-software/j/Jmol.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``16.1.41`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 670372f5c..6afcecc87 100644 --- a/docs/version-specific/supported-software/j/Jorg.md +++ b/docs/version-specific/supported-software/j/Jorg.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 86bf985c8..a65ab074a 100644 --- a/docs/version-specific/supported-software/j/JsonCpp.md +++ b/docs/version-specific/supported-software/j/JsonCpp.md @@ -20,5 +20,5 @@ version | toolchain ``1.9.5`` | ``GCCcore/12.2.0`` ``1.9.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e1729309..57c2315bd 100644 --- a/docs/version-specific/supported-software/j/Judy.md +++ b/docs/version-specific/supported-software/j/Judy.md @@ -18,5 +18,5 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.2.0`` ``1.0.5`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb0923138..c07d93fb2 100644 --- a/docs/version-specific/supported-software/j/Julia.md +++ b/docs/version-specific/supported-software/j/Julia.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``1.9.2`` | ``-linux-x86_64`` | ``system`` ``1.9.3`` | ``-linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 97e19e7d4..65b1b538d 100644 --- a/docs/version-specific/supported-software/j/Jupyter-bundle.md +++ b/docs/version-specific/supported-software/j/Jupyter-bundle.md @@ -13,5 +13,5 @@ version | toolchain ``20230823`` | ``GCCcore/12.3.0`` ``20240522`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d4c45eccd..16e32a7de 100644 --- a/docs/version-specific/supported-software/j/JupyterHub.md +++ b/docs/version-specific/supported-software/j/JupyterHub.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``4.0.2`` | | ``GCCcore/12.3.0`` ``4.1.5`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d2f3a79f..ab8c32a15 100644 --- a/docs/version-specific/supported-software/j/JupyterLab.md +++ b/docs/version-specific/supported-software/j/JupyterLab.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``4.0.5`` | | ``GCCcore/12.3.0`` ``4.2.0`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d6c4700e6..cfd7f5491 100644 --- a/docs/version-specific/supported-software/j/JupyterNotebook.md +++ b/docs/version-specific/supported-software/j/JupyterNotebook.md @@ -14,5 +14,5 @@ version | toolchain ``7.0.3`` | ``GCCcore/12.2.0`` ``7.2.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5691e8d23..45772ec1a 100644 --- a/docs/version-specific/supported-software/j/index.md +++ b/docs/version-specific/supported-software/j/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (j) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - *j* - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../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) diff --git a/docs/version-specific/supported-software/j/jModelTest.md b/docs/version-specific/supported-software/j/jModelTest.md index a79fc901b..9f600f646 100644 --- a/docs/version-specific/supported-software/j/jModelTest.md +++ b/docs/version-specific/supported-software/j/jModelTest.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.10r20160303`` | ``-Java-1.8.0_92`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 61d264099..164553b37 100644 --- a/docs/version-specific/supported-software/j/jax.md +++ b/docs/version-specific/supported-software/j/jax.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1bdbea09e..ef3db054d 100644 --- a/docs/version-specific/supported-software/j/jbigkit.md +++ b/docs/version-specific/supported-software/j/jbigkit.md @@ -23,5 +23,5 @@ version | toolchain ``2.1`` | ``GCCcore/8.3.0`` ``2.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2434a58e2..f2d0dc6ff 100644 --- a/docs/version-specific/supported-software/j/jedi-language-server.md +++ b/docs/version-specific/supported-software/j/jedi-language-server.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.39.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b951539ca..d6098f985 100644 --- a/docs/version-specific/supported-software/j/jedi.md +++ b/docs/version-specific/supported-software/j/jedi.md @@ -13,5 +13,5 @@ version | toolchain ``0.18.1`` | ``GCCcore/11.3.0`` ``0.19.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 04682837c..5072a8d5a 100644 --- a/docs/version-specific/supported-software/j/jemalloc.md +++ b/docs/version-specific/supported-software/j/jemalloc.md @@ -28,5 +28,5 @@ version | toolchain ``5.3.0`` | ``GCCcore/12.2.0`` ``5.3.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7332febf4..88187d854 100644 --- a/docs/version-specific/supported-software/j/jhbuild.md +++ b/docs/version-specific/supported-software/j/jhbuild.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.15.92`` | ``GCCcore/4.9.3`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aaac04ebc..37a3552c2 100644 --- a/docs/version-specific/supported-software/j/jiter.md +++ b/docs/version-specific/supported-software/j/jiter.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5c5de8ba..bc8987311 100644 --- a/docs/version-specific/supported-software/j/joypy.md +++ b/docs/version-specific/supported-software/j/joypy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.2.4`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0bb85e591..150e07c4c 100644 --- a/docs/version-specific/supported-software/j/jq.md +++ b/docs/version-specific/supported-software/j/jq.md @@ -17,5 +17,5 @@ version | toolchain ``1.6`` | ``GCCcore/12.2.0`` ``1.6`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d4cdd802f..55c625acd 100644 --- a/docs/version-specific/supported-software/j/json-c.md +++ b/docs/version-specific/supported-software/j/json-c.md @@ -18,5 +18,5 @@ version | toolchain ``0.16`` | ``GCCcore/12.3.0`` ``0.17`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af59aa7c1..ec75a76a0 100644 --- a/docs/version-specific/supported-software/j/json-fortran.md +++ b/docs/version-specific/supported-software/j/json-fortran.md @@ -20,5 +20,5 @@ version | toolchain ``8.3.0`` | ``intel-compilers/2022.1.0`` ``8.3.0`` | ``intel-compilers/2022.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ac1bcb67..5cbd23b52 100644 --- a/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md +++ b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md @@ -13,5 +13,5 @@ version | toolchain ``0.7.0`` | ``GCCcore/11.3.0`` ``0.7.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 70e9f2a5c..59b803d33 100644 --- a/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md @@ -14,5 +14,5 @@ version | toolchain ``0.3.4`` | ``GCCcore/10.3.0`` ``0.5.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a4f14a694..df79f6304 100644 --- a/docs/version-specific/supported-software/j/jupyter-resource-usage.md +++ b/docs/version-specific/supported-software/j/jupyter-resource-usage.md @@ -16,5 +16,5 @@ version | toolchain ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca3e7802d..cbd2ec9d6 100644 --- a/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md @@ -13,5 +13,5 @@ version | toolchain ``2.1.0`` | ``GCCcore/11.3.0`` ``2.2.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b841d2cc3..b2b3900f7 100644 --- a/docs/version-specific/supported-software/j/jupyter-server-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-server-proxy.md @@ -16,5 +16,5 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.3.0`` ``4.1.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 33c1b22b8..95489151f 100644 --- a/docs/version-specific/supported-software/j/jupyter-server.md +++ b/docs/version-specific/supported-software/j/jupyter-server.md @@ -15,5 +15,5 @@ version | toolchain ``2.7.0`` | ``GCCcore/12.2.0`` ``2.7.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 39ee8ac2c..679095e7d 100644 --- a/docs/version-specific/supported-software/j/jupyterlab-lmod.md +++ b/docs/version-specific/supported-software/j/jupyterlab-lmod.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9f70f85e9..22a703711 100644 --- a/docs/version-specific/supported-software/j/jupyterlmod.md +++ b/docs/version-specific/supported-software/j/jupyterlmod.md @@ -14,5 +14,5 @@ version | toolchain ``4.0.3`` | ``GCCcore/11.3.0`` ``4.0.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d54e150f..c7842f434 100644 --- a/docs/version-specific/supported-software/j/jxrlib.md +++ b/docs/version-specific/supported-software/j/jxrlib.md @@ -15,5 +15,5 @@ version | toolchain ``1.1`` | ``GCCcore/11.3.0`` ``1.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1945b1c8..d0ea2c38b 100644 --- a/docs/version-specific/supported-software/k/KAT.md +++ b/docs/version-specific/supported-software/k/KAT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.4.2`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.4.2`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0b4c4ad65..821d4087f 100644 --- a/docs/version-specific/supported-software/k/KITE.md +++ b/docs/version-specific/supported-software/k/KITE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 42b4010c5..0f9c35ee8 100644 --- a/docs/version-specific/supported-software/k/KMC.md +++ b/docs/version-specific/supported-software/k/KMC.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``3.2.1`` | | ``GCC/11.2.0`` ``3.2.2`` | | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c29a54d2d..f8bb92449 100644 --- a/docs/version-specific/supported-software/k/KMCP.md +++ b/docs/version-specific/supported-software/k/KMCP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e20629095..d1c25d06e 100644 --- a/docs/version-specific/supported-software/k/KNIME.md +++ b/docs/version-specific/supported-software/k/KNIME.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.6.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 35f022f1e..3d8e0f170 100644 --- a/docs/version-specific/supported-software/k/KWIML.md +++ b/docs/version-specific/supported-software/k/KWIML.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20180201`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 80387dabf..2dc7a74bb 100644 --- a/docs/version-specific/supported-software/k/KaHIP.md +++ b/docs/version-specific/supported-software/k/KaHIP.md @@ -14,5 +14,5 @@ version | toolchain ``3.14`` | ``gompi/2022b`` ``3.16`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0bbaca41d..1d270db87 100644 --- a/docs/version-specific/supported-software/k/Kaiju.md +++ b/docs/version-specific/supported-software/k/Kaiju.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.7.2`` | ``-Python-3.7.2`` | ``iimpi/2019a`` ``1.7.3`` | ``-Python-3.7.4`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9251c2cef..ac0b4162f 100644 --- a/docs/version-specific/supported-software/k/Kaleido.md +++ b/docs/version-specific/supported-software/k/Kaleido.md @@ -16,5 +16,5 @@ version | toolchain ``0.2.1`` | ``GCCcore/12.2.0`` ``0.2.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6f9324604..6ca15bf93 100644 --- a/docs/version-specific/supported-software/k/Kalign.md +++ b/docs/version-specific/supported-software/k/Kalign.md @@ -17,5 +17,5 @@ version | toolchain ``3.3.5`` | ``GCCcore/11.3.0`` ``3.4.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f53fa1245..50041856c 100644 --- a/docs/version-specific/supported-software/k/Kent_tools.md +++ b/docs/version-specific/supported-software/k/Kent_tools.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``442`` | | ``GCC/11.3.0`` ``457`` | | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 72a526527..aa9493f2a 100644 --- a/docs/version-specific/supported-software/k/Keras.md +++ b/docs/version-specific/supported-software/k/Keras.md @@ -38,5 +38,5 @@ version | versionsuffix | toolchain ``2.4.3`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` ``2.4.3`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cda700b92..cfeb58dea 100644 --- a/docs/version-specific/supported-software/k/KerasTuner.md +++ b/docs/version-specific/supported-software/k/KerasTuner.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d24551aa..cacb935db 100644 --- a/docs/version-specific/supported-software/k/KmerGenie.md +++ b/docs/version-specific/supported-software/k/KmerGenie.md @@ -13,5 +13,5 @@ version | toolchain ``1.7044`` | ``intel/2017a`` ``1.7048`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5880bac27..ab971f854 100644 --- a/docs/version-specific/supported-software/k/Kraken.md +++ b/docs/version-specific/supported-software/k/Kraken.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` ``1.1.1`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 79ca806e4..c1975c110 100644 --- a/docs/version-specific/supported-software/k/Kraken2.md +++ b/docs/version-specific/supported-software/k/Kraken2.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``gompi/2021b`` ``2.1.2`` | | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f9966691d..73d8a9b4e 100644 --- a/docs/version-specific/supported-software/k/KrakenUniq.md +++ b/docs/version-specific/supported-software/k/KrakenUniq.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.3`` | ``GCC/11.3.0`` ``1.0.4`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 637aa23ad..da6a12235 100644 --- a/docs/version-specific/supported-software/k/Kratos.md +++ b/docs/version-specific/supported-software/k/Kratos.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``6.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``6.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84fdc0eb4..70e0e688c 100644 --- a/docs/version-specific/supported-software/k/KronaTools.md +++ b/docs/version-specific/supported-software/k/KronaTools.md @@ -19,5 +19,5 @@ version | toolchain ``2.8.1`` | ``GCCcore/12.2.0`` ``2.8.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae4077363..1b8ad0a86 100644 --- a/docs/version-specific/supported-software/k/KyotoCabinet.md +++ b/docs/version-specific/supported-software/k/KyotoCabinet.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.77`` | ``GCCcore/8.2.0`` ``1.2.80`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4b7e0783d..53349bb0c 100644 --- a/docs/version-specific/supported-software/k/index.md +++ b/docs/version-specific/supported-software/k/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (k) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - *k* - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../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) diff --git a/docs/version-specific/supported-software/k/kWIP.md b/docs/version-specific/supported-software/k/kWIP.md index 80a8e042a..c579ddf45 100644 --- a/docs/version-specific/supported-software/k/kWIP.md +++ b/docs/version-specific/supported-software/k/kWIP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.0`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae541a9ff..bc5be9034 100644 --- a/docs/version-specific/supported-software/k/kallisto.md +++ b/docs/version-specific/supported-software/k/kallisto.md @@ -29,5 +29,5 @@ version | toolchain ``0.48.0`` | ``gompi/2022a`` ``0.50.1`` | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55d66ae31..14f5be5fa 100644 --- a/docs/version-specific/supported-software/k/kb-python.md +++ b/docs/version-specific/supported-software/k/kb-python.md @@ -13,5 +13,5 @@ version | toolchain ``0.27.3`` | ``foss/2021b`` ``0.27.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cc5af7407..0f1231d01 100644 --- a/docs/version-specific/supported-software/k/kbproto.md +++ b/docs/version-specific/supported-software/k/kbproto.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.7`` | ``intel/2016a`` ``1.0.7`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 706a88cc6..06038e029 100644 --- a/docs/version-specific/supported-software/k/kedro.md +++ b/docs/version-specific/supported-software/k/kedro.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.16.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6993056c3..86612a0f2 100644 --- a/docs/version-specific/supported-software/k/khmer.md +++ b/docs/version-specific/supported-software/k/khmer.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 56683ff44..440aaea1c 100644 --- a/docs/version-specific/supported-software/k/kim-api.md +++ b/docs/version-specific/supported-software/k/kim-api.md @@ -25,5 +25,5 @@ version | toolchain ``2.3.0`` | ``GCC/12.3.0`` ``2.3.0`` | ``intel-compilers/2023.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 04f22f2ce..40588eebd 100644 --- a/docs/version-specific/supported-software/k/kineto.md +++ b/docs/version-specific/supported-software/k/kineto.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.0`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 20a82f76c..2eda0f421 100644 --- a/docs/version-specific/supported-software/k/king.md +++ b/docs/version-specific/supported-software/k/king.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.4`` | ``system`` ``2.2.7`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ec55ce8e..213b86985 100644 --- a/docs/version-specific/supported-software/k/kma.md +++ b/docs/version-specific/supported-software/k/kma.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.22`` | ``intel/2019b`` ``1.4.12a`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c3a90a12b..a548d5841 100644 --- a/docs/version-specific/supported-software/k/kneaddata.md +++ b/docs/version-specific/supported-software/k/kneaddata.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.12.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 808ea2327..227d360a9 100644 --- a/docs/version-specific/supported-software/k/kpcalg.md +++ b/docs/version-specific/supported-software/k/kpcalg.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 19ebe04f5..1c072df5c 100644 --- a/docs/version-specific/supported-software/k/krbalancing.md +++ b/docs/version-specific/supported-software/k/krbalancing.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.0b0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7979b3959..3cf662974 100644 --- a/docs/version-specific/supported-software/k/kwant.md +++ b/docs/version-specific/supported-software/k/kwant.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.4.1`` | ``-Python-3.7.2`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 41a9d719e..2833205b3 100644 --- a/docs/version-specific/supported-software/l/LADR.md +++ b/docs/version-specific/supported-software/l/LADR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2009-11A`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c6957d7fc..0483a57cf 100644 --- a/docs/version-specific/supported-software/l/LAME.md +++ b/docs/version-specific/supported-software/l/LAME.md @@ -26,5 +26,5 @@ version | toolchain ``3.99.5`` | ``foss/2016b`` ``3.99.5`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 80267d3ba..844742d86 100644 --- a/docs/version-specific/supported-software/l/LAMMPS.md +++ b/docs/version-specific/supported-software/l/LAMMPS.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``7Aug2019`` | ``-Python-3.7.4-kokkos-OCTP`` | ``intel/2019b`` ``7Aug2019`` | ``-Python-3.7.4-kokkos`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 80af6d609..f60f69f58 100644 --- a/docs/version-specific/supported-software/l/LAPACK.md +++ b/docs/version-specific/supported-software/l/LAPACK.md @@ -17,5 +17,5 @@ version | toolchain ``3.8.0`` | ``GCC/7.3.0-2.30`` ``3.9.1`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 201a4f9fc..0372ff360 100644 --- a/docs/version-specific/supported-software/l/LASSO-Python.md +++ b/docs/version-specific/supported-software/l/LASSO-Python.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6dbb27762..f494e8699 100644 --- a/docs/version-specific/supported-software/l/LAST.md +++ b/docs/version-specific/supported-software/l/LAST.md @@ -15,5 +15,5 @@ version | toolchain ``869`` | ``intel/2017a`` ``914`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc748bd51..a26cc8146 100644 --- a/docs/version-specific/supported-software/l/LASTZ.md +++ b/docs/version-specific/supported-software/l/LASTZ.md @@ -15,5 +15,5 @@ version | toolchain ``1.04.03`` | ``foss/2019b`` ``1.04.22`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ed2ef74a0..5647cf6af 100644 --- a/docs/version-specific/supported-software/l/LBFGS++.md +++ b/docs/version-specific/supported-software/l/LBFGS++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5728d8e1f..334fd82d3 100644 --- a/docs/version-specific/supported-software/l/LCov.md +++ b/docs/version-specific/supported-software/l/LCov.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.13`` | ``GCCcore/7.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 555094e11..c9278f751 100644 --- a/docs/version-specific/supported-software/l/LDC.md +++ b/docs/version-specific/supported-software/l/LDC.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.30.0`` | | ``GCCcore/11.3.0`` ``1.36.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 349932674..e45587272 100644 --- a/docs/version-specific/supported-software/l/LEMON.md +++ b/docs/version-specific/supported-software/l/LEMON.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.1`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6320c0a91..793eec268 100644 --- a/docs/version-specific/supported-software/l/LERC.md +++ b/docs/version-specific/supported-software/l/LERC.md @@ -17,5 +17,5 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.3.0`` ``4.0.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 85771a3f4..280e4d894 100644 --- a/docs/version-specific/supported-software/l/LHAPDF.md +++ b/docs/version-specific/supported-software/l/LHAPDF.md @@ -13,5 +13,5 @@ version | toolchain ``6.5.3`` | ``GCC/11.3.0`` ``6.5.4`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6cd79b353..b2a1c8398 100644 --- a/docs/version-specific/supported-software/l/LIANA.md +++ b/docs/version-specific/supported-software/l/LIANA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.11`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5eaa48b0d..44b9deb53 100644 --- a/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md +++ b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.30`` | ``-MATLAB-2022b-r5`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d9ec9a923..54d855b22 100644 --- a/docs/version-specific/supported-software/l/LIBSVM-Python.md +++ b/docs/version-specific/supported-software/l/LIBSVM-Python.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.30`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index de282845e..b78b6a77b 100644 --- a/docs/version-specific/supported-software/l/LIBSVM.md +++ b/docs/version-specific/supported-software/l/LIBSVM.md @@ -20,5 +20,5 @@ version | toolchain ``3.25`` | ``GCCcore/11.2.0`` ``3.30`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcde88d35..2f14a7489 100644 --- a/docs/version-specific/supported-software/l/LISFLOOD-FP.md +++ b/docs/version-specific/supported-software/l/LISFLOOD-FP.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``8.1`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` ``8.1`` | | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d7cde1cff..45ab63e73 100644 --- a/docs/version-specific/supported-software/l/LLDB.md +++ b/docs/version-specific/supported-software/l/LLDB.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``11.0.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 888a817e4..478f089aa 100644 --- a/docs/version-specific/supported-software/l/LLVM.md +++ b/docs/version-specific/supported-software/l/LLVM.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``9.0.1`` | | ``GCCcore/8.3.0`` ``9.0.1`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 20c7651d7..8ddd6dc90 100644 --- a/docs/version-specific/supported-software/l/LMDB.md +++ b/docs/version-specific/supported-software/l/LMDB.md @@ -24,5 +24,5 @@ version | toolchain ``0.9.29`` | ``GCCcore/12.2.0`` ``0.9.31`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 36ab6f14a..37703cbcb 100644 --- a/docs/version-specific/supported-software/l/LMfit.md +++ b/docs/version-specific/supported-software/l/LMfit.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``1.0.3`` | | ``intel/2022a`` ``1.2.1`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 15f329737..0036f566e 100644 --- a/docs/version-specific/supported-software/l/LOHHLA.md +++ b/docs/version-specific/supported-software/l/LOHHLA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.11.05`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a9580b975..69128917c 100644 --- a/docs/version-specific/supported-software/l/LPJmL.md +++ b/docs/version-specific/supported-software/l/LPJmL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0.003`` | ``iimpi/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76c2323e7..e0310e1f0 100644 --- a/docs/version-specific/supported-software/l/LPeg.md +++ b/docs/version-specific/supported-software/l/LPeg.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f8866f6c..26105190c 100644 --- a/docs/version-specific/supported-software/l/LS-PrePost.md +++ b/docs/version-specific/supported-software/l/LS-PrePost.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``4.7.15`` | | ``system`` ``4.7.8`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e52cc3f1e..1697b8a9c 100644 --- a/docs/version-specific/supported-software/l/LSD2.md +++ b/docs/version-specific/supported-software/l/LSD2.md @@ -18,5 +18,5 @@ version | toolchain ``2.4.1`` | ``GCCcore/12.2.0`` ``2.4.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 28c42a704..ed19f4333 100644 --- a/docs/version-specific/supported-software/l/LSMS.md +++ b/docs/version-specific/supported-software/l/LSMS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3_rev237`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ecdf0f7b3..f9b866c11 100644 --- a/docs/version-specific/supported-software/l/LTR_retriever.md +++ b/docs/version-specific/supported-software/l/LTR_retriever.md @@ -13,5 +13,5 @@ version | toolchain ``2.9.0`` | ``foss/2020b`` ``2.9.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5757b68d8..e7047dbca 100644 --- a/docs/version-specific/supported-software/l/LUMPY.md +++ b/docs/version-specific/supported-software/l/LUMPY.md @@ -13,5 +13,5 @@ version | toolchain ``0.2.13`` | ``foss/2016b`` ``0.3.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f60e8f31..a85675f85 100644 --- a/docs/version-specific/supported-software/l/LUSCUS.md +++ b/docs/version-specific/supported-software/l/LUSCUS.md @@ -13,5 +13,5 @@ version | toolchain ``0.8.6`` | ``foss/2018b`` ``0.8.6`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2ac295848..0b4c742b7 100644 --- a/docs/version-specific/supported-software/l/LZO.md +++ b/docs/version-specific/supported-software/l/LZO.md @@ -32,5 +32,5 @@ version | toolchain ``2.10`` | ``fosscuda/2018b`` ``2.10`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 61465a6bb..8b373ee62 100644 --- a/docs/version-specific/supported-software/l/L_RNA_scaffolder.md +++ b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20141124`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``20190530`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d084cf1b4..bd9c54476 100644 --- a/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md +++ b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.16.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1e49f8a78..845e021bd 100644 --- a/docs/version-specific/supported-software/l/Lace.md +++ b/docs/version-specific/supported-software/l/Lace.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.14.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 313b73064..9c116e5f4 100644 --- a/docs/version-specific/supported-software/l/LangChain.md +++ b/docs/version-specific/supported-software/l/LangChain.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af7fd9099..e63c503fb 100644 --- a/docs/version-specific/supported-software/l/LayoutParser.md +++ b/docs/version-specific/supported-software/l/LayoutParser.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 60b88222e..c69a0e1b1 100644 --- a/docs/version-specific/supported-software/l/LeadIT.md +++ b/docs/version-specific/supported-software/l/LeadIT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.9`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 473d88bb7..4ce63076b 100644 --- a/docs/version-specific/supported-software/l/Leptonica.md +++ b/docs/version-specific/supported-software/l/Leptonica.md @@ -15,5 +15,5 @@ version | toolchain ``1.82.0`` | ``GCCcore/10.3.0`` ``1.83.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 918e4a950..0c80e51d9 100644 --- a/docs/version-specific/supported-software/l/LevelDB.md +++ b/docs/version-specific/supported-software/l/LevelDB.md @@ -18,5 +18,5 @@ version | toolchain ``1.22`` | ``GCCcore/8.2.0`` ``1.22`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e0342df42..8fc38af52 100644 --- a/docs/version-specific/supported-software/l/Levenshtein.md +++ b/docs/version-specific/supported-software/l/Levenshtein.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.24.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2996591c7..c06b43851 100644 --- a/docs/version-specific/supported-software/l/LiBis.md +++ b/docs/version-specific/supported-software/l/LiBis.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200428`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a6779eb68..ccdbddf2c 100644 --- a/docs/version-specific/supported-software/l/LibLZF.md +++ b/docs/version-specific/supported-software/l/LibLZF.md @@ -15,5 +15,5 @@ version | toolchain ``3.6`` | ``GCCcore/11.3.0`` ``3.6`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1bbb9e607..48d87737d 100644 --- a/docs/version-specific/supported-software/l/LibSoup.md +++ b/docs/version-specific/supported-software/l/LibSoup.md @@ -17,5 +17,5 @@ version | toolchain ``3.0.7`` | ``GCC/11.2.0`` ``3.0.8`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 25aa218a6..1dca64256 100644 --- a/docs/version-specific/supported-software/l/LibTIFF.md +++ b/docs/version-specific/supported-software/l/LibTIFF.md @@ -38,5 +38,5 @@ version | toolchain ``4.6.0`` | ``GCCcore/13.2.0`` ``4.6.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 29e48075d..a2ca2f276 100644 --- a/docs/version-specific/supported-software/l/LibUUID.md +++ b/docs/version-specific/supported-software/l/LibUUID.md @@ -18,5 +18,5 @@ version | toolchain ``1.0.3`` | ``intel/2017a`` ``1.0.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8c22185bd..f6092b48e 100644 --- a/docs/version-specific/supported-software/l/Libint.md +++ b/docs/version-specific/supported-software/l/Libint.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/12.2.0`` ``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8c9508c7e..aba4d4fdb 100644 --- a/docs/version-specific/supported-software/l/Lighter.md +++ b/docs/version-specific/supported-software/l/Lighter.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.2`` | ``GCC/11.2.0`` ``1.1.2`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4c4aea77d..0533bbf80 100644 --- a/docs/version-specific/supported-software/l/Lightning.md +++ b/docs/version-specific/supported-software/l/Lightning.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae6705206..02298f004 100644 --- a/docs/version-specific/supported-software/l/LinBox.md +++ b/docs/version-specific/supported-software/l/LinBox.md @@ -14,5 +14,5 @@ version | toolchain ``1.7.0`` | ``gfbf/2022a`` ``1.7.0`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 22e29f101..76528959a 100644 --- a/docs/version-specific/supported-software/l/Lingeling.md +++ b/docs/version-specific/supported-software/l/Lingeling.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``bcp`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 969292c62..dae25be14 100644 --- a/docs/version-specific/supported-software/l/LittleCMS.md +++ b/docs/version-specific/supported-software/l/LittleCMS.md @@ -31,5 +31,5 @@ version | toolchain ``2.9`` | ``foss/2018a`` ``2.9`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 853922945..fb08250ac 100644 --- a/docs/version-specific/supported-software/l/Lmod.md +++ b/docs/version-specific/supported-software/l/Lmod.md @@ -26,5 +26,5 @@ version | toolchain ``6.4.2`` | ``system`` ``7.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 653e04878..a118bfd63 100644 --- a/docs/version-specific/supported-software/l/LncLOOM.md +++ b/docs/version-specific/supported-software/l/LncLOOM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 179e3c6c8..65a403b04 100644 --- a/docs/version-specific/supported-software/l/LoFreq.md +++ b/docs/version-specific/supported-software/l/LoFreq.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.1.3.1`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.1.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3806e0564..b8fe9d2c8 100644 --- a/docs/version-specific/supported-software/l/LoRDEC.md +++ b/docs/version-specific/supported-software/l/LoRDEC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c39ad900f..5448405bc 100644 --- a/docs/version-specific/supported-software/l/LocARNA.md +++ b/docs/version-specific/supported-software/l/LocARNA.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.9.2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.9.2.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c027fdd1e..d6033c62a 100644 --- a/docs/version-specific/supported-software/l/Log-Log4perl.md +++ b/docs/version-specific/supported-software/l/Log-Log4perl.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.47`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6c51f68e1..038d95185 100644 --- a/docs/version-specific/supported-software/l/Loki.md +++ b/docs/version-specific/supported-software/l/Loki.md @@ -16,5 +16,5 @@ version | toolchain ``0.1.7`` | ``intel/2016b`` ``0.1.7`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 93929aca2..bdc4498e9 100644 --- a/docs/version-specific/supported-software/l/Longshot.md +++ b/docs/version-specific/supported-software/l/Longshot.md @@ -16,5 +16,5 @@ version | toolchain ``0.4.3`` | ``GCCcore/10.2.0`` ``0.4.5`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e01968fc1..651a0397d 100644 --- a/docs/version-specific/supported-software/l/LoopTools.md +++ b/docs/version-specific/supported-software/l/LoopTools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.15`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f044a986..55d23082e 100644 --- a/docs/version-specific/supported-software/l/LtrDetector.md +++ b/docs/version-specific/supported-software/l/LtrDetector.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1f687e2b..84c4f1ec8 100644 --- a/docs/version-specific/supported-software/l/Lua.md +++ b/docs/version-specific/supported-software/l/Lua.md @@ -33,5 +33,5 @@ version | toolchain ``5.4.6`` | ``GCCcore/12.3.0`` ``5.4.6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7c2b2b341..f4b364dfe 100644 --- a/docs/version-specific/supported-software/l/LuaJIT.md +++ b/docs/version-specific/supported-software/l/LuaJIT.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.2`` | ``GCC/4.9.2`` ``2.1.0-beta3_20230602`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 72a882e6d..a89824ab1 100644 --- a/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md +++ b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1-20220411`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3f64b62c..fe84eb1f1 100644 --- a/docs/version-specific/supported-software/l/LuaRocks.md +++ b/docs/version-specific/supported-software/l/LuaRocks.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.9.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 267abd520..e93a7f2d1 100644 --- a/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md +++ b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20170718`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e168b3be4..86796077d 100644 --- a/docs/version-specific/supported-software/l/index.md +++ b/docs/version-specific/supported-software/l/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (l) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - *l* - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../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) diff --git a/docs/version-specific/supported-software/l/lDDT.md b/docs/version-specific/supported-software/l/lDDT.md index 988e0deb3..4d9959ae1 100644 --- a/docs/version-specific/supported-software/l/lDDT.md +++ b/docs/version-specific/supported-software/l/lDDT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d63de1dd..75d2bdfe6 100644 --- a/docs/version-specific/supported-software/l/lagrangian-filtering.md +++ b/docs/version-specific/supported-software/l/lagrangian-filtering.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0a6a59aef..ae4ce012e 100644 --- a/docs/version-specific/supported-software/l/lancet.md +++ b/docs/version-specific/supported-software/l/lancet.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 87f8636ed..35a483017 100644 --- a/docs/version-specific/supported-software/l/langchain-anthropic.md +++ b/docs/version-specific/supported-software/l/langchain-anthropic.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.15`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 582cf8f0a..726cfea4a 100644 --- a/docs/version-specific/supported-software/l/lavaan.md +++ b/docs/version-specific/supported-software/l/lavaan.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.6-4.1433`` | ``-R-3.6.0`` | ``foss/2019a`` ``0.6-9`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 634baf264..1e3482cbb 100644 --- a/docs/version-specific/supported-software/l/lcalc.md +++ b/docs/version-specific/supported-software/l/lcalc.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.5`` | ``GCCcore/11.3.0`` ``2.0.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 163f2ac46..ffd9b6a7b 100644 --- a/docs/version-specific/supported-software/l/leafcutter.md +++ b/docs/version-specific/supported-software/l/leafcutter.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.9`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3c3873f96..125411705 100644 --- a/docs/version-specific/supported-software/l/leidenalg.md +++ b/docs/version-specific/supported-software/l/leidenalg.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``0.8.8`` | | ``foss/2021b`` ``0.9.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 31c256e7b..cbf47dc08 100644 --- a/docs/version-specific/supported-software/l/less.md +++ b/docs/version-specific/supported-software/l/less.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``458`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3bf36ca33..7ee5d21d4 100644 --- a/docs/version-specific/supported-software/l/lftp.md +++ b/docs/version-specific/supported-software/l/lftp.md @@ -14,5 +14,5 @@ version | toolchain ``4.8.4`` | ``GCCcore/6.4.0`` ``4.9.2`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4782dd9c2..0e8b25347 100644 --- a/docs/version-specific/supported-software/l/libBigWig.md +++ b/docs/version-specific/supported-software/l/libBigWig.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.4`` | ``GCCcore/8.3.0`` ``0.4.6`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 00b39f932..020048323 100644 --- a/docs/version-specific/supported-software/l/libFLAME.md +++ b/docs/version-specific/supported-software/l/libFLAME.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``5.2.0`` | | ``GCCcore/10.3.0`` ``5.2.0`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0fecdb045..759df4939 100644 --- a/docs/version-specific/supported-software/l/libGDSII.md +++ b/docs/version-specific/supported-software/l/libGDSII.md @@ -13,5 +13,5 @@ version | toolchain ``0.21`` | ``GCCcore/10.2.0`` ``0.21`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc056c0d6..ccf5a1372 100644 --- a/docs/version-specific/supported-software/l/libGLU.md +++ b/docs/version-specific/supported-software/l/libGLU.md @@ -41,5 +41,5 @@ version | versionsuffix | toolchain ``9.0.3`` | | ``GCCcore/12.3.0`` ``9.0.3`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4693cf140..1a178d537 100644 --- a/docs/version-specific/supported-software/l/libGridXC.md +++ b/docs/version-specific/supported-software/l/libGridXC.md @@ -19,5 +19,5 @@ version | toolchain ``0.9.6`` | ``iimpi/2021b`` ``1.1.0`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ec7781611..d07136c48 100644 --- a/docs/version-specific/supported-software/l/libICE.md +++ b/docs/version-specific/supported-software/l/libICE.md @@ -14,5 +14,5 @@ version | toolchain ``1.0.9`` | ``gimkl/2.11.5`` ``1.0.9`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 09cdb40e5..524733174 100644 --- a/docs/version-specific/supported-software/l/libMemcached.md +++ b/docs/version-specific/supported-software/l/libMemcached.md @@ -14,5 +14,5 @@ version | toolchain ``1.0.18`` | ``GCCcore/6.4.0`` ``1.0.18`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f9c302f1c..15c617287 100644 --- a/docs/version-specific/supported-software/l/libPSML.md +++ b/docs/version-specific/supported-software/l/libPSML.md @@ -21,5 +21,5 @@ version | toolchain ``1.1.7`` | ``foss/2017a`` ``1.1.8`` | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a3b15490..148b04893 100644 --- a/docs/version-specific/supported-software/l/libQGLViewer.md +++ b/docs/version-specific/supported-software/l/libQGLViewer.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``2.7.1`` | | ``intel/2018a`` ``2.8.0`` | | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9c5064704..853c42e1b 100644 --- a/docs/version-specific/supported-software/l/libRmath.md +++ b/docs/version-specific/supported-software/l/libRmath.md @@ -17,5 +17,5 @@ version | toolchain ``4.2.0`` | ``GCCcore/10.3.0`` ``4.2.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1dea20742..eb33be1c6 100644 --- a/docs/version-specific/supported-software/l/libSBML.md +++ b/docs/version-specific/supported-software/l/libSBML.md @@ -14,5 +14,5 @@ version | toolchain ``5.19.0`` | ``GCC/10.3.0`` ``5.19.7`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index df98b35f2..6c14ff3ca 100644 --- a/docs/version-specific/supported-software/l/libSM.md +++ b/docs/version-specific/supported-software/l/libSM.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.2`` | ``gimkl/2.11.5`` ``1.2.2`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ec1a0108a..7906d7316 100644 --- a/docs/version-specific/supported-software/l/libStatGen.md +++ b/docs/version-specific/supported-software/l/libStatGen.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.15`` | ``GCCcore/10.2.0`` ``20190330`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8ab390bb4..0956f2475 100644 --- a/docs/version-specific/supported-software/l/libWallModelledLES.md +++ b/docs/version-specific/supported-software/l/libWallModelledLES.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9f957c67..0cbc91d82 100644 --- a/docs/version-specific/supported-software/l/libX11.md +++ b/docs/version-specific/supported-software/l/libX11.md @@ -14,5 +14,5 @@ version | toolchain ``1.6.3`` | ``gimkl/2.11.5`` ``1.6.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0fccad6d8..405b8d1d2 100644 --- a/docs/version-specific/supported-software/l/libXau.md +++ b/docs/version-specific/supported-software/l/libXau.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.8`` | ``gimkl/2.11.5`` ``1.0.8`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 800986450..0a8a65e2a 100644 --- a/docs/version-specific/supported-software/l/libXcursor.md +++ b/docs/version-specific/supported-software/l/libXcursor.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.14`` | ``foss/2016a`` ``1.1.14`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 77d9af038..08e536f1d 100644 --- a/docs/version-specific/supported-software/l/libXdamage.md +++ b/docs/version-specific/supported-software/l/libXdamage.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.4`` | ``gimkl/2.11.5`` ``1.1.4`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c1f2aec45..e185627ee 100644 --- a/docs/version-specific/supported-software/l/libXdmcp.md +++ b/docs/version-specific/supported-software/l/libXdmcp.md @@ -15,5 +15,5 @@ version | toolchain ``1.1.2`` | ``gimkl/2.11.5`` ``1.1.2`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d10a54c15..28f69b460 100644 --- a/docs/version-specific/supported-software/l/libXext.md +++ b/docs/version-specific/supported-software/l/libXext.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.3`` | ``gimkl/2.11.5`` ``1.3.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3ef64ff66..b58741ebf 100644 --- a/docs/version-specific/supported-software/l/libXfixes.md +++ b/docs/version-specific/supported-software/l/libXfixes.md @@ -15,5 +15,5 @@ version | toolchain ``5.0.1`` | ``intel/2016a`` ``5.0.2`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 72064fbf3..f56ccb8b4 100644 --- a/docs/version-specific/supported-software/l/libXfont.md +++ b/docs/version-specific/supported-software/l/libXfont.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.5.1`` | ``-freetype-2.6.3`` | ``intel/2016a`` ``1.5.1`` | | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 16985ce64..05c9cd621 100644 --- a/docs/version-specific/supported-software/l/libXft.md +++ b/docs/version-specific/supported-software/l/libXft.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3.2`` | ``-fontconfig-2.11.95`` | ``intel/2016a`` ``2.3.2`` | | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1c6705f19..4b57b9272 100644 --- a/docs/version-specific/supported-software/l/libXi.md +++ b/docs/version-specific/supported-software/l/libXi.md @@ -13,5 +13,5 @@ version | toolchain ``1.7.6`` | ``foss/2016a`` ``1.7.6`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 982a3e5dc..680b8cfd2 100644 --- a/docs/version-specific/supported-software/l/libXinerama.md +++ b/docs/version-specific/supported-software/l/libXinerama.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.3`` | ``foss/2016a`` ``1.1.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f386eb40a..da71e7686 100644 --- a/docs/version-specific/supported-software/l/libXmu.md +++ b/docs/version-specific/supported-software/l/libXmu.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.2`` | ``foss/2016a`` ``1.1.2`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76bc85bff..4fac4576c 100644 --- a/docs/version-specific/supported-software/l/libXp.md +++ b/docs/version-specific/supported-software/l/libXp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06ba020d1..688672eca 100644 --- a/docs/version-specific/supported-software/l/libXpm.md +++ b/docs/version-specific/supported-software/l/libXpm.md @@ -13,5 +13,5 @@ version | toolchain ``3.5.11`` | ``foss/2016a`` ``3.5.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4646bb8e..6822ece35 100644 --- a/docs/version-specific/supported-software/l/libXrandr.md +++ b/docs/version-specific/supported-software/l/libXrandr.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.0`` | ``foss/2016a`` ``1.5.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 537009dc0..1bc05bd6a 100644 --- a/docs/version-specific/supported-software/l/libXrender.md +++ b/docs/version-specific/supported-software/l/libXrender.md @@ -14,5 +14,5 @@ version | toolchain ``0.9.9`` | ``gimkl/2.11.5`` ``0.9.9`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7bb1c2c23..90f6b9bd1 100644 --- a/docs/version-specific/supported-software/l/libXt.md +++ b/docs/version-specific/supported-software/l/libXt.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.5`` | ``gimkl/2.11.5`` ``1.1.5`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a8a184da9..13179d3e4 100644 --- a/docs/version-specific/supported-software/l/libXxf86vm.md +++ b/docs/version-specific/supported-software/l/libXxf86vm.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.4`` | ``foss/2016a`` ``1.1.4`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9b3228164..6f448ee36 100644 --- a/docs/version-specific/supported-software/l/libabigail.md +++ b/docs/version-specific/supported-software/l/libabigail.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9744a077d..8cb3e1dd2 100644 --- a/docs/version-specific/supported-software/l/libaec.md +++ b/docs/version-specific/supported-software/l/libaec.md @@ -18,5 +18,5 @@ version | toolchain ``1.0.6`` | ``GCCcore/12.3.0`` ``1.0.6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 672a3325b..dd2b4b827 100644 --- a/docs/version-specific/supported-software/l/libaed2.md +++ b/docs/version-specific/supported-software/l/libaed2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d5148133..5766ae6a6 100644 --- a/docs/version-specific/supported-software/l/libaio.md +++ b/docs/version-specific/supported-software/l/libaio.md @@ -20,5 +20,5 @@ version | toolchain ``0.3.113`` | ``GCCcore/12.3.0`` ``0.3.113`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d0bd72028..c76bdfc50 100644 --- a/docs/version-specific/supported-software/l/libarchive.md +++ b/docs/version-specific/supported-software/l/libarchive.md @@ -23,5 +23,5 @@ version | toolchain ``3.7.2`` | ``GCCcore/13.2.0`` ``3.7.4`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 326410dcb..01b7465b3 100644 --- a/docs/version-specific/supported-software/l/libav.md +++ b/docs/version-specific/supported-software/l/libav.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``11.10`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6c1afc4f2..6065d4ab1 100644 --- a/docs/version-specific/supported-software/l/libavif.md +++ b/docs/version-specific/supported-software/l/libavif.md @@ -15,5 +15,5 @@ version | toolchain ``0.9.0`` | ``foss/2020b`` ``1.0.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 961e5dad5..49e040afd 100644 --- a/docs/version-specific/supported-software/l/libbaseencode.md +++ b/docs/version-specific/supported-software/l/libbaseencode.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.11`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f46c2142..e1ba3da74 100644 --- a/docs/version-specific/supported-software/l/libbitmask.md +++ b/docs/version-specific/supported-software/l/libbitmask.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6bd705f84..acae04908 100644 --- a/docs/version-specific/supported-software/l/libbraiding.md +++ b/docs/version-specific/supported-software/l/libbraiding.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 256a953b1..b9101deb4 100644 --- a/docs/version-specific/supported-software/l/libcdms.md +++ b/docs/version-specific/supported-software/l/libcdms.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 720106f4b..c4c53acdb 100644 --- a/docs/version-specific/supported-software/l/libcerf.md +++ b/docs/version-specific/supported-software/l/libcerf.md @@ -32,5 +32,5 @@ version | toolchain ``2.3`` | ``GCCcore/12.2.0`` ``2.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index afd4ce4ac..b29b3029a 100644 --- a/docs/version-specific/supported-software/l/libcint.md +++ b/docs/version-specific/supported-software/l/libcint.md @@ -17,5 +17,5 @@ version | toolchain ``5.4.0`` | ``gfbf/2023a`` ``5.5.0`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d153e861b..cebadffd8 100644 --- a/docs/version-specific/supported-software/l/libcircle.md +++ b/docs/version-specific/supported-software/l/libcircle.md @@ -18,5 +18,5 @@ version | toolchain ``0.3`` | ``gompi/2023a`` ``0.3`` | ``iimpi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f4956390..a88ca76ab 100644 --- a/docs/version-specific/supported-software/l/libcmaes.md +++ b/docs/version-specific/supported-software/l/libcmaes.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.5`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f096e9439..1f6005221 100644 --- a/docs/version-specific/supported-software/l/libconfig.md +++ b/docs/version-specific/supported-software/l/libconfig.md @@ -16,5 +16,5 @@ version | toolchain ``1.7.3`` | ``GCCcore/10.3.0`` ``1.7.3`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a2b390ad0..24778cc50 100644 --- a/docs/version-specific/supported-software/l/libcotp.md +++ b/docs/version-specific/supported-software/l/libcotp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.3`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 343f76a63..0690b88b9 100644 --- a/docs/version-specific/supported-software/l/libcpuset.md +++ b/docs/version-specific/supported-software/l/libcpuset.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f689a4bd2..a40c41661 100644 --- a/docs/version-specific/supported-software/l/libcroco.md +++ b/docs/version-specific/supported-software/l/libcroco.md @@ -14,5 +14,5 @@ version | toolchain ``0.6.13`` | ``GCC/10.2.0`` ``0.6.13`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1c2f5d3d4..dd2cd4ee3 100644 --- a/docs/version-specific/supported-software/l/libctl.md +++ b/docs/version-specific/supported-software/l/libctl.md @@ -15,5 +15,5 @@ version | toolchain ``4.1.3`` | ``GCCcore/6.4.0`` ``4.5.1`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 936353e1a..6c5c1f96d 100644 --- a/docs/version-specific/supported-software/l/libdap.md +++ b/docs/version-specific/supported-software/l/libdap.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``3.20.7`` | | ``GCCcore/9.3.0`` ``3.20.8`` | | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 13178567e..7a2d4a75f 100644 --- a/docs/version-specific/supported-software/l/libde265.md +++ b/docs/version-specific/supported-software/l/libde265.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.8`` | ``GCC/10.3.0`` ``1.0.8`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e68cb3f47..996e39c88 100644 --- a/docs/version-specific/supported-software/l/libdeflate.md +++ b/docs/version-specific/supported-software/l/libdeflate.md @@ -22,5 +22,5 @@ version | toolchain ``1.8`` | ``GCCcore/10.3.0`` ``1.8`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2c546d6b1..782b8a802 100644 --- a/docs/version-specific/supported-software/l/libdivsufsort.md +++ b/docs/version-specific/supported-software/l/libdivsufsort.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b67cf7ec0..56be6e81a 100644 --- a/docs/version-specific/supported-software/l/libdrm.md +++ b/docs/version-specific/supported-software/l/libdrm.md @@ -34,5 +34,5 @@ version | toolchain ``2.4.97`` | ``GCCcore/8.2.0`` ``2.4.99`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7074f382a..a89f661bb 100644 --- a/docs/version-specific/supported-software/l/libdrs.md +++ b/docs/version-specific/supported-software/l/libdrs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index da43b0a7a..beefaca95 100644 --- a/docs/version-specific/supported-software/l/libdwarf.md +++ b/docs/version-specific/supported-software/l/libdwarf.md @@ -22,5 +22,5 @@ version | toolchain ``20210305`` | ``GCCcore/10.3.0`` ``20210528`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ce7daeb60..4dd24487d 100644 --- a/docs/version-specific/supported-software/l/libedit.md +++ b/docs/version-specific/supported-software/l/libedit.md @@ -17,5 +17,5 @@ version | toolchain ``20210910`` | ``GCCcore/10.3.0`` ``20210910`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b6b4f5c2..eb1638196 100644 --- a/docs/version-specific/supported-software/l/libelf.md +++ b/docs/version-specific/supported-software/l/libelf.md @@ -21,5 +21,5 @@ version | toolchain ``0.8.13`` | ``GCCcore/8.2.0`` ``0.8.13`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44aba8656..4d9347671 100644 --- a/docs/version-specific/supported-software/l/libemf.md +++ b/docs/version-specific/supported-software/l/libemf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.13`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b60d2a418..538b889d9 100644 --- a/docs/version-specific/supported-software/l/libepoxy.md +++ b/docs/version-specific/supported-software/l/libepoxy.md @@ -23,5 +23,5 @@ version | toolchain ``1.5.8`` | ``GCCcore/10.3.0`` ``1.5.8`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3735571af..5b3e40686 100644 --- a/docs/version-specific/supported-software/l/libev.md +++ b/docs/version-specific/supported-software/l/libev.md @@ -14,5 +14,5 @@ version | toolchain ``4.33`` | ``GCC/11.3.0`` ``4.33`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3266dd276..8aaf4c58c 100644 --- a/docs/version-specific/supported-software/l/libevent.md +++ b/docs/version-specific/supported-software/l/libevent.md @@ -34,5 +34,5 @@ version | toolchain ``2.1.8`` | ``GCCcore/8.3.0`` ``2.1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 920675b1a..22f0c0dc1 100644 --- a/docs/version-specific/supported-software/l/libexif.md +++ b/docs/version-specific/supported-software/l/libexif.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.24`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9cfab9208..68641294d 100644 --- a/docs/version-specific/supported-software/l/libfabric.md +++ b/docs/version-specific/supported-software/l/libfabric.md @@ -24,5 +24,5 @@ version | toolchain ``1.21.0`` | ``GCCcore/13.3.0`` ``1.9.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 496646c4b..6766ce098 100644 --- a/docs/version-specific/supported-software/l/libfdf.md +++ b/docs/version-specific/supported-software/l/libfdf.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-serial`` | ``intel-compilers/2021.4.0`` ``0.5.0`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 550cfd484..89a129bdd 100644 --- a/docs/version-specific/supported-software/l/libffcall.md +++ b/docs/version-specific/supported-software/l/libffcall.md @@ -15,5 +15,5 @@ version | toolchain ``2.2`` | ``GCCcore/9.3.0`` ``2.4`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c42708dc0..183f6f94c 100644 --- a/docs/version-specific/supported-software/l/libffi.md +++ b/docs/version-specific/supported-software/l/libffi.md @@ -38,5 +38,5 @@ version | toolchain ``3.4.4`` | ``GCCcore/13.2.0`` ``3.4.5`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae39b3b4f..df4388c2f 100644 --- a/docs/version-specific/supported-software/l/libfontenc.md +++ b/docs/version-specific/supported-software/l/libfontenc.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.3`` | ``gimkl/2.11.5`` ``1.1.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 834701080..72ebda58b 100644 --- a/docs/version-specific/supported-software/l/libfyaml.md +++ b/docs/version-specific/supported-software/l/libfyaml.md @@ -13,5 +13,5 @@ version | toolchain ``0.9`` | ``GCCcore/12.2.0`` ``0.9`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 39ac1f259..b13ba38b0 100644 --- a/docs/version-specific/supported-software/l/libgcrypt.md +++ b/docs/version-specific/supported-software/l/libgcrypt.md @@ -20,5 +20,5 @@ version | toolchain ``1.9.2`` | ``GCCcore/10.3.0`` ``1.9.3`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e893818d9..9644190b9 100644 --- a/docs/version-specific/supported-software/l/libgd.md +++ b/docs/version-specific/supported-software/l/libgd.md @@ -32,5 +32,5 @@ version | toolchain ``2.3.3`` | ``GCCcore/12.3.0`` ``2.3.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c9a5f5739..50fbb6bc6 100644 --- a/docs/version-specific/supported-software/l/libgdiplus.md +++ b/docs/version-specific/supported-software/l/libgdiplus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.1`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 47d274cc5..f4a9e757b 100644 --- a/docs/version-specific/supported-software/l/libgeotiff.md +++ b/docs/version-specific/supported-software/l/libgeotiff.md @@ -23,5 +23,5 @@ version | toolchain ``1.7.1`` | ``GCCcore/12.2.0`` ``1.7.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 85f638017..3e93f408d 100644 --- a/docs/version-specific/supported-software/l/libgit2.md +++ b/docs/version-specific/supported-software/l/libgit2.md @@ -20,5 +20,5 @@ version | toolchain ``1.7.1`` | ``GCCcore/12.3.0`` ``1.7.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 37402a251..f1457d6a7 100644 --- a/docs/version-specific/supported-software/l/libglade.md +++ b/docs/version-specific/supported-software/l/libglade.md @@ -15,5 +15,5 @@ version | toolchain ``2.6.4`` | ``intel/2017b`` ``2.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4be43d64..2edc50e15 100644 --- a/docs/version-specific/supported-software/l/libglvnd.md +++ b/docs/version-specific/supported-software/l/libglvnd.md @@ -21,5 +21,5 @@ version | toolchain ``1.6.0`` | ``GCCcore/12.3.0`` ``1.7.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2c9511911..4a540b78c 100644 --- a/docs/version-specific/supported-software/l/libgpg-error.md +++ b/docs/version-specific/supported-software/l/libgpg-error.md @@ -20,5 +20,5 @@ version | toolchain ``1.46`` | ``GCCcore/11.3.0`` ``1.48`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7ca531113..4c9aa2393 100644 --- a/docs/version-specific/supported-software/l/libgpuarray.md +++ b/docs/version-specific/supported-software/l/libgpuarray.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``0.7.6`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``0.7.6`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cabe8bfde..53e26d114 100644 --- a/docs/version-specific/supported-software/l/libgtextutils.md +++ b/docs/version-specific/supported-software/l/libgtextutils.md @@ -15,5 +15,5 @@ version | toolchain ``0.7`` | ``foss/2016b`` ``0.7`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9083eae7b..7b36754f9 100644 --- a/docs/version-specific/supported-software/l/libgxps.md +++ b/docs/version-specific/supported-software/l/libgxps.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1e5df4c0c..3801ceab2 100644 --- a/docs/version-specific/supported-software/l/libhandy.md +++ b/docs/version-specific/supported-software/l/libhandy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f17d8f14d..78aa9b692 100644 --- a/docs/version-specific/supported-software/l/libharu.md +++ b/docs/version-specific/supported-software/l/libharu.md @@ -24,5 +24,5 @@ version | toolchain ``2.3.0`` | ``intel/2017a`` ``2.3.0`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 737ad75f6..44db5b600 100644 --- a/docs/version-specific/supported-software/l/libheif.md +++ b/docs/version-specific/supported-software/l/libheif.md @@ -15,5 +15,5 @@ version | toolchain ``1.16.2`` | ``GCC/11.3.0`` ``1.17.6`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b843362b..103d496f2 100644 --- a/docs/version-specific/supported-software/l/libhomfly.md +++ b/docs/version-specific/supported-software/l/libhomfly.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.02r6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b2b9d2d40..ce19e68dd 100644 --- a/docs/version-specific/supported-software/l/libibmad.md +++ b/docs/version-specific/supported-software/l/libibmad.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.12`` | ``GCC/4.9.3-2.25`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 92167a42d..2cbe80f59 100644 --- a/docs/version-specific/supported-software/l/libibumad.md +++ b/docs/version-specific/supported-software/l/libibumad.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.10.2`` | ``GCC/4.9.3-2.25`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4cb6922c5..ea573fa54 100644 --- a/docs/version-specific/supported-software/l/libiconv.md +++ b/docs/version-specific/supported-software/l/libiconv.md @@ -26,5 +26,5 @@ version | toolchain ``1.17`` | ``GCCcore/13.2.0`` ``1.17`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bc7b473ec..47ff14d50 100644 --- a/docs/version-specific/supported-software/l/libidn.md +++ b/docs/version-specific/supported-software/l/libidn.md @@ -24,5 +24,5 @@ version | toolchain ``1.38`` | ``GCCcore/11.2.0`` ``1.41`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 794d84735..a4e898429 100644 --- a/docs/version-specific/supported-software/l/libidn2.md +++ b/docs/version-specific/supported-software/l/libidn2.md @@ -22,5 +22,5 @@ version | toolchain ``2.3.2`` | ``GCCcore/13.2.0`` ``2.3.7`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 48677afae..5d11db524 100644 --- a/docs/version-specific/supported-software/l/libjpeg-turbo.md +++ b/docs/version-specific/supported-software/l/libjpeg-turbo.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``3.0.1`` | | ``GCCcore/13.2.0`` ``3.0.1`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eea3293c7..911e141fc 100644 --- a/docs/version-specific/supported-software/l/libjxl.md +++ b/docs/version-specific/supported-software/l/libjxl.md @@ -16,5 +16,5 @@ version | toolchain ``0.8.2`` | ``GCCcore/12.3.0`` ``0.8.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 513ae3a57..df5ca0059 100644 --- a/docs/version-specific/supported-software/l/libleidenalg.md +++ b/docs/version-specific/supported-software/l/libleidenalg.md @@ -13,5 +13,5 @@ version | toolchain ``0.11.1`` | ``foss/2022b`` ``0.11.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0f636c635..8d18b77a5 100644 --- a/docs/version-specific/supported-software/l/libmad.md +++ b/docs/version-specific/supported-software/l/libmad.md @@ -13,5 +13,5 @@ version | toolchain ``0.15.1b`` | ``GCCcore/11.3.0`` ``0.15.1b`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcead85dc..166bfc35a 100644 --- a/docs/version-specific/supported-software/l/libmatheval.md +++ b/docs/version-specific/supported-software/l/libmatheval.md @@ -20,5 +20,5 @@ version | toolchain ``1.1.11`` | ``intel/2016a`` ``1.1.11`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 58de17cac..f7a633dd2 100644 --- a/docs/version-specific/supported-software/l/libmaus2.md +++ b/docs/version-specific/supported-software/l/libmaus2.md @@ -14,5 +14,5 @@ version | toolchain ``2.0.499`` | ``GCC/11.3.0`` ``2.0.813`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea5272f61..e06cef998 100644 --- a/docs/version-specific/supported-software/l/libmbd.md +++ b/docs/version-specific/supported-software/l/libmbd.md @@ -15,5 +15,5 @@ version | toolchain ``0.10.4`` | ``intel/2020b`` ``0.10.4`` | ``intel/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ba870643c..4e396c212 100644 --- a/docs/version-specific/supported-software/l/libmicrohttpd.md +++ b/docs/version-specific/supported-software/l/libmicrohttpd.md @@ -15,5 +15,5 @@ version | toolchain ``0.9.73`` | ``GCCcore/8.2.0`` ``0.9.73`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca94f484c..624478a1b 100644 --- a/docs/version-specific/supported-software/l/libmo_unpack.md +++ b/docs/version-specific/supported-software/l/libmo_unpack.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1.2`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bcf172aaf..4b544ba1b 100644 --- a/docs/version-specific/supported-software/l/libmypaint.md +++ b/docs/version-specific/supported-software/l/libmypaint.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.1`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd1a1710f..6048e294d 100644 --- a/docs/version-specific/supported-software/l/libnsl.md +++ b/docs/version-specific/supported-software/l/libnsl.md @@ -15,5 +15,5 @@ version | toolchain ``2.0.0`` | ``GCCcore/12.2.0`` ``2.0.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 059660054..2c963f19b 100644 --- a/docs/version-specific/supported-software/l/libobjcryst.md +++ b/docs/version-specific/supported-software/l/libobjcryst.md @@ -13,5 +13,5 @@ version | toolchain ``2017.2.3`` | ``intel/2020a`` ``2021.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cb4c1e978..35fbddc2d 100644 --- a/docs/version-specific/supported-software/l/libogg.md +++ b/docs/version-specific/supported-software/l/libogg.md @@ -17,5 +17,5 @@ version | toolchain ``1.3.5`` | ``GCCcore/12.2.0`` ``1.3.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6014bf9dd..cb46dcbea 100644 --- a/docs/version-specific/supported-software/l/libopus.md +++ b/docs/version-specific/supported-software/l/libopus.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.1`` | ``GCCcore/12.2.0`` ``1.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index beb24ac80..9805c8716 100644 --- a/docs/version-specific/supported-software/l/libosmium.md +++ b/docs/version-specific/supported-software/l/libosmium.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.15.4`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.15.6`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c1ee7fd39..9707610fd 100644 --- a/docs/version-specific/supported-software/l/libpci.md +++ b/docs/version-specific/supported-software/l/libpci.md @@ -15,5 +15,5 @@ version | toolchain ``3.7.0`` | ``GCCcore/11.2.0`` ``3.7.0`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9c77f8f6f..65312ed1f 100644 --- a/docs/version-specific/supported-software/l/libpciaccess.md +++ b/docs/version-specific/supported-software/l/libpciaccess.md @@ -31,5 +31,5 @@ version | toolchain ``0.17`` | ``GCCcore/13.2.0`` ``0.18.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b812da5f..56f1c2a9f 100644 --- a/docs/version-specific/supported-software/l/libplinkio.md +++ b/docs/version-specific/supported-software/l/libplinkio.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.8`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f17f2b796..6622124ff 100644 --- a/docs/version-specific/supported-software/l/libpng.md +++ b/docs/version-specific/supported-software/l/libpng.md @@ -45,5 +45,5 @@ version | toolchain ``1.6.40`` | ``GCCcore/13.2.0`` ``1.6.43`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 555b834ef..e151fb026 100644 --- a/docs/version-specific/supported-software/l/libpsl.md +++ b/docs/version-specific/supported-software/l/libpsl.md @@ -18,5 +18,5 @@ version | toolchain ``0.21.1`` | ``GCCcore/11.2.0`` ``0.21.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 614b4f0b3..a1433810d 100644 --- a/docs/version-specific/supported-software/l/libpsortb.md +++ b/docs/version-specific/supported-software/l/libpsortb.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5395352eb..5852cdc79 100644 --- a/docs/version-specific/supported-software/l/libpspio.md +++ b/docs/version-specific/supported-software/l/libpspio.md @@ -17,5 +17,5 @@ version | toolchain ``0.2.4`` | ``intel-compilers/2021.2.0`` ``0.2.4`` | ``intel-compilers/2021.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf9ce83e0..8a1f4b784 100644 --- a/docs/version-specific/supported-software/l/libpthread-stubs.md +++ b/docs/version-specific/supported-software/l/libpthread-stubs.md @@ -18,5 +18,5 @@ version | toolchain ``0.3`` | ``intel/2016b`` ``0.4`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 54dfb809d..d390447e6 100644 --- a/docs/version-specific/supported-software/l/libreadline.md +++ b/docs/version-specific/supported-software/l/libreadline.md @@ -51,5 +51,5 @@ version | toolchain ``8.2`` | ``GCCcore/13.2.0`` ``8.2`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f7871b2ba..62da18d59 100644 --- a/docs/version-specific/supported-software/l/librosa.md +++ b/docs/version-specific/supported-software/l/librosa.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.7.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.7.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a91ae72a..9b13007fb 100644 --- a/docs/version-specific/supported-software/l/librsb.md +++ b/docs/version-specific/supported-software/l/librsb.md @@ -16,5 +16,5 @@ version | toolchain ``1.3.0.0`` | ``GCC/10.2.0`` ``1.3.0.1`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3f6a927b6..4d364ca63 100644 --- a/docs/version-specific/supported-software/l/librsvg.md +++ b/docs/version-specific/supported-software/l/librsvg.md @@ -17,5 +17,5 @@ version | toolchain ``2.55.1`` | ``GCCcore/11.3.0`` ``2.58.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a10c8ba09..1fad9aa10 100644 --- a/docs/version-specific/supported-software/l/librttopo.md +++ b/docs/version-specific/supported-software/l/librttopo.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 832ca705b..b5c9060ba 100644 --- a/docs/version-specific/supported-software/l/libsamplerate.md +++ b/docs/version-specific/supported-software/l/libsamplerate.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.9`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bc1319a38..d59c25909 100644 --- a/docs/version-specific/supported-software/l/libsigc++.md +++ b/docs/version-specific/supported-software/l/libsigc++.md @@ -18,5 +18,5 @@ version | toolchain ``2.12.1`` | ``GCCcore/11.3.0`` ``3.4.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a4c6d1302..5e55d29d0 100644 --- a/docs/version-specific/supported-software/l/libsigsegv.md +++ b/docs/version-specific/supported-software/l/libsigsegv.md @@ -15,5 +15,5 @@ version | toolchain ``2.13`` | ``GCCcore/10.2.0`` ``2.14`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b36697d0a..74cb23f5d 100644 --- a/docs/version-specific/supported-software/l/libsndfile.md +++ b/docs/version-specific/supported-software/l/libsndfile.md @@ -23,5 +23,5 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.2.0`` ``1.2.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ec2a38439..ee425b5b4 100644 --- a/docs/version-specific/supported-software/l/libsodium.md +++ b/docs/version-specific/supported-software/l/libsodium.md @@ -31,5 +31,5 @@ version | toolchain ``1.0.6`` | ``intel/2016a`` ``1.0.8`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7979d8b97..8e08f3372 100644 --- a/docs/version-specific/supported-software/l/libspatialindex.md +++ b/docs/version-specific/supported-software/l/libspatialindex.md @@ -21,5 +21,5 @@ version | toolchain ``1.9.3`` | ``GCCcore/12.3.0`` ``1.9.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7590597d8..6c4ea15d1 100644 --- a/docs/version-specific/supported-software/l/libspatialite.md +++ b/docs/version-specific/supported-software/l/libspatialite.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``4.3.0a`` | | ``intel/2016b`` ``5.0.1`` | | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8ef18837f..37381235b 100644 --- a/docs/version-specific/supported-software/l/libspectre.md +++ b/docs/version-specific/supported-software/l/libspectre.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.12`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ceef06d81..6e5af4886 100644 --- a/docs/version-specific/supported-software/l/libssh.md +++ b/docs/version-specific/supported-software/l/libssh.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.0`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8806cdaec..916d0ef17 100644 --- a/docs/version-specific/supported-software/l/libsupermesh.md +++ b/docs/version-specific/supported-software/l/libsupermesh.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2025-01-25`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1f3187eb5..ec77dfa89 100644 --- a/docs/version-specific/supported-software/l/libtar.md +++ b/docs/version-specific/supported-software/l/libtar.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.20`` | ``GCCcore/7.3.0`` ``1.2.20`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8d694eaca..91d8c1429 100644 --- a/docs/version-specific/supported-software/l/libtasn1.md +++ b/docs/version-specific/supported-software/l/libtasn1.md @@ -23,5 +23,5 @@ version | toolchain ``4.7`` | ``foss/2016a`` ``4.7`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3c6e08967..bf130abde 100644 --- a/docs/version-specific/supported-software/l/libtecla.md +++ b/docs/version-specific/supported-software/l/libtecla.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6.3`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2c5627009..159265630 100644 --- a/docs/version-specific/supported-software/l/libtirpc.md +++ b/docs/version-specific/supported-software/l/libtirpc.md @@ -22,5 +22,5 @@ version | toolchain ``1.3.3`` | ``GCCcore/12.3.0`` ``1.3.4`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe8136d01..6b15e436a 100644 --- a/docs/version-specific/supported-software/l/libtool.md +++ b/docs/version-specific/supported-software/l/libtool.md @@ -59,5 +59,5 @@ version | toolchain ``2.4.7`` | ``GCCcore/13.3.0`` ``2.4.7`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 64ecb7872..b91f2933d 100644 --- a/docs/version-specific/supported-software/l/libtree.md +++ b/docs/version-specific/supported-software/l/libtree.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.0`` | ``GCCcore/10.3.0`` ``3.0.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 48f126c30..9832d1bd2 100644 --- a/docs/version-specific/supported-software/l/libunistring.md +++ b/docs/version-specific/supported-software/l/libunistring.md @@ -29,5 +29,5 @@ version | toolchain ``1.1`` | ``GCCcore/10.2.0`` ``1.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1815eda4a..4688c2de4 100644 --- a/docs/version-specific/supported-software/l/libunwind.md +++ b/docs/version-specific/supported-software/l/libunwind.md @@ -29,5 +29,5 @@ version | toolchain ``1.6.2`` | ``GCCcore/12.3.0`` ``1.6.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 45dba359a..7468985a9 100644 --- a/docs/version-specific/supported-software/l/libutempter.md +++ b/docs/version-specific/supported-software/l/libutempter.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.6.2`` | ``GCC/6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 849ec4cb9..49910f271 100644 --- a/docs/version-specific/supported-software/l/libuv.md +++ b/docs/version-specific/supported-software/l/libuv.md @@ -13,5 +13,5 @@ version | toolchain ``1.37.0`` | ``GCCcore/8.3.0`` ``1.48.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 82cbffc72..6a7b89765 100644 --- a/docs/version-specific/supported-software/l/libvdwxc.md +++ b/docs/version-specific/supported-software/l/libvdwxc.md @@ -23,5 +23,5 @@ version | toolchain ``0.4.0`` | ``intel/2021a`` ``0.4.0`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c88d3767a..27b022804 100644 --- a/docs/version-specific/supported-software/l/libvorbis.md +++ b/docs/version-specific/supported-software/l/libvorbis.md @@ -17,5 +17,5 @@ version | toolchain ``1.3.7`` | ``GCCcore/12.2.0`` ``1.3.7`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8c8f2ed1..1092058ed 100644 --- a/docs/version-specific/supported-software/l/libvori.md +++ b/docs/version-specific/supported-software/l/libvori.md @@ -14,5 +14,5 @@ version | toolchain ``220621`` | ``GCCcore/12.2.0`` ``220621`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0a6d37c95..61da1c73c 100644 --- a/docs/version-specific/supported-software/l/libwebp.md +++ b/docs/version-specific/supported-software/l/libwebp.md @@ -23,5 +23,5 @@ version | toolchain ``1.3.1`` | ``GCCcore/12.3.0`` ``1.3.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c79ae0d05..1e10f6444 100644 --- a/docs/version-specific/supported-software/l/libwpe.md +++ b/docs/version-specific/supported-software/l/libwpe.md @@ -13,5 +13,5 @@ version | toolchain ``1.13.3`` | ``GCCcore/11.2.0`` ``1.14.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3b03f960..49d677a47 100644 --- a/docs/version-specific/supported-software/l/libxc.md +++ b/docs/version-specific/supported-software/l/libxc.md @@ -72,5 +72,5 @@ version | toolchain ``6.2.2`` | ``intel-compilers/2023.1.0`` ``6.2.2`` | ``intel-compilers/2023.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9db8c48f8..5769c47f5 100644 --- a/docs/version-specific/supported-software/l/libxcb.md +++ b/docs/version-specific/supported-software/l/libxcb.md @@ -15,5 +15,5 @@ version | toolchain ``1.11.1`` | ``intel/2016a`` ``1.13`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff8b2689f..ccd311779 100644 --- a/docs/version-specific/supported-software/l/libxkbcommon.md +++ b/docs/version-specific/supported-software/l/libxkbcommon.md @@ -13,5 +13,5 @@ version | toolchain ``0.6.1`` | ``foss/2016a`` ``0.6.1`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06189cab7..348d95568 100644 --- a/docs/version-specific/supported-software/l/libxml++.md +++ b/docs/version-specific/supported-software/l/libxml++.md @@ -15,5 +15,5 @@ version | toolchain ``2.40.1`` | ``GCCcore/8.3.0`` ``2.42.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2a1ac6687..1a1535b16 100644 --- a/docs/version-specific/supported-software/l/libxml2-python.md +++ b/docs/version-specific/supported-software/l/libxml2-python.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.9.8`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``2.9.8`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4b354620d..979524aeb 100644 --- a/docs/version-specific/supported-software/l/libxml2.md +++ b/docs/version-specific/supported-software/l/libxml2.md @@ -53,5 +53,5 @@ version | versionsuffix | toolchain ``2.9.8`` | | ``GCCcore/8.2.0`` ``2.9.9`` | | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4b9c3b8d8..bc95320bc 100644 --- a/docs/version-specific/supported-software/l/libxslt.md +++ b/docs/version-specific/supported-software/l/libxslt.md @@ -31,5 +31,5 @@ version | versionsuffix | toolchain ``1.1.38`` | | ``GCCcore/12.3.0`` ``1.1.38`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 38a5f4ee8..9db5b0d09 100644 --- a/docs/version-specific/supported-software/l/libxsmm.md +++ b/docs/version-specific/supported-software/l/libxsmm.md @@ -33,5 +33,5 @@ version | toolchain ``1.8.3`` | ``foss/2018a`` ``1.8.3`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 59d375673..11a09fb75 100644 --- a/docs/version-specific/supported-software/l/libyaml.md +++ b/docs/version-specific/supported-software/l/libyaml.md @@ -32,5 +32,5 @@ version | toolchain ``0.2.5`` | ``GCCcore/13.2.0`` ``0.2.5`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ecf4d7438..382fef52b 100644 --- a/docs/version-specific/supported-software/l/libzeep.md +++ b/docs/version-specific/supported-software/l/libzeep.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.1`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06823028d..5003f903a 100644 --- a/docs/version-specific/supported-software/l/libzip.md +++ b/docs/version-specific/supported-software/l/libzip.md @@ -16,5 +16,5 @@ version | toolchain ``1.7.3`` | ``GCCcore/11.2.0`` ``1.9.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3c19126c0..73b5e693b 100644 --- a/docs/version-specific/supported-software/l/lie_learn.md +++ b/docs/version-specific/supported-software/l/lie_learn.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1.post1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 740d2687b..60c4c2a56 100644 --- a/docs/version-specific/supported-software/l/lifelines.md +++ b/docs/version-specific/supported-software/l/lifelines.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.26.3`` | | ``fosscuda/2020b`` ``0.27.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 257bb5c58..ec6617cf3 100644 --- a/docs/version-specific/supported-software/l/liknorm.md +++ b/docs/version-specific/supported-software/l/liknorm.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.2`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9562c2c9d..263198d13 100644 --- a/docs/version-specific/supported-software/l/likwid.md +++ b/docs/version-specific/supported-software/l/likwid.md @@ -31,5 +31,5 @@ version | toolchain ``5.3.0`` | ``GCC/12.3.0`` ``5.3.0`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ff87b917..103c4f566 100644 --- a/docs/version-specific/supported-software/l/lil-aretomo.md +++ b/docs/version-specific/supported-software/l/lil-aretomo.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e05545767..8205fdf09 100644 --- a/docs/version-specific/supported-software/l/limix.md +++ b/docs/version-specific/supported-software/l/limix.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.4`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fdb358f9a..621f1eb31 100644 --- a/docs/version-specific/supported-software/l/line_profiler.md +++ b/docs/version-specific/supported-software/l/line_profiler.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``GCCcore/12.2.0`` ``4.1.2`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5c28d959c..c00b120a9 100644 --- a/docs/version-specific/supported-software/l/lit.md +++ b/docs/version-specific/supported-software/l/lit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``18.1.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 310db4782..393fdd335 100644 --- a/docs/version-specific/supported-software/l/lmoments3.md +++ b/docs/version-specific/supported-software/l/lmoments3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.6`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index da28c5701..a3ef43017 100644 --- a/docs/version-specific/supported-software/l/logaddexp.md +++ b/docs/version-specific/supported-software/l/logaddexp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d9e617a8..399857a59 100644 --- a/docs/version-specific/supported-software/l/longestrunsubsequence.md +++ b/docs/version-specific/supported-software/l/longestrunsubsequence.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.1`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4892b3043..a2aa918d0 100644 --- a/docs/version-specific/supported-software/l/longread_umi.md +++ b/docs/version-specific/supported-software/l/longread_umi.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ead969017..ab5cc7ebc 100644 --- a/docs/version-specific/supported-software/l/loomR.md +++ b/docs/version-specific/supported-software/l/loomR.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.2.0-20180425`` | ``-R-4.2.2`` | ``foss/2022b`` ``0.2.0-20180425`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4c172a14..93e9e7c1b 100644 --- a/docs/version-specific/supported-software/l/loompy.md +++ b/docs/version-specific/supported-software/l/loompy.md @@ -17,5 +17,5 @@ version | toolchain ``3.0.7`` | ``foss/2023a`` ``3.0.7`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7846d493c..a49d541c0 100644 --- a/docs/version-specific/supported-software/l/lpsolve.md +++ b/docs/version-specific/supported-software/l/lpsolve.md @@ -25,5 +25,5 @@ version | toolchain ``5.5.2.5`` | ``intel/2017a`` ``5.5.2.5`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7f5893836..e2fd07d65 100644 --- a/docs/version-specific/supported-software/l/lrslib.md +++ b/docs/version-specific/supported-software/l/lrslib.md @@ -15,5 +15,5 @@ version | toolchain ``7.2`` | ``gompi/2022a`` ``7.2`` | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bed01dbf6..db47c849b 100644 --- a/docs/version-specific/supported-software/l/lwgrp.md +++ b/docs/version-specific/supported-software/l/lwgrp.md @@ -18,5 +18,5 @@ version | toolchain ``1.0.5`` | ``gompi/2022a`` ``1.0.5`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c0b0fec60..fd17ae583 100644 --- a/docs/version-specific/supported-software/l/lxml.md +++ b/docs/version-specific/supported-software/l/lxml.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``4.9.2`` | | ``GCCcore/12.3.0`` ``4.9.3`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2c85978f..0d475cea0 100644 --- a/docs/version-specific/supported-software/l/lynx.md +++ b/docs/version-specific/supported-software/l/lynx.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.8.9`` | ``-develop`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1d95a27ab..71ecae4bc 100644 --- a/docs/version-specific/supported-software/l/lz4.md +++ b/docs/version-specific/supported-software/l/lz4.md @@ -25,5 +25,5 @@ version | toolchain ``1.9.4`` | ``GCCcore/13.2.0`` ``1.9.4`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0a068124b..95a5a766f 100644 --- a/docs/version-specific/supported-software/m/M1QN3.md +++ b/docs/version-specific/supported-software/m/M1QN3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1b2cf1a1e..dd4363fe7 100644 --- a/docs/version-specific/supported-software/m/M3GNet.md +++ b/docs/version-specific/supported-software/m/M3GNet.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0a8fc8f2f..a37763c38 100644 --- a/docs/version-specific/supported-software/m/M4.md +++ b/docs/version-specific/supported-software/m/M4.md @@ -80,5 +80,5 @@ version | toolchain ``1.4.19`` | ``GCCcore/9.5.0`` ``1.4.19`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 03003a33d..04e7cbab4 100644 --- a/docs/version-specific/supported-software/m/MACH.md +++ b/docs/version-specific/supported-software/m/MACH.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.18`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a0da1dc9f..a9ec29cd1 100644 --- a/docs/version-specific/supported-software/m/MACS2.md +++ b/docs/version-specific/supported-software/m/MACS2.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2.2.9.1`` | | ``foss/2022b`` ``2.2.9.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 97aae865b..533d41a25 100644 --- a/docs/version-specific/supported-software/m/MACS3.md +++ b/docs/version-specific/supported-software/m/MACS3.md @@ -15,5 +15,5 @@ version | toolchain ``3.0.1`` | ``foss/2022b`` ``3.0.1`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9976b8f6d..ece2aeb2b 100644 --- a/docs/version-specific/supported-software/m/MACSE.md +++ b/docs/version-specific/supported-software/m/MACSE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.06`` | ``-Java-15`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d495b43c3..96f1ac99b 100644 --- a/docs/version-specific/supported-software/m/MAFFT.md +++ b/docs/version-specific/supported-software/m/MAFFT.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``7.505`` | ``-with-extensions`` | ``GCC/12.2.0`` ``7.520`` | ``-with-extensions`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e75be8f1c..2af4ffff5 100644 --- a/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md +++ b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md @@ -14,5 +14,5 @@ version | toolchain ``1.07bb`` | ``GCC/8.3.0`` ``1.09b`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6322dc931..b1d747e13 100644 --- a/docs/version-specific/supported-software/m/MAGeCK.md +++ b/docs/version-specific/supported-software/m/MAGeCK.md @@ -14,5 +14,5 @@ version | toolchain ``0.5.9.4`` | ``foss/2022a`` ``0.5.9.5`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a3987a417..f1bcee6d1 100644 --- a/docs/version-specific/supported-software/m/MAJIQ.md +++ b/docs/version-specific/supported-software/m/MAJIQ.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 98a2307f6..b17323997 100644 --- a/docs/version-specific/supported-software/m/MAKER.md +++ b/docs/version-specific/supported-software/m/MAKER.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.01.04`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bf62f50d1..6b23e7346 100644 --- a/docs/version-specific/supported-software/m/MARS.md +++ b/docs/version-specific/supported-software/m/MARS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20191101`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0bbd1c9b5..04e984a67 100644 --- a/docs/version-specific/supported-software/m/MATIO.md +++ b/docs/version-specific/supported-software/m/MATIO.md @@ -23,5 +23,5 @@ version | toolchain ``1.5.26`` | ``GCCcore/13.2.0`` ``1.5.9`` | ``GCCcore/5.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0c289e22d..f49ce963d 100644 --- a/docs/version-specific/supported-software/m/MATLAB-Engine.md +++ b/docs/version-specific/supported-software/m/MATLAB-Engine.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2021a-9.10.1`` | | ``GCCcore/10.2.0`` ``2021b-9.11.19`` | | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4bb0acc43..dcb2fd406 100644 --- a/docs/version-specific/supported-software/m/MATLAB.md +++ b/docs/version-specific/supported-software/m/MATLAB.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``2023a`` | | ``system`` ``2023b`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 972664f62..e53c75c3b 100644 --- a/docs/version-specific/supported-software/m/MATSim.md +++ b/docs/version-specific/supported-software/m/MATSim.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``15.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` ``15.0`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5caac49ce..583c0d3e0 100644 --- a/docs/version-specific/supported-software/m/MBROLA.md +++ b/docs/version-specific/supported-software/m/MBROLA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.3`` | ``-voices-20200330`` | ``GCCcore/12.3.0`` ``3.3`` | ``-voices-20200330`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cb5179c3f..973fded3b 100644 --- a/docs/version-specific/supported-software/m/MCL.md +++ b/docs/version-specific/supported-software/m/MCL.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``22.282`` | | ``GCCcore/11.3.0`` ``22.282`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1ef4493a2..19a3a9a51 100644 --- a/docs/version-specific/supported-software/m/MCR.md +++ b/docs/version-specific/supported-software/m/MCR.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``R2022a`` | | ``system`` ``R2023a`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ad34c0087..63f7fb468 100644 --- a/docs/version-specific/supported-software/m/MDAnalysis.md +++ b/docs/version-specific/supported-software/m/MDAnalysis.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2.4.2`` | | ``foss/2022b`` ``2.7.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 899d44992..511c0e215 100644 --- a/docs/version-specific/supported-software/m/MDBM.md +++ b/docs/version-specific/supported-software/m/MDBM.md @@ -13,5 +13,5 @@ version | toolchain ``4.13.0`` | ``GCCcore/6.4.0`` ``4.13.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b195bf14a..090346aac 100644 --- a/docs/version-specific/supported-software/m/MDI.md +++ b/docs/version-specific/supported-software/m/MDI.md @@ -13,5 +13,5 @@ version | toolchain ``1.4.16`` | ``gompi/2022b`` ``1.4.26`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 175377453..531d2a0c4 100644 --- a/docs/version-specific/supported-software/m/MDSplus-Java.md +++ b/docs/version-specific/supported-software/m/MDSplus-Java.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.96.12`` | ``-Java-13`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d4388ca16..cb6ad2945 100644 --- a/docs/version-specific/supported-software/m/MDSplus-Python.md +++ b/docs/version-specific/supported-software/m/MDSplus-Python.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.96.12`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8bd1aa08e..075875eb7 100644 --- a/docs/version-specific/supported-software/m/MDSplus.md +++ b/docs/version-specific/supported-software/m/MDSplus.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``7.96.12`` | | ``GCCcore/9.3.0`` ``7.96.8`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd42da0d6..878b70c69 100644 --- a/docs/version-specific/supported-software/m/MDTraj.md +++ b/docs/version-specific/supported-software/m/MDTraj.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``1.9.7`` | | ``intel/2022a`` ``1.9.9`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 92e5c55d9..3c0097b9b 100644 --- a/docs/version-specific/supported-software/m/MEGA.md +++ b/docs/version-specific/supported-software/m/MEGA.md @@ -14,5 +14,5 @@ version | toolchain ``11.0.10`` | ``system`` ``7.0.20-1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3eb6697c3..c917f877a 100644 --- a/docs/version-specific/supported-software/m/MEGACC.md +++ b/docs/version-specific/supported-software/m/MEGACC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.0.18-1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9eeebaaf2..ff0e43808 100644 --- a/docs/version-specific/supported-software/m/MEGAHIT.md +++ b/docs/version-specific/supported-software/m/MEGAHIT.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``1.2.9`` | | ``GCCcore/9.3.0`` ``1.2.9`` | | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 33dbc662d..47c8b0b79 100644 --- a/docs/version-specific/supported-software/m/MEGAN.md +++ b/docs/version-specific/supported-software/m/MEGAN.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``6.22.0`` | ``-Java-17`` | ``system`` ``6.25.3`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 367661258..dd2c267d8 100644 --- a/docs/version-specific/supported-software/m/MEM.md +++ b/docs/version-specific/supported-software/m/MEM.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20191023`` | | ``foss/2019b`` ``20191023`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7508fef77..88f1b8cab 100644 --- a/docs/version-specific/supported-software/m/MEME.md +++ b/docs/version-specific/supported-software/m/MEME.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``5.4.1`` | | ``gompi/2021b`` ``5.5.4`` | | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e00c04a02..8a709e2ef 100644 --- a/docs/version-specific/supported-software/m/MEMOTE.md +++ b/docs/version-specific/supported-software/m/MEMOTE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8986ec6d2..9e2475919 100644 --- a/docs/version-specific/supported-software/m/MERCKX.md +++ b/docs/version-specific/supported-software/m/MERCKX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170330`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fe584db83..5445edb63 100644 --- a/docs/version-specific/supported-software/m/MESS.md +++ b/docs/version-specific/supported-software/m/MESS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.6`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ffd535e8e..7c1d76d6e 100644 --- a/docs/version-specific/supported-software/m/METIS.md +++ b/docs/version-specific/supported-software/m/METIS.md @@ -36,5 +36,5 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``intel/2016b`` ``5.1.0`` | | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 75023efa1..5f9bba182 100644 --- a/docs/version-specific/supported-software/m/MICOM.md +++ b/docs/version-specific/supported-software/m/MICOM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.33.2`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 141007d91..23edad50f 100644 --- a/docs/version-specific/supported-software/m/MIGRATE-N.md +++ b/docs/version-specific/supported-software/m/MIGRATE-N.md @@ -14,5 +14,5 @@ version | toolchain ``4.2.8`` | ``foss/2016a`` ``5.0.4`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0dfe96a71..0527396e7 100644 --- a/docs/version-specific/supported-software/m/MINC.md +++ b/docs/version-specific/supported-software/m/MINC.md @@ -14,5 +14,5 @@ version | toolchain ``2.4.03`` | ``foss/2018a`` ``2.4.03`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ca3da549d..95f08ec6f 100644 --- a/docs/version-specific/supported-software/m/MINPACK.md +++ b/docs/version-specific/supported-software/m/MINPACK.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``19961126`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5bbac1e8f..8c442f02c 100644 --- a/docs/version-specific/supported-software/m/MIRA.md +++ b/docs/version-specific/supported-software/m/MIRA.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``4.9.6`` | | ``intel/2017b`` ``5.0rc2`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e3c5afc32..6916e1b5e 100644 --- a/docs/version-specific/supported-software/m/MITObim.md +++ b/docs/version-specific/supported-software/m/MITObim.md @@ -14,5 +14,5 @@ version | toolchain ``1.9.1`` | ``foss/2020b`` ``1.9.1`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2df2fe3c6..044f4cdbc 100644 --- a/docs/version-specific/supported-software/m/MITgcmutils.md +++ b/docs/version-specific/supported-software/m/MITgcmutils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 89661a60e..395cd8f1b 100644 --- a/docs/version-specific/supported-software/m/MLC.md +++ b/docs/version-specific/supported-software/m/MLC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d7ec0df32..802fb5b8b 100644 --- a/docs/version-specific/supported-software/m/MLflow.md +++ b/docs/version-specific/supported-software/m/MLflow.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.10.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f702ea0b0..89ed3dc6f 100644 --- a/docs/version-specific/supported-software/m/MLxtend.md +++ b/docs/version-specific/supported-software/m/MLxtend.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.17.3`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a83052857..964cf3a1a 100644 --- a/docs/version-specific/supported-software/m/MMSEQ.md +++ b/docs/version-specific/supported-software/m/MMSEQ.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.8`` | ``-linux64-static`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9b277a0ab..4d45eeb88 100644 --- a/docs/version-specific/supported-software/m/MMseqs2.md +++ b/docs/version-specific/supported-software/m/MMseqs2.md @@ -24,5 +24,5 @@ version | toolchain ``5-9375b`` | ``intel/2018a`` ``8-fac81`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3367b23b0..fff916d01 100644 --- a/docs/version-specific/supported-software/m/MNE-Python.md +++ b/docs/version-specific/supported-software/m/MNE-Python.md @@ -13,5 +13,5 @@ version | toolchain ``0.24.1`` | ``foss/2021a`` ``1.6.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ccadb3bce..3c1491b94 100644 --- a/docs/version-specific/supported-software/m/MOABB.md +++ b/docs/version-specific/supported-software/m/MOABB.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.6`` | ``foss/2021a`` ``1.0.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3190b6d98..b9ab1d60c 100644 --- a/docs/version-specific/supported-software/m/MOABS.md +++ b/docs/version-specific/supported-software/m/MOABS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.9.6`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e26f6d32b..b235c56a4 100644 --- a/docs/version-specific/supported-software/m/MOB-suite.md +++ b/docs/version-specific/supported-software/m/MOB-suite.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e3e8a1f99..1fb914b38 100644 --- a/docs/version-specific/supported-software/m/MODFLOW.md +++ b/docs/version-specific/supported-software/m/MODFLOW.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.4.4`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2961c61b0..237a340b9 100644 --- a/docs/version-specific/supported-software/m/MOFA2.md +++ b/docs/version-specific/supported-software/m/MOFA2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.14.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index de212b986..7ed19f16d 100644 --- a/docs/version-specific/supported-software/m/MONA.md +++ b/docs/version-specific/supported-software/m/MONA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4-18`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d581bf472..ce455101b 100644 --- a/docs/version-specific/supported-software/m/MONAI-Label.md +++ b/docs/version-specific/supported-software/m/MONAI-Label.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cbfddd2c8..88fac8ffd 100644 --- a/docs/version-specific/supported-software/m/MONAI.md +++ b/docs/version-specific/supported-software/m/MONAI.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``1.3.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 31871fdfc..0ed1b3abf 100644 --- a/docs/version-specific/supported-software/m/MOOSE.md +++ b/docs/version-specific/supported-software/m/MOOSE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2021-05-18`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index dab1c1cdf..d579a54e1 100644 --- a/docs/version-specific/supported-software/m/MPB.md +++ b/docs/version-specific/supported-software/m/MPB.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.6.2`` | ``-Python-2.7.14`` | ``foss/2018a`` ``1.6.2`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7f8e99f65..6ebbe47ec 100644 --- a/docs/version-specific/supported-software/m/MPC.md +++ b/docs/version-specific/supported-software/m/MPC.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``1.3.1`` | | ``GCCcore/13.2.0`` ``1.3.1`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d30b468ba..c505ad5c9 100644 --- a/docs/version-specific/supported-software/m/MPFI.md +++ b/docs/version-specific/supported-software/m/MPFI.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.4`` | ``GCCcore/11.3.0`` ``1.5.4`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6baee3a39..2a2e890ef 100644 --- a/docs/version-specific/supported-software/m/MPFR.md +++ b/docs/version-specific/supported-software/m/MPFR.md @@ -32,5 +32,5 @@ version | toolchain ``4.2.1`` | ``GCCcore/13.2.0`` ``4.2.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7721f47dc..df33a67b6 100644 --- a/docs/version-specific/supported-software/m/MPICH.md +++ b/docs/version-specific/supported-software/m/MPICH.md @@ -18,5 +18,5 @@ version | toolchain ``3.3.2`` | ``GCC/9.3.0`` ``3.4.2`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 26adcc9f5..64e87d124 100644 --- a/docs/version-specific/supported-software/m/MPICH2.md +++ b/docs/version-specific/supported-software/m/MPICH2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``GCC/4.8.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5f9b7b158..ec780d6e4 100644 --- a/docs/version-specific/supported-software/m/MPJ-Express.md +++ b/docs/version-specific/supported-software/m/MPJ-Express.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.44`` | ``-Java-1.8.0_92`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9fcc7ee2d..1cf2a55c1 100644 --- a/docs/version-specific/supported-software/m/MRCPP.md +++ b/docs/version-specific/supported-software/m/MRCPP.md @@ -13,5 +13,5 @@ version | toolchain ``1.3.6`` | ``foss/2020a`` ``1.4.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4f193b642..36ad6e4d2 100644 --- a/docs/version-specific/supported-software/m/MRChem.md +++ b/docs/version-specific/supported-software/m/MRChem.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 81451103f..bd30d9648 100644 --- a/docs/version-specific/supported-software/m/MRIcron.md +++ b/docs/version-specific/supported-software/m/MRIcron.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.20180614`` | ``system`` ``20150601`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d9b0776f1..1157bcf85 100644 --- a/docs/version-specific/supported-software/m/MRPRESSO.md +++ b/docs/version-specific/supported-software/m/MRPRESSO.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0-20230502`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 13ca02611..c91efb575 100644 --- a/docs/version-specific/supported-software/m/MRtrix.md +++ b/docs/version-specific/supported-software/m/MRtrix.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``3.0_RC2`` | ``-Python-2.7.13`` | ``foss/2017a`` ``3.0_RC3`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9aa220777..01c60df86 100644 --- a/docs/version-specific/supported-software/m/MSFragger.md +++ b/docs/version-specific/supported-software/m/MSFragger.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 575cace17..47991a643 100644 --- a/docs/version-specific/supported-software/m/MSM.md +++ b/docs/version-specific/supported-software/m/MSM.md @@ -13,5 +13,5 @@ version | toolchain ``1.0`` | ``foss/2017b`` ``1.0`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 317bcf38c..948846fe6 100644 --- a/docs/version-specific/supported-software/m/MSPC.md +++ b/docs/version-specific/supported-software/m/MSPC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3a4865042..87a196455 100644 --- a/docs/version-specific/supported-software/m/MTL4.md +++ b/docs/version-specific/supported-software/m/MTL4.md @@ -13,5 +13,5 @@ version | toolchain ``4.0.8878`` | ``system`` ``4.0.9555`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e495b557b..42fd4faa2 100644 --- a/docs/version-specific/supported-software/m/MUMPS.md +++ b/docs/version-specific/supported-software/m/MUMPS.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``5.6.1`` | ``-metis`` | ``foss/2023a`` ``5.6.1`` | ``-metis-seq`` | ``gomkl/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 74a301ac2..50a9af2ff 100644 --- a/docs/version-specific/supported-software/m/MUMmer.md +++ b/docs/version-specific/supported-software/m/MUMmer.md @@ -22,5 +22,5 @@ version | toolchain ``4.0.0rc1`` | ``GCCcore/12.2.0`` ``4.0.0rc1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f93bf8435..a7374f726 100644 --- a/docs/version-specific/supported-software/m/MUSCLE.md +++ b/docs/version-specific/supported-software/m/MUSCLE.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``GCCcore/11.3.0`` ``5.1.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd40305f5..8f0082905 100644 --- a/docs/version-specific/supported-software/m/MUSCLE3.md +++ b/docs/version-specific/supported-software/m/MUSCLE3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b3f4dbd13..51e77df8f 100644 --- a/docs/version-specific/supported-software/m/MUST.md +++ b/docs/version-specific/supported-software/m/MUST.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.7.1`` | | ``foss/2020b`` ``1.7.2`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3be8e7443..bebb33d7a 100644 --- a/docs/version-specific/supported-software/m/MVAPICH2.md +++ b/docs/version-specific/supported-software/m/MVAPICH2.md @@ -14,5 +14,5 @@ version | toolchain ``2.1`` | ``GCC/4.9.3-2.25`` ``2.2b`` | ``GCC/4.9.3-2.25`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 782464cd2..f0b8f50ba 100644 --- a/docs/version-specific/supported-software/m/MView.md +++ b/docs/version-specific/supported-software/m/MView.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.67`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fd76b9e45..60c2d89c0 100644 --- a/docs/version-specific/supported-software/m/MXNet.md +++ b/docs/version-specific/supported-software/m/MXNet.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.9.3`` | ``-Python-2.7.12-R-3.3.3`` | ``foss/2016b`` ``1.9.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fb18ea742..be30b6f98 100644 --- a/docs/version-specific/supported-software/m/MaSuRCA.md +++ b/docs/version-specific/supported-software/m/MaSuRCA.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``4.0.9`` | ``-Perl-5.32.1`` | ``foss/2021a`` ``4.1.0`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7a08ea051..d4847e827 100644 --- a/docs/version-specific/supported-software/m/Magics.md +++ b/docs/version-specific/supported-software/m/Magics.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.13.0`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3a3bc3ac9..a9debfc8c 100644 --- a/docs/version-specific/supported-software/m/MagresPython.md +++ b/docs/version-specific/supported-software/m/MagresPython.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160329`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 02db5bedf..33735fcc1 100644 --- a/docs/version-specific/supported-software/m/Mako.md +++ b/docs/version-specific/supported-software/m/Mako.md @@ -40,5 +40,5 @@ version | versionsuffix | toolchain ``1.2.4`` | | ``GCCcore/13.2.0`` ``1.3.5`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a3afe24e5..beba81640 100644 --- a/docs/version-specific/supported-software/m/Mamba.md +++ b/docs/version-specific/supported-software/m/Mamba.md @@ -14,5 +14,5 @@ version | toolchain ``23.11.0-0`` | ``system`` ``4.14.0-0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0cd2ed74e..5343a23d6 100644 --- a/docs/version-specific/supported-software/m/MapSplice.md +++ b/docs/version-specific/supported-software/m/MapSplice.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.2.1`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9a273dc6c..ca87e03e8 100644 --- a/docs/version-specific/supported-software/m/Maple.md +++ b/docs/version-specific/supported-software/m/Maple.md @@ -14,5 +14,5 @@ version | toolchain ``2017.2`` | ``system`` ``2022.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ffd9076f9..01637fc9c 100644 --- a/docs/version-specific/supported-software/m/Maq.md +++ b/docs/version-specific/supported-software/m/Maq.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5ef9df19c..606ea3392 100644 --- a/docs/version-specific/supported-software/m/MariaDB-connector-c.md +++ b/docs/version-specific/supported-software/m/MariaDB-connector-c.md @@ -21,5 +21,5 @@ version | toolchain ``3.1.7`` | ``GCCcore/9.3.0`` ``3.2.2`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 03154d8a0..e81013f74 100644 --- a/docs/version-specific/supported-software/m/MariaDB.md +++ b/docs/version-specific/supported-software/m/MariaDB.md @@ -28,5 +28,5 @@ version | toolchain ``10.6.4`` | ``GCC/11.2.0`` ``10.9.3`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8bd99b64a..436f9e588 100644 --- a/docs/version-specific/supported-software/m/Markdown.md +++ b/docs/version-specific/supported-software/m/Markdown.md @@ -14,5 +14,5 @@ version | toolchain ``3.6`` | ``GCCcore/12.3.0`` ``3.6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2bab66f10..f66335a05 100644 --- a/docs/version-specific/supported-software/m/Mash.md +++ b/docs/version-specific/supported-software/m/Mash.md @@ -20,5 +20,5 @@ version | toolchain ``2.3`` | ``GCC/12.3.0`` ``2.3`` | ``intel-compilers/2021.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9ebef061c..5ca8efb6d 100644 --- a/docs/version-specific/supported-software/m/Mashtree.md +++ b/docs/version-specific/supported-software/m/Mashtree.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.6`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5e1b01045..dc9701e6b 100644 --- a/docs/version-specific/supported-software/m/MathGL.md +++ b/docs/version-specific/supported-software/m/MathGL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4.1`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c8ca48b69..c23857419 100644 --- a/docs/version-specific/supported-software/m/Mathematica.md +++ b/docs/version-specific/supported-software/m/Mathematica.md @@ -22,5 +22,5 @@ version | toolchain ``13.1.0`` | ``system`` ``9.0.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 64d55a74a..505206eb9 100644 --- a/docs/version-specific/supported-software/m/Maude.md +++ b/docs/version-specific/supported-software/m/Maude.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 22e13c4f6..7e3a23132 100644 --- a/docs/version-specific/supported-software/m/Maven.md +++ b/docs/version-specific/supported-software/m/Maven.md @@ -18,5 +18,5 @@ version | toolchain ``3.6.0`` | ``system`` ``3.6.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f2bcee87e..bbb82ce6d 100644 --- a/docs/version-specific/supported-software/m/MaxBin.md +++ b/docs/version-specific/supported-software/m/MaxBin.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.2.7`` | | ``gompi/2021a`` ``2.2.7`` | | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f293146e2..66fdced56 100644 --- a/docs/version-specific/supported-software/m/MaxQuant.md +++ b/docs/version-specific/supported-software/m/MaxQuant.md @@ -15,5 +15,5 @@ version | toolchain ``2.2.0.0`` | ``GCCcore/11.2.0`` ``2.4.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 29f48b235..0aa1d13a9 100644 --- a/docs/version-specific/supported-software/m/MbedTLS.md +++ b/docs/version-specific/supported-software/m/MbedTLS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.26.0`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2c023da31..46a8954b0 100644 --- a/docs/version-specific/supported-software/m/MedPy.md +++ b/docs/version-specific/supported-software/m/MedPy.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``foss/2020b`` ``0.4.0`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1e3aa01cc..ea69be160 100644 --- a/docs/version-specific/supported-software/m/Meep.md +++ b/docs/version-specific/supported-software/m/Meep.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-2.7.14`` | ``foss/2018a`` ``1.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d18d58bd..95b1ffaaa 100644 --- a/docs/version-specific/supported-software/m/Megalodon.md +++ b/docs/version-specific/supported-software/m/Megalodon.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.5.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.5.0`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d640276c5..95f7b78b6 100644 --- a/docs/version-specific/supported-software/m/Meld.md +++ b/docs/version-specific/supported-software/m/Meld.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.20.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0b74788c3..d11d4a318 100644 --- a/docs/version-specific/supported-software/m/Mercurial.md +++ b/docs/version-specific/supported-software/m/Mercurial.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``6.2`` | | ``GCCcore/11.3.0`` ``6.4.5`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d9c3787d..c79f3626e 100644 --- a/docs/version-specific/supported-software/m/Mesa-demos.md +++ b/docs/version-specific/supported-software/m/Mesa-demos.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``8.4.0`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index de4b063db..5ba8cf9ac 100644 --- a/docs/version-specific/supported-software/m/Mesa.md +++ b/docs/version-specific/supported-software/m/Mesa.md @@ -42,5 +42,5 @@ version | toolchain ``23.1.4`` | ``GCCcore/12.3.0`` ``23.1.9`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 941f58263..a5f0ed517 100644 --- a/docs/version-specific/supported-software/m/Meson.md +++ b/docs/version-specific/supported-software/m/Meson.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``1.3.1`` | | ``GCCcore/12.3.0`` ``1.4.0`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c4557b875..df97a6aa7 100644 --- a/docs/version-specific/supported-software/m/Mesquite.md +++ b/docs/version-specific/supported-software/m/Mesquite.md @@ -18,5 +18,5 @@ version | toolchain ``2.3.0`` | ``intel/2016a`` ``2.3.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4ebb59d8d..a2401243c 100644 --- a/docs/version-specific/supported-software/m/MetaBAT.md +++ b/docs/version-specific/supported-software/m/MetaBAT.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.15`` | | ``gompi/2021a`` ``2.15`` | | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 714384a25..ec83b5c20 100644 --- a/docs/version-specific/supported-software/m/MetaDecoder.md +++ b/docs/version-specific/supported-software/m/MetaDecoder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.19`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7b6d4ea50..4e2c071bd 100644 --- a/docs/version-specific/supported-software/m/MetaEuk.md +++ b/docs/version-specific/supported-software/m/MetaEuk.md @@ -16,5 +16,5 @@ version | toolchain ``6`` | ``GCC/11.3.0`` ``6`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4095a7bbb..211720809 100644 --- a/docs/version-specific/supported-software/m/MetaGeneAnnotator.md +++ b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20080819`` | ``-x86-64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b0fcc6b67..0af0e067a 100644 --- a/docs/version-specific/supported-software/m/MetaMorpheus.md +++ b/docs/version-specific/supported-software/m/MetaMorpheus.md @@ -13,5 +13,5 @@ version | toolchain ``0.0.320`` | ``GCCcore/10.3.0`` ``1.0.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d8a701d27..4225a7ac3 100644 --- a/docs/version-specific/supported-software/m/MetaPhlAn.md +++ b/docs/version-specific/supported-software/m/MetaPhlAn.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.0.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``4.0.6`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0f11f153f..68c77489c 100644 --- a/docs/version-specific/supported-software/m/MetaPhlAn2.md +++ b/docs/version-specific/supported-software/m/MetaPhlAn2.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.7.8`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.7.8`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f6d12f2c4..0ce086562 100644 --- a/docs/version-specific/supported-software/m/MetaboAnalystR.md +++ b/docs/version-specific/supported-software/m/MetaboAnalystR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1-20190827`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index edc7a8b86..07374f854 100644 --- a/docs/version-specific/supported-software/m/Metagenome-Atlas.md +++ b/docs/version-specific/supported-software/m/Metagenome-Atlas.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.3`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2fee0dff7..6184df35a 100644 --- a/docs/version-specific/supported-software/m/Metal.md +++ b/docs/version-specific/supported-software/m/Metal.md @@ -13,5 +13,5 @@ version | toolchain ``2011-03-25`` | ``foss/2016a`` ``2020-05-05`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3f49d00af..9390842c8 100644 --- a/docs/version-specific/supported-software/m/MetalWalls.md +++ b/docs/version-specific/supported-software/m/MetalWalls.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``21.06.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0bc0a5d28..712f25136 100644 --- a/docs/version-specific/supported-software/m/Metaxa2.md +++ b/docs/version-specific/supported-software/m/Metaxa2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a7b1a9d71..768666aa4 100644 --- a/docs/version-specific/supported-software/m/MethylDackel.md +++ b/docs/version-specific/supported-software/m/MethylDackel.md @@ -14,5 +14,5 @@ version | toolchain ``0.5.0`` | ``iccifort/2019.5.281`` ``0.6.1`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8f729a5a7..3442755b6 100644 --- a/docs/version-specific/supported-software/m/MiGEC.md +++ b/docs/version-specific/supported-software/m/MiGEC.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.8`` | ``-Java-1.8.0_162`` | ``system`` ``1.2.9`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 52bb42ee1..e47e2bb65 100644 --- a/docs/version-specific/supported-software/m/MiXCR.md +++ b/docs/version-specific/supported-software/m/MiXCR.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``3.0.3`` | ``-Java-1.8`` | ``system`` ``4.6.0`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f4c128578..695ae05e2 100644 --- a/docs/version-specific/supported-software/m/MicrobeAnnotator.md +++ b/docs/version-specific/supported-software/m/MicrobeAnnotator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.5`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8b8dd360f..e308a2aba 100644 --- a/docs/version-specific/supported-software/m/Mikado.md +++ b/docs/version-specific/supported-software/m/Mikado.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.4`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index dfcb65a4c..9bd5a1998 100644 --- a/docs/version-specific/supported-software/m/Miller.md +++ b/docs/version-specific/supported-software/m/Miller.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.4.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 21a6cb50e..e26be3de0 100644 --- a/docs/version-specific/supported-software/m/MinCED.md +++ b/docs/version-specific/supported-software/m/MinCED.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.2`` | ``-Java-11`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 99ed8ba8a..1491ecc3f 100644 --- a/docs/version-specific/supported-software/m/MinPath.md +++ b/docs/version-specific/supported-software/m/MinPath.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.4`` | ``-Python-2.7.16`` | ``intel/2019b`` ``1.6`` | | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 440f2d1d9..22a1db1dc 100644 --- a/docs/version-specific/supported-software/m/Mini-XML.md +++ b/docs/version-specific/supported-software/m/Mini-XML.md @@ -15,5 +15,5 @@ version | toolchain ``3.2`` | ``GCCcore/10.3.0`` ``3.3.1`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 80d22794a..bbe4fa000 100644 --- a/docs/version-specific/supported-software/m/MiniCARD.md +++ b/docs/version-specific/supported-software/m/MiniCARD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fc5f5281f..c0845df90 100644 --- a/docs/version-specific/supported-software/m/MiniSat.md +++ b/docs/version-specific/supported-software/m/MiniSat.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.0`` | ``GCC/9.3.0`` ``20130925`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3bbc8bca6..bc60d918d 100644 --- a/docs/version-specific/supported-software/m/Miniconda2.md +++ b/docs/version-specific/supported-software/m/Miniconda2.md @@ -14,5 +14,5 @@ version | toolchain ``4.6.14`` | ``system`` ``4.7.10`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7fc462ad6..a8a2b3ff8 100644 --- a/docs/version-specific/supported-software/m/Miniconda3.md +++ b/docs/version-specific/supported-software/m/Miniconda3.md @@ -21,5 +21,5 @@ version | toolchain ``4.8.3`` | ``system`` ``4.9.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ebf863c07..b1e334ef5 100644 --- a/docs/version-specific/supported-software/m/Miniforge3.md +++ b/docs/version-specific/supported-software/m/Miniforge3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``24.1.2-0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 805a12a49..a1c4d4804 100644 --- a/docs/version-specific/supported-software/m/Minimac4.md +++ b/docs/version-specific/supported-software/m/Minimac4.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d4ba625b..2f0d8f801 100644 --- a/docs/version-specific/supported-software/m/Minipolish.md +++ b/docs/version-specific/supported-software/m/Minipolish.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.3`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ea1180fe5..52bf9f8ef 100644 --- a/docs/version-specific/supported-software/m/Mish-Cuda.md +++ b/docs/version-specific/supported-software/m/Mish-Cuda.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210309`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4cd449848..2e9c7f580 100644 --- a/docs/version-specific/supported-software/m/MitoHiFi.md +++ b/docs/version-specific/supported-software/m/MitoHiFi.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 537641b29..31108b7cc 100644 --- a/docs/version-specific/supported-software/m/MitoZ.md +++ b/docs/version-specific/supported-software/m/MitoZ.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 847a5f0f8..16424c057 100644 --- a/docs/version-specific/supported-software/m/MixMHC2pred.md +++ b/docs/version-specific/supported-software/m/MixMHC2pred.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9c5be1c6f..361203515 100644 --- a/docs/version-specific/supported-software/m/Mmg.md +++ b/docs/version-specific/supported-software/m/Mmg.md @@ -15,5 +15,5 @@ version | toolchain ``5.6.0`` | ``gompi/2021b`` ``5.7.2`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 326a82ffd..f1e2947a2 100644 --- a/docs/version-specific/supported-software/m/ModelTest-NG.md +++ b/docs/version-specific/supported-software/m/ModelTest-NG.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.7`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b2cc6ed60..c056fd172 100644 --- a/docs/version-specific/supported-software/m/Molcas.md +++ b/docs/version-specific/supported-software/m/Molcas.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``8.2`` | ``-centos-mkl-par`` | ``system`` ``8.2`` | ``-centos-par`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a7c69ac12..0e83c1827 100644 --- a/docs/version-specific/supported-software/m/Molden.md +++ b/docs/version-specific/supported-software/m/Molden.md @@ -19,5 +19,5 @@ version | toolchain ``7.1`` | ``GCCcore/11.3.0`` ``7.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d636f9cd5..969be8121 100644 --- a/docs/version-specific/supported-software/m/Molekel.md +++ b/docs/version-specific/supported-software/m/Molekel.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.4.0`` | ``-Linux_x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3f019eb5a..fa3552b51 100644 --- a/docs/version-specific/supported-software/m/Molpro.md +++ b/docs/version-specific/supported-software/m/Molpro.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2024.1.0`` | ``.linux_x86_64_mpipr`` | ``system`` ``2024.1.0`` | ``.linux_x86_64_sockets`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 58c214696..802918b7b 100644 --- a/docs/version-specific/supported-software/m/Mono.md +++ b/docs/version-specific/supported-software/m/Mono.md @@ -22,5 +22,5 @@ version | toolchain ``6.4.0.198`` | ``foss/2018b`` ``6.8.0.105`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2e8dcafda..ddfcd8dec 100644 --- a/docs/version-specific/supported-software/m/Monocle3.md +++ b/docs/version-specific/supported-software/m/Monocle3.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.3.1`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f71038fd3..c58092759 100644 --- a/docs/version-specific/supported-software/m/MoreRONN.md +++ b/docs/version-specific/supported-software/m/MoreRONN.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.9`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 222bb987e..9108459fe 100644 --- a/docs/version-specific/supported-software/m/Mothur.md +++ b/docs/version-specific/supported-software/m/Mothur.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.41.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.43.0`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8545a1776..3733d50aa 100644 --- a/docs/version-specific/supported-software/m/MotionCor2.md +++ b/docs/version-specific/supported-software/m/MotionCor2.md @@ -18,5 +18,5 @@ version | toolchain ``1.4.4`` | ``GCCcore/10.3.0`` ``1.5.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 839731e29..e3d4057af 100644 --- a/docs/version-specific/supported-software/m/MotionCor3.md +++ b/docs/version-specific/supported-software/m/MotionCor3.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d9cbd2ea..66ba5e80a 100644 --- a/docs/version-specific/supported-software/m/MoviePy.md +++ b/docs/version-specific/supported-software/m/MoviePy.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.3`` | | ``foss/2021a`` ``1.0.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 121c1917e..5c1e230f5 100644 --- a/docs/version-specific/supported-software/m/MrBayes.md +++ b/docs/version-specific/supported-software/m/MrBayes.md @@ -19,5 +19,5 @@ version | toolchain ``3.2.7a`` | ``foss/2020a`` ``3.2.7a`` | ``iimpi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7a04c16fd..ebd5a359e 100644 --- a/docs/version-specific/supported-software/m/MuJoCo.md +++ b/docs/version-specific/supported-software/m/MuJoCo.md @@ -14,5 +14,5 @@ version | toolchain ``2.2.2`` | ``GCCcore/11.3.0`` ``3.1.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4860714ae..bc5d96f5f 100644 --- a/docs/version-specific/supported-software/m/MuPeXI.md +++ b/docs/version-specific/supported-software/m/MuPeXI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-Perl-5.28.0-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 248cc87aa..6caa42631 100644 --- a/docs/version-specific/supported-software/m/MuSiC.md +++ b/docs/version-specific/supported-software/m/MuSiC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 84ae53e75..625714c27 100644 --- a/docs/version-specific/supported-software/m/MuTect.md +++ b/docs/version-specific/supported-software/m/MuTect.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.1.4`` | ``-Java-1.7.0_80`` | ``system`` ``1.1.7`` | ``-Java-1.7.0_80`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4c4cbbd41..565abc28d 100644 --- a/docs/version-specific/supported-software/m/MultiNest.md +++ b/docs/version-specific/supported-software/m/MultiNest.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.10`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 04bf425cb..a8fb85a08 100644 --- a/docs/version-specific/supported-software/m/MultiQC.md +++ b/docs/version-specific/supported-software/m/MultiQC.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``1.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.9`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 925838669..aedf486d2 100644 --- a/docs/version-specific/supported-software/m/MultilevelEstimators.md +++ b/docs/version-specific/supported-software/m/MultilevelEstimators.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-Julia-1.7.2`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 09da76203..532d016b4 100644 --- a/docs/version-specific/supported-software/m/Multiwfn.md +++ b/docs/version-specific/supported-software/m/Multiwfn.md @@ -14,5 +14,5 @@ version | toolchain ``3.6`` | ``intel/2019a`` ``3.6`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d6a5835e0..bd11eab6d 100644 --- a/docs/version-specific/supported-software/m/MyCC.md +++ b/docs/version-specific/supported-software/m/MyCC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2017-03-01`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9eab201a7..bf0870215 100644 --- a/docs/version-specific/supported-software/m/MyMediaLite.md +++ b/docs/version-specific/supported-software/m/MyMediaLite.md @@ -14,5 +14,5 @@ version | toolchain ``3.11`` | ``intel/2016b`` ``3.12`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7a6fbd0bc..faf7a5fb9 100644 --- a/docs/version-specific/supported-software/m/MySQL-python.md +++ b/docs/version-specific/supported-software/m/MySQL-python.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7b86f1e45..e12316e2f 100644 --- a/docs/version-specific/supported-software/m/MySQL.md +++ b/docs/version-specific/supported-software/m/MySQL.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.6.26`` | ``-clientonly`` | ``GNU/4.9.3-2.25`` ``5.7.21`` | ``-clientonly`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 249617782..f96b2181c 100644 --- a/docs/version-specific/supported-software/m/Myokit.md +++ b/docs/version-specific/supported-software/m/Myokit.md @@ -13,5 +13,5 @@ version | toolchain ``1.32.0`` | ``foss/2020b`` ``1.32.0`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e58764f79..46551ec0c 100644 --- a/docs/version-specific/supported-software/m/index.md +++ b/docs/version-specific/supported-software/m/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (m) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - *m* - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../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) diff --git a/docs/version-specific/supported-software/m/m4ri.md b/docs/version-specific/supported-software/m/m4ri.md index d841a1116..0b0d73d8f 100644 --- a/docs/version-specific/supported-software/m/m4ri.md +++ b/docs/version-specific/supported-software/m/m4ri.md @@ -13,5 +13,5 @@ version | toolchain ``20200125`` | ``GCC/11.3.0`` ``20200125`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2b6226765..f95855e6e 100644 --- a/docs/version-specific/supported-software/m/m4rie.md +++ b/docs/version-specific/supported-software/m/m4rie.md @@ -13,5 +13,5 @@ version | toolchain ``20200125`` | ``GCC/11.3.0`` ``20200125`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e807e6cf5..3e51e432f 100644 --- a/docs/version-specific/supported-software/m/maeparser.md +++ b/docs/version-specific/supported-software/m/maeparser.md @@ -18,5 +18,5 @@ version | toolchain ``1.3.0`` | ``iimpi/2020a`` ``1.3.1`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 654411ae3..0df7f7995 100644 --- a/docs/version-specific/supported-software/m/magick.md +++ b/docs/version-specific/supported-software/m/magick.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aa3b177a6..5e9ffa115 100644 --- a/docs/version-specific/supported-software/m/magma.md +++ b/docs/version-specific/supported-software/m/magma.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``2.7.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.7.2`` | ``-CUDA-12.4.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9ec450493..df4893713 100644 --- a/docs/version-specific/supported-software/m/mahotas.md +++ b/docs/version-specific/supported-software/m/mahotas.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4.13`` | | ``foss/2022a`` ``1.4.3`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d41db3766..b48c811f5 100644 --- a/docs/version-specific/supported-software/m/make.md +++ b/docs/version-specific/supported-software/m/make.md @@ -25,5 +25,5 @@ version | toolchain ``4.4.1`` | ``GCCcore/13.2.0`` ``4.4.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d4e3f8452..3860076de 100644 --- a/docs/version-specific/supported-software/m/makedepend.md +++ b/docs/version-specific/supported-software/m/makedepend.md @@ -23,5 +23,5 @@ version | toolchain ``1.0.7`` | ``GCCcore/11.3.0`` ``1.0.7`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index edab0b88a..0b21a33e1 100644 --- a/docs/version-specific/supported-software/m/makedepf90.md +++ b/docs/version-specific/supported-software/m/makedepf90.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.8`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d385b2d42..7b6c295be 100644 --- a/docs/version-specific/supported-software/m/makefun.md +++ b/docs/version-specific/supported-software/m/makefun.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.15.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 51567acd1..ea391f91f 100644 --- a/docs/version-specific/supported-software/m/makeinfo.md +++ b/docs/version-specific/supported-software/m/makeinfo.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``7.1`` | | ``GCCcore/13.2.0`` ``7.1`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 930938cb1..ed62ce5a3 100644 --- a/docs/version-specific/supported-software/m/mandrake.md +++ b/docs/version-specific/supported-software/m/mandrake.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c190d1de9..c2cc1fd11 100644 --- a/docs/version-specific/supported-software/m/mannkendall.md +++ b/docs/version-specific/supported-software/m/mannkendall.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 56def927c..3440a690c 100644 --- a/docs/version-specific/supported-software/m/manta.md +++ b/docs/version-specific/supported-software/m/manta.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-2.7.18`` | ``gompi/2020a`` ``1.6.0`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 25292d112..5a50a59d0 100644 --- a/docs/version-specific/supported-software/m/mapDamage.md +++ b/docs/version-specific/supported-software/m/mapDamage.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.2.1`` | | ``foss/2021b`` ``2.2.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f1b031543..1beb05338 100644 --- a/docs/version-specific/supported-software/m/matlab-proxy.md +++ b/docs/version-specific/supported-software/m/matlab-proxy.md @@ -13,5 +13,5 @@ version | toolchain ``0.18.1`` | ``GCCcore/12.3.0`` ``0.5.4`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8cfac5d18..f77f52082 100644 --- a/docs/version-specific/supported-software/m/matplotlib-inline.md +++ b/docs/version-specific/supported-software/m/matplotlib-inline.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.3`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 21accf409..114e0c5f8 100644 --- a/docs/version-specific/supported-software/m/matplotlib.md +++ b/docs/version-specific/supported-software/m/matplotlib.md @@ -107,5 +107,5 @@ version | versionsuffix | toolchain ``3.7.2`` | | ``iimkl/2023a`` ``3.8.2`` | | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2c3a06ff3..f1917dd46 100644 --- a/docs/version-specific/supported-software/m/maturin.md +++ b/docs/version-specific/supported-software/m/maturin.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.4.0`` | ``-Rust-1.75.0`` | ``GCCcore/12.3.0`` ``1.5.0`` | ``-Rust-1.76.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 188674c4c..43fdc4b04 100644 --- a/docs/version-specific/supported-software/m/mauveAligner.md +++ b/docs/version-specific/supported-software/m/mauveAligner.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4736`` | ``gompi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 804abdadc..2a0f17fbe 100644 --- a/docs/version-specific/supported-software/m/mawk.md +++ b/docs/version-specific/supported-software/m/mawk.md @@ -18,5 +18,5 @@ version | toolchain ``1.3.4-20171017`` | ``intel/2018b`` ``1.3.4-20171017`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 37d3ff743..eddfb9327 100644 --- a/docs/version-specific/supported-software/m/mayavi.md +++ b/docs/version-specific/supported-software/m/mayavi.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``4.7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``4.7.4`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b880ab7f7..5fa228384 100644 --- a/docs/version-specific/supported-software/m/maze.md +++ b/docs/version-specific/supported-software/m/maze.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20170124`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2e533d3a8..807eace4e 100644 --- a/docs/version-specific/supported-software/m/mbuffer.md +++ b/docs/version-specific/supported-software/m/mbuffer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20191016`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7a8cc9b61..c075ac9d9 100644 --- a/docs/version-specific/supported-software/m/mc.md +++ b/docs/version-specific/supported-software/m/mc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.8.13`` | ``GCC/4.9.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 230b10d28..3bce95d12 100644 --- a/docs/version-specific/supported-software/m/mctc-lib.md +++ b/docs/version-specific/supported-software/m/mctc-lib.md @@ -15,5 +15,5 @@ version | toolchain ``0.3.1`` | ``intel-compilers/2022.1.0`` ``0.3.1`` | ``intel-compilers/2022.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 065bdcd7a..4f0028e83 100644 --- a/docs/version-specific/supported-software/m/mcu.md +++ b/docs/version-specific/supported-software/m/mcu.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2021-04-06`` | ``gomkl/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c02d7964f..bfcb5539a 100644 --- a/docs/version-specific/supported-software/m/mdtest.md +++ b/docs/version-specific/supported-software/m/mdtest.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.9.3`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 97363b463..224e36417 100644 --- a/docs/version-specific/supported-software/m/mdust.md +++ b/docs/version-specific/supported-software/m/mdust.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20150102`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3e0359f6f..81aef3816 100644 --- a/docs/version-specific/supported-software/m/meRanTK.md +++ b/docs/version-specific/supported-software/m/meRanTK.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8fe3004eb..bd2d205b9 100644 --- a/docs/version-specific/supported-software/m/meboot.md +++ b/docs/version-specific/supported-software/m/meboot.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4-9.2`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e3cb60e91..42bde229d 100644 --- a/docs/version-specific/supported-software/m/medImgProc.md +++ b/docs/version-specific/supported-software/m/medImgProc.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.7`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8cdd5e11b..3a83d7eb1 100644 --- a/docs/version-specific/supported-software/m/medaka.md +++ b/docs/version-specific/supported-software/m/medaka.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``1.9.1`` | | ``foss/2022a`` ``1.9.1`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 60614c104..0eb30f1c0 100644 --- a/docs/version-specific/supported-software/m/memkind.md +++ b/docs/version-specific/supported-software/m/memkind.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.0`` | ``GCCcore/5.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4c3715e44..d09914bd2 100644 --- a/docs/version-specific/supported-software/m/memory-profiler.md +++ b/docs/version-specific/supported-software/m/memory-profiler.md @@ -13,5 +13,5 @@ version | toolchain ``0.55.0`` | ``foss/2019a`` ``0.55.0`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f268d872e..a9ef7d59a 100644 --- a/docs/version-specific/supported-software/m/memtester.md +++ b/docs/version-specific/supported-software/m/memtester.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 54238eec7..686d9d82d 100644 --- a/docs/version-specific/supported-software/m/meshalyzer.md +++ b/docs/version-specific/supported-software/m/meshalyzer.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.2`` | | ``foss/2020b`` ``20200308`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9ba6f1e1b..7f5074134 100644 --- a/docs/version-specific/supported-software/m/meshio.md +++ b/docs/version-specific/supported-software/m/meshio.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.0.2`` | ``-Python-3.6.4`` | ``intel/2018a`` ``5.3.4`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index af3eb8612..1a0310cb9 100644 --- a/docs/version-specific/supported-software/m/meshtool.md +++ b/docs/version-specific/supported-software/m/meshtool.md @@ -13,5 +13,5 @@ version | toolchain ``16`` | ``GCC/10.2.0`` ``16`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e56669e05..8cdc6fcc3 100644 --- a/docs/version-specific/supported-software/m/meson-python.md +++ b/docs/version-specific/supported-software/m/meson-python.md @@ -15,5 +15,5 @@ version | toolchain ``0.15.0`` | ``GCCcore/12.3.0`` ``0.15.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c0aaeb243..02ae6d8e3 100644 --- a/docs/version-specific/supported-software/m/metaWRAP.md +++ b/docs/version-specific/supported-software/m/metaWRAP.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.2.2`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.3`` | ``-Python-2.7.18`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index af0bd85a0..945450d43 100644 --- a/docs/version-specific/supported-software/m/metaerg.md +++ b/docs/version-specific/supported-software/m/metaerg.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.3`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7560ab392..fd4c172ab 100644 --- a/docs/version-specific/supported-software/m/methylartist.md +++ b/docs/version-specific/supported-software/m/methylartist.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.6`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 79bc8a6a0..0024ba320 100644 --- a/docs/version-specific/supported-software/m/methylpy.md +++ b/docs/version-specific/supported-software/m/methylpy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.9`` | ``-Python-2.7.13`` | ``foss/2017a`` ``1.2.9`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2ab0dec5c..a80c1d742 100644 --- a/docs/version-specific/supported-software/m/mfqe.md +++ b/docs/version-specific/supported-software/m/mfqe.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 522fb4541..be17a0e06 100644 --- a/docs/version-specific/supported-software/m/mgen.md +++ b/docs/version-specific/supported-software/m/mgen.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f4db668d8..89b3f67b6 100644 --- a/docs/version-specific/supported-software/m/mgltools.md +++ b/docs/version-specific/supported-software/m/mgltools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.7`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1670b35b0..ab56bfb5c 100644 --- a/docs/version-specific/supported-software/m/mhcflurry.md +++ b/docs/version-specific/supported-software/m/mhcflurry.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.4`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.2.4`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 34cb95696..e8cfc6b5f 100644 --- a/docs/version-specific/supported-software/m/mhcnuggets.md +++ b/docs/version-specific/supported-software/m/mhcnuggets.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` ``2.3`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ebbd6f6ee..78d1c6746 100644 --- a/docs/version-specific/supported-software/m/miRDeep2.md +++ b/docs/version-specific/supported-software/m/miRDeep2.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.0.0.8`` | | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 58b42b064..246b3c1ae 100644 --- a/docs/version-specific/supported-software/m/microctools.md +++ b/docs/version-specific/supported-software/m/microctools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20201209`` | ``-R-4.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cd11b99aa..ea4c2b5e1 100644 --- a/docs/version-specific/supported-software/m/mimalloc.md +++ b/docs/version-specific/supported-software/m/mimalloc.md @@ -13,5 +13,5 @@ version | toolchain ``1.7.2`` | ``GCCcore/10.3.0`` ``1.7.2`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d6bc506e..48fc03f69 100644 --- a/docs/version-specific/supported-software/m/miniasm.md +++ b/docs/version-specific/supported-software/m/miniasm.md @@ -13,5 +13,5 @@ version | toolchain ``0.3-20191007`` | ``GCCcore/10.3.0`` ``0.3-20191007`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 462536424..bb5ca3640 100644 --- a/docs/version-specific/supported-software/m/minibar.md +++ b/docs/version-specific/supported-software/m/minibar.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20200326`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` ``20200326`` | ``-Python-3.8.2`` | ``iccifort/2020.1.217`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 488185bb5..558dbd618 100644 --- a/docs/version-specific/supported-software/m/minieigen.md +++ b/docs/version-specific/supported-software/m/minieigen.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.5.3`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.5.4`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 96fdfda04..f4a35eb01 100644 --- a/docs/version-specific/supported-software/m/minimap2.md +++ b/docs/version-specific/supported-software/m/minimap2.md @@ -27,5 +27,5 @@ version | toolchain ``2.26`` | ``GCCcore/12.2.0`` ``2.26`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3d4afa30f..61bc796e3 100644 --- a/docs/version-specific/supported-software/m/minizip.md +++ b/docs/version-specific/supported-software/m/minizip.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8c4cd318e..d26aa2ec3 100644 --- a/docs/version-specific/supported-software/m/misha.md +++ b/docs/version-specific/supported-software/m/misha.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.10`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9055a3cf7..2d579d965 100644 --- a/docs/version-specific/supported-software/m/mkl-dnn.md +++ b/docs/version-specific/supported-software/m/mkl-dnn.md @@ -16,5 +16,5 @@ version | toolchain ``0.16`` | ``intel/2018b`` ``0.17.2`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4838a193c..ce5a72717 100644 --- a/docs/version-specific/supported-software/m/mkl-service.md +++ b/docs/version-specific/supported-software/m/mkl-service.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``intel/2020b`` ``2.3.0`` | | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 78aa87479..04cdabb72 100644 --- a/docs/version-specific/supported-software/m/mkl_fft.md +++ b/docs/version-specific/supported-software/m/mkl_fft.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.14`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6aa4965ad..a7be9ff88 100644 --- a/docs/version-specific/supported-software/m/ml-collections.md +++ b/docs/version-specific/supported-software/m/ml-collections.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 15b26d974..30465c32c 100644 --- a/docs/version-specific/supported-software/m/ml_dtypes.md +++ b/docs/version-specific/supported-software/m/ml_dtypes.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8cef98dd2..a5d601fa4 100644 --- a/docs/version-specific/supported-software/m/mlpack.md +++ b/docs/version-specific/supported-software/m/mlpack.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7e2e2e911..31143a9dc 100644 --- a/docs/version-specific/supported-software/m/mm-common.md +++ b/docs/version-specific/supported-software/m/mm-common.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.4`` | ``GCCcore/10.3.0`` ``1.0.5`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e8688ac84..a9a37b6ea 100644 --- a/docs/version-specific/supported-software/m/mmtf-cpp.md +++ b/docs/version-specific/supported-software/m/mmtf-cpp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ed5059a7b..7c65d175d 100644 --- a/docs/version-specific/supported-software/m/modred.md +++ b/docs/version-specific/supported-software/m/modred.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-Python-3.5.2`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 90989a0ec..ed90cd764 100644 --- a/docs/version-specific/supported-software/m/mold.md +++ b/docs/version-specific/supported-software/m/mold.md @@ -19,5 +19,5 @@ version | toolchain ``2.3.1`` | ``GCCcore/13.2.0`` ``2.31.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f002e9f1b..3e05423e4 100644 --- a/docs/version-specific/supported-software/m/molecularGSM.md +++ b/docs/version-specific/supported-software/m/molecularGSM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20190826`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8cd8dd504..99f38dbe2 100644 --- a/docs/version-specific/supported-software/m/molmod.md +++ b/docs/version-specific/supported-software/m/molmod.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``1.4.8`` | | ``foss/2021b`` ``1.4.8`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b0a589881..0818a7158 100644 --- a/docs/version-specific/supported-software/m/mongolite.md +++ b/docs/version-specific/supported-software/m/mongolite.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.3.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``2.3.0`` | ``-R-4.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 33421a7e6..4a085e32c 100644 --- a/docs/version-specific/supported-software/m/moonjit.md +++ b/docs/version-specific/supported-software/m/moonjit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4be06a0ab..46a10e91b 100644 --- a/docs/version-specific/supported-software/m/mordecai.md +++ b/docs/version-specific/supported-software/m/mordecai.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8b6669569..eff271b3d 100644 --- a/docs/version-specific/supported-software/m/morphosamplers.md +++ b/docs/version-specific/supported-software/m/morphosamplers.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.10`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ad02801b7..c45890f76 100644 --- a/docs/version-specific/supported-software/m/mosdepth.md +++ b/docs/version-specific/supported-software/m/mosdepth.md @@ -15,5 +15,5 @@ version | toolchain ``0.2.4`` | ``foss/2018b`` ``0.3.3`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c69641082..676045ad2 100644 --- a/docs/version-specific/supported-software/m/motif.md +++ b/docs/version-specific/supported-software/m/motif.md @@ -29,5 +29,5 @@ version | toolchain ``2.3.8`` | ``intel/2018a`` ``2.3.8`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 82927f824..3f7f6ccb2 100644 --- a/docs/version-specific/supported-software/m/motionSegmentation.md +++ b/docs/version-specific/supported-software/m/motionSegmentation.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.7.9`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 460b8c651..d585f5e8b 100644 --- a/docs/version-specific/supported-software/m/mpath.md +++ b/docs/version-specific/supported-software/m/mpath.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.3`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 71430f1f3..328d5a748 100644 --- a/docs/version-specific/supported-software/m/mpi4py.md +++ b/docs/version-specific/supported-software/m/mpi4py.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``3.1.4`` | | ``gompi/2023a`` ``3.1.5`` | | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cdd80a953..b99fd8806 100644 --- a/docs/version-specific/supported-software/m/mpiP.md +++ b/docs/version-specific/supported-software/m/mpiP.md @@ -14,5 +14,5 @@ version | toolchain ``3.4.1`` | ``iimpi/2019a`` ``3.4.1`` | ``iompi/2019.01`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d2bdc5a46..07bdca1b1 100644 --- a/docs/version-specific/supported-software/m/mpifileutils.md +++ b/docs/version-specific/supported-software/m/mpifileutils.md @@ -18,5 +18,5 @@ version | toolchain ``0.9.1`` | ``gompi/2019a`` ``0.9.1`` | ``iimpi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e4eef930c..b24ec554d 100644 --- a/docs/version-specific/supported-software/m/mpmath.md +++ b/docs/version-specific/supported-software/m/mpmath.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``1.2.1`` | | ``GCCcore/11.3.0`` ``1.3.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a9ec6b963..b4c2377f4 100644 --- a/docs/version-specific/supported-software/m/mrcfile.md +++ b/docs/version-specific/supported-software/m/mrcfile.md @@ -16,5 +16,5 @@ version | toolchain ``1.4.3`` | ``foss/2022a`` ``1.5.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c00d6239a..fb94e2ce0 100644 --- a/docs/version-specific/supported-software/m/msgpack-c.md +++ b/docs/version-specific/supported-software/m/msgpack-c.md @@ -13,5 +13,5 @@ version | toolchain ``3.3.0`` | ``GCCcore/10.2.0`` ``6.0.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8a06069a5..87c82c2cc 100644 --- a/docs/version-specific/supported-software/m/msprime.md +++ b/docs/version-specific/supported-software/m/msprime.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.2.0`` | | ``foss/2021b`` ``1.2.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6253300d4..1573c3755 100644 --- a/docs/version-specific/supported-software/m/mstore.md +++ b/docs/version-specific/supported-software/m/mstore.md @@ -16,5 +16,5 @@ version | toolchain ``0.2.0`` | ``intel-compilers/2022.1.0`` ``0.2.0`` | ``intel-compilers/2022.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 676e9070d..335e5ed44 100644 --- a/docs/version-specific/supported-software/m/muMerge.md +++ b/docs/version-specific/supported-software/m/muMerge.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 05c2cc869..7526e0064 100644 --- a/docs/version-specific/supported-software/m/muParser.md +++ b/docs/version-specific/supported-software/m/muParser.md @@ -17,5 +17,5 @@ version | toolchain ``2.3.4`` | ``GCCcore/11.3.0`` ``2.3.4`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a277ec43e..c4ce39531 100644 --- a/docs/version-specific/supported-software/m/mujoco-py.md +++ b/docs/version-specific/supported-software/m/mujoco-py.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.2.14`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 27e76640d..1760be56e 100644 --- a/docs/version-specific/supported-software/m/multicharge.md +++ b/docs/version-specific/supported-software/m/multicharge.md @@ -14,5 +14,5 @@ version | toolchain ``0.2.0`` | ``iimkl/2022a`` ``0.2.0`` | ``iimkl/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a286f63dd..650d9c707 100644 --- a/docs/version-specific/supported-software/m/multichoose.md +++ b/docs/version-specific/supported-software/m/multichoose.md @@ -17,5 +17,5 @@ version | toolchain ``1.0.3`` | ``GCCcore/12.3.0`` ``1.0.3`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a216f3512..e863d491f 100644 --- a/docs/version-specific/supported-software/m/multiprocess.md +++ b/docs/version-specific/supported-software/m/multiprocess.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.70.15`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c84077aa6..7c745e426 100644 --- a/docs/version-specific/supported-software/m/mumott.md +++ b/docs/version-specific/supported-software/m/mumott.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 66a197aaa..5a82c984c 100644 --- a/docs/version-specific/supported-software/m/muparserx.md +++ b/docs/version-specific/supported-software/m/muparserx.md @@ -13,5 +13,5 @@ version | toolchain ``4.0.8`` | ``GCCcore/10.3.0`` ``4.0.8`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index db2c42ad6..db2ac45a7 100644 --- a/docs/version-specific/supported-software/m/mutil.md +++ b/docs/version-specific/supported-software/m/mutil.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.822.3`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f8df37cc9..4ab762fcd 100644 --- a/docs/version-specific/supported-software/m/mxml.md +++ b/docs/version-specific/supported-software/m/mxml.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.2`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a6b2673a2..01da952b8 100644 --- a/docs/version-specific/supported-software/m/mxmlplus.md +++ b/docs/version-specific/supported-software/m/mxmlplus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.2`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index be6fbacfa..f53dfa97b 100644 --- a/docs/version-specific/supported-software/m/mygene.md +++ b/docs/version-specific/supported-software/m/mygene.md @@ -14,5 +14,5 @@ version | toolchain ``3.2.2`` | ``foss/2022a`` ``3.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e2f427952..b48a0dc99 100644 --- a/docs/version-specific/supported-software/m/mympingpong.md +++ b/docs/version-specific/supported-software/m/mympingpong.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.8.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.8.0`` | ``-Python-2.7.15`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d1e56d0d..4c66c6459 100644 --- a/docs/version-specific/supported-software/m/mypy.md +++ b/docs/version-specific/supported-software/m/mypy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.5`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f1dfb78d2..2d78aec0a 100644 --- a/docs/version-specific/supported-software/m/mysqlclient.md +++ b/docs/version-specific/supported-software/m/mysqlclient.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.3.7`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.3.7`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fce419709..4ad4d1ac5 100644 --- a/docs/version-specific/supported-software/n/NAG.md +++ b/docs/version-specific/supported-software/n/NAG.md @@ -15,5 +15,5 @@ version | toolchain ``26`` | ``intel/2018a`` ``7.1`` | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 742367f4d..3418a9d20 100644 --- a/docs/version-specific/supported-software/n/NAGfor.md +++ b/docs/version-specific/supported-software/n/NAGfor.md @@ -13,5 +13,5 @@ version | toolchain ``6.2.14`` | ``system`` ``7.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 22dcbd307..967ec4be9 100644 --- a/docs/version-specific/supported-software/n/NAMD.md +++ b/docs/version-specific/supported-software/n/NAMD.md @@ -31,5 +31,5 @@ version | versionsuffix | toolchain ``2.14`` | | ``fosscuda/2020b`` ``2.14`` | ``-mpi`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d19d4e6bc..c25a68e93 100644 --- a/docs/version-specific/supported-software/n/NASM.md +++ b/docs/version-specific/supported-software/n/NASM.md @@ -38,5 +38,5 @@ version | toolchain ``2.16.01`` | ``GCCcore/13.2.0`` ``2.16.03`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a442e288..18539d58c 100644 --- a/docs/version-specific/supported-software/n/NBO.md +++ b/docs/version-specific/supported-software/n/NBO.md @@ -19,5 +19,5 @@ version | toolchain ``7.0.10`` | ``gfbf/2022a`` ``7.0.10`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 71a6115e5..58c62ce7a 100644 --- a/docs/version-specific/supported-software/n/NCBI-Toolkit.md +++ b/docs/version-specific/supported-software/n/NCBI-Toolkit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``18.0.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 59720cc58..619f9ccf5 100644 --- a/docs/version-specific/supported-software/n/NCCL-tests.md +++ b/docs/version-specific/supported-software/n/NCCL-tests.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0.0`` | | ``gompic/2019b`` ``2.13.6`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 39b106a30..6d6fb1d17 100644 --- a/docs/version-specific/supported-software/n/NCCL.md +++ b/docs/version-specific/supported-software/n/NCCL.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``2.8.3`` | ``-CUDA-11.0.2`` | ``GCCcore/9.3.0`` ``2.9.9`` | ``-CUDA-11.3.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 316d8fe7d..9c16da649 100644 --- a/docs/version-specific/supported-software/n/NCIPLOT.md +++ b/docs/version-specific/supported-software/n/NCIPLOT.md @@ -14,5 +14,5 @@ version | toolchain ``4.0-20200106`` | ``iccifort/2019.5.281`` ``4.0-20200624`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90369f965..f9b1f4360 100644 --- a/docs/version-specific/supported-software/n/NCL.md +++ b/docs/version-specific/supported-software/n/NCL.md @@ -22,5 +22,5 @@ version | toolchain ``6.6.2`` | ``intel/2019b`` ``6.6.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e23e1bf90..e4bb3f15a 100644 --- a/docs/version-specific/supported-software/n/NCO.md +++ b/docs/version-specific/supported-software/n/NCO.md @@ -31,5 +31,5 @@ version | toolchain ``5.1.3`` | ``foss/2022a`` ``5.1.9`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 804ec478b..0929ec694 100644 --- a/docs/version-specific/supported-software/n/NECI.md +++ b/docs/version-specific/supported-software/n/NECI.md @@ -13,5 +13,5 @@ version | toolchain ``20220711`` | ``foss/2022a`` ``20230620`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4f442927e..81d520a29 100644 --- a/docs/version-specific/supported-software/n/NEURON.md +++ b/docs/version-specific/supported-software/n/NEURON.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``7.6.5`` | ``-Python-2.7.15`` | ``intel/2018b`` ``7.8.2`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 894462f18..cbddf05fc 100644 --- a/docs/version-specific/supported-software/n/NEXUS-CL.md +++ b/docs/version-specific/supported-software/n/NEXUS-CL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.18`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 15ec63d85..df6ba4343 100644 --- a/docs/version-specific/supported-software/n/NEdit.md +++ b/docs/version-specific/supported-software/n/NEdit.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.5`` | ``-Linux-x86`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 971053f9f..f916c33c0 100644 --- a/docs/version-specific/supported-software/n/NFFT.md +++ b/docs/version-specific/supported-software/n/NFFT.md @@ -20,5 +20,5 @@ version | toolchain ``3.5.3`` | ``foss/2022a`` ``3.5.3`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ac202f18b..09b22b6c9 100644 --- a/docs/version-specific/supported-software/n/NGLess.md +++ b/docs/version-specific/supported-software/n/NGLess.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-static-Linux64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8e2429eb2..70f55c9e5 100644 --- a/docs/version-specific/supported-software/n/NGS-Python.md +++ b/docs/version-specific/supported-software/n/NGS-Python.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.10.4`` | ``-Python-2.7.16`` | ``gompi/2019b`` ``2.9.3`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e8b55cd66..01219c042 100644 --- a/docs/version-specific/supported-software/n/NGS.md +++ b/docs/version-specific/supported-software/n/NGS.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-Java-1.8.0_162`` | ``intel/2018a`` ``2.9.3`` | ``-Java-1.8`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 28e69449d..36984b948 100644 --- a/docs/version-specific/supported-software/n/NGSadmix.md +++ b/docs/version-specific/supported-software/n/NGSadmix.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``32`` | ``GCC/7.3.0-2.30`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e8208684d..cdfb8f9a6 100644 --- a/docs/version-specific/supported-software/n/NGSpeciesID.md +++ b/docs/version-specific/supported-software/n/NGSpeciesID.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.3.0`` | | ``foss/2022b`` ``0.3.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff4ae22dc..c15506591 100644 --- a/docs/version-specific/supported-software/n/NIMBLE.md +++ b/docs/version-specific/supported-software/n/NIMBLE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9cb7ec8d1..3c12c2990 100644 --- a/docs/version-specific/supported-software/n/NIfTI.md +++ b/docs/version-specific/supported-software/n/NIfTI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b80e40eec..22586bb40 100644 --- a/docs/version-specific/supported-software/n/NLMpy.md +++ b/docs/version-specific/supported-software/n/NLMpy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.5`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7566449c9..0473d121f 100644 --- a/docs/version-specific/supported-software/n/NLTK.md +++ b/docs/version-specific/supported-software/n/NLTK.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``3.8.1`` | | ``foss/2023a`` ``3.8.1`` | | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f2a7a26a..8ea444573 100644 --- a/docs/version-specific/supported-software/n/NLopt.md +++ b/docs/version-specific/supported-software/n/NLopt.md @@ -33,5 +33,5 @@ version | toolchain ``2.7.1`` | ``GCCcore/12.2.0`` ``2.7.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 403db2a17..dd92fbad3 100644 --- a/docs/version-specific/supported-software/n/NOVOPlasty.md +++ b/docs/version-specific/supported-software/n/NOVOPlasty.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.7`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55bd192b5..c93fbdb4a 100644 --- a/docs/version-specific/supported-software/n/NRGLjubljana.md +++ b/docs/version-specific/supported-software/n/NRGLjubljana.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4.3.23`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0bca769a5..e7c3a6527 100644 --- a/docs/version-specific/supported-software/n/NSPR.md +++ b/docs/version-specific/supported-software/n/NSPR.md @@ -23,5 +23,5 @@ version | toolchain ``4.35`` | ``GCCcore/12.3.0`` ``4.35`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c0c7ae84c..905e8891f 100644 --- a/docs/version-specific/supported-software/n/NSS.md +++ b/docs/version-specific/supported-software/n/NSS.md @@ -23,5 +23,5 @@ version | toolchain ``3.89.1`` | ``GCCcore/12.3.0`` ``3.94`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2ecbf9492..c61e00c93 100644 --- a/docs/version-specific/supported-software/n/NTL.md +++ b/docs/version-specific/supported-software/n/NTL.md @@ -16,5 +16,5 @@ version | toolchain ``11.5.1`` | ``GCC/12.2.0`` ``11.5.1`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bb0b1f098..9e1dd1a93 100644 --- a/docs/version-specific/supported-software/n/NTPoly.md +++ b/docs/version-specific/supported-software/n/NTPoly.md @@ -16,5 +16,5 @@ version | toolchain ``2.7.0`` | ``intel/2021a`` ``2.7.1`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be55b3e5a..60786c052 100644 --- a/docs/version-specific/supported-software/n/NVHPC.md +++ b/docs/version-specific/supported-software/n/NVHPC.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``23.7`` | ``-CUDA-12.2.0`` | ``system`` ``24.1`` | ``-CUDA-12.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a4f549421..393f956d7 100644 --- a/docs/version-specific/supported-software/n/NVSHMEM.md +++ b/docs/version-specific/supported-software/n/NVSHMEM.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.7.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` ``2.8.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d7f3d09ef..0c15feb65 100644 --- a/docs/version-specific/supported-software/n/NWChem.md +++ b/docs/version-specific/supported-software/n/NWChem.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``7.0.2`` | | ``intel/2022a`` ``7.2.2`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 66b056ac6..da7b3eefa 100644 --- a/docs/version-specific/supported-software/n/NanoCaller.md +++ b/docs/version-specific/supported-software/n/NanoCaller.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.4.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f43c34eef..c2b3422a9 100644 --- a/docs/version-specific/supported-software/n/NanoComp.md +++ b/docs/version-specific/supported-software/n/NanoComp.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.10.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.13.1`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe5449db9..89ee1d885 100644 --- a/docs/version-specific/supported-software/n/NanoFilt.md +++ b/docs/version-specific/supported-software/n/NanoFilt.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.8.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6bfb51695..91da3f9c4 100644 --- a/docs/version-specific/supported-software/n/NanoLyse.md +++ b/docs/version-specific/supported-software/n/NanoLyse.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 033e6992b..11c075329 100644 --- a/docs/version-specific/supported-software/n/NanoPlot.md +++ b/docs/version-specific/supported-software/n/NanoPlot.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.33.0`` | | ``intel/2020b`` ``1.42.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 07f459ec7..20bbdd30e 100644 --- a/docs/version-specific/supported-software/n/NanoStat.md +++ b/docs/version-specific/supported-software/n/NanoStat.md @@ -13,5 +13,5 @@ version | toolchain ``1.6.0`` | ``foss/2021a`` ``1.6.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 91f2a2f27..d184070dc 100644 --- a/docs/version-specific/supported-software/n/NanopolishComp.md +++ b/docs/version-specific/supported-software/n/NanopolishComp.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.11`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 11d2cc67e..e33958710 100644 --- a/docs/version-specific/supported-software/n/Nek5000.md +++ b/docs/version-specific/supported-software/n/Nek5000.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``17.0`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f46b83b2c..944ae170e 100644 --- a/docs/version-specific/supported-software/n/Nektar++.md +++ b/docs/version-specific/supported-software/n/Nektar++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 07b659327..eea78ab81 100644 --- a/docs/version-specific/supported-software/n/Net-core.md +++ b/docs/version-specific/supported-software/n/Net-core.md @@ -14,5 +14,5 @@ version | toolchain ``2.2.5`` | ``system`` ``3.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b8712b20a..9ae37c597 100644 --- a/docs/version-specific/supported-software/n/NetLogo.md +++ b/docs/version-specific/supported-software/n/NetLogo.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``6.2.2`` | ``-64`` | ``system`` ``6.3.0`` | ``-64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c327078d9..22c527b46 100644 --- a/docs/version-specific/supported-software/n/NetPIPE.md +++ b/docs/version-specific/supported-software/n/NetPIPE.md @@ -14,5 +14,5 @@ version | toolchain ``5.1.4`` | ``gompi/2020b`` ``5.1.4`` | ``iimpi/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 89ad4b1cb..5b9dfd78b 100644 --- a/docs/version-specific/supported-software/n/NetPyNE.md +++ b/docs/version-specific/supported-software/n/NetPyNE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7bf9401c5..f4f4c0f62 100644 --- a/docs/version-specific/supported-software/n/NeuroKit.md +++ b/docs/version-specific/supported-software/n/NeuroKit.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.7`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 09105bf82..529b72616 100644 --- a/docs/version-specific/supported-software/n/NewHybrids.md +++ b/docs/version-specific/supported-software/n/NewHybrids.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1_Beta3`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4634bfc0d..805044419 100644 --- a/docs/version-specific/supported-software/n/NextGenMap.md +++ b/docs/version-specific/supported-software/n/NextGenMap.md @@ -13,5 +13,5 @@ version | toolchain ``0.5.5`` | ``GCC/11.2.0`` ``0.5.5`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 15d8fda0d..ba0ea24ac 100644 --- a/docs/version-specific/supported-software/n/Nextflow.md +++ b/docs/version-specific/supported-software/n/Nextflow.md @@ -28,5 +28,5 @@ version | toolchain ``23.10.0`` | ``system`` ``24.04.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e53970f43..45c0b5d94 100644 --- a/docs/version-specific/supported-software/n/NiBabel.md +++ b/docs/version-specific/supported-software/n/NiBabel.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``4.0.2`` | | ``foss/2022a`` ``5.2.0`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ee01cfa53..0393a75c3 100644 --- a/docs/version-specific/supported-software/n/Nilearn.md +++ b/docs/version-specific/supported-software/n/Nilearn.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.7.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5aaec9213..3b189f260 100644 --- a/docs/version-specific/supported-software/n/Nim.md +++ b/docs/version-specific/supported-software/n/Nim.md @@ -17,5 +17,5 @@ version | toolchain ``1.4.8`` | ``GCCcore/10.3.0`` ``1.6.6`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b08fc26d..a24408561 100644 --- a/docs/version-specific/supported-software/n/Ninja.md +++ b/docs/version-specific/supported-software/n/Ninja.md @@ -28,5 +28,5 @@ version | toolchain ``1.9.0`` | ``GCCcore/8.3.0`` ``1.9.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 21a1c6de0..3eea4affa 100644 --- a/docs/version-specific/supported-software/n/Nipype.md +++ b/docs/version-specific/supported-software/n/Nipype.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.6.0`` | | ``foss/2020b`` ``1.8.5`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 122b84742..d9173c9a6 100644 --- a/docs/version-specific/supported-software/n/Node-RED.md +++ b/docs/version-specific/supported-software/n/Node-RED.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.16.2`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1da50e454..f6f0e51a9 100644 --- a/docs/version-specific/supported-software/n/Normaliz.md +++ b/docs/version-specific/supported-software/n/Normaliz.md @@ -15,5 +15,5 @@ version | toolchain ``3.7.4`` | ``gompi/2019a`` ``3.8.4`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 80d5162f2..1e11ede5d 100644 --- a/docs/version-specific/supported-software/n/Nsight-Compute.md +++ b/docs/version-specific/supported-software/n/Nsight-Compute.md @@ -13,5 +13,5 @@ version | toolchain ``2020.3.0`` | ``system`` ``2021.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ba6c3d5c6..ed5da4fd5 100644 --- a/docs/version-specific/supported-software/n/Nsight-Systems.md +++ b/docs/version-specific/supported-software/n/Nsight-Systems.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2020.5.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 635c82fbd..4c9e30c43 100644 --- a/docs/version-specific/supported-software/n/NxTrim.md +++ b/docs/version-specific/supported-software/n/NxTrim.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.3`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5711b8535..c850d2716 100644 --- a/docs/version-specific/supported-software/n/index.md +++ b/docs/version-specific/supported-software/n/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (n) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - *n* - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../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) diff --git a/docs/version-specific/supported-software/n/n2v.md b/docs/version-specific/supported-software/n/n2v.md index 8b128b56d..c8444c17d 100644 --- a/docs/version-specific/supported-software/n/n2v.md +++ b/docs/version-specific/supported-software/n/n2v.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.3.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5ffd0be74..fec8baf27 100644 --- a/docs/version-specific/supported-software/n/namedlist.md +++ b/docs/version-specific/supported-software/n/namedlist.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cde7332a5..a2d15537a 100644 --- a/docs/version-specific/supported-software/n/nano.md +++ b/docs/version-specific/supported-software/n/nano.md @@ -15,5 +15,5 @@ version | toolchain ``7.1`` | ``GCCcore/12.2.0`` ``7.2`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 751176e50..c5cf83b10 100644 --- a/docs/version-specific/supported-software/n/nanocompore.md +++ b/docs/version-specific/supported-software/n/nanocompore.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0rc3-2`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8eb800b4b..1ecac5b12 100644 --- a/docs/version-specific/supported-software/n/nanoflann.md +++ b/docs/version-specific/supported-software/n/nanoflann.md @@ -13,5 +13,5 @@ version | toolchain ``1.4.0`` | ``GCCcore/10.3.0`` ``1.5.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bd01491b0..a9678b4d7 100644 --- a/docs/version-specific/supported-software/n/nanoget.md +++ b/docs/version-specific/supported-software/n/nanoget.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.18.1`` | | ``foss/2022b`` ``1.19.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 789e7adc3..e26f527da 100644 --- a/docs/version-specific/supported-software/n/nanomath.md +++ b/docs/version-specific/supported-software/n/nanomath.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``foss/2022a`` ``1.3.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae323185f..aa5b1ce85 100644 --- a/docs/version-specific/supported-software/n/nanomax-analysis-utils.md +++ b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.4.3`` | | ``fosscuda/2020b`` ``0.4.4`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5b38248c7..7ca0d2461 100644 --- a/docs/version-specific/supported-software/n/nanonet.md +++ b/docs/version-specific/supported-software/n/nanonet.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 96119b315..c412ad097 100644 --- a/docs/version-specific/supported-software/n/nanopolish.md +++ b/docs/version-specific/supported-software/n/nanopolish.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``foss/2022a`` ``0.9.2`` | | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 300289ccd..aadfad788 100644 --- a/docs/version-specific/supported-software/n/napari.md +++ b/docs/version-specific/supported-software/n/napari.md @@ -15,5 +15,5 @@ version | toolchain ``0.4.18`` | ``foss/2023a`` ``0.4.19.post1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4128ac878..1a808c344 100644 --- a/docs/version-specific/supported-software/n/nauty.md +++ b/docs/version-specific/supported-software/n/nauty.md @@ -16,5 +16,5 @@ version | toolchain ``2.8.6`` | ``GCC/11.3.0`` ``2.8.8`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3faed3ffe..6c2b7b1c8 100644 --- a/docs/version-specific/supported-software/n/nbclassic.md +++ b/docs/version-specific/supported-software/n/nbclassic.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 935aa85bc..f18402e91 100644 --- a/docs/version-specific/supported-software/n/ncbi-vdb.md +++ b/docs/version-specific/supported-software/n/ncbi-vdb.md @@ -31,5 +31,5 @@ version | toolchain ``3.0.5`` | ``gompi/2021a`` ``3.0.5`` | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 84d1491c1..a227f99c0 100644 --- a/docs/version-specific/supported-software/n/ncdf4.md +++ b/docs/version-specific/supported-software/n/ncdf4.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``1.17`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.17`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ec6b2bf89..59b8bb9ee 100644 --- a/docs/version-specific/supported-software/n/ncdu.md +++ b/docs/version-specific/supported-software/n/ncdu.md @@ -18,5 +18,5 @@ version | toolchain ``1.17`` | ``GCC/11.3.0`` ``1.18`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6fb651a81..bfb2f3da8 100644 --- a/docs/version-specific/supported-software/n/ncolor.md +++ b/docs/version-specific/supported-software/n/ncolor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5856ada3b..5d106dfb6 100644 --- a/docs/version-specific/supported-software/n/ncompress.md +++ b/docs/version-specific/supported-software/n/ncompress.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.2.4.4`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 21d82bc5a..2f35ce68c 100644 --- a/docs/version-specific/supported-software/n/ncurses.md +++ b/docs/version-specific/supported-software/n/ncurses.md @@ -60,5 +60,5 @@ version | toolchain ``6.5`` | ``GCCcore/13.3.0`` ``6.5`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c715d6ff3..49a0ca4a2 100644 --- a/docs/version-specific/supported-software/n/ncview.md +++ b/docs/version-specific/supported-software/n/ncview.md @@ -27,5 +27,5 @@ version | toolchain ``2.1.8`` | ``gompi/2022a`` ``2.1.8`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c9d26d1a5..9e6008a2c 100644 --- a/docs/version-specific/supported-software/n/nd2reader.md +++ b/docs/version-specific/supported-software/n/nd2reader.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.6`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8badd96e2..e7fe4006e 100644 --- a/docs/version-specific/supported-software/n/ne.md +++ b/docs/version-specific/supported-software/n/ne.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.1`` | ``gimkl/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3abce4ac..508871226 100644 --- a/docs/version-specific/supported-software/n/neon.md +++ b/docs/version-specific/supported-software/n/neon.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.31.2`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 97f4c462e..a72cc916d 100644 --- a/docs/version-specific/supported-software/n/neptune-client.md +++ b/docs/version-specific/supported-software/n/neptune-client.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.16.2`` | | ``foss/2022a`` ``0.4.129`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bd387c109..4c3091cdb 100644 --- a/docs/version-specific/supported-software/n/netCDF-C++.md +++ b/docs/version-specific/supported-software/n/netCDF-C++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.2`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fd998193a..f89c18037 100644 --- a/docs/version-specific/supported-software/n/netCDF-C++4.md +++ b/docs/version-specific/supported-software/n/netCDF-C++4.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``4.3.1`` | | ``iimpi/2022a`` ``4.3.1`` | | ``iimpi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c8a9fa014..3df185c38 100644 --- a/docs/version-specific/supported-software/n/netCDF-Fortran.md +++ b/docs/version-specific/supported-software/n/netCDF-Fortran.md @@ -59,5 +59,5 @@ version | versionsuffix | toolchain ``4.6.1`` | | ``iimpi/2023a`` ``4.6.1`` | | ``iimpi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 429cb6804..997b4056e 100644 --- a/docs/version-specific/supported-software/n/netCDF.md +++ b/docs/version-specific/supported-software/n/netCDF.md @@ -73,5 +73,5 @@ version | versionsuffix | toolchain ``4.9.2`` | | ``iimpi/2023a`` ``4.9.2`` | | ``iimpi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a7c3a0641..ec1366e36 100644 --- a/docs/version-specific/supported-software/n/netMHC.md +++ b/docs/version-specific/supported-software/n/netMHC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 36df5dacb..9b543e079 100644 --- a/docs/version-specific/supported-software/n/netMHCII.md +++ b/docs/version-specific/supported-software/n/netMHCII.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4ec6460df..39b3edc7b 100644 --- a/docs/version-specific/supported-software/n/netMHCIIpan.md +++ b/docs/version-specific/supported-software/n/netMHCIIpan.md @@ -13,5 +13,5 @@ version | toolchain ``3.2`` | ``GCCcore/7.3.0`` ``3.2`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9842f1386..b7cd8636e 100644 --- a/docs/version-specific/supported-software/n/netMHCpan.md +++ b/docs/version-specific/supported-software/n/netMHCpan.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0a`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 223673764..01885e334 100644 --- a/docs/version-specific/supported-software/n/netcdf4-python.md +++ b/docs/version-specific/supported-software/n/netcdf4-python.md @@ -38,5 +38,5 @@ version | versionsuffix | toolchain ``1.6.4`` | | ``foss/2023a`` ``1.6.5`` | | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 11268a979..8fa21088e 100644 --- a/docs/version-specific/supported-software/n/netloc.md +++ b/docs/version-specific/supported-software/n/netloc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5`` | ``GCC/4.8.3`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7ad538f1f..65c206be4 100644 --- a/docs/version-specific/supported-software/n/nettle.md +++ b/docs/version-specific/supported-software/n/nettle.md @@ -38,5 +38,5 @@ version | toolchain ``3.9.1`` | ``GCCcore/12.3.0`` ``3.9.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4c3bbd3d5..7300a4326 100644 --- a/docs/version-specific/supported-software/n/networkTools.md +++ b/docs/version-specific/supported-software/n/networkTools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bbb06416c..f55f8c027 100644 --- a/docs/version-specific/supported-software/n/networkx.md +++ b/docs/version-specific/supported-software/n/networkx.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``3.1`` | | ``gfbf/2023a`` ``3.2.1`` | | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 675fde0b1..8a6f55b4d 100644 --- a/docs/version-specific/supported-software/n/nf-core-mag.md +++ b/docs/version-specific/supported-software/n/nf-core-mag.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20221110`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b922cd167..0777e3a52 100644 --- a/docs/version-specific/supported-software/n/nf-core.md +++ b/docs/version-specific/supported-software/n/nf-core.md @@ -13,5 +13,5 @@ version | toolchain ``2.10`` | ``foss/2022b`` ``2.13.1`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a95843fca..9ca40a598 100644 --- a/docs/version-specific/supported-software/n/nghttp2.md +++ b/docs/version-specific/supported-software/n/nghttp2.md @@ -14,5 +14,5 @@ version | toolchain ``1.48.0`` | ``GCC/11.3.0`` ``1.58.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f3cdfe53f..f6a989a72 100644 --- a/docs/version-specific/supported-software/n/nghttp3.md +++ b/docs/version-specific/supported-software/n/nghttp3.md @@ -14,5 +14,5 @@ version | toolchain ``0.6.0`` | ``GCCcore/11.3.0`` ``1.3.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e2dae0967..a4edd33a2 100644 --- a/docs/version-specific/supported-software/n/nglview.md +++ b/docs/version-specific/supported-software/n/nglview.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``3.0.3`` | | ``foss/2022a`` ``3.1.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 476ae5075..a7242bf19 100644 --- a/docs/version-specific/supported-software/n/ngspice.md +++ b/docs/version-specific/supported-software/n/ngspice.md @@ -13,5 +13,5 @@ version | toolchain ``31`` | ``foss/2019b`` ``39`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 130def39a..7d9563e7f 100644 --- a/docs/version-specific/supported-software/n/ngtcp2.md +++ b/docs/version-specific/supported-software/n/ngtcp2.md @@ -14,5 +14,5 @@ version | toolchain ``0.7.0`` | ``GCC/11.3.0`` ``1.2.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d3d669c7..96270a3bb 100644 --- a/docs/version-specific/supported-software/n/nichenetr.md +++ b/docs/version-specific/supported-software/n/nichenetr.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.1-20230223`` | ``-R-4.2.1`` | ``foss/2022a`` ``2.0.4`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 10997ee14..9856826b5 100644 --- a/docs/version-specific/supported-software/n/nifti2dicom.md +++ b/docs/version-specific/supported-software/n/nifti2dicom.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.11`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9976df06a..5f81d8cda 100644 --- a/docs/version-specific/supported-software/n/nlohmann_json.md +++ b/docs/version-specific/supported-software/n/nlohmann_json.md @@ -17,5 +17,5 @@ version | toolchain ``3.11.2`` | ``GCCcore/12.3.0`` ``3.11.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index da64245a7..abeb53cbe 100644 --- a/docs/version-specific/supported-software/n/nnU-Net.md +++ b/docs/version-specific/supported-software/n/nnU-Net.md @@ -13,5 +13,5 @@ version | toolchain ``1.7.0`` | ``foss/2020b`` ``1.7.0`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 863fcf773..31d28f34e 100644 --- a/docs/version-specific/supported-software/n/nodejs.md +++ b/docs/version-specific/supported-software/n/nodejs.md @@ -28,5 +28,5 @@ version | toolchain ``6.10.3`` | ``foss/2017a`` ``8.9.4`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 56ab13b01..70ed54943 100644 --- a/docs/version-specific/supported-software/n/noise.md +++ b/docs/version-specific/supported-software/n/noise.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 595831e4d..971d029b8 100644 --- a/docs/version-specific/supported-software/n/nose-parameterized.md +++ b/docs/version-specific/supported-software/n/nose-parameterized.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.5.0`` | ``-Python-3.5.2`` | ``intel/2016b`` ``0.6.0`` | ``-Python-3.6.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a385f2351..06657aacd 100644 --- a/docs/version-specific/supported-software/n/nose3.md +++ b/docs/version-specific/supported-software/n/nose3.md @@ -13,5 +13,5 @@ version | toolchain ``1.3.8`` | ``GCCcore/11.3.0`` ``1.3.8`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4940285a5..3aeb10602 100644 --- a/docs/version-specific/supported-software/n/novaSTA.md +++ b/docs/version-specific/supported-software/n/novaSTA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c0b452198..e29198741 100644 --- a/docs/version-specific/supported-software/n/novoalign.md +++ b/docs/version-specific/supported-software/n/novoalign.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.09.00`` | | ``system`` ``3.09.01`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0acadc892..1254880af 100644 --- a/docs/version-specific/supported-software/n/npstat.md +++ b/docs/version-specific/supported-software/n/npstat.md @@ -13,5 +13,5 @@ version | toolchain ``0.99`` | ``foss/2016a`` ``0.99`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index df181da79..d61e346af 100644 --- a/docs/version-specific/supported-software/n/nsync.md +++ b/docs/version-specific/supported-software/n/nsync.md @@ -19,5 +19,5 @@ version | toolchain ``1.26.0`` | ``GCCcore/12.2.0`` ``1.26.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a2780c954..7d5a355d3 100644 --- a/docs/version-specific/supported-software/n/ntCard.md +++ b/docs/version-specific/supported-software/n/ntCard.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.1`` | ``GCC/8.3.0`` ``1.2.2`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a7e30662..678622992 100644 --- a/docs/version-specific/supported-software/n/ntEdit.md +++ b/docs/version-specific/supported-software/n/ntEdit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4110cb8e1..a490a4bc9 100644 --- a/docs/version-specific/supported-software/n/ntHits.md +++ b/docs/version-specific/supported-software/n/ntHits.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 684a458d3..b230b64db 100644 --- a/docs/version-specific/supported-software/n/num2words.md +++ b/docs/version-specific/supported-software/n/num2words.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.10`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 32f273651..a0370e44c 100644 --- a/docs/version-specific/supported-software/n/numactl.md +++ b/docs/version-specific/supported-software/n/numactl.md @@ -49,5 +49,5 @@ version | toolchain ``2.0.18`` | ``GCCcore/13.3.0`` ``2.0.9`` | ``GCC/4.8.3`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cb8e92fdc..6b65aae96 100644 --- a/docs/version-specific/supported-software/n/numba.md +++ b/docs/version-specific/supported-software/n/numba.md @@ -41,5 +41,5 @@ version | versionsuffix | toolchain ``0.58.1`` | | ``foss/2022b`` ``0.58.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d639031cb..fd027a57c 100644 --- a/docs/version-specific/supported-software/n/numdiff.md +++ b/docs/version-specific/supported-software/n/numdiff.md @@ -13,5 +13,5 @@ version | toolchain ``5.9.0`` | ``GCCcore/10.2.0`` ``5.9.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2205e4c08..ffef1b917 100644 --- a/docs/version-specific/supported-software/n/numexpr.md +++ b/docs/version-specific/supported-software/n/numexpr.md @@ -36,5 +36,5 @@ version | versionsuffix | toolchain ``2.8.1`` | | ``intel/2021a`` ``2.8.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0a721cab6..395b43d2e 100644 --- a/docs/version-specific/supported-software/n/numpy.md +++ b/docs/version-specific/supported-software/n/numpy.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``1.8.2`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5fe238f91..fefa26760 100644 --- a/docs/version-specific/supported-software/n/nvitop.md +++ b/docs/version-specific/supported-software/n/nvitop.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-CUDA-12.3.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18783f621..d6f142af5 100644 --- a/docs/version-specific/supported-software/n/nvofbf.md +++ b/docs/version-specific/supported-software/n/nvofbf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2022.07`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb32c3699..a46d4b552 100644 --- a/docs/version-specific/supported-software/n/nvompi.md +++ b/docs/version-specific/supported-software/n/nvompi.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2022.07`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ed65c4e64..709dd04e7 100644 --- a/docs/version-specific/supported-software/n/nvtop.md +++ b/docs/version-specific/supported-software/n/nvtop.md @@ -20,5 +20,5 @@ version | toolchain ``3.0.1`` | ``GCCcore/12.2.0`` ``3.1.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 65666e98b..ffc87b136 100644 --- a/docs/version-specific/supported-software/o/OBITools.md +++ b/docs/version-specific/supported-software/o/OBITools.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.13`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.2.9`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 34be9a4eb..e569aeb37 100644 --- a/docs/version-specific/supported-software/o/OBITools3.md +++ b/docs/version-specific/supported-software/o/OBITools3.md @@ -13,5 +13,5 @@ version | toolchain ``3.0.1b26`` | ``GCCcore/12.3.0`` ``3.0.1b8`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 66818b7ae..081dfda2d 100644 --- a/docs/version-specific/supported-software/o/OCNet.md +++ b/docs/version-specific/supported-software/o/OCNet.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5afe9bee9..a4dadaf1e 100644 --- a/docs/version-specific/supported-software/o/OCaml.md +++ b/docs/version-specific/supported-software/o/OCaml.md @@ -15,5 +15,5 @@ version | toolchain ``4.14.0`` | ``GCC/11.3.0`` ``5.1.1`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c9895de45..26e5053f0 100644 --- a/docs/version-specific/supported-software/o/OGDF.md +++ b/docs/version-specific/supported-software/o/OGDF.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``dogwood-202202`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 415477698..22228d182 100644 --- a/docs/version-specific/supported-software/o/OMA.md +++ b/docs/version-specific/supported-software/o/OMA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76c711aae..0dba2a326 100644 --- a/docs/version-specific/supported-software/o/OMERO.insight.md +++ b/docs/version-specific/supported-software/o/OMERO.insight.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.8.3`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 17c339c92..b9efa815d 100644 --- a/docs/version-specific/supported-software/o/OMERO.py.md +++ b/docs/version-specific/supported-software/o/OMERO.py.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.17.0`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 91f50cfd3..1a7580088 100644 --- a/docs/version-specific/supported-software/o/ONNX-Runtime.md +++ b/docs/version-specific/supported-software/o/ONNX-Runtime.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.10.0`` | | ``foss/2021a`` ``1.16.3`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index db36f16f8..9bc689869 100644 --- a/docs/version-specific/supported-software/o/ONNX.md +++ b/docs/version-specific/supported-software/o/ONNX.md @@ -14,5 +14,5 @@ version | toolchain ``1.15.0`` | ``foss/2022b`` ``1.15.0`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aeaca627e..c04e8e269 100644 --- a/docs/version-specific/supported-software/o/OOMPA.md +++ b/docs/version-specific/supported-software/o/OOMPA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-R-3.3.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d558c504..afe654e74 100644 --- a/docs/version-specific/supported-software/o/OPARI2.md +++ b/docs/version-specific/supported-software/o/OPARI2.md @@ -22,5 +22,5 @@ version | toolchain ``2.0.7`` | ``GCCcore/12.3.0`` ``2.0.8`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d258fe155..904c832a2 100644 --- a/docs/version-specific/supported-software/o/OPERA-MS.md +++ b/docs/version-specific/supported-software/o/OPERA-MS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.0-20200802`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6a48a77a8..85f77a307 100644 --- a/docs/version-specific/supported-software/o/OPERA.md +++ b/docs/version-specific/supported-software/o/OPERA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0.6`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``2.0.6`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bc6d7d72..5d9be7c7d 100644 --- a/docs/version-specific/supported-software/o/OR-Tools.md +++ b/docs/version-specific/supported-software/o/OR-Tools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 53ada53ad..bd35c81ec 100644 --- a/docs/version-specific/supported-software/o/ORCA.md +++ b/docs/version-specific/supported-software/o/ORCA.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``5.0.4`` | | ``gompi/2022a`` ``5.0.4`` | | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6015be83b..b6fe3a0f5 100644 --- a/docs/version-specific/supported-software/o/ORFfinder.md +++ b/docs/version-specific/supported-software/o/ORFfinder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2e5ef2c3e..1ae5636f4 100644 --- a/docs/version-specific/supported-software/o/OSPRay.md +++ b/docs/version-specific/supported-software/o/OSPRay.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4aa1b6b08..c3a46718b 100644 --- a/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md +++ b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``7.2`` | | ``gompi/2023b`` ``7.4`` | | ``gompi/2024.05`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3fa211ad..e7fae7b16 100644 --- a/docs/version-specific/supported-software/o/OTF2.md +++ b/docs/version-specific/supported-software/o/OTF2.md @@ -24,5 +24,5 @@ version | toolchain ``3.0.3`` | ``GCCcore/12.3.0`` ``3.0.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a98880a7..390f96472 100644 --- a/docs/version-specific/supported-software/o/OVITO.md +++ b/docs/version-specific/supported-software/o/OVITO.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.7.11`` | ``-basic`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f707e11ec..4de4eb209 100644 --- a/docs/version-specific/supported-software/o/Oases.md +++ b/docs/version-specific/supported-software/o/Oases.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.2.08`` | ``-kmer_101`` | ``intel/2017b`` ``20180312`` | | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eec4ade5c..537bdfec7 100644 --- a/docs/version-specific/supported-software/o/Octave.md +++ b/docs/version-specific/supported-software/o/Octave.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``6.2.0`` | | ``foss/2020b`` ``7.1.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cde82b16e..7256e2bea 100644 --- a/docs/version-specific/supported-software/o/Octopus-vcf.md +++ b/docs/version-specific/supported-software/o/Octopus-vcf.md @@ -13,5 +13,5 @@ version | toolchain ``0.7.1`` | ``foss/2020b`` ``0.7.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 93cd65164..c30adf69c 100644 --- a/docs/version-specific/supported-software/o/OmegaFold.md +++ b/docs/version-specific/supported-software/o/OmegaFold.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a1aa70b9f..890ffaa46 100644 --- a/docs/version-specific/supported-software/o/Omnipose.md +++ b/docs/version-specific/supported-software/o/Omnipose.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.4`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f52642f8a..053674955 100644 --- a/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md +++ b/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.3`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a96847a33..b9caf2a00 100644 --- a/docs/version-specific/supported-software/o/OpenAI-Gym.md +++ b/docs/version-specific/supported-software/o/OpenAI-Gym.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.21.0`` | | ``foss/2021b`` ``0.26.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4cab3a2d5..a57f348f9 100644 --- a/docs/version-specific/supported-software/o/OpenBLAS.md +++ b/docs/version-specific/supported-software/o/OpenBLAS.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``0.3.8`` | | ``GCC/9.2.0`` ``0.3.9`` | | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e00ff12d2..def694b11 100644 --- a/docs/version-specific/supported-software/o/OpenBabel.md +++ b/docs/version-specific/supported-software/o/OpenBabel.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``gompi/2023a`` ``3.1.1`` | ``-Python-3.8.2`` | ``iimpi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2c7351c0..d3cb265ea 100644 --- a/docs/version-specific/supported-software/o/OpenCV.md +++ b/docs/version-specific/supported-software/o/OpenCV.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``4.8.1`` | ``-CUDA-12.1.1-contrib`` | ``foss/2023a`` ``4.8.1`` | ``-contrib`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c3f70cdec..64e2ace96 100644 --- a/docs/version-specific/supported-software/o/OpenCensus-python.md +++ b/docs/version-specific/supported-software/o/OpenCensus-python.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4435a10b5..ebf5f571e 100644 --- a/docs/version-specific/supported-software/o/OpenCoarrays.md +++ b/docs/version-specific/supported-software/o/OpenCoarrays.md @@ -15,5 +15,5 @@ version | toolchain ``2.8.0`` | ``gompi/2019b`` ``2.9.2`` | ``gompi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae3ad9e8a..7d0a07667 100644 --- a/docs/version-specific/supported-software/o/OpenColorIO.md +++ b/docs/version-specific/supported-software/o/OpenColorIO.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6117ee2ac..8f2a0befe 100644 --- a/docs/version-specific/supported-software/o/OpenEXR.md +++ b/docs/version-specific/supported-software/o/OpenEXR.md @@ -24,5 +24,5 @@ version | toolchain ``3.1.7`` | ``GCCcore/12.3.0`` ``3.2.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55d75b95a..81e327d4b 100644 --- a/docs/version-specific/supported-software/o/OpenFAST.md +++ b/docs/version-specific/supported-software/o/OpenFAST.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3903b397a..68182ed2a 100644 --- a/docs/version-specific/supported-software/o/OpenFOAM-Extend.md +++ b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``4.1-20191120`` | ``-Python-2.7.16`` | ``intel/2019b`` ``4.1-20200408`` | ``-Python-2.7.16`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4927ef036..6bcbf2f1d 100644 --- a/docs/version-specific/supported-software/o/OpenFOAM.md +++ b/docs/version-specific/supported-software/o/OpenFOAM.md @@ -71,5 +71,5 @@ version | versionsuffix | toolchain ``v2306`` | | ``foss/2022b`` ``v2312`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 53a3d27dd..bb68b4313 100644 --- a/docs/version-specific/supported-software/o/OpenFace.md +++ b/docs/version-specific/supported-software/o/OpenFace.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.2.0`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0c31a6a33..c509f278b 100644 --- a/docs/version-specific/supported-software/o/OpenFold.md +++ b/docs/version-specific/supported-software/o/OpenFold.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c7e570baf..73bacb7f4 100644 --- a/docs/version-specific/supported-software/o/OpenForceField.md +++ b/docs/version-specific/supported-software/o/OpenForceField.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f5ee1997d..80397b774 100644 --- a/docs/version-specific/supported-software/o/OpenImageIO.md +++ b/docs/version-specific/supported-software/o/OpenImageIO.md @@ -21,5 +21,5 @@ version | toolchain ``2.3.17.0`` | ``GCC/11.3.0`` ``2.4.14.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a449ea198..0e9f3437b 100644 --- a/docs/version-specific/supported-software/o/OpenJPEG.md +++ b/docs/version-specific/supported-software/o/OpenJPEG.md @@ -24,5 +24,5 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6c0ded41e..4eecabd82 100644 --- a/docs/version-specific/supported-software/o/OpenKIM-API.md +++ b/docs/version-specific/supported-software/o/OpenKIM-API.md @@ -16,5 +16,5 @@ version | toolchain ``1.9.7`` | ``intel/2018b`` ``1.9.7`` | ``iomkl/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 467f8a433..d5440bcf4 100644 --- a/docs/version-specific/supported-software/o/OpenMEEG.md +++ b/docs/version-specific/supported-software/o/OpenMEEG.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.7`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d2746f3e2..6b71ce46f 100644 --- a/docs/version-specific/supported-software/o/OpenMM-PLUMED.md +++ b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 464853fc0..fceeb4e78 100644 --- a/docs/version-specific/supported-software/o/OpenMM.md +++ b/docs/version-specific/supported-software/o/OpenMM.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``8.0.0`` | | ``foss/2022a`` ``8.0.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0be7e890d..def183861 100644 --- a/docs/version-specific/supported-software/o/OpenMMTools.md +++ b/docs/version-specific/supported-software/o/OpenMMTools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.20.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6622749ea..d3e4c77be 100644 --- a/docs/version-specific/supported-software/o/OpenMPI.md +++ b/docs/version-specific/supported-software/o/OpenMPI.md @@ -93,5 +93,5 @@ version | versionsuffix | toolchain ``5.0.3`` | | ``GCC/13.3.0`` ``system`` | | ``GCC/system-2.29`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44ee0460c..a003f8e5c 100644 --- a/docs/version-specific/supported-software/o/OpenMS.md +++ b/docs/version-specific/supported-software/o/OpenMS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d4efec3af..918d03c39 100644 --- a/docs/version-specific/supported-software/o/OpenMolcas.md +++ b/docs/version-specific/supported-software/o/OpenMolcas.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``22.10`` | | ``intel/2022a`` ``23.06`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 577dcc3f7..332a8f06e 100644 --- a/docs/version-specific/supported-software/o/OpenNLP.md +++ b/docs/version-specific/supported-software/o/OpenNLP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 442531a40..89451ecd7 100644 --- a/docs/version-specific/supported-software/o/OpenPGM.md +++ b/docs/version-specific/supported-software/o/OpenPGM.md @@ -29,5 +29,5 @@ version | toolchain ``5.2.122`` | ``intel/2016b`` ``5.2.122`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d5d21e6d3..71a6fb283 100644 --- a/docs/version-specific/supported-software/o/OpenPIV.md +++ b/docs/version-specific/supported-software/o/OpenPIV.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.21.8`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 53aca375a..96e49ee3b 100644 --- a/docs/version-specific/supported-software/o/OpenRefine.md +++ b/docs/version-specific/supported-software/o/OpenRefine.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.7`` | ``-Java-1.8.0_144`` | ``system`` ``3.4.1`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a0e938b92..df3ab7360 100644 --- a/docs/version-specific/supported-software/o/OpenSSL.md +++ b/docs/version-specific/supported-software/o/OpenSSL.md @@ -33,5 +33,5 @@ version | toolchain ``1.1`` | ``system`` ``3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 13136ddb2..3c11fd44b 100644 --- a/docs/version-specific/supported-software/o/OpenSceneGraph.md +++ b/docs/version-specific/supported-software/o/OpenSceneGraph.md @@ -14,5 +14,5 @@ version | toolchain ``3.6.5`` | ``foss/2021b`` ``3.6.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e4cac7416..f80783f62 100644 --- a/docs/version-specific/supported-software/o/OpenSees.md +++ b/docs/version-specific/supported-software/o/OpenSees.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-3.8.2-parallel`` | ``intel/2020a`` ``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e8d4fb403..fc0202325 100644 --- a/docs/version-specific/supported-software/o/OpenSlide-Java.md +++ b/docs/version-specific/supported-software/o/OpenSlide-Java.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.4`` | ``-Java-17`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 59c555cb3..4cc839966 100644 --- a/docs/version-specific/supported-software/o/OpenSlide.md +++ b/docs/version-specific/supported-software/o/OpenSlide.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``3.4.1`` | ``-largefiles`` | ``GCCcore/8.2.0`` ``3.4.1`` | | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 19ebe54ed..3461a2447 100644 --- a/docs/version-specific/supported-software/o/OpenStackClient.md +++ b/docs/version-specific/supported-software/o/OpenStackClient.md @@ -14,5 +14,5 @@ version | toolchain ``5.8.0`` | ``GCCcore/11.2.0`` ``6.0.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 88eb4e7f7..d749da888 100644 --- a/docs/version-specific/supported-software/o/OptaDOS.md +++ b/docs/version-specific/supported-software/o/OptaDOS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.380`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 895ab5f71..e64523727 100644 --- a/docs/version-specific/supported-software/o/Optax.md +++ b/docs/version-specific/supported-software/o/Optax.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.7`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5045e10cc..d159772ff 100644 --- a/docs/version-specific/supported-software/o/OptiType.md +++ b/docs/version-specific/supported-software/o/OptiType.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.3.2`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0216edb44..c5dbde848 100644 --- a/docs/version-specific/supported-software/o/OptiX.md +++ b/docs/version-specific/supported-software/o/OptiX.md @@ -15,5 +15,5 @@ version | toolchain ``6.5.0`` | ``system`` ``7.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d4d4454a..74e8b502e 100644 --- a/docs/version-specific/supported-software/o/Optuna.md +++ b/docs/version-specific/supported-software/o/Optuna.md @@ -15,5 +15,5 @@ version | toolchain ``3.1.0`` | ``foss/2022a`` ``3.5.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ef8f7d137..c85577a62 100644 --- a/docs/version-specific/supported-software/o/OrfM.md +++ b/docs/version-specific/supported-software/o/OrfM.md @@ -14,5 +14,5 @@ version | toolchain ``0.7.1`` | ``GCC/12.3.0`` ``0.7.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d01897800..2ae3319dc 100644 --- a/docs/version-specific/supported-software/o/OrthoFinder.md +++ b/docs/version-specific/supported-software/o/OrthoFinder.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.5.4`` | | ``foss/2020b`` ``2.5.5`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f40160369..207e39350 100644 --- a/docs/version-specific/supported-software/o/OrthoMCL.md +++ b/docs/version-specific/supported-software/o/OrthoMCL.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``2.0.9`` | ``-Perl-5.24.0`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index adeb79ed2..9d0338bef 100644 --- a/docs/version-specific/supported-software/o/Osi.md +++ b/docs/version-specific/supported-software/o/Osi.md @@ -18,5 +18,5 @@ version | toolchain ``0.108.8`` | ``GCC/12.2.0`` ``0.108.9`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d90bd892d..6e8c991d7 100644 --- a/docs/version-specific/supported-software/o/index.md +++ b/docs/version-specific/supported-software/o/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (o) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - *o* - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../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) diff --git a/docs/version-specific/supported-software/o/ocamlbuild.md b/docs/version-specific/supported-software/o/ocamlbuild.md index 5b76246d8..f54cf3093 100644 --- a/docs/version-specific/supported-software/o/ocamlbuild.md +++ b/docs/version-specific/supported-software/o/ocamlbuild.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.14.3`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f06b2d956..e2c2f9f74 100644 --- a/docs/version-specific/supported-software/o/occt.md +++ b/docs/version-specific/supported-software/o/occt.md @@ -15,5 +15,5 @@ version | toolchain ``7.5.0p1`` | ``foss/2022a`` ``7.8.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3c4a4e8b..e7c59975d 100644 --- a/docs/version-specific/supported-software/o/oceanspy.md +++ b/docs/version-specific/supported-software/o/oceanspy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d5762d0c..9326c8bd5 100644 --- a/docs/version-specific/supported-software/o/olaFlow.md +++ b/docs/version-specific/supported-software/o/olaFlow.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20210820`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 039ccc61f..edab73f7d 100644 --- a/docs/version-specific/supported-software/o/olego.md +++ b/docs/version-specific/supported-software/o/olego.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.9`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a53e6764b..e9c781235 100644 --- a/docs/version-specific/supported-software/o/onedrive.md +++ b/docs/version-specific/supported-software/o/onedrive.md @@ -14,5 +14,5 @@ version | toolchain ``2.4.21`` | ``GCCcore/11.3.0`` ``2.4.25`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4b56f7614..4e9c5376e 100644 --- a/docs/version-specific/supported-software/o/ont-fast5-api.md +++ b/docs/version-specific/supported-software/o/ont-fast5-api.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``foss/2022b`` ``4.1.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aa3be4707..e7a84913e 100644 --- a/docs/version-specific/supported-software/o/ont-guppy.md +++ b/docs/version-specific/supported-software/o/ont-guppy.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``6.4.6`` | | ``system`` ``6.4.8`` | ``-CUDA-11.7.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2564643b..3046b10ef 100644 --- a/docs/version-specific/supported-software/o/ont-remora.md +++ b/docs/version-specific/supported-software/o/ont-remora.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.0`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 566c27809..5cd14cc72 100644 --- a/docs/version-specific/supported-software/o/openCARP.md +++ b/docs/version-specific/supported-software/o/openCARP.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``6.0`` | | ``foss/2020b`` ``8.2`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a47b92fe5..39c179504 100644 --- a/docs/version-specific/supported-software/o/openkim-models.md +++ b/docs/version-specific/supported-software/o/openkim-models.md @@ -19,5 +19,5 @@ version | toolchain ``20210811`` | ``GCC/12.3.0`` ``20210811`` | ``intel-compilers/2023.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 53862c07a..f9f0c135f 100644 --- a/docs/version-specific/supported-software/o/openpyxl.md +++ b/docs/version-specific/supported-software/o/openpyxl.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``3.1.2`` | | ``GCCcore/12.3.0`` ``3.1.2`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2eaa65703..02dcdca23 100644 --- a/docs/version-specific/supported-software/o/openslide-python.md +++ b/docs/version-specific/supported-software/o/openslide-python.md @@ -16,5 +16,5 @@ version | toolchain ``1.2.0`` | ``GCCcore/11.3.0`` ``1.3.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b9ad4ed9d..53a8feb46 100644 --- a/docs/version-specific/supported-software/o/optiSLang.md +++ b/docs/version-specific/supported-software/o/optiSLang.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2024R1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 12391d646..455f28836 100644 --- a/docs/version-specific/supported-software/o/orthAgogue.md +++ b/docs/version-specific/supported-software/o/orthAgogue.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20141105`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ee8c6f4a9..341283c59 100644 --- a/docs/version-specific/supported-software/o/ownCloud.md +++ b/docs/version-specific/supported-software/o/ownCloud.md @@ -13,5 +13,5 @@ version | toolchain ``2.4.3`` | ``foss/2018b`` ``2.5.4`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 447b165cf..593953426 100644 --- a/docs/version-specific/supported-software/o/oxDNA.md +++ b/docs/version-specific/supported-software/o/oxDNA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b2f2a6330..159253e46 100644 --- a/docs/version-specific/supported-software/o/oxford_asl.md +++ b/docs/version-specific/supported-software/o/oxford_asl.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.9.6`` | ``-centos7-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d39f5ca3a..4a4a21c0c 100644 --- a/docs/version-specific/supported-software/p/PAGAN2.md +++ b/docs/version-specific/supported-software/p/PAGAN2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.53_20230824`` | ``-linux64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5febf5195..b61c0fcf3 100644 --- a/docs/version-specific/supported-software/p/PAL2NAL.md +++ b/docs/version-specific/supported-software/p/PAL2NAL.md @@ -13,5 +13,5 @@ version | toolchain ``14`` | ``GCCcore/10.2.0`` ``14`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f16921a6d..a7f9465a9 100644 --- a/docs/version-specific/supported-software/p/PALEOMIX.md +++ b/docs/version-specific/supported-software/p/PALEOMIX.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.7`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6b6243374..6f9b4cf0d 100644 --- a/docs/version-specific/supported-software/p/PAML.md +++ b/docs/version-specific/supported-software/p/PAML.md @@ -18,5 +18,5 @@ version | toolchain ``4.9j`` | ``GCCcore/11.2.0`` ``4.9j`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6200bf67b..d97b92f77 100644 --- a/docs/version-specific/supported-software/p/PANDAseq.md +++ b/docs/version-specific/supported-software/p/PANDAseq.md @@ -16,5 +16,5 @@ version | toolchain ``2.11`` | ``intel/2017b`` ``2.11`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 61a9d6401..baf278604 100644 --- a/docs/version-specific/supported-software/p/PAPI.md +++ b/docs/version-specific/supported-software/p/PAPI.md @@ -26,5 +26,5 @@ version | toolchain ``7.0.1`` | ``GCCcore/12.3.0`` ``7.1.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 14ddf2a9f..cd7e35178 100644 --- a/docs/version-specific/supported-software/p/PARI-GP.md +++ b/docs/version-specific/supported-software/p/PARI-GP.md @@ -14,5 +14,5 @@ version | toolchain ``2.15.5`` | ``GCCcore/13.2.0`` ``2.7.6`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2512a2144..97261b3ce 100644 --- a/docs/version-specific/supported-software/p/PASA.md +++ b/docs/version-specific/supported-software/p/PASA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.3`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 109c06af8..448f1e3bd 100644 --- a/docs/version-specific/supported-software/p/PAUP.md +++ b/docs/version-specific/supported-software/p/PAUP.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.0a166`` | ``-centos64`` | ``system`` ``4.0a168`` | ``-centos64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 732f20923..45f76e2b4 100644 --- a/docs/version-specific/supported-software/p/PBSuite.md +++ b/docs/version-specific/supported-software/p/PBSuite.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``15.8.24`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3467117cd..1362b48f4 100644 --- a/docs/version-specific/supported-software/p/PBZIP2.md +++ b/docs/version-specific/supported-software/p/PBZIP2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.13`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b2fa74db1..f6000abc2 100644 --- a/docs/version-specific/supported-software/p/PCAngsd.md +++ b/docs/version-specific/supported-software/p/PCAngsd.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.97`` | ``-Python-2.7.14`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5e3982a50..1e79bbd8b 100644 --- a/docs/version-specific/supported-software/p/PCC.md +++ b/docs/version-specific/supported-software/p/PCC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20131024`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 65c9a4658..22f1ec21e 100644 --- a/docs/version-specific/supported-software/p/PCL.md +++ b/docs/version-specific/supported-software/p/PCL.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.7.2`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.8.1`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1c1d5a20f..9420035b3 100644 --- a/docs/version-specific/supported-software/p/PCMSolver.md +++ b/docs/version-specific/supported-software/p/PCMSolver.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.2.3`` | | ``iimpi/2020b`` ``20160205`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f82c5c092..f645c5973 100644 --- a/docs/version-specific/supported-software/p/PCRE.md +++ b/docs/version-specific/supported-software/p/PCRE.md @@ -37,5 +37,5 @@ version | toolchain ``8.45`` | ``GCCcore/12.3.0`` ``8.45`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b0f4aa426..680fe05f0 100644 --- a/docs/version-specific/supported-software/p/PCRE2.md +++ b/docs/version-specific/supported-software/p/PCRE2.md @@ -24,5 +24,5 @@ version | toolchain ``10.42`` | ``GCCcore/13.2.0`` ``10.43`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c64631b71..39b9a7ede 100644 --- a/docs/version-specific/supported-software/p/PCRaster.md +++ b/docs/version-specific/supported-software/p/PCRaster.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5f6349ba..c91739642 100644 --- a/docs/version-specific/supported-software/p/PDM.md +++ b/docs/version-specific/supported-software/p/PDM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.12.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 29a63fe6d..013470a75 100644 --- a/docs/version-specific/supported-software/p/PDT.md +++ b/docs/version-specific/supported-software/p/PDT.md @@ -22,5 +22,5 @@ version | toolchain ``3.25.1`` | ``GCCcore/9.3.0`` ``3.25.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3268a6d98..adf862dd2 100644 --- a/docs/version-specific/supported-software/p/PEAR.md +++ b/docs/version-specific/supported-software/p/PEAR.md @@ -21,5 +21,5 @@ version | toolchain ``0.9.8`` | ``foss/2016b`` ``0.9.8`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0694c5278..266bd322a 100644 --- a/docs/version-specific/supported-software/p/PEPT.md +++ b/docs/version-specific/supported-software/p/PEPT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d1499bc8..b7d9d3e10 100644 --- a/docs/version-specific/supported-software/p/PEST++.md +++ b/docs/version-specific/supported-software/p/PEST++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.5`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9131cfa86..a7910ac6b 100644 --- a/docs/version-specific/supported-software/p/PETSc.md +++ b/docs/version-specific/supported-software/p/PETSc.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``3.9.3`` | | ``foss/2018a`` ``3.9.3`` | | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 439faa46e..e9dc385ce 100644 --- a/docs/version-specific/supported-software/p/PFFT.md +++ b/docs/version-specific/supported-software/p/PFFT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20181230`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1f1b1c4fc..bbc15207b 100644 --- a/docs/version-specific/supported-software/p/PGDSpider.md +++ b/docs/version-specific/supported-software/p/PGDSpider.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.0.3`` | ``-Java-1.7.0_80`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 642141216..0a1172613 100644 --- a/docs/version-specific/supported-software/p/PGI.md +++ b/docs/version-specific/supported-software/p/PGI.md @@ -31,5 +31,5 @@ version | versionsuffix | toolchain ``19.4`` | ``-GCC-8.2.0-2.31.1`` | ``system`` ``19.7`` | ``-GCC-8.3.0-2.32`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9a4096794..65d7f063b 100644 --- a/docs/version-specific/supported-software/p/PGPLOT.md +++ b/docs/version-specific/supported-software/p/PGPLOT.md @@ -14,5 +14,5 @@ version | toolchain ``5.2.2`` | ``GCCcore/11.3.0`` ``5.2.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d0b9a4d50..c7edb4de5 100644 --- a/docs/version-specific/supported-software/p/PHANOTATE.md +++ b/docs/version-specific/supported-software/p/PHANOTATE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20190724`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cc315b06b..dfca6e5c0 100644 --- a/docs/version-specific/supported-software/p/PHASE.md +++ b/docs/version-specific/supported-software/p/PHASE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cd37661cb..0b6cf8da7 100644 --- a/docs/version-specific/supported-software/p/PHAST.md +++ b/docs/version-specific/supported-software/p/PHAST.md @@ -14,5 +14,5 @@ version | toolchain ``1.5`` | ``GCC/6.4.0-2.28`` ``1.5`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d1978bc6c..8146bd234 100644 --- a/docs/version-specific/supported-software/p/PHLAT.md +++ b/docs/version-specific/supported-software/p/PHLAT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c37925890..52cffffeb 100644 --- a/docs/version-specific/supported-software/p/PHYLIP.md +++ b/docs/version-specific/supported-software/p/PHYLIP.md @@ -17,5 +17,5 @@ version | toolchain ``3.697`` | ``GCC/9.3.0`` ``3.697`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6cceeec66..f8e5ac48e 100644 --- a/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md +++ b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.8.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 19620aca0..a90583e71 100644 --- a/docs/version-specific/supported-software/p/PICRUSt2.md +++ b/docs/version-specific/supported-software/p/PICRUSt2.md @@ -13,5 +13,5 @@ version | toolchain ``2.5.2`` | ``foss/2022a`` ``2.5.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a47c2a766..1925817ae 100644 --- a/docs/version-specific/supported-software/p/PIL.md +++ b/docs/version-specific/supported-software/p/PIL.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.1.7`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.1.7`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ab25f9356..538529c37 100644 --- a/docs/version-specific/supported-software/p/PIMS.md +++ b/docs/version-specific/supported-software/p/PIMS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.1`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ab5fb33e9..fbeac2b44 100644 --- a/docs/version-specific/supported-software/p/PIPITS.md +++ b/docs/version-specific/supported-software/p/PIPITS.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.0`` | | ``foss/2021a`` ``3.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c1a980543..1d1113653 100644 --- a/docs/version-specific/supported-software/p/PIRATE.md +++ b/docs/version-specific/supported-software/p/PIRATE.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.5`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fda8bdfd8..6292338c7 100644 --- a/docs/version-specific/supported-software/p/PLAMS.md +++ b/docs/version-specific/supported-software/p/PLAMS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.1`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 282d3c673..36360966c 100644 --- a/docs/version-specific/supported-software/p/PLAST.md +++ b/docs/version-specific/supported-software/p/PLAST.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Java-1.8.0_92`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fe6c76bc0..134140ec9 100644 --- a/docs/version-specific/supported-software/p/PLINK.md +++ b/docs/version-specific/supported-software/p/PLINK.md @@ -28,5 +28,5 @@ version | toolchain ``2.00a3.7`` | ``foss/2022a`` ``2.00a3.7`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ccaeb2fc6..4bf39618b 100644 --- a/docs/version-specific/supported-software/p/PLINKSEQ.md +++ b/docs/version-specific/supported-software/p/PLINKSEQ.md @@ -13,5 +13,5 @@ version | toolchain ``0.10`` | ``GCC/6.4.0-2.28`` ``0.10`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c7c40354e..b42878557 100644 --- a/docs/version-specific/supported-software/p/PLUMED.md +++ b/docs/version-specific/supported-software/p/PLUMED.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``foss/2022b`` ``2.9.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c3613f024..dbd8f4c31 100644 --- a/docs/version-specific/supported-software/p/PLY.md +++ b/docs/version-specific/supported-software/p/PLY.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.11`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``3.11`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8f4c16e45..c67306c12 100644 --- a/docs/version-specific/supported-software/p/PLplot.md +++ b/docs/version-specific/supported-software/p/PLplot.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 31f3b9e56..44ff01cec 100644 --- a/docs/version-specific/supported-software/p/PMIx.md +++ b/docs/version-specific/supported-software/p/PMIx.md @@ -36,5 +36,5 @@ version | toolchain ``4.2.6`` | ``GCCcore/13.2.0`` ``5.0.2`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d1abaaed6..c4a2cefe7 100644 --- a/docs/version-specific/supported-software/p/POT.md +++ b/docs/version-specific/supported-software/p/POT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.5.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``0.9.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 46d774f47..65eb6de04 100644 --- a/docs/version-specific/supported-software/p/POV-Ray.md +++ b/docs/version-specific/supported-software/p/POV-Ray.md @@ -21,5 +21,5 @@ version | toolchain ``3.7.0.8`` | ``GCC/10.2.0`` ``3.7.0.8`` | ``iccifort/2020.4.304`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e1cd58c46..8a6ea914f 100644 --- a/docs/version-specific/supported-software/p/PPanGGOLiN.md +++ b/docs/version-specific/supported-software/p/PPanGGOLiN.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.136`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5c80afe09..d21855e13 100644 --- a/docs/version-specific/supported-software/p/PPfold.md +++ b/docs/version-specific/supported-software/p/PPfold.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.1`` | ``-Java-1.8.0_66`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d45b0a0e3..3ca5c1a0d 100644 --- a/docs/version-specific/supported-software/p/PRANK.md +++ b/docs/version-specific/supported-software/p/PRANK.md @@ -18,5 +18,5 @@ version | toolchain ``170427`` | ``GCC/9.3.0`` ``170427`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f7d807caa..1705ea1b7 100644 --- a/docs/version-specific/supported-software/p/PRC.md +++ b/docs/version-specific/supported-software/p/PRC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.6`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d1cd1ebd..04fc30dc2 100644 --- a/docs/version-specific/supported-software/p/PREQUAL.md +++ b/docs/version-specific/supported-software/p/PREQUAL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.02`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index caaa0cc8f..e27c529f1 100644 --- a/docs/version-specific/supported-software/p/PRINSEQ.md +++ b/docs/version-specific/supported-software/p/PRINSEQ.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.20.4`` | ``-Perl-5.32.0`` | ``foss/2020b`` ``0.20.4`` | ``-Perl-5.34.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 166b0b27b..504346b4e 100644 --- a/docs/version-specific/supported-software/p/PRISMS-PF.md +++ b/docs/version-specific/supported-software/p/PRISMS-PF.md @@ -14,5 +14,5 @@ version | toolchain ``2.1.1`` | ``intel/2019a`` ``2.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ecec12131..337b354ac 100644 --- a/docs/version-specific/supported-software/p/PROJ.md +++ b/docs/version-specific/supported-software/p/PROJ.md @@ -36,5 +36,5 @@ version | toolchain ``9.2.0`` | ``GCCcore/12.3.0`` ``9.3.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a75b6d5f1..250ea0833 100644 --- a/docs/version-specific/supported-software/p/PRRTE.md +++ b/docs/version-specific/supported-software/p/PRRTE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ddb9ab3e3..a14b9da3a 100644 --- a/docs/version-specific/supported-software/p/PRSice.md +++ b/docs/version-specific/supported-software/p/PRSice.md @@ -17,5 +17,5 @@ version | toolchain ``2.3.5`` | ``GCCcore/11.3.0`` ``2.3.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b1c5c700e..7fe27a516 100644 --- a/docs/version-specific/supported-software/p/PSASS.md +++ b/docs/version-specific/supported-software/p/PSASS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8316d830c..6e8bd257c 100644 --- a/docs/version-specific/supported-software/p/PSI.md +++ b/docs/version-specific/supported-software/p/PSI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0b6-20160201`` | ``-mt-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index da428e282..4c6dbb11f 100644 --- a/docs/version-specific/supported-software/p/PSI4.md +++ b/docs/version-specific/supported-software/p/PSI4.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.7`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a75513c76..eb7e6ba20 100644 --- a/docs/version-specific/supported-software/p/PSIPRED.md +++ b/docs/version-specific/supported-software/p/PSIPRED.md @@ -13,5 +13,5 @@ version | toolchain ``4.02`` | ``GCC/12.3.0`` ``4.02`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5b34bf4db..f15f2cc6a 100644 --- a/docs/version-specific/supported-software/p/PSM2.md +++ b/docs/version-specific/supported-software/p/PSM2.md @@ -18,5 +18,5 @@ version | toolchain ``12.0.1`` | ``GCCcore/13.2.0`` ``12.0.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fb41a0dc6..6573f8419 100644 --- a/docs/version-specific/supported-software/p/PSORTb.md +++ b/docs/version-specific/supported-software/p/PSORTb.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.4`` | ``-Perl-5.22.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3a4a25d0b..9fbd814fb 100644 --- a/docs/version-specific/supported-software/p/PSolver.md +++ b/docs/version-specific/supported-software/p/PSolver.md @@ -23,5 +23,5 @@ version | toolchain ``1.8.3`` | ``intel/2021a`` ``1.8.3`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 172689472..d488bc77c 100644 --- a/docs/version-specific/supported-software/p/PTESFinder.md +++ b/docs/version-specific/supported-software/p/PTESFinder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c47cc4696..8038cf52e 100644 --- a/docs/version-specific/supported-software/p/PYPOWER.md +++ b/docs/version-specific/supported-software/p/PYPOWER.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.1.15`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5a8922ff6..855270e2a 100644 --- a/docs/version-specific/supported-software/p/PYTHIA.md +++ b/docs/version-specific/supported-software/p/PYTHIA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``8.226`` | ``-Python-2.7.13`` | ``intel/2017a`` ``8.309`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 107fa0840..42c0d9dae 100644 --- a/docs/version-specific/supported-software/p/PaStiX.md +++ b/docs/version-specific/supported-software/p/PaStiX.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.2.3`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b441b59d8..827b21606 100644 --- a/docs/version-specific/supported-software/p/Pandoc.md +++ b/docs/version-specific/supported-software/p/Pandoc.md @@ -16,5 +16,5 @@ version | toolchain ``2.5`` | ``system`` ``3.1.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fc6036f6a..4c4702743 100644 --- a/docs/version-specific/supported-software/p/Panedr.md +++ b/docs/version-specific/supported-software/p/Panedr.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c337c2e08..7583784b3 100644 --- a/docs/version-specific/supported-software/p/Pango.md +++ b/docs/version-specific/supported-software/p/Pango.md @@ -37,5 +37,5 @@ version | toolchain ``1.50.7`` | ``GCCcore/11.3.0`` ``1.51.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8ddcd275a..960f643ae 100644 --- a/docs/version-specific/supported-software/p/ParMETIS.md +++ b/docs/version-specific/supported-software/p/ParMETIS.md @@ -39,5 +39,5 @@ version | toolchain ``4.0.3`` | ``intel/2018a`` ``4.0.3`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 57fefb70b..2b37bf86a 100644 --- a/docs/version-specific/supported-software/p/ParMGridGen.md +++ b/docs/version-specific/supported-software/p/ParMGridGen.md @@ -18,5 +18,5 @@ version | toolchain ``1.0`` | ``intel/2016a`` ``1.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d6a87aa2..1f3b80d8e 100644 --- a/docs/version-specific/supported-software/p/ParaView.md +++ b/docs/version-specific/supported-software/p/ParaView.md @@ -42,5 +42,5 @@ version | versionsuffix | toolchain ``5.9.1`` | ``-mpi`` | ``foss/2021b`` ``5.9.1`` | ``-mpi`` | ``intel/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 08835e644..81e5ff809 100644 --- a/docs/version-specific/supported-software/p/Parallel-Hashmap.md +++ b/docs/version-specific/supported-software/p/Parallel-Hashmap.md @@ -14,5 +14,5 @@ version | toolchain ``1.33`` | ``GCCcore/10.3.0`` ``1.36`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e215bb7d2..d234a34a1 100644 --- a/docs/version-specific/supported-software/p/ParallelIO.md +++ b/docs/version-specific/supported-software/p/ParallelIO.md @@ -14,5 +14,5 @@ version | toolchain ``2.5.10`` | ``gompi/2022a`` ``2.5.10`` | ``iimpi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e1ecbb0ef..2aea8d697 100644 --- a/docs/version-specific/supported-software/p/Paraver.md +++ b/docs/version-specific/supported-software/p/Paraver.md @@ -14,5 +14,5 @@ version | toolchain ``4.8.1`` | ``foss/2019a`` ``4.9.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3eae410fd..417d20156 100644 --- a/docs/version-specific/supported-software/p/Parcels.md +++ b/docs/version-specific/supported-software/p/Parcels.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.4.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 06628649c..9dcea1824 100644 --- a/docs/version-specific/supported-software/p/ParmEd.md +++ b/docs/version-specific/supported-software/p/ParmEd.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aab0dd605..03a161905 100644 --- a/docs/version-specific/supported-software/p/Parsl.md +++ b/docs/version-specific/supported-software/p/Parsl.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2023.7.17`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d8c6311ad..57466c58b 100644 --- a/docs/version-specific/supported-software/p/PartitionFinder.md +++ b/docs/version-specific/supported-software/p/PartitionFinder.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b3f3d8034..31360bdfc 100644 --- a/docs/version-specific/supported-software/p/PennCNV.md +++ b/docs/version-specific/supported-software/p/PennCNV.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.5`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2bbbefcf7..0ba2dc6d5 100644 --- a/docs/version-specific/supported-software/p/Percolator.md +++ b/docs/version-specific/supported-software/p/Percolator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.4`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4a19c6bad..62a3c202a 100644 --- a/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md +++ b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md @@ -13,5 +13,5 @@ version | toolchain ``5.36.1`` | ``GCCcore/12.3.0`` ``5.38.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 84e7c032d..d02da3754 100644 --- a/docs/version-specific/supported-software/p/Perl.md +++ b/docs/version-specific/supported-software/p/Perl.md @@ -63,5 +63,5 @@ version | versionsuffix | toolchain ``5.38.0`` | | ``system`` ``5.38.2`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e9cef29f4..e08b4121a 100644 --- a/docs/version-specific/supported-software/p/Perl4-CoreLibs.md +++ b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.003`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fd2d26417..68b0073ba 100644 --- a/docs/version-specific/supported-software/p/Perseus.md +++ b/docs/version-specific/supported-software/p/Perseus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.7.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 54b70ad44..779c87121 100644 --- a/docs/version-specific/supported-software/p/PfamScan.md +++ b/docs/version-specific/supported-software/p/PfamScan.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.6`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2f9b67143..ba3854cdc 100644 --- a/docs/version-specific/supported-software/p/Phantompeakqualtools.md +++ b/docs/version-specific/supported-software/p/Phantompeakqualtools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b424423ee..6a09e69bc 100644 --- a/docs/version-specific/supported-software/p/PheWAS.md +++ b/docs/version-specific/supported-software/p/PheWAS.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.99.5-2`` | ``-R-3.6.0`` | ``foss/2019a`` ``0.99.5-2`` | ``-R-3.6.0`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 28d88ae04..e34dd0b50 100644 --- a/docs/version-specific/supported-software/p/PheWeb.md +++ b/docs/version-specific/supported-software/p/PheWeb.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.20`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 340410e49..a73d67338 100644 --- a/docs/version-specific/supported-software/p/Phenoflow.md +++ b/docs/version-specific/supported-software/p/Phenoflow.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2-20200917`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4ae22be5e..54b6bc29f 100644 --- a/docs/version-specific/supported-software/p/PhiPack.md +++ b/docs/version-specific/supported-software/p/PhiPack.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2016.06.14`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 10929f228..6da5c9e3f 100644 --- a/docs/version-specific/supported-software/p/Philosopher.md +++ b/docs/version-specific/supported-software/p/Philosopher.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.0`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7f19faa2d..6a5e62ad6 100644 --- a/docs/version-specific/supported-software/p/PhyML.md +++ b/docs/version-specific/supported-software/p/PhyML.md @@ -14,5 +14,5 @@ version | toolchain ``3.3.20200621`` | ``foss/2020b`` ``3.3.20220408`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 82d6f45dc..b3c8137c4 100644 --- a/docs/version-specific/supported-software/p/PhyloBayes-MPI.md +++ b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20161021`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 54bc0c7b6..97a83e004 100644 --- a/docs/version-specific/supported-software/p/PhyloPhlAn.md +++ b/docs/version-specific/supported-software/p/PhyloPhlAn.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.0.2`` | | ``foss/2021a`` ``3.0.3`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b12b7271d..686b32fe1 100644 --- a/docs/version-specific/supported-software/p/PileOMeth.md +++ b/docs/version-specific/supported-software/p/PileOMeth.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.11`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d872550da..6f55f5272 100644 --- a/docs/version-specific/supported-software/p/Pillow-SIMD.md +++ b/docs/version-specific/supported-software/p/Pillow-SIMD.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``9.5.0`` | | ``GCCcore/12.2.0`` ``9.5.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 49a18b3ab..2ea930343 100644 --- a/docs/version-specific/supported-software/p/Pillow.md +++ b/docs/version-specific/supported-software/p/Pillow.md @@ -50,5 +50,5 @@ version | versionsuffix | toolchain ``9.2.0`` | | ``GCCcore/10.2.0`` ``9.4.0`` | | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 77971f2bd..8a3500fcb 100644 --- a/docs/version-specific/supported-software/p/Pilon.md +++ b/docs/version-specific/supported-software/p/Pilon.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.23`` | ``-Java-1.8`` | ``system`` ``1.23`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 889bb32ed..cba7c1bd4 100644 --- a/docs/version-specific/supported-software/p/Pindel.md +++ b/docs/version-specific/supported-software/p/Pindel.md @@ -15,5 +15,5 @@ version | toolchain ``0.2.5b9-20170508`` | ``GCC/11.3.0`` ``0.2.5b9-20170508`` | ``GCC/6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 48ce9c3a7..9bdcaee5b 100644 --- a/docs/version-specific/supported-software/p/Pingouin.md +++ b/docs/version-specific/supported-software/p/Pingouin.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2ea86d926..def3426d3 100644 --- a/docs/version-specific/supported-software/p/Pint.md +++ b/docs/version-specific/supported-software/p/Pint.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.22`` | | ``GCCcore/11.3.0`` ``0.23`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 51094bce3..b1b3913ed 100644 --- a/docs/version-specific/supported-software/p/Pisces.md +++ b/docs/version-specific/supported-software/p/Pisces.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.2.7.47`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6ce59a248..cd8ee6e07 100644 --- a/docs/version-specific/supported-software/p/PlaScope.md +++ b/docs/version-specific/supported-software/p/PlaScope.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 24c3acd3c..0a9d83432 100644 --- a/docs/version-specific/supported-software/p/PlasmaPy.md +++ b/docs/version-specific/supported-software/p/PlasmaPy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f1ea4979a..f4db8dda2 100644 --- a/docs/version-specific/supported-software/p/Platanus.md +++ b/docs/version-specific/supported-software/p/Platanus.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-linux-x86_64`` | ``system`` ``1.2.4`` | | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8616415dc..2e56059b9 100644 --- a/docs/version-specific/supported-software/p/Platypus-Opt.md +++ b/docs/version-specific/supported-software/p/Platypus-Opt.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 973143699..e06b9131a 100644 --- a/docs/version-specific/supported-software/p/Platypus.md +++ b/docs/version-specific/supported-software/p/Platypus.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.1`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 922cccb46..32b7cd745 100644 --- a/docs/version-specific/supported-software/p/Ploticus.md +++ b/docs/version-specific/supported-software/p/Ploticus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.42`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c92048779..1e9f1382b 100644 --- a/docs/version-specific/supported-software/p/PnetCDF.md +++ b/docs/version-specific/supported-software/p/PnetCDF.md @@ -29,5 +29,5 @@ version | toolchain ``1.8.1`` | ``intel/2017a`` ``1.9.0`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a3582562e..eec55d15a 100644 --- a/docs/version-specific/supported-software/p/Porechop.md +++ b/docs/version-specific/supported-software/p/Porechop.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.2.4`` | ``-Python-3.6.6`` | ``foss/2018b`` ``0.2.4`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 38a7a172b..1e18cd1b4 100644 --- a/docs/version-specific/supported-software/p/PortAudio.md +++ b/docs/version-specific/supported-software/p/PortAudio.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``19.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9f7636da6..3bde9db4e 100644 --- a/docs/version-specific/supported-software/p/PortMidi.md +++ b/docs/version-specific/supported-software/p/PortMidi.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.4`` | ``GCCcore/11.3.0`` ``2.0.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 547f77867..eb904414e 100644 --- a/docs/version-specific/supported-software/p/Portcullis.md +++ b/docs/version-specific/supported-software/p/Portcullis.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.2`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d676ba62e..013b3a41c 100644 --- a/docs/version-specific/supported-software/p/PostgreSQL.md +++ b/docs/version-specific/supported-software/p/PostgreSQL.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``9.6.2`` | ``-Python-2.7.12`` | ``foss/2016b`` ``9.6.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index dad110cfc..9ba965efb 100644 --- a/docs/version-specific/supported-software/p/Postgres-XL.md +++ b/docs/version-specific/supported-software/p/Postgres-XL.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.5r1`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8fcd45ebc..363d33786 100644 --- a/docs/version-specific/supported-software/p/Primer3.md +++ b/docs/version-specific/supported-software/p/Primer3.md @@ -15,5 +15,5 @@ version | toolchain ``2.4.0`` | ``intel/2018b`` ``2.5.0`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3f9298928..44ed3b012 100644 --- a/docs/version-specific/supported-software/p/ProBiS.md +++ b/docs/version-specific/supported-software/p/ProBiS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20230403`` | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0381c19a2..ec7f576bb 100644 --- a/docs/version-specific/supported-software/p/ProFit.md +++ b/docs/version-specific/supported-software/p/ProFit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 89d912b3c..e784c2d8e 100644 --- a/docs/version-specific/supported-software/p/ProbABEL.md +++ b/docs/version-specific/supported-software/p/ProbABEL.md @@ -13,5 +13,5 @@ version | toolchain ``0.5.0`` | ``GCCcore/9.3.0`` ``0.5.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cd12c8b7a..d8f9a4f91 100644 --- a/docs/version-specific/supported-software/p/ProjectQ.md +++ b/docs/version-specific/supported-software/p/ProjectQ.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.2`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 429c23748..b1a3027d3 100644 --- a/docs/version-specific/supported-software/p/ProtHint.md +++ b/docs/version-specific/supported-software/p/ProtHint.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d388da27..e996914f2 100644 --- a/docs/version-specific/supported-software/p/ProteinMPNN.md +++ b/docs/version-specific/supported-software/p/ProteinMPNN.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1-20230627`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 85765b423..e3efe556c 100644 --- a/docs/version-specific/supported-software/p/Proteinortho.md +++ b/docs/version-specific/supported-software/p/Proteinortho.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.16b`` | ``-Python-3.6.4-Perl-5.26.1`` | ``foss/2018a`` ``6.2.3`` | | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d74ab62be..e6b311c69 100644 --- a/docs/version-specific/supported-software/p/PsiCLASS.md +++ b/docs/version-specific/supported-software/p/PsiCLASS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7455d333b..1147b245a 100644 --- a/docs/version-specific/supported-software/p/PuLP.md +++ b/docs/version-specific/supported-software/p/PuLP.md @@ -14,5 +14,5 @@ version | toolchain ``2.7.0`` | ``foss/2022b`` ``2.8.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b1d96c424..cebe893e5 100644 --- a/docs/version-specific/supported-software/p/PyAEDT.md +++ b/docs/version-specific/supported-software/p/PyAEDT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.7`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ff716f025..04af4797b 100644 --- a/docs/version-specific/supported-software/p/PyAMG.md +++ b/docs/version-specific/supported-software/p/PyAMG.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``4.2.3`` | | ``foss/2021a`` ``5.1.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3b34d48fb..e8b57b68d 100644 --- a/docs/version-specific/supported-software/p/PyAPS3.md +++ b/docs/version-specific/supported-software/p/PyAPS3.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190407`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fa223241e..ec8850e7e 100644 --- a/docs/version-specific/supported-software/p/PyAV.md +++ b/docs/version-specific/supported-software/p/PyAV.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``10.0.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d6445d8c3..91be75cdf 100644 --- a/docs/version-specific/supported-software/p/PyBerny.md +++ b/docs/version-specific/supported-software/p/PyBerny.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.6.3`` | | ``foss/2022a`` ``0.6.3`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8d1f2fbf1..4ae27490e 100644 --- a/docs/version-specific/supported-software/p/PyBioLib.md +++ b/docs/version-specific/supported-software/p/PyBioLib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.988`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a6f6040aa..cfa45ddac 100644 --- a/docs/version-specific/supported-software/p/PyCUDA.md +++ b/docs/version-specific/supported-software/p/PyCUDA.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2019.1.2`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` ``2020.1`` | | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 19fad288f..0b6620c1b 100644 --- a/docs/version-specific/supported-software/p/PyCairo.md +++ b/docs/version-specific/supported-software/p/PyCairo.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``1.25.0`` | | ``GCCcore/12.3.0`` ``1.25.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9c6279fe9..fde379d07 100644 --- a/docs/version-specific/supported-software/p/PyCalib.md +++ b/docs/version-specific/supported-software/p/PyCalib.md @@ -13,5 +13,5 @@ version | toolchain ``0.1.0.dev0`` | ``foss/2021b`` ``20230531`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index da8c2f083..8fa61342e 100644 --- a/docs/version-specific/supported-software/p/PyCharm.md +++ b/docs/version-specific/supported-software/p/PyCharm.md @@ -16,5 +16,5 @@ version | toolchain ``2022.2.2`` | ``system`` ``2022.3.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 260e153fe..e3bda8b95 100644 --- a/docs/version-specific/supported-software/p/PyCheMPS2.md +++ b/docs/version-specific/supported-software/p/PyCheMPS2.md @@ -13,5 +13,5 @@ version | toolchain ``1.8.12`` | ``foss/2022a`` ``1.8.12`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2f9200f62..713c13e59 100644 --- a/docs/version-specific/supported-software/p/PyCifRW.md +++ b/docs/version-specific/supported-software/p/PyCifRW.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.4.2`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aa6305129..d27402b6f 100644 --- a/docs/version-specific/supported-software/p/PyClone.md +++ b/docs/version-specific/supported-software/p/PyClone.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2020.9b2`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 35d36b0d5..2bc5ace7e 100644 --- a/docs/version-specific/supported-software/p/PyCogent.md +++ b/docs/version-specific/supported-software/p/PyCogent.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.9`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.9`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4551c60aa..14403af5e 100644 --- a/docs/version-specific/supported-software/p/PyDamage.md +++ b/docs/version-specific/supported-software/p/PyDamage.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.70`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fe54ab3c1..d0f112a47 100644 --- a/docs/version-specific/supported-software/p/PyDatastream.md +++ b/docs/version-specific/supported-software/p/PyDatastream.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1be0a21bc..aaa55afe5 100644 --- a/docs/version-specific/supported-software/p/PyEVTK.md +++ b/docs/version-specific/supported-software/p/PyEVTK.md @@ -13,5 +13,5 @@ version | toolchain ``1.4.1`` | ``foss/2021b`` ``2.0.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0d015b078..d3654a3a0 100644 --- a/docs/version-specific/supported-software/p/PyEXR.md +++ b/docs/version-specific/supported-software/p/PyEXR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.10`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 947507516..df5238610 100644 --- a/docs/version-specific/supported-software/p/PyFFmpeg.md +++ b/docs/version-specific/supported-software/p/PyFFmpeg.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1beta`` | ``-Python-2.7.10`` | ``gimkl/2.11.5`` ``2.1beta`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3e129b5b4..0bbf4277a 100644 --- a/docs/version-specific/supported-software/p/PyFMI.md +++ b/docs/version-specific/supported-software/p/PyFMI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 12f7c0fd1..cef920667 100644 --- a/docs/version-specific/supported-software/p/PyFR.md +++ b/docs/version-specific/supported-software/p/PyFR.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 70f5b45d9..c0b8781a1 100644 --- a/docs/version-specific/supported-software/p/PyFoam.md +++ b/docs/version-specific/supported-software/p/PyFoam.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2020.5`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8640121a0..380e3e90b 100644 --- a/docs/version-specific/supported-software/p/PyFrag.md +++ b/docs/version-specific/supported-software/p/PyFrag.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2019-20220216`` | ``-ASA`` | ``intel/2020b`` ``2023-dev.20240220`` | ``-ASA`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8b7abf939..57c2b8878 100644 --- a/docs/version-specific/supported-software/p/PyGEOS.md +++ b/docs/version-specific/supported-software/p/PyGEOS.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.7.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.8`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4362b6444..1c61ae05b 100644 --- a/docs/version-specific/supported-software/p/PyGObject.md +++ b/docs/version-specific/supported-software/p/PyGObject.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``3.46.0`` | | ``GCCcore/12.3.0`` ``3.46.0`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 92d7658e3..c3d9d20d2 100644 --- a/docs/version-specific/supported-software/p/PyGTK.md +++ b/docs/version-specific/supported-software/p/PyGTK.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.24.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.24.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 97e73762a..467beb0c9 100644 --- a/docs/version-specific/supported-software/p/PyGTS.md +++ b/docs/version-specific/supported-software/p/PyGTS.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 69a6fc24d..c5950e89d 100644 --- a/docs/version-specific/supported-software/p/PyGWAS.md +++ b/docs/version-specific/supported-software/p/PyGWAS.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.6.1`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.7.1`` | ``-Python-2.7.13`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c53a4ab67..1e54a82fa 100644 --- a/docs/version-specific/supported-software/p/PyHMMER.md +++ b/docs/version-specific/supported-software/p/PyHMMER.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.10.6`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cfef5e573..404ce5b2b 100644 --- a/docs/version-specific/supported-software/p/PyImageJ.md +++ b/docs/version-specific/supported-software/p/PyImageJ.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bc5548d98..ff14d8c23 100644 --- a/docs/version-specific/supported-software/p/PyInstaller.md +++ b/docs/version-specific/supported-software/p/PyInstaller.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.3.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 82d4afffe..b06b48112 100644 --- a/docs/version-specific/supported-software/p/PyMC.md +++ b/docs/version-specific/supported-software/p/PyMC.md @@ -14,5 +14,5 @@ version | toolchain ``2.3.8`` | ``intel/2021b`` ``5.9.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 93822a493..c51017928 100644 --- a/docs/version-specific/supported-software/p/PyMC3.md +++ b/docs/version-specific/supported-software/p/PyMC3.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.8`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e35ab3e03..42fa4f9f2 100644 --- a/docs/version-specific/supported-software/p/PyMOL.md +++ b/docs/version-specific/supported-software/p/PyMOL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 80d1f8033..b53a86d3f 100644 --- a/docs/version-specific/supported-software/p/PyNAST.md +++ b/docs/version-specific/supported-software/p/PyNAST.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.2.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 760821f15..37b998fd7 100644 --- a/docs/version-specific/supported-software/p/PyOD.md +++ b/docs/version-specific/supported-software/p/PyOD.md @@ -13,5 +13,5 @@ version | toolchain ``0.8.7`` | ``foss/2020b`` ``0.8.7`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 89beb20f9..075da1f63 100644 --- a/docs/version-specific/supported-software/p/PyOpenCL.md +++ b/docs/version-specific/supported-software/p/PyOpenCL.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2023.1.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2023.1.4`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4cfceaf6b..a92d1ada4 100644 --- a/docs/version-specific/supported-software/p/PyOpenGL.md +++ b/docs/version-specific/supported-software/p/PyOpenGL.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``3.1.6`` | | ``GCCcore/11.3.0`` ``3.1.7`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b60f43331..5f34e87b7 100644 --- a/docs/version-specific/supported-software/p/PyPSA.md +++ b/docs/version-specific/supported-software/p/PyPSA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.17.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d1ec86c4..126ad8303 100644 --- a/docs/version-specific/supported-software/p/PyPy.md +++ b/docs/version-specific/supported-software/p/PyPy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.3.12`` | ``-3.10`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fd0114b89..aea0697e6 100644 --- a/docs/version-specific/supported-software/p/PyQt-builder.md +++ b/docs/version-specific/supported-software/p/PyQt-builder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.15.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d804dc56..fe5dceb67 100644 --- a/docs/version-specific/supported-software/p/PyQt.md +++ b/docs/version-specific/supported-software/p/PyQt.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``4.12.1`` | ``-Python-2.7.14`` | ``foss/2018a`` ``4.12.3`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index eb2380177..0ba4c3778 100644 --- a/docs/version-specific/supported-software/p/PyQt5.md +++ b/docs/version-specific/supported-software/p/PyQt5.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``5.9.2`` | ``-Python-2.7.14`` | ``intel/2018a`` ``5.9.2`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 53b92dd70..68f4af37a 100644 --- a/docs/version-specific/supported-software/p/PyQtGraph.md +++ b/docs/version-specific/supported-software/p/PyQtGraph.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``0.13.3`` | | ``foss/2022a`` ``0.13.7`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6decf420b..d64c7c3ba 100644 --- a/docs/version-specific/supported-software/p/PyRETIS.md +++ b/docs/version-specific/supported-software/p/PyRETIS.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.5.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.5.0`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d47b6f9d..3b17df072 100644 --- a/docs/version-specific/supported-software/p/PyRe.md +++ b/docs/version-specific/supported-software/p/PyRe.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.0.3-20190221`` | ``-Python-3.7.4`` | ``foss/2019b`` ``5.0.3-20190221`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0d403a6d0..b05ef6c9e 100644 --- a/docs/version-specific/supported-software/p/PyRosetta.md +++ b/docs/version-specific/supported-software/p/PyRosetta.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.release-292`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a99aa6db6..4459641e1 100644 --- a/docs/version-specific/supported-software/p/PySAT.md +++ b/docs/version-specific/supported-software/p/PySAT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.6.dev11`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` ``0.1.7.dev1`` | | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6ceca0e7f..19734e73b 100644 --- a/docs/version-specific/supported-software/p/PySCF.md +++ b/docs/version-specific/supported-software/p/PySCF.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.1.1`` | | ``foss/2022a`` ``2.4.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 179121d42..6b6e7f2a8 100644 --- a/docs/version-specific/supported-software/p/PySINDy.md +++ b/docs/version-specific/supported-software/p/PySINDy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4da452919..b339c99be 100644 --- a/docs/version-specific/supported-software/p/PySide2.md +++ b/docs/version-specific/supported-software/p/PySide2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.14.2.3`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 234b51bbe..86695b9ba 100644 --- a/docs/version-specific/supported-software/p/PyStan.md +++ b/docs/version-specific/supported-software/p/PyStan.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.19.1.1`` | | ``intel/2020b`` ``3.5.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8e59edb94..2e2f80522 100644 --- a/docs/version-specific/supported-software/p/PyTables.md +++ b/docs/version-specific/supported-software/p/PyTables.md @@ -43,5 +43,5 @@ version | versionsuffix | toolchain ``3.8.0`` | | ``foss/2023a`` ``3.9.2`` | | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 54ce2c8dd..e125a429b 100644 --- a/docs/version-specific/supported-software/p/PyTensor.md +++ b/docs/version-specific/supported-software/p/PyTensor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.17.1`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5fad74ddc..035f6aa3c 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Geometric.md +++ b/docs/version-specific/supported-software/p/PyTorch-Geometric.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` ``2.5.0`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7d86e58f9..a1cced150 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Ignite.md +++ b/docs/version-specific/supported-software/p/PyTorch-Ignite.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.4.13`` | | ``foss/2023a`` ``0.4.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d1aea7b6c..ff4917552 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Image-Models.md +++ b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.9.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.9.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 92a8c0120..71bf50d36 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Lightning.md +++ b/docs/version-specific/supported-software/p/PyTorch-Lightning.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.2.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 123f67160..4f96b4dd0 100644 --- a/docs/version-specific/supported-software/p/PyTorch-bundle.md +++ b/docs/version-specific/supported-software/p/PyTorch-bundle.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.1.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.1.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bdc0b7bd7..cdd0e4fe6 100644 --- a/docs/version-specific/supported-software/p/PyTorch.md +++ b/docs/version-specific/supported-software/p/PyTorch.md @@ -62,5 +62,5 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``foss/2023a`` ``2.1.2`` | | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ba76b8980..afe2eb8fa 100644 --- a/docs/version-specific/supported-software/p/PyTorch3D.md +++ b/docs/version-specific/supported-software/p/PyTorch3D.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.0`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ff7d4177f..fbc5340d8 100644 --- a/docs/version-specific/supported-software/p/PyTorchVideo.md +++ b/docs/version-specific/supported-software/p/PyTorchVideo.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 92a07a2f7..6eda4f9c8 100644 --- a/docs/version-specific/supported-software/p/PyVCF.md +++ b/docs/version-specific/supported-software/p/PyVCF.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.8`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b108630f1..e44d798ab 100644 --- a/docs/version-specific/supported-software/p/PyVCF3.md +++ b/docs/version-specific/supported-software/p/PyVCF3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e23b4965d..9564bf69f 100644 --- a/docs/version-specific/supported-software/p/PyVista.md +++ b/docs/version-specific/supported-software/p/PyVista.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.43.8`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7769350d4..e1baa43d0 100644 --- a/docs/version-specific/supported-software/p/PyWBGT.md +++ b/docs/version-specific/supported-software/p/PyWBGT.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.0`` | ``foss/2021b`` ``1.0.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5fe82d0f4..255301069 100644 --- a/docs/version-specific/supported-software/p/PyWavelets.md +++ b/docs/version-specific/supported-software/p/PyWavelets.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.1`` | | ``intelcuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cdeb30746..da99bcce8 100644 --- a/docs/version-specific/supported-software/p/PyYAML.md +++ b/docs/version-specific/supported-software/p/PyYAML.md @@ -45,5 +45,5 @@ version | versionsuffix | toolchain ``6.0`` | | ``GCCcore/12.3.0`` ``6.0.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ec2a37dd0..f648283a2 100644 --- a/docs/version-specific/supported-software/p/PyZMQ.md +++ b/docs/version-specific/supported-software/p/PyZMQ.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``25.1.1`` | | ``GCCcore/12.3.0`` ``25.1.2`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a656f92e8..e36c4f628 100644 --- a/docs/version-specific/supported-software/p/PycURL.md +++ b/docs/version-specific/supported-software/p/PycURL.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``7.45.2`` | | ``GCCcore/12.3.0`` ``7.45.3`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0eb2702fd..3b8ae2654 100644 --- a/docs/version-specific/supported-software/p/Pychopper.md +++ b/docs/version-specific/supported-software/p/Pychopper.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 796a88179..b31f98f49 100644 --- a/docs/version-specific/supported-software/p/Pygments.md +++ b/docs/version-specific/supported-software/p/Pygments.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.3`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.1.3`` | ``-Python-3.5.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8b9a71dde..8ac9405b2 100644 --- a/docs/version-specific/supported-software/p/Pyke3.md +++ b/docs/version-specific/supported-software/p/Pyke3.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 50b8cd568..a307f5e7e 100644 --- a/docs/version-specific/supported-software/p/Pylint.md +++ b/docs/version-specific/supported-software/p/Pylint.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.17.4`` | | ``GCCcore/12.2.0`` ``2.7.4`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e960a7996..0e390337e 100644 --- a/docs/version-specific/supported-software/p/Pyomo.md +++ b/docs/version-specific/supported-software/p/Pyomo.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``6.4.2`` | | ``foss/2022a`` ``6.5.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a028b0c63..7429a8a57 100644 --- a/docs/version-specific/supported-software/p/Pyro4.md +++ b/docs/version-specific/supported-software/p/Pyro4.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.47`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 248d2bc6c..ae58f2462 100644 --- a/docs/version-specific/supported-software/p/Pysam.md +++ b/docs/version-specific/supported-software/p/Pysam.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``0.8.4`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.9.1.4`` | ``-Python-2.7.12`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index edb09aad0..7cc92c81d 100644 --- a/docs/version-specific/supported-software/p/Pysolar.md +++ b/docs/version-specific/supported-software/p/Pysolar.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.8`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``0.8`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a48bb3561..8479f94ef 100644 --- a/docs/version-specific/supported-software/p/Python-bundle-PyPI.md +++ b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md @@ -13,5 +13,5 @@ version | toolchain ``2023.06`` | ``GCCcore/12.3.0`` ``2023.10`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 34db11e66..50e0ea976 100644 --- a/docs/version-specific/supported-software/p/Python-bundle.md +++ b/docs/version-specific/supported-software/p/Python-bundle.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.10.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7dcc0f7fe..b3db03e58 100644 --- a/docs/version-specific/supported-software/p/Python.md +++ b/docs/version-specific/supported-software/p/Python.md @@ -110,5 +110,5 @@ version | versionsuffix | toolchain ``3.9.6`` | ``-bare`` | ``GCCcore/11.2.0`` ``3.9.6`` | | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fef7d20a1..0a6a91ef5 100644 --- a/docs/version-specific/supported-software/p/index.md +++ b/docs/version-specific/supported-software/p/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (p) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - *p* - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../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) diff --git a/docs/version-specific/supported-software/p/p11-kit.md b/docs/version-specific/supported-software/p/p11-kit.md index 70f8ac2d9..7ca1e5877 100644 --- a/docs/version-specific/supported-software/p/p11-kit.md +++ b/docs/version-specific/supported-software/p/p11-kit.md @@ -19,5 +19,5 @@ version | toolchain ``0.24.1`` | ``GCCcore/11.3.0`` ``0.25.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b114aa793..5ceb46c00 100644 --- a/docs/version-specific/supported-software/p/p4-phylogenetics.md +++ b/docs/version-specific/supported-software/p/p4-phylogenetics.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4-20210322`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fdcf2a8fd..a5988236e 100644 --- a/docs/version-specific/supported-software/p/p4est.md +++ b/docs/version-specific/supported-software/p/p4est.md @@ -15,5 +15,5 @@ version | toolchain ``2.8`` | ``foss/2021a`` ``2.8.6`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 157bb2d21..6070d72c1 100644 --- a/docs/version-specific/supported-software/p/p4vasp.md +++ b/docs/version-specific/supported-software/p/p4vasp.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.3.30`` | ``-Python-2.7.14`` | ``intel/2017b`` ``0.3.30`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5a846e12..7bddd4b42 100644 --- a/docs/version-specific/supported-software/p/p7zip.md +++ b/docs/version-specific/supported-software/p/p7zip.md @@ -21,5 +21,5 @@ version | toolchain ``9.38.1`` | ``GCC/4.9.2`` ``9.38.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 362cd1b46..0690838bd 100644 --- a/docs/version-specific/supported-software/p/pFUnit.md +++ b/docs/version-specific/supported-software/p/pFUnit.md @@ -15,5 +15,5 @@ version | toolchain ``4.2.0`` | ``iimpi/2021a`` ``4.7.3`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cd8a00f23..91697d7c1 100644 --- a/docs/version-specific/supported-software/p/pIRS.md +++ b/docs/version-specific/supported-software/p/pIRS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.2`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 81139854c..b675a92eb 100644 --- a/docs/version-specific/supported-software/p/packmol.md +++ b/docs/version-specific/supported-software/p/packmol.md @@ -16,5 +16,5 @@ version | toolchain ``20.2.2`` | ``GCC/10.2.0`` ``v20.2.2`` | ``iccifort/2020.1.217`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 507237c15..7504ecb02 100644 --- a/docs/version-specific/supported-software/p/pagmo.md +++ b/docs/version-specific/supported-software/p/pagmo.md @@ -15,5 +15,5 @@ version | toolchain ``2.18.0`` | ``foss/2021b`` ``2.18.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 37bb7d8fa..5d0ca9458 100644 --- a/docs/version-specific/supported-software/p/pairsnp.md +++ b/docs/version-specific/supported-software/p/pairsnp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.7`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bce6b5691..8e1d4a859 100644 --- a/docs/version-specific/supported-software/p/paladin.md +++ b/docs/version-specific/supported-software/p/paladin.md @@ -13,5 +13,5 @@ version | toolchain ``1.4.6`` | ``GCCcore/10.3.0`` ``1.4.6`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bda503e1b..4b21486f8 100644 --- a/docs/version-specific/supported-software/p/panaroo.md +++ b/docs/version-specific/supported-software/p/panaroo.md @@ -14,5 +14,5 @@ version | toolchain ``1.2.9`` | ``foss/2021a`` ``1.3.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b03c7f7c5..66cbfe803 100644 --- a/docs/version-specific/supported-software/p/pandapower.md +++ b/docs/version-specific/supported-software/p/pandapower.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.7.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index eaaa4fa7b..9824c6b3b 100644 --- a/docs/version-specific/supported-software/p/pandas-datareader.md +++ b/docs/version-specific/supported-software/p/pandas-datareader.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 650f0ba66..21dcc2e3a 100644 --- a/docs/version-specific/supported-software/p/pandas.md +++ b/docs/version-specific/supported-software/p/pandas.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``0.21.0`` | ``-Python-3.6.3`` | ``intel/2017b`` ``1.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 175475a2c..544dac1c8 100644 --- a/docs/version-specific/supported-software/p/pangolin.md +++ b/docs/version-specific/supported-software/p/pangolin.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.1.16`` | ``-pangoLEARN-2021-10-18`` | ``foss/2021b`` ``3.1.16`` | ``-pangoLEARN-2021-11-25`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cecff70e7..49ef1cb89 100644 --- a/docs/version-specific/supported-software/p/panito.md +++ b/docs/version-specific/supported-software/p/panito.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fadc4ad94..f9c81de7e 100644 --- a/docs/version-specific/supported-software/p/parallel-fastq-dump.md +++ b/docs/version-specific/supported-software/p/parallel-fastq-dump.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.6.7`` | | ``gompi/2020b`` ``0.6.7`` | | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index def2ccf2e..4ae138dae 100644 --- a/docs/version-specific/supported-software/p/parallel.md +++ b/docs/version-specific/supported-software/p/parallel.md @@ -34,5 +34,5 @@ version | toolchain ``20230722`` | ``GCCcore/12.3.0`` ``20240322`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a23feb680..05cf9b7c4 100644 --- a/docs/version-specific/supported-software/p/parameterized.md +++ b/docs/version-specific/supported-software/p/parameterized.md @@ -14,5 +14,5 @@ version | toolchain ``0.9.0`` | ``GCCcore/11.3.0`` ``0.9.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 12161c213..a11c288ac 100644 --- a/docs/version-specific/supported-software/p/paramiko.md +++ b/docs/version-specific/supported-software/p/paramiko.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.2.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0e9a7c144..e206b39ac 100644 --- a/docs/version-specific/supported-software/p/parasail.md +++ b/docs/version-specific/supported-software/p/parasail.md @@ -23,5 +23,5 @@ version | toolchain ``2.6.2`` | ``GCC/12.2.0`` ``2.6.2`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b103e655f..d437656de 100644 --- a/docs/version-specific/supported-software/p/pasta.md +++ b/docs/version-specific/supported-software/p/pasta.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.5`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0da362a8a..0b3d4e37b 100644 --- a/docs/version-specific/supported-software/p/pastml.md +++ b/docs/version-specific/supported-software/p/pastml.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.9.34`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0160c8a63..88f2a5038 100644 --- a/docs/version-specific/supported-software/p/patch.md +++ b/docs/version-specific/supported-software/p/patch.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.7.6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aa5fcc652..3aa3200f0 100644 --- a/docs/version-specific/supported-software/p/patchelf.md +++ b/docs/version-specific/supported-software/p/patchelf.md @@ -25,5 +25,5 @@ version | toolchain ``0.9`` | ``GCCcore/6.4.0`` ``0.9`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 406b04be1..5dd340174 100644 --- a/docs/version-specific/supported-software/p/path.py.md +++ b/docs/version-specific/supported-software/p/path.py.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``8.2.1`` | ``-Python-2.7.12`` | ``intel/2016b`` ``8.2.1`` | ``-Python-3.5.2`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8983a5b16..c44f80ee1 100644 --- a/docs/version-specific/supported-software/p/pauvre.md +++ b/docs/version-specific/supported-software/p/pauvre.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.2.3`` | | ``foss/2022b`` ``0.2.3`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 714e7270a..0934a61ff 100644 --- a/docs/version-specific/supported-software/p/pbbam.md +++ b/docs/version-specific/supported-software/p/pbbam.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.6`` | ``gompi/2019a`` ``20170508`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2e3c19e3a..2d09dcbc0 100644 --- a/docs/version-specific/supported-software/p/pbcopper.md +++ b/docs/version-specific/supported-software/p/pbcopper.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0627f12b6..2bb44842b 100644 --- a/docs/version-specific/supported-software/p/pbdagcon.md +++ b/docs/version-specific/supported-software/p/pbdagcon.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20170330`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 631ff7f1c..e5d5fa732 100644 --- a/docs/version-specific/supported-software/p/pbipa.md +++ b/docs/version-specific/supported-software/p/pbipa.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b63ad3e26..35ad40bed 100644 --- a/docs/version-specific/supported-software/p/pblat.md +++ b/docs/version-specific/supported-software/p/pblat.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.1`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5420c5873..17326e1f5 100644 --- a/docs/version-specific/supported-software/p/pbmm2.md +++ b/docs/version-specific/supported-software/p/pbmm2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5f26d3d8e..fce27df76 100644 --- a/docs/version-specific/supported-software/p/pbs_python.md +++ b/docs/version-specific/supported-software/p/pbs_python.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``4.6.0`` | ``-Python-2.7.13`` | ``intel/2017a`` ``4.6.0`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a76f21f35..7e3e11858 100644 --- a/docs/version-specific/supported-software/p/pdf2docx.md +++ b/docs/version-specific/supported-software/p/pdf2docx.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.8`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c1c7de48d..b7599ce41 100644 --- a/docs/version-specific/supported-software/p/pdsh.md +++ b/docs/version-specific/supported-software/p/pdsh.md @@ -14,5 +14,5 @@ version | toolchain ``2.34`` | ``GCCcore/12.2.0`` ``2.34`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b3cc80b6a..2932d57dc 100644 --- a/docs/version-specific/supported-software/p/peakdetect.md +++ b/docs/version-specific/supported-software/p/peakdetect.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b6e4136a0..017711b70 100644 --- a/docs/version-specific/supported-software/p/perl-app-cpanminus.md +++ b/docs/version-specific/supported-software/p/perl-app-cpanminus.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7039`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b8dee9365..8d15f49ee 100644 --- a/docs/version-specific/supported-software/p/petsc4py.md +++ b/docs/version-specific/supported-software/p/petsc4py.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.20.3`` | | ``foss/2023a`` ``3.9.1`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f5548a16c..dbfe3803e 100644 --- a/docs/version-specific/supported-software/p/pfind.md +++ b/docs/version-specific/supported-software/p/pfind.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220613`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7da8b205f..c9b800541 100644 --- a/docs/version-specific/supported-software/p/pftoolsV3.md +++ b/docs/version-specific/supported-software/p/pftoolsV3.md @@ -16,5 +16,5 @@ version | toolchain ``3.2.12`` | ``GCCcore/11.2.0`` ``3.2.12`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1130d528e..caf30cf8e 100644 --- a/docs/version-specific/supported-software/p/phonemizer.md +++ b/docs/version-specific/supported-software/p/phonemizer.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-3.8.2`` | ``gompi/2020a`` ``3.2.1`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c2e34f2d3..6fb4def4a 100644 --- a/docs/version-specific/supported-software/p/phono3py.md +++ b/docs/version-specific/supported-software/p/phono3py.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.12.7.55`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.7.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f90bd4b77..9da2506a2 100644 --- a/docs/version-specific/supported-software/p/phonopy.md +++ b/docs/version-specific/supported-software/p/phonopy.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``2.7.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``2.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c0299d28e..353fefa67 100644 --- a/docs/version-specific/supported-software/p/photontorch.md +++ b/docs/version-specific/supported-software/p/photontorch.md @@ -14,5 +14,5 @@ version | toolchain ``0.4.1`` | ``foss/2022a`` ``0.4.1`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0e91cca2c..2de33267b 100644 --- a/docs/version-specific/supported-software/p/phototonic.md +++ b/docs/version-specific/supported-software/p/phototonic.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8978f4492..b8321484d 100644 --- a/docs/version-specific/supported-software/p/phylokit.md +++ b/docs/version-specific/supported-software/p/phylokit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ce8adb3c9..9f6b8c935 100644 --- a/docs/version-specific/supported-software/p/phylonaut.md +++ b/docs/version-specific/supported-software/p/phylonaut.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20190626`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2aa1f9d13..70eef42a3 100644 --- a/docs/version-specific/supported-software/p/phyluce.md +++ b/docs/version-specific/supported-software/p/phyluce.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.3`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 062dc98f0..0dbd56fa2 100644 --- a/docs/version-specific/supported-software/p/phyx.md +++ b/docs/version-specific/supported-software/p/phyx.md @@ -13,5 +13,5 @@ version | toolchain ``1.01`` | ``foss/2019a`` ``1.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c5404ba3c..5c369c2dd 100644 --- a/docs/version-specific/supported-software/p/piSvM-JSC.md +++ b/docs/version-specific/supported-software/p/piSvM-JSC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2-20150622`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f0fa8621d..45d4e8a07 100644 --- a/docs/version-specific/supported-software/p/piSvM.md +++ b/docs/version-specific/supported-software/p/piSvM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4357e1fe8..81a318b77 100644 --- a/docs/version-specific/supported-software/p/picard.md +++ b/docs/version-specific/supported-software/p/picard.md @@ -40,5 +40,5 @@ version | versionsuffix | toolchain ``2.6.0`` | ``-Java-1.8.0_131`` | ``system`` ``3.0.0`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 633498835..3c7069e44 100644 --- a/docs/version-specific/supported-software/p/pigz.md +++ b/docs/version-specific/supported-software/p/pigz.md @@ -27,5 +27,5 @@ version | toolchain ``2.8`` | ``GCCcore/12.3.0`` ``2.8`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 93eb430e9..cd6ab3371 100644 --- a/docs/version-specific/supported-software/p/pip.md +++ b/docs/version-specific/supported-software/p/pip.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``8.1.2`` | ``-Python-2.7.12`` | ``foss/2016b`` ``8.1.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e8551a914..f248dad83 100644 --- a/docs/version-specific/supported-software/p/pixman.md +++ b/docs/version-specific/supported-software/p/pixman.md @@ -29,5 +29,5 @@ version | toolchain ``0.42.2`` | ``GCCcore/12.3.0`` ``0.42.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b35f17467..3eab5129f 100644 --- a/docs/version-specific/supported-software/p/pizzly.md +++ b/docs/version-specific/supported-software/p/pizzly.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.37.3`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 54ac73613..a04c2e079 100644 --- a/docs/version-specific/supported-software/p/pkg-config.md +++ b/docs/version-specific/supported-software/p/pkg-config.md @@ -41,5 +41,5 @@ version | toolchain ``0.29.2`` | ``intel/2017a`` ``0.29.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4b7f2ca5a..b640e0ae5 100644 --- a/docs/version-specific/supported-software/p/pkgconf.md +++ b/docs/version-specific/supported-software/p/pkgconf.md @@ -21,5 +21,5 @@ version | toolchain ``2.2.0`` | ``GCCcore/13.3.0`` ``2.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b2a2f013a..39882d3b3 100644 --- a/docs/version-specific/supported-software/p/pkgconfig.md +++ b/docs/version-specific/supported-software/p/pkgconfig.md @@ -48,5 +48,5 @@ version | versionsuffix | toolchain ``1.5.5`` | ``-python`` | ``GCCcore/12.3.0`` ``1.5.5`` | ``-python`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 26ffcd1f8..9896f2015 100644 --- a/docs/version-specific/supported-software/p/planarity.md +++ b/docs/version-specific/supported-software/p/planarity.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.2.0`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 692021a79..e61c017ce 100644 --- a/docs/version-specific/supported-software/p/plantcv.md +++ b/docs/version-specific/supported-software/p/plantcv.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.8.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0df205ff9..88d889de5 100644 --- a/docs/version-specific/supported-software/p/plantri.md +++ b/docs/version-specific/supported-software/p/plantri.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.4`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5fcce2afa..c10832988 100644 --- a/docs/version-specific/supported-software/p/plc.md +++ b/docs/version-specific/supported-software/p/plc.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``3.10`` | | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f00f60fcd..8e4048367 100644 --- a/docs/version-specific/supported-software/p/plinkQC.md +++ b/docs/version-specific/supported-software/p/plinkQC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index da9a5eb3c..00d57c893 100644 --- a/docs/version-specific/supported-software/p/plinkliftover.md +++ b/docs/version-specific/supported-software/p/plinkliftover.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 82e6c9945..70cbefcea 100644 --- a/docs/version-specific/supported-software/p/plmc.md +++ b/docs/version-specific/supported-software/p/plmc.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20230121`` | ``-32bit`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d935aeb44..946847cf7 100644 --- a/docs/version-specific/supported-software/p/plot1cell.md +++ b/docs/version-specific/supported-software/p/plot1cell.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2f842bc88..3e34c528a 100644 --- a/docs/version-specific/supported-software/p/plotly-orca.md +++ b/docs/version-specific/supported-software/p/plotly-orca.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.1`` | ``GCCcore/10.2.0`` ``1.3.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5e58281f0..666b829dc 100644 --- a/docs/version-specific/supported-software/p/plotly.md +++ b/docs/version-specific/supported-software/p/plotly.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.7.1`` | ``-R-3.4.0`` | ``intel/2017a`` ``4.8.0`` | ``-R-3.4.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a334b8454..dac335be0 100644 --- a/docs/version-specific/supported-software/p/plotly.py.md +++ b/docs/version-specific/supported-software/p/plotly.py.md @@ -22,5 +22,5 @@ version | toolchain ``5.18.0`` | ``GCCcore/13.2.0`` ``5.4.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7a1b18e5c..bb4f652b2 100644 --- a/docs/version-specific/supported-software/p/plotutils.md +++ b/docs/version-specific/supported-software/p/plotutils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.6`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2988e983f..a1db8b023 100644 --- a/docs/version-specific/supported-software/p/pmt.md +++ b/docs/version-specific/supported-software/p/pmt.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.2.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` ``1.2.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 78dbc8f03..39773f029 100644 --- a/docs/version-specific/supported-software/p/pmx.md +++ b/docs/version-specific/supported-software/p/pmx.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-Python-2.7.18`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1339c6e10..6cbc9d5ce 100644 --- a/docs/version-specific/supported-software/p/pocl.md +++ b/docs/version-specific/supported-software/p/pocl.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``4.0`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` ``4.0`` | | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f06d2f597..3e6c75953 100644 --- a/docs/version-specific/supported-software/p/pod5-file-format.md +++ b/docs/version-specific/supported-software/p/pod5-file-format.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.8`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 85d4e53f5..9c7e88ef6 100644 --- a/docs/version-specific/supported-software/p/poetry.md +++ b/docs/version-specific/supported-software/p/poetry.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.6.1`` | | ``GCCcore/13.2.0`` ``1.7.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 776aae2ea..4ab4a5717 100644 --- a/docs/version-specific/supported-software/p/polars.md +++ b/docs/version-specific/supported-software/p/polars.md @@ -13,5 +13,5 @@ version | toolchain ``0.15.6`` | ``foss/2022a`` ``0.20.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3eb7198a7..3395393d0 100644 --- a/docs/version-specific/supported-software/p/polymake.md +++ b/docs/version-specific/supported-software/p/polymake.md @@ -14,5 +14,5 @@ version | toolchain ``4.8`` | ``foss/2021b`` ``4.8`` | ``gfbf/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5520efb0c..d3b0f0471 100644 --- a/docs/version-specific/supported-software/p/pomkl.md +++ b/docs/version-specific/supported-software/p/pomkl.md @@ -14,5 +14,5 @@ version | toolchain ``2016.04`` | ``system`` ``2016.09`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 12a92d6d7..2f16b5598 100644 --- a/docs/version-specific/supported-software/p/pompi.md +++ b/docs/version-specific/supported-software/p/pompi.md @@ -14,5 +14,5 @@ version | toolchain ``2016.04`` | ``system`` ``2016.09`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7810d0760..63201458d 100644 --- a/docs/version-specific/supported-software/p/poppler.md +++ b/docs/version-specific/supported-software/p/poppler.md @@ -19,5 +19,5 @@ version | toolchain ``23.09.0`` | ``GCC/12.3.0`` ``24.04.0`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 10e90cb19..c0a9ff77e 100644 --- a/docs/version-specific/supported-software/p/poppunk.md +++ b/docs/version-specific/supported-software/p/poppunk.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.6.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 87a666e57..1e3ea41c9 100644 --- a/docs/version-specific/supported-software/p/popscle.md +++ b/docs/version-specific/supported-software/p/popscle.md @@ -13,5 +13,5 @@ version | toolchain ``0.1-beta-20210505`` | ``GCC/11.3.0`` ``0.1-beta`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 05605eab8..45140eb4f 100644 --- a/docs/version-specific/supported-software/p/popt.md +++ b/docs/version-specific/supported-software/p/popt.md @@ -15,5 +15,5 @@ version | toolchain ``1.16`` | ``GCC/4.9.2`` ``1.16`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 17179a75f..cabebee58 100644 --- a/docs/version-specific/supported-software/p/porefoam.md +++ b/docs/version-specific/supported-software/p/porefoam.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2021-09-21`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 81e17fc54..8a77850b3 100644 --- a/docs/version-specific/supported-software/p/poretools.md +++ b/docs/version-specific/supported-software/p/poretools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 42bbcb82c..88eb4b1c7 100644 --- a/docs/version-specific/supported-software/p/powerlaw.md +++ b/docs/version-specific/supported-software/p/powerlaw.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f9283fc00..3594242b1 100644 --- a/docs/version-specific/supported-software/p/pp-sketchlib.md +++ b/docs/version-specific/supported-software/p/pp-sketchlib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c534093db..b76e0c173 100644 --- a/docs/version-specific/supported-software/p/ppl.md +++ b/docs/version-specific/supported-software/p/ppl.md @@ -13,5 +13,5 @@ version | toolchain ``1.2`` | ``GCCcore/11.3.0`` ``1.2`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fdba8177d..771bd4d4a 100644 --- a/docs/version-specific/supported-software/p/pplacer.md +++ b/docs/version-specific/supported-software/p/pplacer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.alpha19`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1a0744da7..bed44c890 100644 --- a/docs/version-specific/supported-software/p/pplpy.md +++ b/docs/version-specific/supported-software/p/pplpy.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.8.4`` | ``-Python-3.6.3`` | ``intel/2017b`` ``0.8.9`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 35e3ab733..8b2311042 100644 --- a/docs/version-specific/supported-software/p/preCICE.md +++ b/docs/version-specific/supported-software/p/preCICE.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.5.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9f9c4e9a0..cbcb8b3ab 100644 --- a/docs/version-specific/supported-software/p/premailer.md +++ b/docs/version-specific/supported-software/p/premailer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.10.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a9c756a99..ae62420e9 100644 --- a/docs/version-specific/supported-software/p/preseq.md +++ b/docs/version-specific/supported-software/p/preseq.md @@ -18,5 +18,5 @@ version | toolchain ``3.2.0`` | ``GCC/11.3.0`` ``3.2.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a2c5f489a..f0c1619b4 100644 --- a/docs/version-specific/supported-software/p/presto.md +++ b/docs/version-specific/supported-software/p/presto.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.0.0-20230501`` | ``-R-4.2.2`` | ``foss/2022b`` ``1.0.0-20230501`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2d60fd506..28b96bbd7 100644 --- a/docs/version-specific/supported-software/p/pretty-yaml.md +++ b/docs/version-specific/supported-software/p/pretty-yaml.md @@ -15,5 +15,5 @@ version | toolchain ``21.10.1`` | ``GCCcore/10.3.0`` ``23.9.5`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c940c126a..a0fb2df9f 100644 --- a/docs/version-specific/supported-software/p/primecount.md +++ b/docs/version-specific/supported-software/p/primecount.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.9`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d6e62f11d..4af111acd 100644 --- a/docs/version-specific/supported-software/p/primecountpy.md +++ b/docs/version-specific/supported-software/p/primecountpy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f83049d78..d32dcc929 100644 --- a/docs/version-specific/supported-software/p/printproto.md +++ b/docs/version-specific/supported-software/p/printproto.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.5`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b812cf878..ee6b74759 100644 --- a/docs/version-specific/supported-software/p/prodigal.md +++ b/docs/version-specific/supported-software/p/prodigal.md @@ -23,5 +23,5 @@ version | toolchain ``2.6.3`` | ``GCCcore/8.3.0`` ``2.6.3`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 47a8ccd67..cc636a916 100644 --- a/docs/version-specific/supported-software/p/prokka.md +++ b/docs/version-specific/supported-software/p/prokka.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``1.14.5`` | | ``gompi/2022a`` ``1.14.5`` | | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ad09924db..fa3f19386 100644 --- a/docs/version-specific/supported-software/p/prompt-toolkit.md +++ b/docs/version-specific/supported-software/p/prompt-toolkit.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``3.0.36`` | | ``GCCcore/12.2.0`` ``3.0.36`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 156173c15..ff2d50b0b 100644 --- a/docs/version-specific/supported-software/p/proovread.md +++ b/docs/version-specific/supported-software/p/proovread.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.14.1`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e1ef56e63..8beba6bf7 100644 --- a/docs/version-specific/supported-software/p/propy.md +++ b/docs/version-specific/supported-software/p/propy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0e558e443..c5201ae1a 100644 --- a/docs/version-specific/supported-software/p/protobuf-python.md +++ b/docs/version-specific/supported-software/p/protobuf-python.md @@ -38,5 +38,5 @@ version | versionsuffix | toolchain ``4.24.0`` | | ``GCCcore/12.3.0`` ``4.25.3`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 44928baae..3631dd2a4 100644 --- a/docs/version-specific/supported-software/p/protobuf.md +++ b/docs/version-specific/supported-software/p/protobuf.md @@ -41,5 +41,5 @@ version | toolchain ``3.7.1`` | ``GCCcore/8.2.0`` ``3.7.1`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5d5a37951..63071d464 100644 --- a/docs/version-specific/supported-software/p/protozero.md +++ b/docs/version-specific/supported-software/p/protozero.md @@ -13,5 +13,5 @@ version | toolchain ``1.6.8`` | ``GCCcore/7.3.0`` ``1.7.0`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3ddf0ad76..e631b4021 100644 --- a/docs/version-specific/supported-software/p/pscom.md +++ b/docs/version-specific/supported-software/p/pscom.md @@ -14,5 +14,5 @@ version | toolchain ``5.0.44-1`` | ``GCC/4.9.2`` ``5.0.48-1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5d9fd6aff..dab2f0fd0 100644 --- a/docs/version-specific/supported-software/p/psmc.md +++ b/docs/version-specific/supported-software/p/psmc.md @@ -14,5 +14,5 @@ version | toolchain ``0.6.5`` | ``foss/2018a`` ``0.6.5_20221121`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 28ce7512e..bb477d3d1 100644 --- a/docs/version-specific/supported-software/p/psmpi.md +++ b/docs/version-specific/supported-software/p/psmpi.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``5.1.5-1`` | ``-mt`` | ``GCC/4.9.3`` ``5.1.5-1`` | | ``GCC/4.9.3`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c4ec761c0..529d4f36b 100644 --- a/docs/version-specific/supported-software/p/psmpi2.md +++ b/docs/version-specific/supported-software/p/psmpi2.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``5.0.29`` | ``-mt`` | ``GCC/4.8.2`` ``5.0.29`` | | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3b2d25a6e..a41f27434 100644 --- a/docs/version-specific/supported-software/p/psrecord.md +++ b/docs/version-specific/supported-software/p/psrecord.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3b33598fd..fd5d6a65a 100644 --- a/docs/version-specific/supported-software/p/pstoedit.md +++ b/docs/version-specific/supported-software/p/pstoedit.md @@ -14,5 +14,5 @@ version | toolchain ``3.70`` | ``GCCcore/6.4.0`` ``3.78`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3cb014852..92d959527 100644 --- a/docs/version-specific/supported-software/p/psutil.md +++ b/docs/version-specific/supported-software/p/psutil.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``5.9.5`` | | ``GCCcore/12.2.0`` ``5.9.8`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 34dd6ebd4..48ba37867 100644 --- a/docs/version-specific/supported-software/p/psycopg.md +++ b/docs/version-specific/supported-software/p/psycopg.md @@ -13,5 +13,5 @@ version | toolchain ``3.1.18`` | ``GCCcore/12.2.0`` ``3.1.18`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 039e799cc..65ee73a41 100644 --- a/docs/version-specific/supported-software/p/psycopg2.md +++ b/docs/version-specific/supported-software/p/psycopg2.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.9.6`` | | ``GCCcore/11.3.0`` ``2.9.9`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index eb87b1342..6c122a2cd 100644 --- a/docs/version-specific/supported-software/p/ptemcee.md +++ b/docs/version-specific/supported-software/p/ptemcee.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d2ac0cba6..ec466d628 100644 --- a/docs/version-specific/supported-software/p/pubtcrs.md +++ b/docs/version-specific/supported-software/p/pubtcrs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20180622`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 53cd41b22..4776985be 100644 --- a/docs/version-specific/supported-software/p/pugixml.md +++ b/docs/version-specific/supported-software/p/pugixml.md @@ -14,5 +14,5 @@ version | toolchain ``1.12.1`` | ``GCCcore/11.2.0`` ``1.12.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fdee3bf15..cd3a30f7a 100644 --- a/docs/version-specific/supported-software/p/pullseq.md +++ b/docs/version-specific/supported-software/p/pullseq.md @@ -14,5 +14,5 @@ version | toolchain ``1.0.2`` | ``GCCcore/11.2.0`` ``1.0.2`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 917551609..8fb95f595 100644 --- a/docs/version-specific/supported-software/p/purge_dups.md +++ b/docs/version-specific/supported-software/p/purge_dups.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.5`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 56464584e..c7d011e15 100644 --- a/docs/version-specific/supported-software/p/pv.md +++ b/docs/version-specific/supported-software/p/pv.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.24`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c6194cb34..3a88d6425 100644 --- a/docs/version-specific/supported-software/p/py-aiger-bdd.md +++ b/docs/version-specific/supported-software/p/py-aiger-bdd.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4c0cd79a9..ac5a40a5b 100644 --- a/docs/version-specific/supported-software/p/py-aiger.md +++ b/docs/version-specific/supported-software/p/py-aiger.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``6.1.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``6.1.14`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d144c688c..0224e38cf 100644 --- a/docs/version-specific/supported-software/p/py-c3d.md +++ b/docs/version-specific/supported-software/p/py-c3d.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 63231c9a4..f866f8813 100644 --- a/docs/version-specific/supported-software/p/py-cpuinfo.md +++ b/docs/version-specific/supported-software/p/py-cpuinfo.md @@ -18,5 +18,5 @@ version | toolchain ``9.0.0`` | ``GCCcore/12.3.0`` ``9.0.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cdad9cac8..9bb7b378c 100644 --- a/docs/version-specific/supported-software/p/py.md +++ b/docs/version-specific/supported-software/p/py.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4.31`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.4.31`` | ``-Python-3.5.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a642e8b88..363dc7aaa 100644 --- a/docs/version-specific/supported-software/p/py3Dmol.md +++ b/docs/version-specific/supported-software/p/py3Dmol.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.1.post1`` | ``GCCcore/11.3.0`` ``2.1.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1b18eac04..f833a2fc3 100644 --- a/docs/version-specific/supported-software/p/pyABC.md +++ b/docs/version-specific/supported-software/p/pyABC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.10.4`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 62721e653..995fbfdd3 100644 --- a/docs/version-specific/supported-software/p/pyBigWig.md +++ b/docs/version-specific/supported-software/p/pyBigWig.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.3.22`` | | ``foss/2022b`` ``0.3.22`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 229e00e19..d3feef94c 100644 --- a/docs/version-specific/supported-software/p/pyEGA3.md +++ b/docs/version-specific/supported-software/p/pyEGA3.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``4.0.0`` | | ``GCCcore/11.2.0`` ``5.0.2`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1f7113ebe..d702abba8 100644 --- a/docs/version-specific/supported-software/p/pyFAI.md +++ b/docs/version-specific/supported-software/p/pyFAI.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.20.0`` | | ``fosscuda/2020b`` ``0.21.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2ebba46e7..a583ccd7f 100644 --- a/docs/version-specific/supported-software/p/pyFFTW.md +++ b/docs/version-specific/supported-software/p/pyFFTW.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.12.0`` | | ``fosscuda/2020b`` ``0.13.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 440bedbb0..6a212cdcc 100644 --- a/docs/version-specific/supported-software/p/pyGAM.md +++ b/docs/version-specific/supported-software/p/pyGAM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.1`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6e0e258a3..c9e10167e 100644 --- a/docs/version-specific/supported-software/p/pyGIMLi.md +++ b/docs/version-specific/supported-software/p/pyGIMLi.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20160803`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160803`` | ``-Python-3.5.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4f08067e3..d693424d0 100644 --- a/docs/version-specific/supported-software/p/pyGenomeTracks.md +++ b/docs/version-specific/supported-software/p/pyGenomeTracks.md @@ -13,5 +13,5 @@ version | toolchain ``3.7`` | ``foss/2021b`` ``3.8`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 77521efc9..2c0610463 100644 --- a/docs/version-specific/supported-software/p/pyMannKendall.md +++ b/docs/version-specific/supported-software/p/pyMannKendall.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f60dbdacb..d6edb52fc 100644 --- a/docs/version-specific/supported-software/p/pySCENIC.md +++ b/docs/version-specific/supported-software/p/pySCENIC.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.12.1-20240311`` | | ``foss/2023a`` ``0.12.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d02c161c0..5ef8d5287 100644 --- a/docs/version-specific/supported-software/p/pyScaf.md +++ b/docs/version-specific/supported-software/p/pyScaf.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12a4`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7318cb9bd..ca28fb116 100644 --- a/docs/version-specific/supported-software/p/pyWannier90.md +++ b/docs/version-specific/supported-software/p/pyWannier90.md @@ -13,5 +13,5 @@ version | toolchain ``2021-12-07`` | ``foss/2021a`` ``2021-12-07`` | ``gomkl/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a68f80d50..bb1118bac 100644 --- a/docs/version-specific/supported-software/p/pyXDF.md +++ b/docs/version-specific/supported-software/p/pyXDF.md @@ -13,5 +13,5 @@ version | toolchain ``1.16.3`` | ``foss/2021a`` ``1.16.5`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b7ed51fdd..a6f1560e7 100644 --- a/docs/version-specific/supported-software/p/pybedtools.md +++ b/docs/version-specific/supported-software/p/pybedtools.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``GCC/12.2.0`` ``0.9.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ebb15a100..6fe5d749b 100644 --- a/docs/version-specific/supported-software/p/pybind11-stubgen.md +++ b/docs/version-specific/supported-software/p/pybind11-stubgen.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1d0165c1d..264d6528f 100644 --- a/docs/version-specific/supported-software/p/pybind11.md +++ b/docs/version-specific/supported-software/p/pybind11.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``2.7.1`` | | ``GCCcore/11.2.0`` ``2.9.2`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e66190e2d..6c15e1865 100644 --- a/docs/version-specific/supported-software/p/pybinding.md +++ b/docs/version-specific/supported-software/p/pybinding.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5c9381519..77cbbc215 100644 --- a/docs/version-specific/supported-software/p/pyccel.md +++ b/docs/version-specific/supported-software/p/pyccel.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 01d9f074a..4cd3c799f 100644 --- a/docs/version-specific/supported-software/p/pycma.md +++ b/docs/version-specific/supported-software/p/pycma.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.7.0`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c6c1ed7c4..bcc47f35f 100644 --- a/docs/version-specific/supported-software/p/pycoQC.md +++ b/docs/version-specific/supported-software/p/pycoQC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7986b13cf..f11e072e8 100644 --- a/docs/version-specific/supported-software/p/pycocotools.md +++ b/docs/version-specific/supported-software/p/pycocotools.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``2.0.4`` | | ``foss/2021a`` ``2.0.6`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b8ae0a10a..79b942d2c 100644 --- a/docs/version-specific/supported-software/p/pycodestyle.md +++ b/docs/version-specific/supported-software/p/pycodestyle.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.11.1`` | | ``foss/2023a`` ``2.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bac87424c..2d519e88c 100644 --- a/docs/version-specific/supported-software/p/pycubescd.md +++ b/docs/version-specific/supported-software/p/pycubescd.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220704`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 65c260367..aafa8961e 100644 --- a/docs/version-specific/supported-software/p/pydantic.md +++ b/docs/version-specific/supported-software/p/pydantic.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.5.3`` | | ``GCCcore/12.3.0`` ``2.6.4`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 525a07908..592823eb6 100644 --- a/docs/version-specific/supported-software/p/pydicom-seg.md +++ b/docs/version-specific/supported-software/p/pydicom-seg.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7e75e5c80..764c3d63d 100644 --- a/docs/version-specific/supported-software/p/pydicom.md +++ b/docs/version-specific/supported-software/p/pydicom.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``GCCcore/11.3.0`` ``2.4.4`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 60008579f..73b60808c 100644 --- a/docs/version-specific/supported-software/p/pydlpoly.md +++ b/docs/version-specific/supported-software/p/pydlpoly.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20150225`` | ``-Python-2.7.12`` | ``intel/2016b`` ``20150225`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 880b8063c..87cce1a48 100644 --- a/docs/version-specific/supported-software/p/pydot.md +++ b/docs/version-specific/supported-software/p/pydot.md @@ -18,5 +18,5 @@ version | toolchain ``1.4.2`` | ``GCCcore/11.3.0`` ``2.0.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f85a4af39..37aed89d2 100644 --- a/docs/version-specific/supported-software/p/pyenchant.md +++ b/docs/version-specific/supported-software/p/pyenchant.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.8`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a78c77a25..e42e490dd 100644 --- a/docs/version-specific/supported-software/p/pyfaidx.md +++ b/docs/version-specific/supported-software/p/pyfaidx.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``0.8.1.1`` | | ``GCCcore/12.3.0`` ``0.8.1.1`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 12e8b66d7..bfd5da74d 100644 --- a/docs/version-specific/supported-software/p/pyfasta.md +++ b/docs/version-specific/supported-software/p/pyfasta.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ca0ad0756..d389f10e8 100644 --- a/docs/version-specific/supported-software/p/pyfits.md +++ b/docs/version-specific/supported-software/p/pyfits.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3c63763a0..d67a742cc 100644 --- a/docs/version-specific/supported-software/p/pygame.md +++ b/docs/version-specific/supported-software/p/pygame.md @@ -13,5 +13,5 @@ version | toolchain ``2.1.0`` | ``GCCcore/11.3.0`` ``2.5.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e96311dd9..89e912ddd 100644 --- a/docs/version-specific/supported-software/p/pygccxml.md +++ b/docs/version-specific/supported-software/p/pygccxml.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20160706`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160706`` | ``-Python-3.5.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 287f1d37e..2200a963f 100644 --- a/docs/version-specific/supported-software/p/pygmo.md +++ b/docs/version-specific/supported-software/p/pygmo.md @@ -15,5 +15,5 @@ version | toolchain ``2.18.0`` | ``foss/2021b`` ``2.18.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index af064ada5..fad8574e8 100644 --- a/docs/version-specific/supported-software/p/pygraphviz.md +++ b/docs/version-specific/supported-software/p/pygraphviz.md @@ -16,5 +16,5 @@ version | toolchain ``1.7`` | ``foss/2020b`` ``1.7`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3319cc162..396299402 100644 --- a/docs/version-specific/supported-software/p/pygrib.md +++ b/docs/version-specific/supported-software/p/pygrib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.4`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d616bdef7..a576f7745 100644 --- a/docs/version-specific/supported-software/p/pyhdf.md +++ b/docs/version-specific/supported-software/p/pyhdf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.10.1`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 83694fc84..1437568d0 100644 --- a/docs/version-specific/supported-software/p/pyiron.md +++ b/docs/version-specific/supported-software/p/pyiron.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``0.5.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 289ffef4d..a77bccaaf 100644 --- a/docs/version-specific/supported-software/p/pylift.md +++ b/docs/version-specific/supported-software/p/pylift.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5c61714b..abaf773c2 100644 --- a/docs/version-specific/supported-software/p/pylipid.md +++ b/docs/version-specific/supported-software/p/pylipid.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.14`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a4acecd2e..fa38ad343 100644 --- a/docs/version-specific/supported-software/p/pymatgen-db.md +++ b/docs/version-specific/supported-software/p/pymatgen-db.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.5`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e68bec135..257a5ffea 100644 --- a/docs/version-specific/supported-software/p/pymatgen.md +++ b/docs/version-specific/supported-software/p/pymatgen.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``4.3.2`` | ``-Python-2.7.12`` | ``intel/2016b`` ``4.7.3`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4389f778f..c23321c71 100644 --- a/docs/version-specific/supported-software/p/pymbar.md +++ b/docs/version-specific/supported-software/p/pymbar.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.0.3`` | ``-Python-3.6.3`` | ``intel/2017b`` ``3.0.3`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 511d38c43..db1808d92 100644 --- a/docs/version-specific/supported-software/p/pymca.md +++ b/docs/version-specific/supported-software/p/pymca.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``5.6.3`` | | ``fosscuda/2020b`` ``5.7.6`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9b83a5147..64f7d2b30 100644 --- a/docs/version-specific/supported-software/p/pymemcache.md +++ b/docs/version-specific/supported-software/p/pymemcache.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f19e64d0b..6481e0567 100644 --- a/docs/version-specific/supported-software/p/pyobjcryst.md +++ b/docs/version-specific/supported-software/p/pyobjcryst.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.0.post2`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.2.1`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0200be2b6..dc0b91209 100644 --- a/docs/version-specific/supported-software/p/pyodbc.md +++ b/docs/version-specific/supported-software/p/pyodbc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0.39`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a0da4f486..d26fbf751 100644 --- a/docs/version-specific/supported-software/p/pyparsing.md +++ b/docs/version-specific/supported-software/p/pyparsing.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.0.9`` | | ``GCCcore/11.3.0`` ``3.1.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d7d01fbbb..64c442c17 100644 --- a/docs/version-specific/supported-software/p/pyperf.md +++ b/docs/version-specific/supported-software/p/pyperf.md @@ -13,5 +13,5 @@ version | toolchain ``2.5.0`` | ``GCCcore/11.3.0`` ``2.6.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ed656fdc7..6b599f5be 100644 --- a/docs/version-specific/supported-software/p/pyplusplus.md +++ b/docs/version-specific/supported-software/p/pyplusplus.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20160707`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160707`` | ``-Python-3.5.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c82583431..18dbfadb9 100644 --- a/docs/version-specific/supported-software/p/pypmt.md +++ b/docs/version-specific/supported-software/p/pypmt.md @@ -15,5 +15,5 @@ version | toolchain ``1.2.0`` | ``foss/2022a`` ``1.2.0`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 75b051a44..10f786803 100644 --- a/docs/version-specific/supported-software/p/pyproj.md +++ b/docs/version-specific/supported-software/p/pyproj.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``GCCcore/12.2.0`` ``3.6.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 897790d9c..ac26def06 100644 --- a/docs/version-specific/supported-software/p/pyqstem.md +++ b/docs/version-specific/supported-software/p/pyqstem.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.0.3`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` ``1.0.3`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d9b13f23f..83c163776 100644 --- a/docs/version-specific/supported-software/p/pyradiomics.md +++ b/docs/version-specific/supported-software/p/pyradiomics.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.0.1`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9220b4de9..2e1b203a5 100644 --- a/docs/version-specific/supported-software/p/pyringe.md +++ b/docs/version-specific/supported-software/p/pyringe.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.2`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6badc9450..45a382c7e 100644 --- a/docs/version-specific/supported-software/p/pyro-api.md +++ b/docs/version-specific/supported-software/p/pyro-api.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.2`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c984fca36..d6dfb323f 100644 --- a/docs/version-specific/supported-software/p/pyro-ppl.md +++ b/docs/version-specific/supported-software/p/pyro-ppl.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.9.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``1.9.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fddd2c3dd..44770807d 100644 --- a/docs/version-specific/supported-software/p/pysamstats.md +++ b/docs/version-specific/supported-software/p/pysamstats.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0b8e0b094..83153f48e 100644 --- a/docs/version-specific/supported-software/p/pyseer.md +++ b/docs/version-specific/supported-software/p/pyseer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.11`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 52fa5a443..75f6fcc45 100644 --- a/docs/version-specific/supported-software/p/pysheds.md +++ b/docs/version-specific/supported-software/p/pysheds.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.7.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b262be488..6a6246016 100644 --- a/docs/version-specific/supported-software/p/pyshp.md +++ b/docs/version-specific/supported-software/p/pyshp.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.12`` | ``-Python-3.6.2`` | ``foss/2017b`` ``2.1.3`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5c0415ee8..d4323d726 100644 --- a/docs/version-specific/supported-software/p/pyslim.md +++ b/docs/version-specific/supported-software/p/pyslim.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.1`` | ``foss/2021b`` ``1.0.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5acc86150..fce280d60 100644 --- a/docs/version-specific/supported-software/p/pysndfx.md +++ b/docs/version-specific/supported-software/p/pysndfx.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.6`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index df06d39b6..d4869b7a8 100644 --- a/docs/version-specific/supported-software/p/pyspoa.md +++ b/docs/version-specific/supported-software/p/pyspoa.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.0.9`` | | ``GCC/12.2.0`` ``0.2.1`` | | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3fe21b1dc..bf0c068e6 100644 --- a/docs/version-specific/supported-software/p/pysqlite.md +++ b/docs/version-specific/supported-software/p/pysqlite.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.8.2`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bc9bf2137..fa34a15cf 100644 --- a/docs/version-specific/supported-software/p/pysteps.md +++ b/docs/version-specific/supported-software/p/pysteps.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 662956d17..80e436e5f 100644 --- a/docs/version-specific/supported-software/p/pystran.md +++ b/docs/version-specific/supported-software/p/pystran.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2017.04.20`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d8863735..531aa7550 100644 --- a/docs/version-specific/supported-software/p/pytesseract.md +++ b/docs/version-specific/supported-software/p/pytesseract.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.10`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 40ade228e..c7d6988da 100644 --- a/docs/version-specific/supported-software/p/pytest-benchmark.md +++ b/docs/version-specific/supported-software/p/pytest-benchmark.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.4.1`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d72063ffb..a9d54b2dd 100644 --- a/docs/version-specific/supported-software/p/pytest-cpp.md +++ b/docs/version-specific/supported-software/p/pytest-cpp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 02302fc8c..5b7f3e73e 100644 --- a/docs/version-specific/supported-software/p/pytest-flakefinder.md +++ b/docs/version-specific/supported-software/p/pytest-flakefinder.md @@ -15,5 +15,5 @@ version | toolchain ``1.1.0`` | ``GCCcore/12.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0a7f07962..c10a1fb0e 100644 --- a/docs/version-specific/supported-software/p/pytest-rerunfailures.md +++ b/docs/version-specific/supported-software/p/pytest-rerunfailures.md @@ -15,5 +15,5 @@ version | toolchain ``12.0`` | ``GCCcore/12.3.0`` ``14.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c1ded852a..7d43cb836 100644 --- a/docs/version-specific/supported-software/p/pytest-shard.md +++ b/docs/version-specific/supported-software/p/pytest-shard.md @@ -15,5 +15,5 @@ version | toolchain ``0.1.2`` | ``GCCcore/12.3.0`` ``0.1.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c86bb1b89..8fbc62436 100644 --- a/docs/version-specific/supported-software/p/pytest-workflow.md +++ b/docs/version-specific/supported-software/p/pytest-workflow.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.1`` | ``GCCcore/12.2.0`` ``2.1.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d2dd6527..a56d3cc83 100644 --- a/docs/version-specific/supported-software/p/pytest-xdist.md +++ b/docs/version-specific/supported-software/p/pytest-xdist.md @@ -17,5 +17,5 @@ version | toolchain ``2.5.0`` | ``GCCcore/11.3.0`` ``3.3.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index efd3ce552..05b0038d4 100644 --- a/docs/version-specific/supported-software/p/pytest.md +++ b/docs/version-specific/supported-software/p/pytest.md @@ -32,5 +32,5 @@ version | versionsuffix | toolchain ``7.2.2`` | | ``GCCcore/11.2.0`` ``7.4.2`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 76285f10e..39b51ab92 100644 --- a/docs/version-specific/supported-software/p/pythermalcomfort.md +++ b/docs/version-specific/supported-software/p/pythermalcomfort.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.10`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b7709dc7c..2826251e8 100644 --- a/docs/version-specific/supported-software/p/python-Levenshtein.md +++ b/docs/version-specific/supported-software/p/python-Levenshtein.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.12.0`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.12.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6a4a4829c..96c69999b 100644 --- a/docs/version-specific/supported-software/p/python-casacore.md +++ b/docs/version-specific/supported-software/p/python-casacore.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.5.2`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 48e0b3845..8563b9b2b 100644 --- a/docs/version-specific/supported-software/p/python-docx.md +++ b/docs/version-specific/supported-software/p/python-docx.md @@ -13,5 +13,5 @@ version | toolchain ``0.8.11`` | ``GCCcore/10.2.0`` ``0.8.11`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 176eb0db9..88ddc7d92 100644 --- a/docs/version-specific/supported-software/p/python-hl7.md +++ b/docs/version-specific/supported-software/p/python-hl7.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.4`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1a86369bc..83c365a5d 100644 --- a/docs/version-specific/supported-software/p/python-igraph.md +++ b/docs/version-specific/supported-software/p/python-igraph.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``0.9.6`` | | ``foss/2021a`` ``0.9.8`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fe97c8e56..6e24767a2 100644 --- a/docs/version-specific/supported-software/p/python-irodsclient.md +++ b/docs/version-specific/supported-software/p/python-irodsclient.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.4`` | ``GCCcore/11.2.0`` ``2.0.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ceaf79dd7..540197841 100644 --- a/docs/version-specific/supported-software/p/python-isal.md +++ b/docs/version-specific/supported-software/p/python-isal.md @@ -18,5 +18,5 @@ version | toolchain ``1.1.0`` | ``GCCcore/12.3.0`` ``1.6.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b96e2fd37..72699e9e8 100644 --- a/docs/version-specific/supported-software/p/python-libsbml.md +++ b/docs/version-specific/supported-software/p/python-libsbml.md @@ -14,5 +14,5 @@ version | toolchain ``5.20.2`` | ``foss/2021b`` ``5.20.2`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d17f92d0..3c3e8ac6d 100644 --- a/docs/version-specific/supported-software/p/python-louvain.md +++ b/docs/version-specific/supported-software/p/python-louvain.md @@ -14,5 +14,5 @@ version | toolchain ``0.16`` | ``foss/2022a`` ``0.16`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8f1b3a2d2..c96099bf8 100644 --- a/docs/version-specific/supported-software/p/python-mujoco.md +++ b/docs/version-specific/supported-software/p/python-mujoco.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.2`` | ``foss/2022a`` ``3.1.4`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2367c7177..233bc4d59 100644 --- a/docs/version-specific/supported-software/p/python-parasail.md +++ b/docs/version-specific/supported-software/p/python-parasail.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``1.3.4`` | | ``foss/2022b`` ``1.3.4`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fd31b88f4..8ae20b5da 100644 --- a/docs/version-specific/supported-software/p/python-telegram-bot.md +++ b/docs/version-specific/supported-software/p/python-telegram-bot.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20.0a0`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 67e3e82ad..fa4f7bf9d 100644 --- a/docs/version-specific/supported-software/p/python-weka-wrapper3.md +++ b/docs/version-specific/supported-software/p/python-weka-wrapper3.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.11`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5dfaa98dd..2d9f161d5 100644 --- a/docs/version-specific/supported-software/p/python-xxhash.md +++ b/docs/version-specific/supported-software/p/python-xxhash.md @@ -16,5 +16,5 @@ version | toolchain ``3.4.1`` | ``GCCcore/12.3.0`` ``3.4.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a1a9fe9bb..950cdfcb7 100644 --- a/docs/version-specific/supported-software/p/pythran.md +++ b/docs/version-specific/supported-software/p/pythran.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.4.post1`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ac4098f8d..6970bfa1f 100644 --- a/docs/version-specific/supported-software/p/pytorch-3dunet.md +++ b/docs/version-specific/supported-software/p/pytorch-3dunet.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 29404684b..c0f637830 100644 --- a/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md +++ b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20230314`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c09bcb86a..869bf0845 100644 --- a/docs/version-specific/supported-software/q/Q6.md +++ b/docs/version-specific/supported-software/q/Q6.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20180205`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b967e2121..29989feb7 100644 --- a/docs/version-specific/supported-software/q/QCA.md +++ b/docs/version-specific/supported-software/q/QCA.md @@ -17,5 +17,5 @@ version | toolchain ``2.1.3`` | ``intel/2016b`` ``2.3.5`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d36ada947..c94320fb4 100644 --- a/docs/version-specific/supported-software/q/QCG-PilotJob.md +++ b/docs/version-specific/supported-software/q/QCG-PilotJob.md @@ -15,5 +15,5 @@ version | toolchain ``0.13.1`` | ``gfbf/2022b`` ``0.13.1`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f7f1ecc11..741bb69d4 100644 --- a/docs/version-specific/supported-software/q/QCxMS.md +++ b/docs/version-specific/supported-software/q/QCxMS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0d09e035f..606841c54 100644 --- a/docs/version-specific/supported-software/q/QD.md +++ b/docs/version-specific/supported-software/q/QD.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.8.9`` | | ``foss/2021a`` ``2.3.17`` | ``-20160110`` | ``NVHPC/21.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index de12e94e4..254ac9453 100644 --- a/docs/version-specific/supported-software/q/QDD.md +++ b/docs/version-specific/supported-software/q/QDD.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0952766ab..9c5289acf 100644 --- a/docs/version-specific/supported-software/q/QEMU.md +++ b/docs/version-specific/supported-software/q/QEMU.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.10.1`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1487fc0bb..d6915f1ba 100644 --- a/docs/version-specific/supported-software/q/QGIS.md +++ b/docs/version-specific/supported-software/q/QGIS.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.28.1`` | | ``foss/2021b`` ``3.4.12`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6e694323e..7134ac093 100644 --- a/docs/version-specific/supported-software/q/QIIME.md +++ b/docs/version-specific/supported-software/q/QIIME.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.9.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1d9264d16..259842b36 100644 --- a/docs/version-specific/supported-software/q/QIIME2.md +++ b/docs/version-specific/supported-software/q/QIIME2.md @@ -22,5 +22,5 @@ version | toolchain ``2023.5.1`` | ``foss/2022a`` ``2023.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 806eee998..08ec97ff9 100644 --- a/docs/version-specific/supported-software/q/QJson.md +++ b/docs/version-specific/supported-software/q/QJson.md @@ -15,5 +15,5 @@ version | toolchain ``0.9.0`` | ``foss/2016b`` ``0.9.0`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 00b37e55a..651405dfa 100644 --- a/docs/version-specific/supported-software/q/QML.md +++ b/docs/version-specific/supported-software/q/QML.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.10`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 37436dd38..4ce6a4319 100644 --- a/docs/version-specific/supported-software/q/QScintilla.md +++ b/docs/version-specific/supported-software/q/QScintilla.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.9.4`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.9.4`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2fc2f4f59..1e573f61b 100644 --- a/docs/version-specific/supported-software/q/QTLtools.md +++ b/docs/version-specific/supported-software/q/QTLtools.md @@ -13,5 +13,5 @@ version | toolchain ``1.1`` | ``intel/2016b`` ``1.3.1`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 197278a75..94519f4e7 100644 --- a/docs/version-specific/supported-software/q/QUAST.md +++ b/docs/version-specific/supported-software/q/QUAST.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``5.0.2`` | | ``foss/2021b`` ``5.2.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 19e7acf2e..3be2c443a 100644 --- a/docs/version-specific/supported-software/q/Qhull.md +++ b/docs/version-specific/supported-software/q/Qhull.md @@ -30,5 +30,5 @@ version | toolchain ``2020.2`` | ``GCCcore/12.3.0`` ``2020.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea6a7061e..fb9118302 100644 --- a/docs/version-specific/supported-software/q/Qiskit.md +++ b/docs/version-specific/supported-software/q/Qiskit.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.12.0`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.31.0`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4822c4d13..9e5834ff4 100644 --- a/docs/version-specific/supported-software/q/Qt.md +++ b/docs/version-specific/supported-software/q/Qt.md @@ -29,5 +29,5 @@ version | versionsuffix | toolchain ``4.8.7`` | | ``intel/2017b`` ``4.8.7`` | | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 33b123af7..276dfaf7a 100644 --- a/docs/version-specific/supported-software/q/Qt5.md +++ b/docs/version-specific/supported-software/q/Qt5.md @@ -41,5 +41,5 @@ version | toolchain ``5.9.3`` | ``foss/2017b`` ``5.9.8`` | ``fosscuda/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 717bb5695..73b07dd2d 100644 --- a/docs/version-specific/supported-software/q/Qt5Webkit.md +++ b/docs/version-specific/supported-software/q/Qt5Webkit.md @@ -15,5 +15,5 @@ version | toolchain ``5.212.0-alpha4`` | ``GCCcore/11.2.0`` ``5.212.0-alpha4`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 148faab62..9faadca90 100644 --- a/docs/version-specific/supported-software/q/Qt6.md +++ b/docs/version-specific/supported-software/q/Qt6.md @@ -13,5 +13,5 @@ version | toolchain ``6.5.2`` | ``GCCcore/12.3.0`` ``6.6.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3eedf9489..f792b4ca4 100644 --- a/docs/version-specific/supported-software/q/QtKeychain.md +++ b/docs/version-specific/supported-software/q/QtKeychain.md @@ -14,5 +14,5 @@ version | toolchain ``0.9.1`` | ``GCCcore/8.2.0`` ``0.9.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 895e3c190..182f9a1f0 100644 --- a/docs/version-specific/supported-software/q/QtPy.md +++ b/docs/version-specific/supported-software/q/QtPy.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``GCCcore/11.3.0`` ``2.4.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5040faf83..431c3b475 100644 --- a/docs/version-specific/supported-software/q/Qtconsole.md +++ b/docs/version-specific/supported-software/q/Qtconsole.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``5.4.0`` | | ``GCCcore/11.3.0`` ``5.5.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a70a33de7..637d2c2ad 100644 --- a/docs/version-specific/supported-software/q/QuPath.md +++ b/docs/version-specific/supported-software/q/QuPath.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a98d2f74a..15b07839b 100644 --- a/docs/version-specific/supported-software/q/QuTiP.md +++ b/docs/version-specific/supported-software/q/QuTiP.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``4.3.1`` | ``-Python-3.6.6`` | ``foss/2018b`` ``4.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 52074cde7..f075d0065 100644 --- a/docs/version-specific/supported-software/q/QuaZIP.md +++ b/docs/version-specific/supported-software/q/QuaZIP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.1`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a167b5f35..1553b728d 100644 --- a/docs/version-specific/supported-software/q/Qualimap.md +++ b/docs/version-specific/supported-software/q/Qualimap.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-R-4.0.3`` | ``foss/2020b`` ``2.2.1`` | ``-R-4.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5c88d0d02..1f9054e90 100644 --- a/docs/version-specific/supported-software/q/Quandl.md +++ b/docs/version-specific/supported-software/q/Quandl.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.6.1`` | | ``foss/2020b`` ``3.6.1`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6f1713002..7f63b16a9 100644 --- a/docs/version-specific/supported-software/q/QuantumESPRESSO.md +++ b/docs/version-specific/supported-software/q/QuantumESPRESSO.md @@ -46,5 +46,5 @@ version | versionsuffix | toolchain ``7.3`` | | ``foss/2023a`` ``7.3`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dcc276123..3cff0ae45 100644 --- a/docs/version-specific/supported-software/q/QuickFF.md +++ b/docs/version-specific/supported-software/q/QuickFF.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.2.7`` | | ``foss/2023a`` ``2.2.7`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e486cc49..33da1a3b6 100644 --- a/docs/version-specific/supported-software/q/QuickPIC.md +++ b/docs/version-specific/supported-software/q/QuickPIC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20210224`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a399f279..22a350797 100644 --- a/docs/version-specific/supported-software/q/QuickTree.md +++ b/docs/version-specific/supported-software/q/QuickTree.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2968f12c9..5fe48d198 100644 --- a/docs/version-specific/supported-software/q/Quip.md +++ b/docs/version-specific/supported-software/q/Quip.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.8`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4171c4f30..e5dd71805 100644 --- a/docs/version-specific/supported-software/q/Quorum.md +++ b/docs/version-specific/supported-software/q/Quorum.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 42cde025f..ee5c0f73e 100644 --- a/docs/version-specific/supported-software/q/Qwt.md +++ b/docs/version-specific/supported-software/q/Qwt.md @@ -22,5 +22,5 @@ version | toolchain ``6.2.0`` | ``GCCcore/11.2.0`` ``6.2.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ced60fd34..756b46c5e 100644 --- a/docs/version-specific/supported-software/q/QwtPolar.md +++ b/docs/version-specific/supported-software/q/QwtPolar.md @@ -15,5 +15,5 @@ version | toolchain ``1.1.1`` | ``foss/2016b`` ``1.1.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe52dfaa7..185853045 100644 --- a/docs/version-specific/supported-software/q/index.md +++ b/docs/version-specific/supported-software/q/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (q) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - *q* - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../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) diff --git a/docs/version-specific/supported-software/q/q2-krona.md b/docs/version-specific/supported-software/q/q2-krona.md index 03f9df289..7838f15a3 100644 --- a/docs/version-specific/supported-software/q/q2-krona.md +++ b/docs/version-specific/supported-software/q/q2-krona.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220124`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b0df4e7d..8ee787c01 100644 --- a/docs/version-specific/supported-software/q/qcat.md +++ b/docs/version-specific/supported-software/q/qcat.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ec89f21d7..2add91874 100644 --- a/docs/version-specific/supported-software/q/qcint.md +++ b/docs/version-specific/supported-software/q/qcint.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.18`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90c3d0d4b..52814e0e2 100644 --- a/docs/version-specific/supported-software/q/qforce.md +++ b/docs/version-specific/supported-software/q/qforce.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.11`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b61f9d2b6..04437824f 100644 --- a/docs/version-specific/supported-software/q/qmflows.md +++ b/docs/version-specific/supported-software/q/qmflows.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ce458db6c..d762e4308 100644 --- a/docs/version-specific/supported-software/q/qnorm.md +++ b/docs/version-specific/supported-software/q/qnorm.md @@ -13,5 +13,5 @@ version | toolchain ``0.8.1`` | ``foss/2022a`` ``0.8.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 489b4ccc0..a68c8938b 100644 --- a/docs/version-specific/supported-software/q/qpth.md +++ b/docs/version-specific/supported-software/q/qpth.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.13-20190626`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ed6d41519..9d6cd321e 100644 --- a/docs/version-specific/supported-software/q/qrupdate.md +++ b/docs/version-specific/supported-software/q/qrupdate.md @@ -24,5 +24,5 @@ version | toolchain ``1.1.2`` | ``intel/2016b`` ``1.1.2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 960ba5527..c74e34ee6 100644 --- a/docs/version-specific/supported-software/q/qtop.md +++ b/docs/version-specific/supported-software/q/qtop.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``53`` | ``-1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e4aef9daf..49da23f65 100644 --- a/docs/version-specific/supported-software/r/R-INLA.md +++ b/docs/version-specific/supported-software/r/R-INLA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``21.05.02`` | ``-R-4.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 259dcc9c8..59de0a714 100644 --- a/docs/version-specific/supported-software/r/R-MXM.md +++ b/docs/version-specific/supported-software/r/R-MXM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.5`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1791e4d83..bb4e4542a 100644 --- a/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md +++ b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md @@ -31,5 +31,5 @@ version | versionsuffix | toolchain ``3.8`` | ``-R-3.5.1`` | ``foss/2018b`` ``3.9`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d90e1382..c31ec9258 100644 --- a/docs/version-specific/supported-software/r/R-bundle-CRAN.md +++ b/docs/version-specific/supported-software/r/R-bundle-CRAN.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2023.12`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 934a75b2d..c3aec4485 100644 --- a/docs/version-specific/supported-software/r/R-keras.md +++ b/docs/version-specific/supported-software/r/R-keras.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.4.0`` | ``-R-4.0.4`` | ``foss/2020b`` ``2.4.0`` | ``-R-4.0.4`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18837c450..03d159f76 100644 --- a/docs/version-specific/supported-software/r/R-opencv.md +++ b/docs/version-specific/supported-software/r/R-opencv.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e42cf8450..dcff40eee 100644 --- a/docs/version-specific/supported-software/r/R-tesseract.md +++ b/docs/version-specific/supported-software/r/R-tesseract.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.0`` | ``-R-3.5.1`` | ``foss/2018b`` ``5.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 02883f66a..f2908d90a 100644 --- a/docs/version-specific/supported-software/r/R-transport.md +++ b/docs/version-specific/supported-software/r/R-transport.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13-0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4e01675f0..a92510dba 100644 --- a/docs/version-specific/supported-software/r/R.md +++ b/docs/version-specific/supported-software/r/R.md @@ -58,5 +58,5 @@ version | versionsuffix | toolchain ``4.3.2`` | | ``gfbf/2023a`` ``4.3.3`` | | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1070f01b9..39e0cdb48 100644 --- a/docs/version-specific/supported-software/r/R2jags.md +++ b/docs/version-specific/supported-software/r/R2jags.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7-1`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 42f96160b..769caddd5 100644 --- a/docs/version-specific/supported-software/r/RAPSearch2.md +++ b/docs/version-specific/supported-software/r/RAPSearch2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.24`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7b5ae1ac8..385109ab9 100644 --- a/docs/version-specific/supported-software/r/RASPA2.md +++ b/docs/version-specific/supported-software/r/RASPA2.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.0.41`` | | ``foss/2020b`` ``2.0.47`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3dbc36228..082a7d403 100644 --- a/docs/version-specific/supported-software/r/RAxML-NG.md +++ b/docs/version-specific/supported-software/r/RAxML-NG.md @@ -19,5 +19,5 @@ version | toolchain ``1.2.0`` | ``GCC/12.2.0`` ``1.2.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 886710f2c..0601692bc 100644 --- a/docs/version-specific/supported-software/r/RAxML.md +++ b/docs/version-specific/supported-software/r/RAxML.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``8.2.4`` | ``-hybrid-avx2`` | ``foss/2016a`` ``8.2.9`` | ``-hybrid-avx2`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6e7abd1c8..8682599ff 100644 --- a/docs/version-specific/supported-software/r/RBFOpt.md +++ b/docs/version-specific/supported-software/r/RBFOpt.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``4.1.1`` | | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7af9de68e..e7f4ea0db 100644 --- a/docs/version-specific/supported-software/r/RCall.md +++ b/docs/version-specific/supported-software/r/RCall.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.13.17`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a37c64899..357b9c71c 100644 --- a/docs/version-specific/supported-software/r/RDFlib.md +++ b/docs/version-specific/supported-software/r/RDFlib.md @@ -17,5 +17,5 @@ version | toolchain ``6.2.0`` | ``GCCcore/11.3.0`` ``7.0.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0c28ae677..e75742c1a 100644 --- a/docs/version-specific/supported-software/r/RDKit.md +++ b/docs/version-specific/supported-software/r/RDKit.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2022.09.4`` | | ``foss/2022a`` ``2023.03.3`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9f069b748..6babb351b 100644 --- a/docs/version-specific/supported-software/r/RDP-Classifier.md +++ b/docs/version-specific/supported-software/r/RDP-Classifier.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.13`` | ``-Java-17`` | ``system`` ``2.7`` | ``-Java-1.7.0_60`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5fa1b06c0..e5bcb7575 100644 --- a/docs/version-specific/supported-software/r/RE2.md +++ b/docs/version-specific/supported-software/r/RE2.md @@ -19,5 +19,5 @@ version | toolchain ``2023-08-01`` | ``GCCcore/12.3.0`` ``2024-03-01`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 99feddd35..a3d4f9f50 100644 --- a/docs/version-specific/supported-software/r/RECON.md +++ b/docs/version-specific/supported-software/r/RECON.md @@ -13,5 +13,5 @@ version | toolchain ``1.08`` | ``GCC/10.2.0`` ``1.08`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bb2cb4784..73008f4cf 100644 --- a/docs/version-specific/supported-software/r/RELION.md +++ b/docs/version-specific/supported-software/r/RELION.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``3.0_beta.2018.08.02`` | | ``fosscuda/2018a`` ``3.0_beta.2018.08.02`` | | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 63491019a..d92c9cb0a 100644 --- a/docs/version-specific/supported-software/r/REMORA.md +++ b/docs/version-specific/supported-software/r/REMORA.md @@ -16,5 +16,5 @@ version | toolchain ``1.8.2`` | ``intel/2018a`` ``1.8.3`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae35d2ffa..ca97067b6 100644 --- a/docs/version-specific/supported-software/r/RERconverge.md +++ b/docs/version-specific/supported-software/r/RERconverge.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.0`` | ``-R-3.4.3`` | ``foss/2017b`` ``0.1.0`` | ``-R-3.4.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1cab66dd4..e54bc23c2 100644 --- a/docs/version-specific/supported-software/r/RFdiffusion.md +++ b/docs/version-specific/supported-software/r/RFdiffusion.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.1.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1c3b38b47..93737318b 100644 --- a/docs/version-specific/supported-software/r/RHEIA.md +++ b/docs/version-specific/supported-software/r/RHEIA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.6`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 314daaa1f..ef2458248 100644 --- a/docs/version-specific/supported-software/r/RInChI.md +++ b/docs/version-specific/supported-software/r/RInChI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.00`` | ``-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 069bed98e..facaa0a37 100644 --- a/docs/version-specific/supported-software/r/RLCard.md +++ b/docs/version-specific/supported-software/r/RLCard.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.9`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bdd6dd97e..ad09e2d11 100644 --- a/docs/version-specific/supported-software/r/RMBlast.md +++ b/docs/version-specific/supported-software/r/RMBlast.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.2.28`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.9.0`` | | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7188ab7eb..34c945b66 100644 --- a/docs/version-specific/supported-software/r/RNA-Bloom.md +++ b/docs/version-specific/supported-software/r/RNA-Bloom.md @@ -14,5 +14,5 @@ version | toolchain ``1.4.3`` | ``GCC/11.2.0`` ``2.0.1`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aaa4eead7..bb0e064f4 100644 --- a/docs/version-specific/supported-software/r/RNA-SeQC.md +++ b/docs/version-specific/supported-software/r/RNA-SeQC.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.4.2`` | | ``foss/2021a`` ``2.4.2`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8fd0563b4..f9a6a0489 100644 --- a/docs/version-specific/supported-software/r/RNAIndel.md +++ b/docs/version-specific/supported-software/r/RNAIndel.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ee1d98c78..38fc880c1 100644 --- a/docs/version-specific/supported-software/r/RNAclust.md +++ b/docs/version-specific/supported-software/r/RNAclust.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.3`` | ``-Perl-5.24.0`` | ``foss/2016b`` ``1.3`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1fc86ed90..ad9e8fbfb 100644 --- a/docs/version-specific/supported-software/r/RNAcode.md +++ b/docs/version-specific/supported-software/r/RNAcode.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3`` | ``foss/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c201cad9f..dca0cea2a 100644 --- a/docs/version-specific/supported-software/r/RNAmmer.md +++ b/docs/version-specific/supported-software/r/RNAmmer.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2952cbb8..473797b1a 100644 --- a/docs/version-specific/supported-software/r/RNAz.md +++ b/docs/version-specific/supported-software/r/RNAz.md @@ -13,5 +13,5 @@ version | toolchain ``2.1`` | ``foss/2016b`` ``2.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 886b4b0fe..23de0eaf8 100644 --- a/docs/version-specific/supported-software/r/ROCR-Runtime.md +++ b/docs/version-specific/supported-software/r/ROCR-Runtime.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 20b1769e1..342f56c0c 100644 --- a/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md +++ b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e607a185e..6dba50c41 100644 --- a/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md +++ b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0b8a34b55..df559d86b 100644 --- a/docs/version-specific/supported-software/r/ROCm.md +++ b/docs/version-specific/supported-software/r/ROCm.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7fc903c40..bcc1f5d23 100644 --- a/docs/version-specific/supported-software/r/ROI_PAC.md +++ b/docs/version-specific/supported-software/r/ROI_PAC.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 92f8ecf3e..20041f24a 100644 --- a/docs/version-specific/supported-software/r/ROME.md +++ b/docs/version-specific/supported-software/r/ROME.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.2`` | ``intel/2019.02`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 41b787e81..7b602d3b2 100644 --- a/docs/version-specific/supported-software/r/ROOT.md +++ b/docs/version-specific/supported-software/r/ROOT.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``v6.06.02`` | ``-Python-2.7.12`` | ``intel/2016b`` ``v6.08.02`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f3c46ff26..c55e4befe 100644 --- a/docs/version-specific/supported-software/r/RPostgreSQL.md +++ b/docs/version-specific/supported-software/r/RPostgreSQL.md @@ -13,5 +13,5 @@ version | toolchain ``0.7-5`` | ``foss/2022a`` ``0.7-6`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d3a39545..97ba39c5f 100644 --- a/docs/version-specific/supported-software/r/RQGIS3.md +++ b/docs/version-specific/supported-software/r/RQGIS3.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190903`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 396e9e6a1..d8b42c7d0 100644 --- a/docs/version-specific/supported-software/r/RSEM.md +++ b/docs/version-specific/supported-software/r/RSEM.md @@ -23,5 +23,5 @@ version | toolchain ``1.3.3`` | ``foss/2021b`` ``1.3.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b0b693706..6a2130a98 100644 --- a/docs/version-specific/supported-software/r/RSeQC.md +++ b/docs/version-specific/supported-software/r/RSeQC.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``4.0.0`` | | ``foss/2021a`` ``4.0.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f0e95448..aec7f94e1 100644 --- a/docs/version-specific/supported-software/r/RStan.md +++ b/docs/version-specific/supported-software/r/RStan.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.18.2`` | ``-R-3.5.1`` | ``foss/2018b`` ``2.18.2`` | ``-R-3.4.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1cf2ddaed..89b111601 100644 --- a/docs/version-specific/supported-software/r/RStudio-Server.md +++ b/docs/version-specific/supported-software/r/RStudio-Server.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2022.07.2+576`` | ``-Java-11-R-4.2.1`` | ``foss/2022a`` ``2023.12.1+402`` | ``-Java-11-R-4.3.3`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 131e2f882..3aaa766ef 100644 --- a/docs/version-specific/supported-software/r/RTG-Tools.md +++ b/docs/version-specific/supported-software/r/RTG-Tools.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.12.1`` | ``-Java-11`` | ``system`` ``3.9.1`` | ``-Java-1.8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ae2a7b2a..744cbb60c 100644 --- a/docs/version-specific/supported-software/r/RaGOO.md +++ b/docs/version-specific/supported-software/r/RaGOO.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.11`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 303d23a07..181a3fc40 100644 --- a/docs/version-specific/supported-software/r/Racon.md +++ b/docs/version-specific/supported-software/r/Racon.md @@ -23,5 +23,5 @@ version | toolchain ``1.5.0`` | ``GCCcore/12.2.0`` ``1.5.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4210edee0..389a7e508 100644 --- a/docs/version-specific/supported-software/r/RagTag.md +++ b/docs/version-specific/supported-software/r/RagTag.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.1`` | ``foss/2020b`` ``2.1.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7678c2416..09cded978 100644 --- a/docs/version-specific/supported-software/r/Ragout.md +++ b/docs/version-specific/supported-software/r/Ragout.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.3`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b765f28ba..c02bc0a5b 100644 --- a/docs/version-specific/supported-software/r/RapidJSON.md +++ b/docs/version-specific/supported-software/r/RapidJSON.md @@ -21,5 +21,5 @@ version | toolchain ``1.1.0`` | ``GCCcore/8.3.0`` ``1.1.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 85ad59701..84e6666e6 100644 --- a/docs/version-specific/supported-software/r/Raptor.md +++ b/docs/version-specific/supported-software/r/Raptor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.16`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2c925b88..f8fc4bc77 100644 --- a/docs/version-specific/supported-software/r/Rascaf.md +++ b/docs/version-specific/supported-software/r/Rascaf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d73dd5687..8696356f8 100644 --- a/docs/version-specific/supported-software/r/Ratatosk.md +++ b/docs/version-specific/supported-software/r/Ratatosk.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 67a237486..5e7604d88 100644 --- a/docs/version-specific/supported-software/r/Raven.md +++ b/docs/version-specific/supported-software/r/Raven.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.1`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e7e3e4520..11378528f 100644 --- a/docs/version-specific/supported-software/r/Ray-assembler.md +++ b/docs/version-specific/supported-software/r/Ray-assembler.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.1`` | ``iimpi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2906a154d..b9fdcba8e 100644 --- a/docs/version-specific/supported-software/r/Ray-project.md +++ b/docs/version-specific/supported-software/r/Ray-project.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.9.2`` | | ``foss/2021b`` ``2.2.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b402f5de4..b68248fef 100644 --- a/docs/version-specific/supported-software/r/Raysect.md +++ b/docs/version-specific/supported-software/r/Raysect.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.7.1`` | | ``foss/2020b`` ``0.7.1`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b5df6a77..850ef5735 100644 --- a/docs/version-specific/supported-software/r/Rcorrector.md +++ b/docs/version-specific/supported-software/r/Rcorrector.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9990d39fc..11dd52502 100644 --- a/docs/version-specific/supported-software/r/RcppGSL.md +++ b/docs/version-specific/supported-software/r/RcppGSL.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.8`` | ``-R-4.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a7f992cf1..b2f812efa 100644 --- a/docs/version-specific/supported-software/r/ReFrame.md +++ b/docs/version-specific/supported-software/r/ReFrame.md @@ -38,5 +38,5 @@ version | toolchain ``4.3.2`` | ``system`` ``4.3.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bb25acdc7..c6457a1df 100644 --- a/docs/version-specific/supported-software/r/ReMatCh.md +++ b/docs/version-specific/supported-software/r/ReMatCh.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2`` | ``-Python-2.7.12`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ea614ba5..fd9c89784 100644 --- a/docs/version-specific/supported-software/r/Reads2snp.md +++ b/docs/version-specific/supported-software/r/Reads2snp.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 624f7b66b..f1e5ee2a5 100644 --- a/docs/version-specific/supported-software/r/Reapr.md +++ b/docs/version-specific/supported-software/r/Reapr.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.18`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 101d68373..992b08b77 100644 --- a/docs/version-specific/supported-software/r/ReaxFF.md +++ b/docs/version-specific/supported-software/r/ReaxFF.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0`` | ``-param`` | ``GCC/11.3.0`` ``2.0`` | ``-sim`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ac251e7a8..85a98a8cf 100644 --- a/docs/version-specific/supported-software/r/Red.md +++ b/docs/version-specific/supported-software/r/Red.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2015-05-22`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2754b0290..6670575bc 100644 --- a/docs/version-specific/supported-software/r/Redis.md +++ b/docs/version-specific/supported-software/r/Redis.md @@ -16,5 +16,5 @@ version | toolchain ``7.2.3`` | ``GCCcore/12.3.0`` ``7.2.4`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b46d5e650..63f5af42d 100644 --- a/docs/version-specific/supported-software/r/Redundans.md +++ b/docs/version-specific/supported-software/r/Redundans.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13c`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 465f30c8e..932bd80d6 100644 --- a/docs/version-specific/supported-software/r/RegTools.md +++ b/docs/version-specific/supported-software/r/RegTools.md @@ -15,5 +15,5 @@ version | toolchain ``0.5.2`` | ``foss/2021b`` ``1.0.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b13dad2e6..942aeb84f 100644 --- a/docs/version-specific/supported-software/r/Relate.md +++ b/docs/version-specific/supported-software/r/Relate.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20211123`` | ``-R-4.0.3`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 03f1f7c24..addaf8a18 100644 --- a/docs/version-specific/supported-software/r/RepastHPC.md +++ b/docs/version-specific/supported-software/r/RepastHPC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6d389f6e2..f66999a04 100644 --- a/docs/version-specific/supported-software/r/RepeatMasker.md +++ b/docs/version-specific/supported-software/r/RepeatMasker.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``4.1.5`` | | ``foss/2021a`` ``4.1.5`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eb75cbef8..b863d98e7 100644 --- a/docs/version-specific/supported-software/r/RepeatModeler.md +++ b/docs/version-specific/supported-software/r/RepeatModeler.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.2a`` | ``foss/2020b`` ``2.0.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b23a76930..0644eba34 100644 --- a/docs/version-specific/supported-software/r/RepeatScout.md +++ b/docs/version-specific/supported-software/r/RepeatScout.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.6`` | ``GCC/10.2.0`` ``1.0.6`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 488de4102..a98086627 100644 --- a/docs/version-specific/supported-software/r/ResistanceGA.md +++ b/docs/version-specific/supported-software/r/ResistanceGA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.2-5`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 026e51424..efb14a4bd 100644 --- a/docs/version-specific/supported-software/r/Restrander.md +++ b/docs/version-specific/supported-software/r/Restrander.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20230713`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2dae3e69e..ea811ce85 100644 --- a/docs/version-specific/supported-software/r/RevBayes.md +++ b/docs/version-specific/supported-software/r/RevBayes.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.1`` | ``GCC/11.2.0`` ``1.2.1`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 64d989c67..8c1b441e5 100644 --- a/docs/version-specific/supported-software/r/Rgurobi.md +++ b/docs/version-specific/supported-software/r/Rgurobi.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``9.1.2`` | ``-R-4.1.0`` | ``foss/2021a`` ``9.5.0`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7332cd0d1..dc77425a3 100644 --- a/docs/version-specific/supported-software/r/RheoTool.md +++ b/docs/version-specific/supported-software/r/RheoTool.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a6a3502ae..1cb170f15 100644 --- a/docs/version-specific/supported-software/r/Rhodium.md +++ b/docs/version-specific/supported-software/r/Rhodium.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4ec82f12b..bdb30f44c 100644 --- a/docs/version-specific/supported-software/r/Rivet.md +++ b/docs/version-specific/supported-software/r/Rivet.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.1.7`` | ``-HepMC3-3.2.5`` | ``gompi/2022a`` ``3.1.9`` | ``-HepMC3-3.2.6`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4213e5287..61bcbbb4f 100644 --- a/docs/version-specific/supported-software/r/Rmath.md +++ b/docs/version-specific/supported-software/r/Rmath.md @@ -13,5 +13,5 @@ version | toolchain ``3.3.1`` | ``intel/2016b`` ``4.0.4`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1b76d55ba..08c3ee450 100644 --- a/docs/version-specific/supported-software/r/RnBeads.md +++ b/docs/version-specific/supported-software/r/RnBeads.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.14.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``2.6.0`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bcfe3dba..5cff0606a 100644 --- a/docs/version-specific/supported-software/r/Roary.md +++ b/docs/version-specific/supported-software/r/Roary.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``3.13.0`` | | ``foss/2021a`` ``3.13.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 98ff540ad..c88cd37ad 100644 --- a/docs/version-specific/supported-software/r/Rosetta.md +++ b/docs/version-specific/supported-software/r/Rosetta.md @@ -14,5 +14,5 @@ version | toolchain ``2016.46.59086`` | ``foss/2016b`` ``3.7`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eba0ba978..266e3bc14 100644 --- a/docs/version-specific/supported-software/r/Rtree.md +++ b/docs/version-specific/supported-software/r/Rtree.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.1`` | | ``GCCcore/12.2.0`` ``1.2.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7bb4f45f4..a9653ef34 100644 --- a/docs/version-specific/supported-software/r/Ruby-Tk.md +++ b/docs/version-specific/supported-software/r/Ruby-Tk.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.2.0`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``0.2.0`` | ``-Ruby-2.5.1`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a9ecb7f2..cfb4059cf 100644 --- a/docs/version-specific/supported-software/r/Ruby.md +++ b/docs/version-specific/supported-software/r/Ruby.md @@ -33,5 +33,5 @@ version | toolchain ``3.2.2`` | ``GCCcore/12.2.0`` ``3.3.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bae1bec6..dd93b069a 100644 --- a/docs/version-specific/supported-software/r/Rust.md +++ b/docs/version-specific/supported-software/r/Rust.md @@ -39,5 +39,5 @@ version | toolchain ``1.78.0`` | ``GCCcore/13.3.0`` ``1.8.0`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90d90f8eb..eb0d04f2e 100644 --- a/docs/version-specific/supported-software/r/index.md +++ b/docs/version-specific/supported-software/r/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (r) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - *r* - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../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) diff --git a/docs/version-specific/supported-software/r/rCUDA.md b/docs/version-specific/supported-software/r/rCUDA.md index c73555bdb..276d3ffe1 100644 --- a/docs/version-specific/supported-software/r/rCUDA.md +++ b/docs/version-specific/supported-software/r/rCUDA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.0.1`` | ``_linux_64_Ubuntu10.04`` | ``system`` ``5.0`` | ``_linux_64_scientificLinux6`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81ae4979c..610b49f94 100644 --- a/docs/version-specific/supported-software/r/rMATS-turbo.md +++ b/docs/version-specific/supported-software/r/rMATS-turbo.md @@ -13,5 +13,5 @@ version | toolchain ``4.1.1`` | ``foss/2020b`` ``4.2.0`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d54daf980..512e966cd 100644 --- a/docs/version-specific/supported-software/r/radeontop.md +++ b/docs/version-specific/supported-software/r/radeontop.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 79f9b5f07..32f271f46 100644 --- a/docs/version-specific/supported-software/r/radian.md +++ b/docs/version-specific/supported-software/r/radian.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.9`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 66a0b6dff..f32a5ca44 100644 --- a/docs/version-specific/supported-software/r/rampart.md +++ b/docs/version-specific/supported-software/r/rampart.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.2.0`` | | ``foss/2020b`` ``1.2.0rc3`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e7ff06805..d79d9dbda 100644 --- a/docs/version-specific/supported-software/r/randfold.md +++ b/docs/version-specific/supported-software/r/randfold.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.1`` | ``foss/2018b`` ``2.0.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 552193bce..88d28a417 100644 --- a/docs/version-specific/supported-software/r/randrproto.md +++ b/docs/version-specific/supported-software/r/randrproto.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.0`` | ``foss/2016a`` ``1.5.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ae1bcd01b..94385cbe8 100644 --- a/docs/version-specific/supported-software/r/rapidNJ.md +++ b/docs/version-specific/supported-software/r/rapidNJ.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.3`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1bd13b5c4..9ad367745 100644 --- a/docs/version-specific/supported-software/r/rapidcsv.md +++ b/docs/version-specific/supported-software/r/rapidcsv.md @@ -13,5 +13,5 @@ version | toolchain ``8.62`` | ``GCCcore/11.2.0`` ``8.64`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b0c1fcb17..67e4e4f1c 100644 --- a/docs/version-specific/supported-software/r/rapidtide.md +++ b/docs/version-specific/supported-software/r/rapidtide.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.0`` | ``-Python-3.7.2`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cca7e2aa6..1e4a75baf 100644 --- a/docs/version-specific/supported-software/r/rasterio.md +++ b/docs/version-specific/supported-software/r/rasterio.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.3.8`` | | ``foss/2022b`` ``1.3.9`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2ebed9d6b..f3410ced2 100644 --- a/docs/version-specific/supported-software/r/rasterstats.md +++ b/docs/version-specific/supported-software/r/rasterstats.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.15.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.19.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4a7f6834a..e33d336fc 100644 --- a/docs/version-specific/supported-software/r/rclone.md +++ b/docs/version-specific/supported-software/r/rclone.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.65.2`` | | ``system`` ``1.66.0`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 92cc7026a..6bbdc28b2 100644 --- a/docs/version-specific/supported-software/r/re2c.md +++ b/docs/version-specific/supported-software/r/re2c.md @@ -21,5 +21,5 @@ version | toolchain ``3.1`` | ``GCCcore/12.3.0`` ``3.1`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af47ff7cd..01eff90ff 100644 --- a/docs/version-specific/supported-software/r/redis-py.md +++ b/docs/version-specific/supported-software/r/redis-py.md @@ -15,5 +15,5 @@ version | toolchain ``4.5.1`` | ``foss/2022a`` ``5.0.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b4aa143ca..4171c2800 100644 --- a/docs/version-specific/supported-software/r/regionmask.md +++ b/docs/version-specific/supported-software/r/regionmask.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``foss/2021b`` ``0.9.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 122c033c2..3b80026de 100644 --- a/docs/version-specific/supported-software/r/remake.md +++ b/docs/version-specific/supported-software/r/remake.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3+dbg-1.6`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5291f6b93..f7a9e0de6 100644 --- a/docs/version-specific/supported-software/r/renderproto.md +++ b/docs/version-specific/supported-software/r/renderproto.md @@ -15,5 +15,5 @@ version | toolchain ``0.11`` | ``intel/2016a`` ``0.11`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d3a07140d..b8112d8be 100644 --- a/docs/version-specific/supported-software/r/request.md +++ b/docs/version-specific/supported-software/r/request.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.88.1`` | ``-nodejs-12.19.0`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f276b998c..c0c263a7f 100644 --- a/docs/version-specific/supported-software/r/requests.md +++ b/docs/version-specific/supported-software/r/requests.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2.13.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.13.0`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 47af01acc..e01b40af4 100644 --- a/docs/version-specific/supported-software/r/resolos.md +++ b/docs/version-specific/supported-software/r/resolos.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.5`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6397c4189..208e824ef 100644 --- a/docs/version-specific/supported-software/r/rethinking.md +++ b/docs/version-specific/supported-software/r/rethinking.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.40-20230914`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 781ec9b16..10cc56858 100644 --- a/docs/version-specific/supported-software/r/retworkx.md +++ b/docs/version-specific/supported-software/r/retworkx.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c2da33dd5..d41ef88c7 100644 --- a/docs/version-specific/supported-software/r/rgdal.md +++ b/docs/version-specific/supported-software/r/rgdal.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.5-23`` | ``-R-4.1.0`` | ``foss/2021a`` ``1.6-6`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06346d858..021c3c46e 100644 --- a/docs/version-specific/supported-software/r/rgeos.md +++ b/docs/version-specific/supported-software/r/rgeos.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.5-5`` | ``-R-4.0.0`` | ``foss/2020a`` ``0.5-5`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d5a8651c..47dbd5828 100644 --- a/docs/version-specific/supported-software/r/rhdf5.md +++ b/docs/version-specific/supported-software/r/rhdf5.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.16.0`` | ``-R-3.2.3`` | ``intel/2016a`` ``2.18.0`` | ``-R-3.3.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf7485f40..065a19744 100644 --- a/docs/version-specific/supported-software/r/rickflow.md +++ b/docs/version-specific/supported-software/r/rickflow.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.7.0-20200529`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e360e6170..64f5dc551 100644 --- a/docs/version-specific/supported-software/r/rioxarray.md +++ b/docs/version-specific/supported-software/r/rioxarray.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``foss/2022a`` ``0.15.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a1c14206a..0ee695b51 100644 --- a/docs/version-specific/supported-software/r/ripunzip.md +++ b/docs/version-specific/supported-software/r/ripunzip.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1fd7b60fe..3b521ab30 100644 --- a/docs/version-specific/supported-software/r/rising.md +++ b/docs/version-specific/supported-software/r/rising.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0f0bfc058..2a4e56207 100644 --- a/docs/version-specific/supported-software/r/rjags.md +++ b/docs/version-specific/supported-software/r/rjags.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``4-8`` | ``-R-3.5.1`` | ``foss/2018b`` ``4-9`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 49a6d8540..fe3d7ae16 100644 --- a/docs/version-specific/supported-software/r/rmarkdown.md +++ b/docs/version-specific/supported-software/r/rmarkdown.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.20`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b13a9b841..24a69433c 100644 --- a/docs/version-specific/supported-software/r/rnaQUAST.md +++ b/docs/version-specific/supported-software/r/rnaQUAST.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.2.2`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f3603c209..6a87b7f9a 100644 --- a/docs/version-specific/supported-software/r/rocm-cmake.md +++ b/docs/version-specific/supported-software/r/rocm-cmake.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 23bcf9d1a..b09c9a701 100644 --- a/docs/version-specific/supported-software/r/rocm-smi.md +++ b/docs/version-specific/supported-software/r/rocm-smi.md @@ -14,5 +14,5 @@ version | toolchain ``5.4.4`` | ``GCCcore/11.3.0`` ``5.6.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0796c8283..85939f173 100644 --- a/docs/version-specific/supported-software/r/rocminfo.md +++ b/docs/version-specific/supported-software/r/rocminfo.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90984977d..a385691f7 100644 --- a/docs/version-specific/supported-software/r/root_numpy.md +++ b/docs/version-specific/supported-software/r/root_numpy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.8.0`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3161c850..e1abb0a83 100644 --- a/docs/version-specific/supported-software/r/rootpy.md +++ b/docs/version-specific/supported-software/r/rootpy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.8.0`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 43084f97e..c4202338a 100644 --- a/docs/version-specific/supported-software/r/rpmrebuild.md +++ b/docs/version-specific/supported-software/r/rpmrebuild.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 87e214e67..f917bfb32 100644 --- a/docs/version-specific/supported-software/r/rpy2.md +++ b/docs/version-specific/supported-software/r/rpy2.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``3.4.5`` | | ``foss/2021b`` ``3.5.15`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cafc69ecd..28afb14eb 100644 --- a/docs/version-specific/supported-software/r/rstanarm.md +++ b/docs/version-specific/supported-software/r/rstanarm.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.19.3`` | ``-R-3.6.2`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 69e53ebe8..5f806d587 100644 --- a/docs/version-specific/supported-software/r/ruamel.yaml.md +++ b/docs/version-specific/supported-software/r/ruamel.yaml.md @@ -17,5 +17,5 @@ version | toolchain ``0.17.32`` | ``GCCcore/12.3.0`` ``0.18.6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8dd944de9..c52c041d0 100644 --- a/docs/version-specific/supported-software/r/ruffus.md +++ b/docs/version-specific/supported-software/r/ruffus.md @@ -13,5 +13,5 @@ version | toolchain ``2.8.4`` | ``GCCcore/11.3.0`` ``2.8.4`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bfb906db3..e33fcfee0 100644 --- a/docs/version-specific/supported-software/r/ruptures.md +++ b/docs/version-specific/supported-software/r/ruptures.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.8`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a5bbadf8c..0dca7c05c 100644 --- a/docs/version-specific/supported-software/r/rustworkx.md +++ b/docs/version-specific/supported-software/r/rustworkx.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.12.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0240a3e9e..98e81d50d 100644 --- a/docs/version-specific/supported-software/s/S-Lang.md +++ b/docs/version-specific/supported-software/s/S-Lang.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3.0`` | ``GCC/4.9.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 55a82720e..7ea524d73 100644 --- a/docs/version-specific/supported-software/s/S4.md +++ b/docs/version-specific/supported-software/s/S4.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1-20180610`` | ``foss/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 86a793f6e..8ab2d7f3e 100644 --- a/docs/version-specific/supported-software/s/SAGE.md +++ b/docs/version-specific/supported-software/s/SAGE.md @@ -13,5 +13,5 @@ version | toolchain ``6.3`` | ``system`` ``6.4`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5c0fdd2b8..0e00253ed 100644 --- a/docs/version-specific/supported-software/s/SALMON-TDDFT.md +++ b/docs/version-specific/supported-software/s/SALMON-TDDFT.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.1`` | ``foss/2018b`` ``1.2.1`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index baffe5c2b..20a5d5255 100644 --- a/docs/version-specific/supported-software/s/SALib.md +++ b/docs/version-specific/supported-software/s/SALib.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 207e46e14..12c5d2777 100644 --- a/docs/version-specific/supported-software/s/SAMtools.md +++ b/docs/version-specific/supported-software/s/SAMtools.md @@ -72,5 +72,5 @@ version | versionsuffix | toolchain ``1.9`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e7d861a04..a4613dfea 100644 --- a/docs/version-specific/supported-software/s/SAP.md +++ b/docs/version-specific/supported-software/s/SAP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.3`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e6cb2979b..3240002e6 100644 --- a/docs/version-specific/supported-software/s/SAS.md +++ b/docs/version-specific/supported-software/s/SAS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``9.4`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bff5b2dc4..6d70e47d8 100644 --- a/docs/version-specific/supported-software/s/SBCL.md +++ b/docs/version-specific/supported-software/s/SBCL.md @@ -15,5 +15,5 @@ version | toolchain ``2.3.11`` | ``GCCcore/11.3.0`` ``2.4.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 85c88d73d..8786db507 100644 --- a/docs/version-specific/supported-software/s/SCALCE.md +++ b/docs/version-specific/supported-software/s/SCALCE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.7`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b03e3f8d5..ff091fc21 100644 --- a/docs/version-specific/supported-software/s/SCENIC.md +++ b/docs/version-specific/supported-software/s/SCENIC.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.3.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d8bdf90a5..5ca7a3bf4 100644 --- a/docs/version-specific/supported-software/s/SCGid.md +++ b/docs/version-specific/supported-software/s/SCGid.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9b0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bfda04152..b20c2d407 100644 --- a/docs/version-specific/supported-software/s/SCIP.md +++ b/docs/version-specific/supported-software/s/SCIP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.2.1`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a8ed5476b..61a7fdeb6 100644 --- a/docs/version-specific/supported-software/s/SCIPhI.md +++ b/docs/version-specific/supported-software/s/SCIPhI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.3`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3a81e7834..6b14c25b9 100644 --- a/docs/version-specific/supported-software/s/SCOOP.md +++ b/docs/version-specific/supported-software/s/SCOOP.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.7.1.1`` | ``-Python-3.5.1`` | ``intel/2016a`` ``0.7.1.1`` | ``-Python-2.7.14`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a0ab1aa77..e71159fc8 100644 --- a/docs/version-specific/supported-software/s/SCOTCH.md +++ b/docs/version-specific/supported-software/s/SCOTCH.md @@ -44,5 +44,5 @@ version | versionsuffix | toolchain ``7.0.3`` | | ``gompi/2023a`` ``7.0.4`` | | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c8a81e1e0..2e92983ee 100644 --- a/docs/version-specific/supported-software/s/SCReadCounts.md +++ b/docs/version-specific/supported-software/s/SCReadCounts.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.0`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 97aa0fc19..cc872c9b1 100644 --- a/docs/version-specific/supported-software/s/SCnorm.md +++ b/docs/version-specific/supported-software/s/SCnorm.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.99.7`` | ``-R-3.4.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6d331530f..407738360 100644 --- a/docs/version-specific/supported-software/s/SCons.md +++ b/docs/version-specific/supported-software/s/SCons.md @@ -43,5 +43,5 @@ version | versionsuffix | toolchain ``4.5.2`` | | ``GCCcore/12.3.0`` ``4.6.0`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fc139c27c..afc5d5fd9 100644 --- a/docs/version-specific/supported-software/s/SCopeLoomR.md +++ b/docs/version-specific/supported-software/s/SCopeLoomR.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.13.0`` | ``-R-4.1.2`` | ``foss/2021b`` ``0.13.0_20220408`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c9049cb12..070233aa2 100644 --- a/docs/version-specific/supported-software/s/SDCC.md +++ b/docs/version-specific/supported-software/s/SDCC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d08e93955..ab344bd8d 100644 --- a/docs/version-specific/supported-software/s/SDL.md +++ b/docs/version-specific/supported-software/s/SDL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.15`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 242f0956f..6a8b7e621 100644 --- a/docs/version-specific/supported-software/s/SDL2.md +++ b/docs/version-specific/supported-software/s/SDL2.md @@ -28,5 +28,5 @@ version | toolchain ``2.28.2`` | ``GCCcore/12.3.0`` ``2.28.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 328b929a2..3e6dfa93b 100644 --- a/docs/version-specific/supported-software/s/SDL2_gfx.md +++ b/docs/version-specific/supported-software/s/SDL2_gfx.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.4`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 64815f1b4..516af2888 100644 --- a/docs/version-specific/supported-software/s/SDL2_image.md +++ b/docs/version-specific/supported-software/s/SDL2_image.md @@ -14,5 +14,5 @@ version | toolchain ``2.6.3`` | ``GCCcore/11.3.0`` ``2.8.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9fe059aa5..98d389795 100644 --- a/docs/version-specific/supported-software/s/SDL2_mixer.md +++ b/docs/version-specific/supported-software/s/SDL2_mixer.md @@ -13,5 +13,5 @@ version | toolchain ``2.6.3`` | ``GCCcore/11.3.0`` ``2.8.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 95485d736..550abed3d 100644 --- a/docs/version-specific/supported-software/s/SDL2_ttf.md +++ b/docs/version-specific/supported-software/s/SDL2_ttf.md @@ -13,5 +13,5 @@ version | toolchain ``2.20.2`` | ``GCCcore/11.3.0`` ``2.22.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fce83e900..df83e72ff 100644 --- a/docs/version-specific/supported-software/s/SDL_image.md +++ b/docs/version-specific/supported-software/s/SDL_image.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.12`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4d8afd4fa..989736b44 100644 --- a/docs/version-specific/supported-software/s/SDSL.md +++ b/docs/version-specific/supported-software/s/SDSL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.1-20191211`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 04a177138..ae1687784 100644 --- a/docs/version-specific/supported-software/s/SEACells.md +++ b/docs/version-specific/supported-software/s/SEACells.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20230731`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f1cbaf23f..e70f27ca9 100644 --- a/docs/version-specific/supported-software/s/SECAPR.md +++ b/docs/version-specific/supported-software/s/SECAPR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.15`` | ``-Python-2.7.16`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 37ee00a60..0bc116562 100644 --- a/docs/version-specific/supported-software/s/SELFIES.md +++ b/docs/version-specific/supported-software/s/SELFIES.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.1`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6fc746cc5..451415ba6 100644 --- a/docs/version-specific/supported-software/s/SEPP.md +++ b/docs/version-specific/supported-software/s/SEPP.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``4.5.1`` | | ``foss/2022a`` ``4.5.1`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1245b78b2..16e2ad222 100644 --- a/docs/version-specific/supported-software/s/SHAP.md +++ b/docs/version-specific/supported-software/s/SHAP.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.42.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.42.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a087e75af..8ad1bc4c6 100644 --- a/docs/version-specific/supported-software/s/SHAPEIT.md +++ b/docs/version-specific/supported-software/s/SHAPEIT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.r837`` | ``.GLIBCv2.12`` | ``system`` ``2.r904`` | ``.glibcv2.17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 93ca42259..e3a5fad1f 100644 --- a/docs/version-specific/supported-software/s/SHAPEIT4.md +++ b/docs/version-specific/supported-software/s/SHAPEIT4.md @@ -17,5 +17,5 @@ version | toolchain ``4.2.2`` | ``foss/2020b`` ``4.2.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4f6d3778e..83b154723 100644 --- a/docs/version-specific/supported-software/s/SHORE.md +++ b/docs/version-specific/supported-software/s/SHORE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.3`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fcb859a00..3340eca0f 100644 --- a/docs/version-specific/supported-software/s/SHTns.md +++ b/docs/version-specific/supported-software/s/SHTns.md @@ -13,5 +13,5 @@ version | toolchain ``2.7`` | ``foss/2021b`` ``3.5.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e3ede2bef..850eeb7fa 100644 --- a/docs/version-specific/supported-software/s/SICER2.md +++ b/docs/version-specific/supported-software/s/SICER2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fa4f5e0c5..bad63610f 100644 --- a/docs/version-specific/supported-software/s/SIMPLE.md +++ b/docs/version-specific/supported-software/s/SIMPLE.md @@ -13,5 +13,5 @@ version | toolchain ``2.5`` | ``foss/2018a`` ``3.0.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f29482c4b..48a74bbdb 100644 --- a/docs/version-specific/supported-software/s/SIONlib.md +++ b/docs/version-specific/supported-software/s/SIONlib.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``1.7.7`` | ``-tools`` | ``GCCcore/12.3.0`` ``1.7.7`` | ``-tools`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5870f707..e5d5e1542 100644 --- a/docs/version-specific/supported-software/s/SIP.md +++ b/docs/version-specific/supported-software/s/SIP.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``4.19.8`` | ``-Python-3.6.4`` | ``intel/2018a`` ``6.8.1`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 01a3c1361..2aeba64d1 100644 --- a/docs/version-specific/supported-software/s/SISSO++.md +++ b/docs/version-specific/supported-software/s/SISSO++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b5b15f684..823dd5694 100644 --- a/docs/version-specific/supported-software/s/SISSO.md +++ b/docs/version-specific/supported-software/s/SISSO.md @@ -13,5 +13,5 @@ version | toolchain ``3.0.2`` | ``iimpi/2021b`` ``3.1-20220324`` | ``iimpi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 84d2c7504..1af26f4a9 100644 --- a/docs/version-specific/supported-software/s/SKESA.md +++ b/docs/version-specific/supported-software/s/SKESA.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``foss/2018b`` ``2.4.0`` | ``_saute.1.3.0_1`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 18daff209..da4f286ed 100644 --- a/docs/version-specific/supported-software/s/SLATEC.md +++ b/docs/version-specific/supported-software/s/SLATEC.md @@ -14,5 +14,5 @@ version | toolchain ``4.1`` | ``GCC/8.3.0`` ``4.1`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f8265353f..cf1b1d9be 100644 --- a/docs/version-specific/supported-software/s/SLEPc.md +++ b/docs/version-specific/supported-software/s/SLEPc.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``3.8.3`` | | ``foss/2017b`` ``3.9.2`` | | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ac540a6f2..a019d32a0 100644 --- a/docs/version-specific/supported-software/s/SLiM.md +++ b/docs/version-specific/supported-software/s/SLiM.md @@ -14,5 +14,5 @@ version | toolchain ``4.0`` | ``GCC/11.2.0`` ``4.0.1`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 29d4ca0d6..b31428273 100644 --- a/docs/version-specific/supported-software/s/SMAP.md +++ b/docs/version-specific/supported-software/s/SMAP.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.6.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8dc7eb109..bd4fc6dfd 100644 --- a/docs/version-specific/supported-software/s/SMARTdenovo.md +++ b/docs/version-specific/supported-software/s/SMARTdenovo.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20180219`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 96edb2fc1..4db0f2e01 100644 --- a/docs/version-specific/supported-software/s/SMC++.md +++ b/docs/version-specific/supported-software/s/SMC++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.15.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 42b51f886..d91d61f13 100644 --- a/docs/version-specific/supported-software/s/SMRT-Link.md +++ b/docs/version-specific/supported-software/s/SMRT-Link.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``5.1.0.26412`` | ``-cli-tools-only`` | ``system`` ``6.0.0.47841`` | ``-cli-tools-only`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 96174ba83..2d5f5ac8e 100644 --- a/docs/version-specific/supported-software/s/SMV.md +++ b/docs/version-specific/supported-software/s/SMV.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.7.17`` | ``iccifort/2020.4.304`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f5616a990..140c06265 100644 --- a/docs/version-specific/supported-software/s/SNAP-ESA-python.md +++ b/docs/version-specific/supported-software/s/SNAP-ESA-python.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 36d605cc7..92c7f0129 100644 --- a/docs/version-specific/supported-software/s/SNAP-ESA.md +++ b/docs/version-specific/supported-software/s/SNAP-ESA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``8.0`` | ``-Java-1.8`` | ``system`` ``9.0.0`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 09f115641..d78926737 100644 --- a/docs/version-specific/supported-software/s/SNAP-HMM.md +++ b/docs/version-specific/supported-software/s/SNAP-HMM.md @@ -16,5 +16,5 @@ version | toolchain ``20190603`` | ``GCC/10.2.0`` ``20221022`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 84ca4b7d1..c66448be3 100644 --- a/docs/version-specific/supported-software/s/SNAP.md +++ b/docs/version-specific/supported-software/s/SNAP.md @@ -15,5 +15,5 @@ version | toolchain ``2.0.1`` | ``GCC/11.3.0`` ``2.0.1`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ecc9b6a0e..61b34d24f 100644 --- a/docs/version-specific/supported-software/s/SNAPE-pooled.md +++ b/docs/version-specific/supported-software/s/SNAPE-pooled.md @@ -13,5 +13,5 @@ version | toolchain ``20150707`` | ``GCC/11.3.0`` ``r32`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c12432a67..01613743e 100644 --- a/docs/version-specific/supported-software/s/SNPhylo.md +++ b/docs/version-specific/supported-software/s/SNPhylo.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``20160204`` | ``-Python-2.7.14-R-3.4.3`` | ``foss/2017b`` ``20160204`` | ``-Python-2.7.14-R-3.4.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2f60ff809..2c6ed6de5 100644 --- a/docs/version-specific/supported-software/s/SNPomatic.md +++ b/docs/version-specific/supported-software/s/SNPomatic.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d47fa201c..8e59e6f43 100644 --- a/docs/version-specific/supported-software/s/SOAPaligner.md +++ b/docs/version-specific/supported-software/s/SOAPaligner.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.21`` | ``_Linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9f3d43c7c..73c7cf690 100644 --- a/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md +++ b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.4`` | ``intel/2017a`` ``1.0.5`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a3743cd44..99caef76d 100644 --- a/docs/version-specific/supported-software/s/SOAPdenovo2.md +++ b/docs/version-specific/supported-software/s/SOAPdenovo2.md @@ -16,5 +16,5 @@ version | toolchain ``r241`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``r241`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd61cb95f..acd666b7c 100644 --- a/docs/version-specific/supported-software/s/SOAPfuse.md +++ b/docs/version-specific/supported-software/s/SOAPfuse.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.27`` | ``-Perl-5.24.0`` | ``foss/2016b`` ``1.27`` | ``-Perl-5.28.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e6ac07f1d..bb647090f 100644 --- a/docs/version-specific/supported-software/s/SOCI.md +++ b/docs/version-specific/supported-software/s/SOCI.md @@ -18,5 +18,5 @@ version | toolchain ``4.0.3`` | ``GCC/12.2.0`` ``4.0.3`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6a0f1c57c..e34b94e1d 100644 --- a/docs/version-specific/supported-software/s/SPAdes.md +++ b/docs/version-specific/supported-software/s/SPAdes.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``3.9.0`` | | ``foss/2016a`` ``3.9.0`` | | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 994feef06..17866805c 100644 --- a/docs/version-specific/supported-software/s/SPEI.md +++ b/docs/version-specific/supported-software/s/SPEI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.5`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 05123f07c..c3837c645 100644 --- a/docs/version-specific/supported-software/s/SPLASH.md +++ b/docs/version-specific/supported-software/s/SPLASH.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bc5dd004c..a3924a487 100644 --- a/docs/version-specific/supported-software/s/SPM.md +++ b/docs/version-specific/supported-software/s/SPM.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``12.5_r7771`` | ``-MATLAB-2021a`` | ``system`` ``12.5_r7771`` | ``-MATLAB-2021b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0056d753c..7eed7a356 100644 --- a/docs/version-specific/supported-software/s/SPOOLES.md +++ b/docs/version-specific/supported-software/s/SPOOLES.md @@ -14,5 +14,5 @@ version | toolchain ``2.2`` | ``gompi/2022b`` ``2.2`` | ``gompi/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9953cba8e..c6f4c5505 100644 --- a/docs/version-specific/supported-software/s/SPOTPY.md +++ b/docs/version-specific/supported-software/s/SPOTPY.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.5.14`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3c8a5acc7..309412e82 100644 --- a/docs/version-specific/supported-software/s/SPRNG.md +++ b/docs/version-specific/supported-software/s/SPRNG.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0b`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 10abd26cb..7c0d8c53c 100644 --- a/docs/version-specific/supported-software/s/SQLAlchemy.md +++ b/docs/version-specific/supported-software/s/SQLAlchemy.md @@ -14,5 +14,5 @@ version | toolchain ``2.0.29`` | ``GCCcore/12.2.0`` ``2.0.29`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ab95b1617..dcc4852b3 100644 --- a/docs/version-specific/supported-software/s/SQLite.md +++ b/docs/version-specific/supported-software/s/SQLite.md @@ -51,5 +51,5 @@ version | toolchain ``3.9.2`` | ``iomkl/2016.07`` ``3.9.2`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0cdc43120..ad06e6d86 100644 --- a/docs/version-specific/supported-software/s/SRA-Toolkit.md +++ b/docs/version-specific/supported-software/s/SRA-Toolkit.md @@ -29,5 +29,5 @@ version | versionsuffix | toolchain ``3.0.5`` | | ``gompi/2021a`` ``3.0.5`` | | ``gompi/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 86b9f72b8..6c4a3acb8 100644 --- a/docs/version-specific/supported-software/s/SRPRISM.md +++ b/docs/version-specific/supported-software/s/SRPRISM.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.1.1`` | ``-Java-11`` | ``GCCcore/8.2.0`` ``3.1.2`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b88e910bf..e87b6d36d 100644 --- a/docs/version-specific/supported-software/s/SRST2.md +++ b/docs/version-specific/supported-software/s/SRST2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0-20210620`` | ``-Python-2.7.18`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1b84f37a8..20aa398e3 100644 --- a/docs/version-specific/supported-software/s/SSAHA2.md +++ b/docs/version-specific/supported-software/s/SSAHA2.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.5.5`` | ``-i686`` | ``system`` ``2.5.5`` | ``-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f247a625a..7cf9c77d1 100644 --- a/docs/version-specific/supported-software/s/SSN.md +++ b/docs/version-specific/supported-software/s/SSN.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.14`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e81e1c9b0..b5e95a125 100644 --- a/docs/version-specific/supported-software/s/SSPACE_Basic.md +++ b/docs/version-specific/supported-software/s/SSPACE_Basic.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``2.1.1`` | ``-Perl-5.26.0`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3a7e112d1..fe818dcce 100644 --- a/docs/version-specific/supported-software/s/SSW.md +++ b/docs/version-specific/supported-software/s/SSW.md @@ -17,5 +17,5 @@ version | toolchain ``1.1`` | ``GCCcore/9.3.0`` ``1.2.4`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c1db3f6f9..a2690aef0 100644 --- a/docs/version-specific/supported-software/s/STACEY.md +++ b/docs/version-specific/supported-software/s/STACEY.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.5`` | ``GCC/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 193d0f66f..125dfae07 100644 --- a/docs/version-specific/supported-software/s/STAMP.md +++ b/docs/version-specific/supported-software/s/STAMP.md @@ -14,5 +14,5 @@ version | toolchain ``1.3`` | ``intel/2016a`` ``1.3`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 62ac6f1f7..e827de370 100644 --- a/docs/version-specific/supported-software/s/STAR-CCM+.md +++ b/docs/version-specific/supported-software/s/STAR-CCM+.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``2310`` | ``-r8`` | ``system`` ``2310`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 775977e52..4233a01db 100644 --- a/docs/version-specific/supported-software/s/STAR-Fusion.md +++ b/docs/version-specific/supported-software/s/STAR-Fusion.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4bb02168d..d5f189113 100644 --- a/docs/version-specific/supported-software/s/STAR.md +++ b/docs/version-specific/supported-software/s/STAR.md @@ -49,5 +49,5 @@ version | toolchain ``2.7.9a`` | ``GCC/10.3.0`` ``2.7.9a`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b842c0f72..2031886c2 100644 --- a/docs/version-specific/supported-software/s/STEAK.md +++ b/docs/version-specific/supported-software/s/STEAK.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2019.09.12`` | ``-Python-2.7.16`` | ``foss/2019b`` ``2019.09.12`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 450c1f886..30cdcff94 100644 --- a/docs/version-specific/supported-software/s/STIR.md +++ b/docs/version-specific/supported-software/s/STIR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 69e77dcad..3d1019e8f 100644 --- a/docs/version-specific/supported-software/s/STREAM.md +++ b/docs/version-specific/supported-software/s/STREAM.md @@ -19,5 +19,5 @@ version | toolchain ``5.10`` | ``intel/2018b`` ``5.10`` | ``intel-compilers/2022.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 889469c55..958db159c 100644 --- a/docs/version-specific/supported-software/s/STRUMPACK.md +++ b/docs/version-specific/supported-software/s/STRUMPACK.md @@ -13,5 +13,5 @@ version | toolchain ``6.1.0`` | ``foss/2020b`` ``6.1.0`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd19b2bb8..2ef773f9c 100644 --- a/docs/version-specific/supported-software/s/STRique.md +++ b/docs/version-specific/supported-software/s/STRique.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7e1512276..e81b4021e 100644 --- a/docs/version-specific/supported-software/s/SUMACLUST.md +++ b/docs/version-specific/supported-software/s/SUMACLUST.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.20`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4130ba6b3..e25aa4107 100644 --- a/docs/version-specific/supported-software/s/SUMATRA.md +++ b/docs/version-specific/supported-software/s/SUMATRA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.20`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 82e8a861b..20c345828 100644 --- a/docs/version-specific/supported-software/s/SUMO.md +++ b/docs/version-specific/supported-software/s/SUMO.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 164efbec5..9aa464643 100644 --- a/docs/version-specific/supported-software/s/SUNDIALS.md +++ b/docs/version-specific/supported-software/s/SUNDIALS.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``6.6.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``6.6.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b2977f873..e6c207dcd 100644 --- a/docs/version-specific/supported-software/s/SUPPA.md +++ b/docs/version-specific/supported-software/s/SUPPA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.3-20231005`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 77d00cee7..a1a397944 100644 --- a/docs/version-specific/supported-software/s/SURVIVOR.md +++ b/docs/version-specific/supported-software/s/SURVIVOR.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.7-19-ged1ca51`` | ``GCC/11.2.0`` ``1.0.7-19-ged1ca51`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a1b698c7f..432a18d6c 100644 --- a/docs/version-specific/supported-software/s/SVDetect.md +++ b/docs/version-specific/supported-software/s/SVDetect.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ac41f7ee0..b15d3dde7 100644 --- a/docs/version-specific/supported-software/s/SVDquest.md +++ b/docs/version-specific/supported-software/s/SVDquest.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20190627`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 34e34e0ec..c676368f2 100644 --- a/docs/version-specific/supported-software/s/SVG.md +++ b/docs/version-specific/supported-software/s/SVG.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.87`` | | ``GCC/11.3.0`` ``2.87`` | | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 52c2017a3..d5fe4e057 100644 --- a/docs/version-specific/supported-software/s/SVIM.md +++ b/docs/version-specific/supported-software/s/SVIM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 236cc9aeb..3f87b3475 100644 --- a/docs/version-specific/supported-software/s/SVclone.md +++ b/docs/version-specific/supported-software/s/SVclone.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e155f3ed0..a822baa25 100644 --- a/docs/version-specific/supported-software/s/SWASH.md +++ b/docs/version-specific/supported-software/s/SWASH.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.14`` | ``-mpi`` | ``intel/2017a`` ``4.01`` | ``-mpi`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 27e37032a..e6d78c6db 100644 --- a/docs/version-specific/supported-software/s/SWAT+.md +++ b/docs/version-specific/supported-software/s/SWAT+.md @@ -13,5 +13,5 @@ version | toolchain ``60.4.1`` | ``GCC/9.3.0`` ``60.5.1`` | ``iccifort/2020.4.304`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 90ebca05d..fb8e3eb42 100644 --- a/docs/version-specific/supported-software/s/SWIG.md +++ b/docs/version-specific/supported-software/s/SWIG.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``GCCcore/13.2.0`` ``4.2.1`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6edff1c5a..8173432a6 100644 --- a/docs/version-specific/supported-software/s/SWIPE.md +++ b/docs/version-specific/supported-software/s/SWIPE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5487f98e..f3225f730 100644 --- a/docs/version-specific/supported-software/s/SYMMETRICA.md +++ b/docs/version-specific/supported-software/s/SYMMETRICA.md @@ -13,5 +13,5 @@ version | toolchain ``2.0`` | ``GCCcore/11.3.0`` ``2.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 83dff8b30..a8ddcae8f 100644 --- a/docs/version-specific/supported-software/s/SYMPHONY.md +++ b/docs/version-specific/supported-software/s/SYMPHONY.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.6.16`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1bb09f7e9..c9cd95376 100644 --- a/docs/version-specific/supported-software/s/Sabre.md +++ b/docs/version-specific/supported-software/s/Sabre.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2013-09-28`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 681e1b9c0..5c54e5149 100644 --- a/docs/version-specific/supported-software/s/Safetensors.md +++ b/docs/version-specific/supported-software/s/Safetensors.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 48d94f108..d215fe678 100644 --- a/docs/version-specific/supported-software/s/Sailfish.md +++ b/docs/version-specific/supported-software/s/Sailfish.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.10.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``0.10.1`` | | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 36be7b9fb..870859aed 100644 --- a/docs/version-specific/supported-software/s/Salmon.md +++ b/docs/version-specific/supported-software/s/Salmon.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``gompi/2020b`` ``1.9.0`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7c56dba3f..2a88088a1 100644 --- a/docs/version-specific/supported-software/s/Sambamba.md +++ b/docs/version-specific/supported-software/s/Sambamba.md @@ -16,5 +16,5 @@ version | toolchain ``0.8.2`` | ``GCC/10.3.0`` ``1.0.1`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c1bc71f50..e6ecdfcce 100644 --- a/docs/version-specific/supported-software/s/Samcef.md +++ b/docs/version-specific/supported-software/s/Samcef.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``17.0-03`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 73573f66a..46e195460 100644 --- a/docs/version-specific/supported-software/s/Satsuma2.md +++ b/docs/version-specific/supported-software/s/Satsuma2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220304`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b23f46a9e..8217b9725 100644 --- a/docs/version-specific/supported-software/s/Saxon-HE.md +++ b/docs/version-specific/supported-software/s/Saxon-HE.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``9.7.0.4`` | ``-Java-1.7.0_79`` | ``system`` ``9.9.1.7`` | ``-Java-13`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4e37ccc36..0a6606005 100644 --- a/docs/version-specific/supported-software/s/ScaFaCoS.md +++ b/docs/version-specific/supported-software/s/ScaFaCoS.md @@ -19,5 +19,5 @@ version | toolchain ``1.0.4`` | ``foss/2022b`` ``1.0.4`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 01222f969..5b79cc2e3 100644 --- a/docs/version-specific/supported-software/s/ScaLAPACK.md +++ b/docs/version-specific/supported-software/s/ScaLAPACK.md @@ -58,5 +58,5 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-fb`` | ``gompi/2024.05`` ``2.2.0`` | ``-fb`` | ``nvompi/2022.07`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a8f174bdc..64edac17c 100644 --- a/docs/version-specific/supported-software/s/Scalasca.md +++ b/docs/version-specific/supported-software/s/Scalasca.md @@ -17,5 +17,5 @@ version | toolchain ``2.6`` | ``gompic/2020b`` ``2.6.1`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f43881bf6..c9b303096 100644 --- a/docs/version-specific/supported-software/s/Scalene.md +++ b/docs/version-specific/supported-software/s/Scalene.md @@ -16,5 +16,5 @@ version | toolchain ``1.5.26`` | ``GCCcore/12.3.0`` ``1.5.35`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aebebec5d..08b736a84 100644 --- a/docs/version-specific/supported-software/s/Schrodinger.md +++ b/docs/version-specific/supported-software/s/Schrodinger.md @@ -16,5 +16,5 @@ version | toolchain ``2022-2`` | ``system`` ``2022-3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4920533bb..c8ef01f81 100644 --- a/docs/version-specific/supported-software/s/SciPy-bundle.md +++ b/docs/version-specific/supported-software/s/SciPy-bundle.md @@ -50,5 +50,5 @@ version | versionsuffix | toolchain ``2023.11`` | | ``gfbf/2023.09`` ``2023.11`` | | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ef7d4b38a..964dab43f 100644 --- a/docs/version-specific/supported-software/s/SciTools-Iris.md +++ b/docs/version-specific/supported-software/s/SciTools-Iris.md @@ -13,5 +13,5 @@ version | toolchain ``3.2.1`` | ``foss/2022a`` ``3.9.0`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index eac281891..58327177d 100644 --- a/docs/version-specific/supported-software/s/ScientificPython.md +++ b/docs/version-specific/supported-software/s/ScientificPython.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.9.4`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.9.4`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cda399c45..4e222cca2 100644 --- a/docs/version-specific/supported-software/s/Scoary.md +++ b/docs/version-specific/supported-software/s/Scoary.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.6.16`` | | ``foss/2021a`` ``1.6.16`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 582bd2525..08948074e 100644 --- a/docs/version-specific/supported-software/s/Score-P.md +++ b/docs/version-specific/supported-software/s/Score-P.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``8.4`` | ``-CUDA-12.4.0`` | ``gompi/2023b`` ``8.4`` | | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1cf7a375f..8ff25e90f 100644 --- a/docs/version-specific/supported-software/s/Scrappie.md +++ b/docs/version-specific/supported-software/s/Scrappie.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.2`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f8d15d859..086f82d09 100644 --- a/docs/version-specific/supported-software/s/Scythe.md +++ b/docs/version-specific/supported-software/s/Scythe.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.994`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a188730b4..3ca92022f 100644 --- a/docs/version-specific/supported-software/s/SeaView.md +++ b/docs/version-specific/supported-software/s/SeaView.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0.5`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 76b3d930d..914aaa901 100644 --- a/docs/version-specific/supported-software/s/Seaborn.md +++ b/docs/version-specific/supported-software/s/Seaborn.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-2.7.16`` | ``foss/2019b`` ``0.9.1`` | ``-Python-2.7.18`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4a5743401..a5518deb6 100644 --- a/docs/version-specific/supported-software/s/SearchGUI.md +++ b/docs/version-specific/supported-software/s/SearchGUI.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.3.3`` | ``-Java-1.8.0_152`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ee2a34139..bc4216b2e 100644 --- a/docs/version-specific/supported-software/s/Seeder.md +++ b/docs/version-specific/supported-software/s/Seeder.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.01`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b481f61a1..23b2afd99 100644 --- a/docs/version-specific/supported-software/s/SeisSol.md +++ b/docs/version-specific/supported-software/s/SeisSol.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``201703`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ad4424512..8e6fdd9cf 100644 --- a/docs/version-specific/supported-software/s/SelEstim.md +++ b/docs/version-specific/supported-software/s/SelEstim.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-Linux-64bits`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cb2a3522b..ff664aa60 100644 --- a/docs/version-specific/supported-software/s/SemiBin.md +++ b/docs/version-specific/supported-software/s/SemiBin.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.0.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6e1fcd001..314fd4d4d 100644 --- a/docs/version-specific/supported-software/s/Sentence-Transformers.md +++ b/docs/version-specific/supported-software/s/Sentence-Transformers.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.2`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 49588abee..3d8bb17b3 100644 --- a/docs/version-specific/supported-software/s/SentencePiece.md +++ b/docs/version-specific/supported-software/s/SentencePiece.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.1.99`` | | ``GCC/12.2.0`` ``0.2.0`` | | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6a53f9cba..a443e91e3 100644 --- a/docs/version-specific/supported-software/s/Seq-Gen.md +++ b/docs/version-specific/supported-software/s/Seq-Gen.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.4`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4ccf91021..ad6e089de 100644 --- a/docs/version-specific/supported-software/s/SeqAn.md +++ b/docs/version-specific/supported-software/s/SeqAn.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2.4.0`` | | ``foss/2018b`` ``2.4.0`` | | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b04025063..a5b3908d7 100644 --- a/docs/version-specific/supported-software/s/SeqAn3.md +++ b/docs/version-specific/supported-software/s/SeqAn3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bd7c5bb83..4bbbdebb5 100644 --- a/docs/version-specific/supported-software/s/SeqKit.md +++ b/docs/version-specific/supported-software/s/SeqKit.md @@ -16,5 +16,5 @@ version | toolchain ``2.2.0`` | ``system`` ``2.3.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0693e3fb8..2590b44f4 100644 --- a/docs/version-specific/supported-software/s/SeqLib.md +++ b/docs/version-specific/supported-software/s/SeqLib.md @@ -16,5 +16,5 @@ version | toolchain ``1.2.0`` | ``GCC/12.3.0`` ``1.2.0`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 284e4d814..e0e2da466 100644 --- a/docs/version-specific/supported-software/s/SeqPrep.md +++ b/docs/version-specific/supported-software/s/SeqPrep.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.2`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8583f2228..919a926ca 100644 --- a/docs/version-specific/supported-software/s/Seqmagick.md +++ b/docs/version-specific/supported-software/s/Seqmagick.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.6.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.8.6`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 99f8a3270..6a7ed0746 100644 --- a/docs/version-specific/supported-software/s/Serf.md +++ b/docs/version-specific/supported-software/s/Serf.md @@ -21,5 +21,5 @@ version | toolchain ``1.3.9`` | ``intel/2017b`` ``1.3.9`` | ``iomkl/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b655163a2..b4aacddeb 100644 --- a/docs/version-specific/supported-software/s/Seurat.md +++ b/docs/version-specific/supported-software/s/Seurat.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``5.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` ``5.1.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 55a45f193..38cd7ec00 100644 --- a/docs/version-specific/supported-software/s/SeuratData.md +++ b/docs/version-specific/supported-software/s/SeuratData.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210514`` | ``-R-4.0.3`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 18107831a..58ef9d37b 100644 --- a/docs/version-specific/supported-software/s/SeuratDisk.md +++ b/docs/version-specific/supported-software/s/SeuratDisk.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.0.0.9020`` | ``-R-4.2.1`` | ``foss/2022a`` ``20231104`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 919d00f87..c27a637e5 100644 --- a/docs/version-specific/supported-software/s/SeuratWrappers.md +++ b/docs/version-specific/supported-software/s/SeuratWrappers.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20210528`` | ``-R-4.0.3`` | ``foss/2020b`` ``20221022`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 95b74412d..c2471e02a 100644 --- a/docs/version-specific/supported-software/s/Shannon.md +++ b/docs/version-specific/supported-software/s/Shannon.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170511`` | ``-Python-2.7.13`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 104500998..d3a2719b1 100644 --- a/docs/version-specific/supported-software/s/Shapely.md +++ b/docs/version-specific/supported-software/s/Shapely.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``2.0.1`` | | ``foss/2022b`` ``2.0.1`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 01887b1ab..ed44b25ab 100644 --- a/docs/version-specific/supported-software/s/Shasta.md +++ b/docs/version-specific/supported-software/s/Shasta.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 707f1c5f7..f355db6d4 100644 --- a/docs/version-specific/supported-software/s/ShengBTE.md +++ b/docs/version-specific/supported-software/s/ShengBTE.md @@ -13,5 +13,5 @@ version | toolchain ``1.1.1`` | ``foss/2021a`` ``1.5.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 10c03a997..7805bac63 100644 --- a/docs/version-specific/supported-software/s/Short-Pair.md +++ b/docs/version-specific/supported-software/s/Short-Pair.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``20170125`` | ``-Python-2.7.15`` | ``foss/2018b`` ``20170125`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1edf5f1f3..74e1738ec 100644 --- a/docs/version-specific/supported-software/s/SiNVICT.md +++ b/docs/version-specific/supported-software/s/SiNVICT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0-20180817`` | ``GCC/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 743150d0d..df0ac42a2 100644 --- a/docs/version-specific/supported-software/s/Sibelia.md +++ b/docs/version-specific/supported-software/s/Sibelia.md @@ -14,5 +14,5 @@ version | toolchain ``3.0.7`` | ``foss/2018b`` ``3.0.7`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 52252c245..11bf8df94 100644 --- a/docs/version-specific/supported-software/s/Siesta.md +++ b/docs/version-specific/supported-software/s/Siesta.md @@ -26,5 +26,5 @@ version | versionsuffix | toolchain ``4.1.5`` | | ``intel/2020a`` ``4.1.5`` | | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2b5f8a9c1..42cd8fea8 100644 --- a/docs/version-specific/supported-software/s/SignalP.md +++ b/docs/version-specific/supported-software/s/SignalP.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``6.0g`` | ``-fast`` | ``foss/2022a`` ``6.0h`` | ``-fast`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 85388c759..c740b76fe 100644 --- a/docs/version-specific/supported-software/s/SimNIBS.md +++ b/docs/version-specific/supported-software/s/SimNIBS.md @@ -13,5 +13,5 @@ version | toolchain ``3.2.4`` | ``foss/2020b`` ``4.0.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3c601fcb1..638eaace7 100644 --- a/docs/version-specific/supported-software/s/SimPEG.md +++ b/docs/version-specific/supported-software/s/SimPEG.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.18.1`` | | ``intel/2021b`` ``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b09b4eebc..06cb69ee1 100644 --- a/docs/version-specific/supported-software/s/SimVascular.md +++ b/docs/version-specific/supported-software/s/SimVascular.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.16.0406`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 77d69d57b..8ef2f8679 100644 --- a/docs/version-specific/supported-software/s/Simple-DFTD3.md +++ b/docs/version-specific/supported-software/s/Simple-DFTD3.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5f6167ce1..31760e04f 100644 --- a/docs/version-specific/supported-software/s/SimpleElastix.md +++ b/docs/version-specific/supported-software/s/SimpleElastix.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.10.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``1.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f11f46f20..b8341f053 100644 --- a/docs/version-specific/supported-software/s/SimpleITK.md +++ b/docs/version-specific/supported-software/s/SimpleITK.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``2.1.1.2`` | | ``foss/2022a`` ``2.3.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3e866c593..2374c8a76 100644 --- a/docs/version-specific/supported-software/s/Simstrat.md +++ b/docs/version-specific/supported-software/s/Simstrat.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.01`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fdae3e344..8b0e8f619 100644 --- a/docs/version-specific/supported-software/s/SingleM.md +++ b/docs/version-specific/supported-software/s/SingleM.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.1`` | ``-Python-2.7.15`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 66c343912..489ef03f7 100644 --- a/docs/version-specific/supported-software/s/Singular.md +++ b/docs/version-specific/supported-software/s/Singular.md @@ -15,5 +15,5 @@ version | toolchain ``4.3.2p10`` | ``gfbf/2022a`` ``4.4.0`` | ``gfbf/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d423c1cb7..596559539 100644 --- a/docs/version-specific/supported-software/s/SlamDunk.md +++ b/docs/version-specific/supported-software/s/SlamDunk.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.3`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aced860b6..292303a59 100644 --- a/docs/version-specific/supported-software/s/Smoldyn.md +++ b/docs/version-specific/supported-software/s/Smoldyn.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.48`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 523c41fd8..83a2a03f8 100644 --- a/docs/version-specific/supported-software/s/Sniffles.md +++ b/docs/version-specific/supported-software/s/Sniffles.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.7`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 17b8f4d34..78a8117cd 100644 --- a/docs/version-specific/supported-software/s/SoPlex.md +++ b/docs/version-specific/supported-software/s/SoPlex.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.1`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9d2e39b3c..ffdb2f829 100644 --- a/docs/version-specific/supported-software/s/SoQt.md +++ b/docs/version-specific/supported-software/s/SoQt.md @@ -13,5 +13,5 @@ version | toolchain ``1.6.0`` | ``GCC/10.3.0`` ``1.6.0`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a10a26b49..70f796745 100644 --- a/docs/version-specific/supported-software/s/SoX.md +++ b/docs/version-specific/supported-software/s/SoX.md @@ -14,5 +14,5 @@ version | toolchain ``14.4.2`` | ``GCCcore/11.3.0`` ``14.4.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8e5e5cc46..37e757f09 100644 --- a/docs/version-specific/supported-software/s/SoXt.md +++ b/docs/version-specific/supported-software/s/SoXt.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.0`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 38193e6b0..2f787db99 100644 --- a/docs/version-specific/supported-software/s/SolexaQA++.md +++ b/docs/version-specific/supported-software/s/SolexaQA++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.1.5`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f47177c72..783d4dfad 100644 --- a/docs/version-specific/supported-software/s/SortMeRNA.md +++ b/docs/version-specific/supported-software/s/SortMeRNA.md @@ -13,5 +13,5 @@ version | toolchain ``2.1`` | ``GCC/9.3.0`` ``2.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3e49841b4..e85e54513 100644 --- a/docs/version-specific/supported-software/s/SoupX.md +++ b/docs/version-specific/supported-software/s/SoupX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0c6a75b02..994a1b480 100644 --- a/docs/version-specific/supported-software/s/SpaceRanger.md +++ b/docs/version-specific/supported-software/s/SpaceRanger.md @@ -19,5 +19,5 @@ version | toolchain ``2.1.0`` | ``GCC/11.3.0`` ``2.1.0`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d1431a226..3be7a4797 100644 --- a/docs/version-specific/supported-software/s/Spack.md +++ b/docs/version-specific/supported-software/s/Spack.md @@ -18,5 +18,5 @@ version | toolchain ``0.17.2`` | ``system`` ``0.21.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6dfdb6e7d..7edc463ed 100644 --- a/docs/version-specific/supported-software/s/Spark.md +++ b/docs/version-specific/supported-software/s/Spark.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``foss/2023a`` ``3.5.1`` | ``-Java-17`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 74bb6e2ef..259ae84be 100644 --- a/docs/version-specific/supported-software/s/SpatialDE.md +++ b/docs/version-specific/supported-software/s/SpatialDE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b2aa647ef..11f743e11 100644 --- a/docs/version-specific/supported-software/s/SpectrA.md +++ b/docs/version-specific/supported-software/s/SpectrA.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.1`` | ``GCCcore/11.3.0`` ``1.0.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d4c148b54..4901ba278 100644 --- a/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md +++ b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d30a34f20..1f7271b2d 100644 --- a/docs/version-specific/supported-software/s/Sphinx.md +++ b/docs/version-specific/supported-software/s/Sphinx.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``1.8.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.8.3`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8769fdd7a..47b843948 100644 --- a/docs/version-specific/supported-software/s/SpiceyPy.md +++ b/docs/version-specific/supported-software/s/SpiceyPy.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.1.0`` | ``-Python-3.6.3`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d873f03b7..7ffacb317 100644 --- a/docs/version-specific/supported-software/s/SpiecEasi.md +++ b/docs/version-specific/supported-software/s/SpiecEasi.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``20160830`` | ``-R-3.3.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8a4f568ed..ad40ae38d 100644 --- a/docs/version-specific/supported-software/s/SplAdder.md +++ b/docs/version-specific/supported-software/s/SplAdder.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.2`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 26205e704..e06a7e12b 100644 --- a/docs/version-specific/supported-software/s/SpliceMap.md +++ b/docs/version-specific/supported-software/s/SpliceMap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3.5.2`` | ``GCC/7.3.0-2.30`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 94610ca31..8319f3df2 100644 --- a/docs/version-specific/supported-software/s/Spyder.md +++ b/docs/version-specific/supported-software/s/Spyder.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``4.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` ``4.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 866037ac4..9e4e8762f 100644 --- a/docs/version-specific/supported-software/s/SqueezeMeta.md +++ b/docs/version-specific/supported-software/s/SqueezeMeta.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.5.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 704d219ef..7c6b55626 100644 --- a/docs/version-specific/supported-software/s/Squidpy.md +++ b/docs/version-specific/supported-software/s/Squidpy.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.2`` | ``foss/2021b`` ``1.4.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6b0e7e5ef..317ee78ec 100644 --- a/docs/version-specific/supported-software/s/StaMPS.md +++ b/docs/version-specific/supported-software/s/StaMPS.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.3b1`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 764230757..9c75b0c28 100644 --- a/docs/version-specific/supported-software/s/Stack.md +++ b/docs/version-specific/supported-software/s/Stack.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``2.13.1`` | ``-x86_64`` | ``system`` ``2.3.3`` | ``-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ec2741c1f..1c8d38608 100644 --- a/docs/version-specific/supported-software/s/Stacks.md +++ b/docs/version-specific/supported-software/s/Stacks.md @@ -36,5 +36,5 @@ version | toolchain ``2.54`` | ``foss/2020a`` ``2.62`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 71acaa269..0e0519810 100644 --- a/docs/version-specific/supported-software/s/Stampy.md +++ b/docs/version-specific/supported-software/s/Stampy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.31`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.0.32`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a4b22f591..081d9018b 100644 --- a/docs/version-specific/supported-software/s/Stata.md +++ b/docs/version-specific/supported-software/s/Stata.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``16`` | ``-legacy`` | ``system`` ``17`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cf17ade17..0ccb4978c 100644 --- a/docs/version-specific/supported-software/s/Statistics-R.md +++ b/docs/version-specific/supported-software/s/Statistics-R.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.34`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3a05191e0..14f21b186 100644 --- a/docs/version-specific/supported-software/s/Strainberry.md +++ b/docs/version-specific/supported-software/s/Strainberry.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1ac032298..bc580beb8 100644 --- a/docs/version-specific/supported-software/s/StringTie.md +++ b/docs/version-specific/supported-software/s/StringTie.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` ``2.2.1`` | | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 477642437..369d7c433 100644 --- a/docs/version-specific/supported-software/s/Structure.md +++ b/docs/version-specific/supported-software/s/Structure.md @@ -16,5 +16,5 @@ version | toolchain ``2.3.4`` | ``iccifort/2019.3.199-GCC-8.3.0-2.32`` ``2.3.4`` | ``iccifort/2019.5.281`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 379517eaa..500c08fb3 100644 --- a/docs/version-specific/supported-software/s/Structure_threader.md +++ b/docs/version-specific/supported-software/s/Structure_threader.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.10`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 56b74dd43..2432445a2 100644 --- a/docs/version-specific/supported-software/s/SuAVE-biomat.md +++ b/docs/version-specific/supported-software/s/SuAVE-biomat.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0-20230815`` | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f4437aa82..67c708cb3 100644 --- a/docs/version-specific/supported-software/s/Subread.md +++ b/docs/version-specific/supported-software/s/Subread.md @@ -22,5 +22,5 @@ version | toolchain ``2.0.3`` | ``GCC/9.3.0`` ``2.0.4`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 746feb68b..2994902fe 100644 --- a/docs/version-specific/supported-software/s/Subversion.md +++ b/docs/version-specific/supported-software/s/Subversion.md @@ -21,5 +21,5 @@ version | toolchain ``1.9.7`` | ``iomkl/2018a`` ``1.9.9`` | ``GCCcore/7.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3ffa0fcbb..199aa5608 100644 --- a/docs/version-specific/supported-software/s/SuiteSparse.md +++ b/docs/version-specific/supported-software/s/SuiteSparse.md @@ -54,5 +54,5 @@ version | versionsuffix | toolchain ``5.8.1`` | ``-METIS-5.1.0`` | ``intel/2020b`` ``7.1.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d5d323e95..7feec64cc 100644 --- a/docs/version-specific/supported-software/s/SunPy.md +++ b/docs/version-specific/supported-software/s/SunPy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6a9beb2ff..078f4f777 100644 --- a/docs/version-specific/supported-software/s/SuperLU.md +++ b/docs/version-specific/supported-software/s/SuperLU.md @@ -22,5 +22,5 @@ version | toolchain ``5.3.0`` | ``intel/2020b`` ``5.3.0`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ea50c9843..a63b52e9a 100644 --- a/docs/version-specific/supported-software/s/SuperLU_DIST.md +++ b/docs/version-specific/supported-software/s/SuperLU_DIST.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``8.1.2`` | | ``foss/2022b`` ``8.1.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ad8bc95ba..876ec45c5 100644 --- a/docs/version-specific/supported-software/s/SyRI.md +++ b/docs/version-specific/supported-software/s/SyRI.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e4de16ddd..69ecea8f9 100644 --- a/docs/version-specific/supported-software/s/SymEngine-python.md +++ b/docs/version-specific/supported-software/s/SymEngine-python.md @@ -13,5 +13,5 @@ version | toolchain ``0.11.0`` | ``gfbf/2023b`` ``0.7.2`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f06a62e8e..0c26c35a6 100644 --- a/docs/version-specific/supported-software/s/SymEngine.md +++ b/docs/version-specific/supported-software/s/SymEngine.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``GCC/8.2.0-2.31.1`` ``0.7.0`` | | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 18983291b..8d6b4654b 100644 --- a/docs/version-specific/supported-software/s/Szip.md +++ b/docs/version-specific/supported-software/s/Szip.md @@ -39,5 +39,5 @@ version | toolchain ``2.1.1`` | ``GCCcore/8.3.0`` ``2.1.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6df25fe7e..2329664f5 100644 --- a/docs/version-specific/supported-software/s/index.md +++ b/docs/version-specific/supported-software/s/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (s) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - *s* - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../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) diff --git a/docs/version-specific/supported-software/s/s3fs.md b/docs/version-specific/supported-software/s/s3fs.md index 8f61dd41d..b9b918678 100644 --- a/docs/version-specific/supported-software/s/s3fs.md +++ b/docs/version-specific/supported-software/s/s3fs.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2023.12.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 90459d388..7bb8a691d 100644 --- a/docs/version-specific/supported-software/s/safestringlib.md +++ b/docs/version-specific/supported-software/s/safestringlib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20240228`` | ``intel-compilers/2023.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 034f8f694..db5feed89 100644 --- a/docs/version-specific/supported-software/s/samblaster.md +++ b/docs/version-specific/supported-software/s/samblaster.md @@ -15,5 +15,5 @@ version | toolchain ``0.1.26`` | ``GCC/10.3.0`` ``0.1.26`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4278813f7..04fb406da 100644 --- a/docs/version-specific/supported-software/s/samclip.md +++ b/docs/version-specific/supported-software/s/samclip.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``GCCcore/11.2.0`` ``0.4.0`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 06929e5e6..52addf7ea 100644 --- a/docs/version-specific/supported-software/s/samplot.md +++ b/docs/version-specific/supported-software/s/samplot.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 15ae5a8f8..6b0941146 100644 --- a/docs/version-specific/supported-software/s/sansa.md +++ b/docs/version-specific/supported-software/s/sansa.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.7`` | ``gompi/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1234ddf11..99ab02821 100644 --- a/docs/version-specific/supported-software/s/savvy.md +++ b/docs/version-specific/supported-software/s/savvy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 042148f52..f57a9d09b 100644 --- a/docs/version-specific/supported-software/s/sbt.md +++ b/docs/version-specific/supported-software/s/sbt.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.13`` | ``-Java-8`` | ``system`` ``1.6.2`` | ``-Java-8`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f3309181f..77ecef98b 100644 --- a/docs/version-specific/supported-software/s/scArches.md +++ b/docs/version-specific/supported-software/s/scArches.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.5.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.5.6`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1f22c73bf..c541b68db 100644 --- a/docs/version-specific/supported-software/s/scCODA.md +++ b/docs/version-specific/supported-software/s/scCODA.md @@ -13,5 +13,5 @@ version | toolchain ``0.1.9`` | ``foss/2021a`` ``0.1.9`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 321ce6c74..317ffc2a8 100644 --- a/docs/version-specific/supported-software/s/scGSVA.md +++ b/docs/version-specific/supported-software/s/scGSVA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.14`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8fee303a0..dbd9346f4 100644 --- a/docs/version-specific/supported-software/s/scGeneFit.md +++ b/docs/version-specific/supported-software/s/scGeneFit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e0ce6bbb4..0cf8c0ec7 100644 --- a/docs/version-specific/supported-software/s/scHiCExplorer.md +++ b/docs/version-specific/supported-software/s/scHiCExplorer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4936e5997..c410ebe24 100644 --- a/docs/version-specific/supported-software/s/scPred.md +++ b/docs/version-specific/supported-software/s/scPred.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.9.2`` | ``-R-4.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2928dc10b..d29445460 100644 --- a/docs/version-specific/supported-software/s/scVelo.md +++ b/docs/version-specific/supported-software/s/scVelo.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.2.3`` | | ``foss/2021a`` ``0.3.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d47a53c7f..3c7c9e288 100644 --- a/docs/version-specific/supported-software/s/scanpy.md +++ b/docs/version-specific/supported-software/s/scanpy.md @@ -18,5 +18,5 @@ version | toolchain ``1.9.1`` | ``foss/2022a`` ``1.9.8`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d1cb9f651..f52684a82 100644 --- a/docs/version-specific/supported-software/s/sceasy.md +++ b/docs/version-specific/supported-software/s/sceasy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.7`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 076d74fcc..a32b2d195 100644 --- a/docs/version-specific/supported-software/s/sciClone.md +++ b/docs/version-specific/supported-software/s/sciClone.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5e64ae9d8..3df020a47 100644 --- a/docs/version-specific/supported-software/s/scib-metrics.md +++ b/docs/version-specific/supported-software/s/scib-metrics.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.3`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 12869d752..6d0ce7498 100644 --- a/docs/version-specific/supported-software/s/scib.md +++ b/docs/version-specific/supported-software/s/scib.md @@ -14,5 +14,5 @@ version | toolchain ``1.1.3`` | ``foss/2021a`` ``1.1.4`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 245b38e46..53d7851b4 100644 --- a/docs/version-specific/supported-software/s/scikit-allel.md +++ b/docs/version-specific/supported-software/s/scikit-allel.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.3.2`` | | ``foss/2020b`` ``1.3.3`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a766bd171..9fe572ed4 100644 --- a/docs/version-specific/supported-software/s/scikit-bio.md +++ b/docs/version-specific/supported-software/s/scikit-bio.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.5.7`` | | ``foss/2022a`` ``0.6.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 096199069..5ae2db5c5 100644 --- a/docs/version-specific/supported-software/s/scikit-build-core.md +++ b/docs/version-specific/supported-software/s/scikit-build-core.md @@ -13,5 +13,5 @@ version | toolchain ``0.5.0`` | ``GCCcore/12.3.0`` ``0.9.3`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b10d66d9e..a3d6f8f90 100644 --- a/docs/version-specific/supported-software/s/scikit-build.md +++ b/docs/version-specific/supported-software/s/scikit-build.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``0.17.6`` | | ``GCCcore/12.3.0`` ``0.17.6`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fff73997e..c6610fe1f 100644 --- a/docs/version-specific/supported-software/s/scikit-cuda.md +++ b/docs/version-specific/supported-software/s/scikit-cuda.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c9376e271..4b0460c28 100644 --- a/docs/version-specific/supported-software/s/scikit-extremes.md +++ b/docs/version-specific/supported-software/s/scikit-extremes.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2022.4.10`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 788e11a83..85604efbb 100644 --- a/docs/version-specific/supported-software/s/scikit-image.md +++ b/docs/version-specific/supported-software/s/scikit-image.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``0.21.0`` | | ``foss/2022b`` ``0.22.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 963ed011f..eb105f942 100644 --- a/docs/version-specific/supported-software/s/scikit-learn.md +++ b/docs/version-specific/supported-software/s/scikit-learn.md @@ -76,5 +76,5 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``gfbf/2023b`` ``1.4.2`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1f335de2e..494b3a986 100644 --- a/docs/version-specific/supported-software/s/scikit-lego.md +++ b/docs/version-specific/supported-software/s/scikit-lego.md @@ -13,5 +13,5 @@ version | toolchain ``0.6.16`` | ``foss/2022a`` ``0.7.4`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7f25a5879..c702ed508 100644 --- a/docs/version-specific/supported-software/s/scikit-misc.md +++ b/docs/version-specific/supported-software/s/scikit-misc.md @@ -14,5 +14,5 @@ version | toolchain ``0.1.4`` | ``foss/2022a`` ``0.3.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 27ef76015..847416192 100644 --- a/docs/version-specific/supported-software/s/scikit-multilearn.md +++ b/docs/version-specific/supported-software/s/scikit-multilearn.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ddb0c8f67..393acde6e 100644 --- a/docs/version-specific/supported-software/s/scikit-optimize.md +++ b/docs/version-specific/supported-software/s/scikit-optimize.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``foss/2021a`` ``0.9.0`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 434876463..db998b1a8 100644 --- a/docs/version-specific/supported-software/s/scikit-plot.md +++ b/docs/version-specific/supported-software/s/scikit-plot.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.7`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 834739b6a..f9cd2253d 100644 --- a/docs/version-specific/supported-software/s/scikit-uplift.md +++ b/docs/version-specific/supported-software/s/scikit-uplift.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a34c6d1fa..d53a1c2c6 100644 --- a/docs/version-specific/supported-software/s/scipy.md +++ b/docs/version-specific/supported-software/s/scipy.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.4.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index eec5aaaee..1bdc7b9d4 100644 --- a/docs/version-specific/supported-software/s/scp.md +++ b/docs/version-specific/supported-software/s/scp.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.13.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``0.13.2`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ae4d181cd..bb98c8a59 100644 --- a/docs/version-specific/supported-software/s/scrublet.md +++ b/docs/version-specific/supported-software/s/scrublet.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d28609a12..4127f5786 100644 --- a/docs/version-specific/supported-software/s/scvi-tools.md +++ b/docs/version-specific/supported-software/s/scvi-tools.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.16.4`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.16.4`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c259b2238..0c0d27830 100644 --- a/docs/version-specific/supported-software/s/segemehl.md +++ b/docs/version-specific/supported-software/s/segemehl.md @@ -20,5 +20,5 @@ version | toolchain ``0.3.4`` | ``foss/2018b`` ``0.3.4`` | ``iccifort/2020.4.304`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 58d8b0334..f3a29c02b 100644 --- a/docs/version-specific/supported-software/s/segment-anything.md +++ b/docs/version-specific/supported-software/s/segment-anything.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 80acd4861..61566330b 100644 --- a/docs/version-specific/supported-software/s/segmentation-models-pytorch.md +++ b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.3`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 361c70d8f..06ee6d1d6 100644 --- a/docs/version-specific/supported-software/s/segmentation-models.md +++ b/docs/version-specific/supported-software/s/segmentation-models.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b45a68c0e..2796d6eef 100644 --- a/docs/version-specific/supported-software/s/semla.md +++ b/docs/version-specific/supported-software/s/semla.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.6`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d1a5dd47c..499c7e3ad 100644 --- a/docs/version-specific/supported-software/s/sentinelsat.md +++ b/docs/version-specific/supported-software/s/sentinelsat.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 4f389274e..96b556823 100644 --- a/docs/version-specific/supported-software/s/sep.md +++ b/docs/version-specific/supported-software/s/sep.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.3`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.0.3`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c718ab15c..f62d0f515 100644 --- a/docs/version-specific/supported-software/s/seq2HLA.md +++ b/docs/version-specific/supported-software/s/seq2HLA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` ``2.3`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index dc2af3069..5bae58be0 100644 --- a/docs/version-specific/supported-software/s/seqtk.md +++ b/docs/version-specific/supported-software/s/seqtk.md @@ -24,5 +24,5 @@ version | toolchain ``1.4`` | ``GCC/12.2.0`` ``1.4`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 542a42711..f54e331ac 100644 --- a/docs/version-specific/supported-software/s/setuptools-rust.md +++ b/docs/version-specific/supported-software/s/setuptools-rust.md @@ -13,5 +13,5 @@ version | toolchain ``1.6.0`` | ``GCCcore/12.3.0`` ``1.8.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e16aed8c1..64715fca7 100644 --- a/docs/version-specific/supported-software/s/setuptools.md +++ b/docs/version-specific/supported-software/s/setuptools.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``41.0.1`` | ``-py3`` | ``system`` ``64.0.3`` | | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3835764a3..d300de5b8 100644 --- a/docs/version-specific/supported-software/s/sf.md +++ b/docs/version-specific/supported-software/s/sf.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9-5`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index fabafc7c5..d73f83c9d 100644 --- a/docs/version-specific/supported-software/s/sfftk.md +++ b/docs/version-specific/supported-software/s/sfftk.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.4`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 71b10fbc4..6229de9a2 100644 --- a/docs/version-specific/supported-software/s/shapAAR.md +++ b/docs/version-specific/supported-software/s/shapAAR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20180425`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 297bebb43..c20fba126 100644 --- a/docs/version-specific/supported-software/s/sharutils.md +++ b/docs/version-specific/supported-software/s/sharutils.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.15`` | ``GCCcore/6.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a3a528ef6..f8bf6bd4f 100644 --- a/docs/version-specific/supported-software/s/shift.md +++ b/docs/version-specific/supported-software/s/shift.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 331ee6d45..d54c2df29 100644 --- a/docs/version-specific/supported-software/s/shovill.md +++ b/docs/version-specific/supported-software/s/shovill.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.0.4`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.1.0`` | | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 506520e6a..19fc43b82 100644 --- a/docs/version-specific/supported-software/s/shrinkwrap.md +++ b/docs/version-specific/supported-software/s/shrinkwrap.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.0-beta`` | ``GCCcore/8.2.0`` ``1.1.0`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index abd0293bb..5ca38f619 100644 --- a/docs/version-specific/supported-software/s/sickle.md +++ b/docs/version-specific/supported-software/s/sickle.md @@ -13,5 +13,5 @@ version | toolchain ``1.33`` | ``foss/2017a`` ``1.33`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index add5deae2..e28447457 100644 --- a/docs/version-specific/supported-software/s/silhouetteRank.md +++ b/docs/version-specific/supported-software/s/silhouetteRank.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.5.13`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 50fd51333..da911640c 100644 --- a/docs/version-specific/supported-software/s/silx.md +++ b/docs/version-specific/supported-software/s/silx.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``fosscuda/2020b`` ``1.0.0`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e8e6640b0..7e48493f3 100644 --- a/docs/version-specific/supported-software/s/simanneal.md +++ b/docs/version-specific/supported-software/s/simanneal.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.0`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ae174a1f7..d2b1497ed 100644 --- a/docs/version-specific/supported-software/s/simint.md +++ b/docs/version-specific/supported-software/s/simint.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-lmax-5-vec-avx-psi4`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index bec77b3de..4b745beac 100644 --- a/docs/version-specific/supported-software/s/simpy.md +++ b/docs/version-specific/supported-software/s/simpy.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.0.11`` | ``-Python-3.6.6`` | ``intel/2018b`` ``3.0.11`` | | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 028d4451a..3ee5676d7 100644 --- a/docs/version-specific/supported-software/s/sinto.md +++ b/docs/version-specific/supported-software/s/sinto.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7.4`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5dd820a17..882c15fbd 100644 --- a/docs/version-specific/supported-software/s/siscone.md +++ b/docs/version-specific/supported-software/s/siscone.md @@ -13,5 +13,5 @@ version | toolchain ``3.0.5`` | ``GCCcore/11.3.0`` ``3.0.6`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9579c7c95..32870bd3f 100644 --- a/docs/version-specific/supported-software/s/sketchmap.md +++ b/docs/version-specific/supported-software/s/sketchmap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20170130`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a7e64531f..4b7fb9e37 100644 --- a/docs/version-specific/supported-software/s/skewer.md +++ b/docs/version-specific/supported-software/s/skewer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.2`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ee307402d..4fbb7545d 100644 --- a/docs/version-specific/supported-software/s/sklearn-pandas.md +++ b/docs/version-specific/supported-software/s/sklearn-pandas.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 70a5ac11b..13b92e5b3 100644 --- a/docs/version-specific/supported-software/s/sklearn-som.md +++ b/docs/version-specific/supported-software/s/sklearn-som.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index dd983e2d8..ac5c03b1c 100644 --- a/docs/version-specific/supported-software/s/skorch.md +++ b/docs/version-specific/supported-software/s/skorch.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.15.0`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` ``0.15.0`` | ``-PyTorch-2.1.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 75dd6e45b..8f36ba72e 100644 --- a/docs/version-specific/supported-software/s/sktime.md +++ b/docs/version-specific/supported-software/s/sktime.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.25.0`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5bf13fcee..888de93c0 100644 --- a/docs/version-specific/supported-software/s/slepc4py.md +++ b/docs/version-specific/supported-software/s/slepc4py.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``3.15.1`` | | ``foss/2021a`` ``3.9.0`` | ``-Python-3.6.4`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 30a978122..b7f33c72f 100644 --- a/docs/version-specific/supported-software/s/sleuth.md +++ b/docs/version-specific/supported-software/s/sleuth.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.29.0`` | ``-R-3.4.0`` | ``intel/2017a`` ``0.30.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 699265c14..6c668347f 100644 --- a/docs/version-specific/supported-software/s/slidingwindow.md +++ b/docs/version-specific/supported-software/s/slidingwindow.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.0.13`` | ``-Python-2.7.15`` | ``intel/2018b`` ``0.0.13`` | ``-Python-3.6.6`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 6640b293c..03d1ecd63 100644 --- a/docs/version-specific/supported-software/s/slow5tools.md +++ b/docs/version-specific/supported-software/s/slow5tools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.0`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5cb8b5c0a..1fd63a2db 100644 --- a/docs/version-specific/supported-software/s/slurm-drmaa.md +++ b/docs/version-specific/supported-software/s/slurm-drmaa.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.3`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3adad56bd..a8041d575 100644 --- a/docs/version-specific/supported-software/s/smafa.md +++ b/docs/version-specific/supported-software/s/smafa.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.0`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9a6d9aaa0..b77e71f70 100644 --- a/docs/version-specific/supported-software/s/smallgenomeutilities.md +++ b/docs/version-specific/supported-software/s/smallgenomeutilities.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2d4296f1a..659313a21 100644 --- a/docs/version-specific/supported-software/s/smfishHmrf.md +++ b/docs/version-specific/supported-software/s/smfishHmrf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b7aa010c4..f25c84c82 100644 --- a/docs/version-specific/supported-software/s/smithwaterman.md +++ b/docs/version-specific/supported-software/s/smithwaterman.md @@ -17,5 +17,5 @@ version | toolchain ``20160702`` | ``GCCcore/12.3.0`` ``20160702`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index a86ab948b..bddf2a9ef 100644 --- a/docs/version-specific/supported-software/s/smooth-topk.md +++ b/docs/version-specific/supported-software/s/smooth-topk.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0-20210817`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0-20210817`` | | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index afdf334f3..99e618870 100644 --- a/docs/version-specific/supported-software/s/snakemake.md +++ b/docs/version-specific/supported-software/s/snakemake.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``7.32.3`` | | ``foss/2022b`` ``8.4.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ced0432e2..142041b78 100644 --- a/docs/version-specific/supported-software/s/snaphu.md +++ b/docs/version-specific/supported-software/s/snaphu.md @@ -14,5 +14,5 @@ version | toolchain ``1.4.2`` | ``intel/2016b`` ``1.4.2`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f5a78447b..f8d9bb023 100644 --- a/docs/version-specific/supported-software/s/snappy.md +++ b/docs/version-specific/supported-software/s/snappy.md @@ -29,5 +29,5 @@ version | toolchain ``1.1.9`` | ``GCCcore/11.3.0`` ``1.1.9`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7daa9ca8f..12d3a821d 100644 --- a/docs/version-specific/supported-software/s/snippy.md +++ b/docs/version-specific/supported-software/s/snippy.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``4.6.0`` | ``-Java-13-Python-3.8.2`` | ``GCC/9.3.0`` ``4.6.0`` | ``-R-4.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1329fd95d..dbcb0c9a0 100644 --- a/docs/version-specific/supported-software/s/snp-sites.md +++ b/docs/version-specific/supported-software/s/snp-sites.md @@ -15,5 +15,5 @@ version | toolchain ``2.5.1`` | ``GCCcore/11.2.0`` ``2.5.1`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0f59a533d..d9e34bf6a 100644 --- a/docs/version-specific/supported-software/s/snpEff.md +++ b/docs/version-specific/supported-software/s/snpEff.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``5.0e`` | ``-Java-13`` | ``GCCcore/10.2.0`` ``5.0e`` | ``-Java-11`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index d6ecfc536..3dd76fdeb 100644 --- a/docs/version-specific/supported-software/s/socat.md +++ b/docs/version-specific/supported-software/s/socat.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.3.3`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 94673d630..d479918dd 100644 --- a/docs/version-specific/supported-software/s/solo.md +++ b/docs/version-specific/supported-software/s/solo.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 15acdb852..8a24250b9 100644 --- a/docs/version-specific/supported-software/s/sonic.md +++ b/docs/version-specific/supported-software/s/sonic.md @@ -13,5 +13,5 @@ version | toolchain ``20180202`` | ``gfbf/2023a`` ``20180202`` | ``gompi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 0e175aad7..46fa28dab 100644 --- a/docs/version-specific/supported-software/s/spaCy.md +++ b/docs/version-specific/supported-software/s/spaCy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.4.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c87cf72d3..85a9b39c0 100644 --- a/docs/version-specific/supported-software/s/spaln.md +++ b/docs/version-specific/supported-software/s/spaln.md @@ -16,5 +16,5 @@ version | toolchain ``2.4.12`` | ``GCC/11.2.0`` ``2.4.13f`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3b234e764..e58f919d2 100644 --- a/docs/version-specific/supported-software/s/sparse-neighbors-search.md +++ b/docs/version-specific/supported-software/s/sparse-neighbors-search.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.7`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c0704cc60..b1d9a2a33 100644 --- a/docs/version-specific/supported-software/s/sparsehash.md +++ b/docs/version-specific/supported-software/s/sparsehash.md @@ -23,5 +23,5 @@ version | toolchain ``2.0.4`` | ``GCCcore/12.3.0`` ``2.0.4`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aee352e7c..3b5925408 100644 --- a/docs/version-specific/supported-software/s/spatialreg.md +++ b/docs/version-specific/supported-software/s/spatialreg.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1-5`` | ``-R-3.6.2`` | ``foss/2019b`` ``1.1-8`` | ``-R-4.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index b432f3525..13bed7b19 100644 --- a/docs/version-specific/supported-software/s/spdlog.md +++ b/docs/version-specific/supported-software/s/spdlog.md @@ -16,5 +16,5 @@ version | toolchain ``1.12.0`` | ``GCCcore/13.2.0`` ``1.9.2`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index f70f4af87..0bba9ebbc 100644 --- a/docs/version-specific/supported-software/s/spectral.methods.md +++ b/docs/version-specific/supported-software/s/spectral.methods.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.7.2.133`` | ``-R-3.4.3`` | ``intel/2017b`` ``0.7.2.133`` | ``-R-3.4.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index df8ab5d48..0684923ce 100644 --- a/docs/version-specific/supported-software/s/speech_tools.md +++ b/docs/version-specific/supported-software/s/speech_tools.md @@ -13,5 +13,5 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index aba240fa4..35755d291 100644 --- a/docs/version-specific/supported-software/s/spektral.md +++ b/docs/version-specific/supported-software/s/spektral.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 1300861ed..c70e86f70 100644 --- a/docs/version-specific/supported-software/s/spglib-python.md +++ b/docs/version-specific/supported-software/s/spglib-python.md @@ -35,5 +35,5 @@ version | versionsuffix | toolchain ``2.1.0`` | | ``gfbf/2023a`` ``2.1.0`` | | ``iimkl/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8400c9d75..1a13d61ed 100644 --- a/docs/version-specific/supported-software/s/spglib.md +++ b/docs/version-specific/supported-software/s/spglib.md @@ -17,5 +17,5 @@ version | toolchain ``2.0.2`` | ``GCCcore/11.3.0`` ``2.0.2`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7d3772181..f5a21486c 100644 --- a/docs/version-specific/supported-software/s/split-seq.md +++ b/docs/version-specific/supported-software/s/split-seq.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190717`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 40ff86257..c32cbc89e 100644 --- a/docs/version-specific/supported-software/s/splitRef.md +++ b/docs/version-specific/supported-software/s/splitRef.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cc5af7576..e8a01d24a 100644 --- a/docs/version-specific/supported-software/s/spoa.md +++ b/docs/version-specific/supported-software/s/spoa.md @@ -20,5 +20,5 @@ version | toolchain ``4.0.7`` | ``GCC/12.2.0`` ``4.1.0`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index ff9e87e9e..bddae377d 100644 --- a/docs/version-specific/supported-software/s/sradownloader.md +++ b/docs/version-specific/supported-software/s/sradownloader.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.9`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 980a9dd66..4d375ecf1 100644 --- a/docs/version-specific/supported-software/s/stardist.md +++ b/docs/version-specific/supported-software/s/stardist.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` ``0.8.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 01368ead7..c7dfcadff 100644 --- a/docs/version-specific/supported-software/s/starparser.md +++ b/docs/version-specific/supported-software/s/starparser.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.49`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index be2841189..49b13876b 100644 --- a/docs/version-specific/supported-software/s/stars.md +++ b/docs/version-specific/supported-software/s/stars.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4-3`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 3b99523df..0d803537f 100644 --- a/docs/version-specific/supported-software/s/statsmodels.md +++ b/docs/version-specific/supported-software/s/statsmodels.md @@ -35,5 +35,5 @@ version | versionsuffix | toolchain ``0.9.0`` | ``-Python-3.6.6`` | ``intel/2018b`` ``0.9.0`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 2263e95fb..e4d2547b4 100644 --- a/docs/version-specific/supported-software/s/stpipeline.md +++ b/docs/version-specific/supported-software/s/stpipeline.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.7.6`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.7.6`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7c7d96164..d8afe277d 100644 --- a/docs/version-specific/supported-software/s/strace.md +++ b/docs/version-specific/supported-software/s/strace.md @@ -13,5 +13,5 @@ version | toolchain ``5.14`` | ``GCCcore/11.2.0`` ``6.6`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 53effeed2..410a102e5 100644 --- a/docs/version-specific/supported-software/s/strelka.md +++ b/docs/version-specific/supported-software/s/strelka.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.9.7`` | | ``intel/2018a`` ``2.9.9`` | | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index e16955e5e..33a2909ca 100644 --- a/docs/version-specific/supported-software/s/stripy.md +++ b/docs/version-specific/supported-software/s/stripy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.1.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9441e8072..67b529ede 100644 --- a/docs/version-specific/supported-software/s/suave.md +++ b/docs/version-specific/supported-software/s/suave.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20160529`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index c744961a5..bfeaacf53 100644 --- a/docs/version-specific/supported-software/s/subset-bam.md +++ b/docs/version-specific/supported-software/s/subset-bam.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.0`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7a9b7098d..9a38df1c9 100644 --- a/docs/version-specific/supported-software/s/subunit.md +++ b/docs/version-specific/supported-software/s/subunit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.3`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 7577d94d4..b68e07bc0 100644 --- a/docs/version-specific/supported-software/s/suds.md +++ b/docs/version-specific/supported-software/s/suds.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.3.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 5ce8e4389..e1440970e 100644 --- a/docs/version-specific/supported-software/s/supermagic.md +++ b/docs/version-specific/supported-software/s/supermagic.md @@ -13,5 +13,5 @@ version | toolchain ``20170824`` | ``foss/2017a`` ``20170824`` | ``gompi/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9ed398b33..aca7ed983 100644 --- a/docs/version-specific/supported-software/s/supernova.md +++ b/docs/version-specific/supported-software/s/supernova.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.1`` | ``system`` ``2.1.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index cb7c709d7..e894a5735 100644 --- a/docs/version-specific/supported-software/s/svist4get.md +++ b/docs/version-specific/supported-software/s/svist4get.md @@ -13,5 +13,5 @@ version | toolchain ``1.3.1`` | ``foss/2020b`` ``1.3.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 9ae9bcfc5..e9f24c48a 100644 --- a/docs/version-specific/supported-software/s/swarm.md +++ b/docs/version-specific/supported-software/s/swarm.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.2`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 65fe1474a..0e28d5d60 100644 --- a/docs/version-specific/supported-software/s/swifter.md +++ b/docs/version-specific/supported-software/s/swifter.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.9`` | ``foss/2020b`` ``1.0.9`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 047d6531a..98000fb6f 100644 --- a/docs/version-specific/supported-software/s/swissknife.md +++ b/docs/version-specific/supported-software/s/swissknife.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.80`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 34eeb936d..bc6c656f0 100644 --- a/docs/version-specific/supported-software/s/sympy.md +++ b/docs/version-specific/supported-software/s/sympy.md @@ -33,5 +33,5 @@ version | versionsuffix | toolchain ``1.9`` | | ``foss/2021b`` ``1.9`` | | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 98f3657a6..34c22da61 100644 --- a/docs/version-specific/supported-software/s/synapseclient.md +++ b/docs/version-specific/supported-software/s/synapseclient.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.0.0`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 8e13fb157..ed21bbb24 100644 --- a/docs/version-specific/supported-software/s/synthcity.md +++ b/docs/version-specific/supported-software/s/synthcity.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../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 index 767c6b768..e23f8e715 100644 --- a/docs/version-specific/supported-software/s/sysbench.md +++ b/docs/version-specific/supported-software/s/sysbench.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.20`` | ``GCC/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a750c543b..36cb41427 100644 --- a/docs/version-specific/supported-software/t/T-Coffee.md +++ b/docs/version-specific/supported-software/t/T-Coffee.md @@ -13,5 +13,5 @@ version | toolchain ``13.45.61.3c310a9`` | ``system`` ``13.46.0.919e8c6b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 93dff0765..68037c3c1 100644 --- a/docs/version-specific/supported-software/t/TALON.md +++ b/docs/version-specific/supported-software/t/TALON.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bf9a5ca0..ad74e2b08 100644 --- a/docs/version-specific/supported-software/t/TALYS.md +++ b/docs/version-specific/supported-software/t/TALYS.md @@ -13,5 +13,5 @@ version | toolchain ``1.95`` | ``GCCcore/10.3.0`` ``1.95`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e3d337ab7..2678434f3 100644 --- a/docs/version-specific/supported-software/t/TAMkin.md +++ b/docs/version-specific/supported-software/t/TAMkin.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``1.2.6`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.2.6`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bbf4413c..d40c013b9 100644 --- a/docs/version-specific/supported-software/t/TBA.md +++ b/docs/version-specific/supported-software/t/TBA.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a0568e3d2..9bd1ea423 100644 --- a/docs/version-specific/supported-software/t/TCC.md +++ b/docs/version-specific/supported-software/t/TCC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.9.26`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bece63255..6dba72b6b 100644 --- a/docs/version-specific/supported-software/t/TCLAP.md +++ b/docs/version-specific/supported-software/t/TCLAP.md @@ -16,5 +16,5 @@ version | toolchain ``1.2.5`` | ``GCCcore/10.3.0`` ``1.2.5`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e1dcb5b3..a071cebbc 100644 --- a/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md +++ b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``8p3r1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 03a359a90..c0b51d65c 100644 --- a/docs/version-specific/supported-software/t/TEToolkit.md +++ b/docs/version-specific/supported-software/t/TEToolkit.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.1`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a46e99718..3d4990601 100644 --- a/docs/version-specific/supported-software/t/TEtranscripts.md +++ b/docs/version-specific/supported-software/t/TEtranscripts.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 43a959798..525b20a05 100644 --- a/docs/version-specific/supported-software/t/TF-COMB.md +++ b/docs/version-specific/supported-software/t/TF-COMB.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1577f8889..37f1a26d7 100644 --- a/docs/version-specific/supported-software/t/TFEA.md +++ b/docs/version-specific/supported-software/t/TFEA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-muMerge-1.1.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9529d533b..baae170ef 100644 --- a/docs/version-specific/supported-software/t/THetA.md +++ b/docs/version-specific/supported-software/t/THetA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 505bef068..7c42fefb3 100644 --- a/docs/version-specific/supported-software/t/TINKER.md +++ b/docs/version-specific/supported-software/t/TINKER.md @@ -14,5 +14,5 @@ version | toolchain ``8.7.2`` | ``foss/2019b`` ``8.8.1`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f81e8db06..1bd92584a 100644 --- a/docs/version-specific/supported-software/t/TM-align.md +++ b/docs/version-specific/supported-software/t/TM-align.md @@ -14,5 +14,5 @@ version | toolchain ``20180426`` | ``intel/2019a`` ``20190822`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 70c370bce..fc40c0434 100644 --- a/docs/version-specific/supported-software/t/TN93.md +++ b/docs/version-specific/supported-software/t/TN93.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.7`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3f0d94434..92f57ad6d 100644 --- a/docs/version-specific/supported-software/t/TOBIAS.md +++ b/docs/version-specific/supported-software/t/TOBIAS.md @@ -14,5 +14,5 @@ version | toolchain ``0.14.0`` | ``foss/2020b`` ``0.16.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 005187a08..ff0674fc2 100644 --- a/docs/version-specific/supported-software/t/TOML-Fortran.md +++ b/docs/version-specific/supported-software/t/TOML-Fortran.md @@ -17,5 +17,5 @@ version | toolchain ``0.4.1`` | ``GCC/12.2.0`` ``0.4.1`` | ``intel-compilers/2022.2.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f7cca9e0d..9dea94462 100644 --- a/docs/version-specific/supported-software/t/TOPAS.md +++ b/docs/version-specific/supported-software/t/TOPAS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.9`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e430363d..cca84cec7 100644 --- a/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md +++ b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md @@ -13,5 +13,5 @@ version | toolchain ``210521`` | ``GCC/10.3.0`` ``220729`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d6ddb5743..d6d4aad72 100644 --- a/docs/version-specific/supported-software/t/TRF.md +++ b/docs/version-specific/supported-software/t/TRF.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``4.09.1`` | | ``GCCcore/11.3.0`` ``4.09.1`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6e2ae34b4..224991ea1 100644 --- a/docs/version-specific/supported-software/t/TRIQS-cthyb.md +++ b/docs/version-specific/supported-software/t/TRIQS-cthyb.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``foss/2022a`` ``3.2.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7be5c8f6..f8ae080c7 100644 --- a/docs/version-specific/supported-software/t/TRIQS-dft_tools.md +++ b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``foss/2022a`` ``3.2.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 77ac3ab0e..cbc09449e 100644 --- a/docs/version-specific/supported-software/t/TRIQS-tprf.md +++ b/docs/version-specific/supported-software/t/TRIQS-tprf.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``foss/2022a`` ``3.2.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fd6312a5d..dd7fcbb18 100644 --- a/docs/version-specific/supported-software/t/TRIQS.md +++ b/docs/version-specific/supported-software/t/TRIQS.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``foss/2022a`` ``3.2.0`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bccdc8cdf..504f3f54b 100644 --- a/docs/version-specific/supported-software/t/TRUST.md +++ b/docs/version-specific/supported-software/t/TRUST.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.2`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2249d4116..22c996ac7 100644 --- a/docs/version-specific/supported-software/t/TRUST4.md +++ b/docs/version-specific/supported-software/t/TRUST4.md @@ -14,5 +14,5 @@ version | toolchain ``1.0.6`` | ``GCC/11.2.0`` ``1.0.7`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bf019d08f..2fd7b78ec 100644 --- a/docs/version-specific/supported-software/t/TVB-deps.md +++ b/docs/version-specific/supported-software/t/TVB-deps.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160618`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e6116545d..1bcec55b2 100644 --- a/docs/version-specific/supported-software/t/TVB.md +++ b/docs/version-specific/supported-software/t/TVB.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7c5786f06..b7a957cf7 100644 --- a/docs/version-specific/supported-software/t/TWL-NINJA.md +++ b/docs/version-specific/supported-software/t/TWL-NINJA.md @@ -13,5 +13,5 @@ version | toolchain ``0.97-cluster_only`` | ``GCC/10.2.0`` ``0.98-cluster_only`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2d6bc2d79..4e51aa0e3 100644 --- a/docs/version-specific/supported-software/t/TXR.md +++ b/docs/version-specific/supported-software/t/TXR.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``291`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 42f8341b4..d31ecad00 100644 --- a/docs/version-specific/supported-software/t/TagDust.md +++ b/docs/version-specific/supported-software/t/TagDust.md @@ -13,5 +13,5 @@ version | toolchain ``2.33`` | ``GCCcore/10.2.0`` ``2.33`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9cc43ddbc..df08eae7a 100644 --- a/docs/version-specific/supported-software/t/TagLib.md +++ b/docs/version-specific/supported-software/t/TagLib.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.11.1`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 010651cd5..b949bb190 100644 --- a/docs/version-specific/supported-software/t/Taiyaki.md +++ b/docs/version-specific/supported-software/t/Taiyaki.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index aa0a93f17..a3410c0b5 100644 --- a/docs/version-specific/supported-software/t/Tapenade.md +++ b/docs/version-specific/supported-software/t/Tapenade.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.16`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd19b5177..6a9896557 100644 --- a/docs/version-specific/supported-software/t/Tcl.md +++ b/docs/version-specific/supported-software/t/Tcl.md @@ -48,5 +48,5 @@ version | toolchain ``8.6.9`` | ``GCCcore/8.2.0`` ``8.6.9`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 04d0ae7ae..238f0151e 100644 --- a/docs/version-specific/supported-software/t/Telescope.md +++ b/docs/version-specific/supported-software/t/Telescope.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7cf2a7b8..b1925cbf3 100644 --- a/docs/version-specific/supported-software/t/Teneto.md +++ b/docs/version-specific/supported-software/t/Teneto.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0c75e806e..3efbf1155 100644 --- a/docs/version-specific/supported-software/t/TensorFlow-Datasets.md +++ b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.7.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``4.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b38e1086..772016273 100644 --- a/docs/version-specific/supported-software/t/TensorFlow-Graphics.md +++ b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2021.12.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index be4108a74..27c18b490 100644 --- a/docs/version-specific/supported-software/t/TensorFlow.md +++ b/docs/version-specific/supported-software/t/TensorFlow.md @@ -96,5 +96,5 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.9.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b57522c2f..10ce43815 100644 --- a/docs/version-specific/supported-software/t/TensorRT.md +++ b/docs/version-specific/supported-software/t/TensorRT.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``4.0.1.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` ``8.6.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e8bbc0df7..6a74849f5 100644 --- a/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md +++ b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.319.43`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca3616b80..1d4f53551 100644 --- a/docs/version-specific/supported-software/t/TetGen.md +++ b/docs/version-specific/supported-software/t/TetGen.md @@ -13,5 +13,5 @@ version | toolchain ``1.5.0`` | ``GCCcore/6.4.0`` ``1.6.0`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 851abe5c7..82deb9114 100644 --- a/docs/version-specific/supported-software/t/Text-CSV.md +++ b/docs/version-specific/supported-software/t/Text-CSV.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.33`` | ``-Perl-5.22.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f434c053c..bf6873c72 100644 --- a/docs/version-specific/supported-software/t/Theano.md +++ b/docs/version-specific/supported-software/t/Theano.md @@ -43,5 +43,5 @@ version | versionsuffix | toolchain ``1.1.2`` | ``-PyMC`` | ``intel/2020b`` ``1.1.2`` | ``-PyMC`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 341ac3c93..d0fc24e82 100644 --- a/docs/version-specific/supported-software/t/ThemisPy.md +++ b/docs/version-specific/supported-software/t/ThemisPy.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b38853051..642684d78 100644 --- a/docs/version-specific/supported-software/t/TiCCutils.md +++ b/docs/version-specific/supported-software/t/TiCCutils.md @@ -14,5 +14,5 @@ version | toolchain ``0.21`` | ``iimpi/2019a`` ``0.21`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 55f6e87fe..e0bf8cd9f 100644 --- a/docs/version-specific/supported-software/t/TiMBL.md +++ b/docs/version-specific/supported-software/t/TiMBL.md @@ -14,5 +14,5 @@ version | toolchain ``6.4.13`` | ``intel/2018b`` ``6.4.7`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcd5a727d..24e2ec8be 100644 --- a/docs/version-specific/supported-software/t/Tika.md +++ b/docs/version-specific/supported-software/t/Tika.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.16`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 74243b0af..316b98003 100644 --- a/docs/version-specific/supported-software/t/TinyDB.md +++ b/docs/version-specific/supported-software/t/TinyDB.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.15.2`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0eff25162..fc19b6287 100644 --- a/docs/version-specific/supported-software/t/TinyXML.md +++ b/docs/version-specific/supported-software/t/TinyXML.md @@ -13,5 +13,5 @@ version | toolchain ``2.6.2`` | ``GCCcore/11.2.0`` ``2.6.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 471c40a72..d829677d2 100644 --- a/docs/version-specific/supported-software/t/Tk.md +++ b/docs/version-specific/supported-software/t/Tk.md @@ -49,5 +49,5 @@ version | versionsuffix | toolchain ``8.6.9`` | | ``GCCcore/8.2.0`` ``8.6.9`` | | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cd802a870..14e78e3a4 100644 --- a/docs/version-specific/supported-software/t/Tkinter.md +++ b/docs/version-specific/supported-software/t/Tkinter.md @@ -52,5 +52,5 @@ version | versionsuffix | toolchain ``3.9.5`` | | ``GCCcore/10.3.0`` ``3.9.6`` | | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c18365eb2..af32c4e9e 100644 --- a/docs/version-specific/supported-software/t/ToFu.md +++ b/docs/version-specific/supported-software/t/ToFu.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``1.5.0`` | | ``foss/2020b`` ``1.5.0`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e5a84227..b5a418674 100644 --- a/docs/version-specific/supported-software/t/Togl.md +++ b/docs/version-specific/supported-software/t/Togl.md @@ -15,5 +15,5 @@ version | toolchain ``2.0`` | ``GCCcore/11.3.0`` ``2.0`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 16bf839ae..c9d5c43ba 100644 --- a/docs/version-specific/supported-software/t/Tombo.md +++ b/docs/version-specific/supported-software/t/Tombo.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.1`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 811b0a823..88a6ee47d 100644 --- a/docs/version-specific/supported-software/t/TopHat.md +++ b/docs/version-specific/supported-software/t/TopHat.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``iimpi/2019b`` ``2.1.2`` | ``-Python-2.7.18`` | ``iimpi/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5fd986aa4..ba4cb6a66 100644 --- a/docs/version-specific/supported-software/t/TorchIO.md +++ b/docs/version-specific/supported-software/t/TorchIO.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.19.6`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bff5afa00..0da14e1fb 100644 --- a/docs/version-specific/supported-software/t/TotalView.md +++ b/docs/version-specific/supported-software/t/TotalView.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``8.11.0-2`` | ``-linux-x86-64`` | ``system`` ``8.12.0-0`` | ``-linux-x86-64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a6f0ad3b9..529375409 100644 --- a/docs/version-specific/supported-software/t/Tracer.md +++ b/docs/version-specific/supported-software/t/Tracer.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.7.1`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 451bc73bc..ad697f36d 100644 --- a/docs/version-specific/supported-software/t/TransDecoder.md +++ b/docs/version-specific/supported-software/t/TransDecoder.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``5.5.0`` | | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 06595ddaa..9e94df4a3 100644 --- a/docs/version-specific/supported-software/t/TranscriptClean.md +++ b/docs/version-specific/supported-software/t/TranscriptClean.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c4cfe115c..37c9c9693 100644 --- a/docs/version-specific/supported-software/t/Transformers.md +++ b/docs/version-specific/supported-software/t/Transformers.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``4.30.2`` | | ``foss/2022b`` ``4.39.3`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c6a184c44..be51491af 100644 --- a/docs/version-specific/supported-software/t/Transrate.md +++ b/docs/version-specific/supported-software/t/Transrate.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f7356c648..64ea777d1 100644 --- a/docs/version-specific/supported-software/t/TreeMix.md +++ b/docs/version-specific/supported-software/t/TreeMix.md @@ -14,5 +14,5 @@ version | toolchain ``1.13`` | ``GCC/11.2.0`` ``1.13`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 68b3b6988..c19ade3df 100644 --- a/docs/version-specific/supported-software/t/TreeShrink.md +++ b/docs/version-specific/supported-software/t/TreeShrink.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5f2682ae5..a31b6c034 100644 --- a/docs/version-specific/supported-software/t/Triangle.md +++ b/docs/version-specific/supported-software/t/Triangle.md @@ -18,5 +18,5 @@ version | toolchain ``1.6`` | ``intel/2017a`` ``1.6`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6fb888a15..75abe4d2c 100644 --- a/docs/version-specific/supported-software/t/Trilinos.md +++ b/docs/version-specific/supported-software/t/Trilinos.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``13.4.1`` | ``-zoltan`` | ``foss/2022a`` ``13.4.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a97630c51..6fcbbd33f 100644 --- a/docs/version-specific/supported-software/t/Trim_Galore.md +++ b/docs/version-specific/supported-software/t/Trim_Galore.md @@ -29,5 +29,5 @@ version | versionsuffix | toolchain ``0.6.6`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``0.6.7`` | | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bc18eddc9..0c53a6d49 100644 --- a/docs/version-specific/supported-software/t/Trimmomatic.md +++ b/docs/version-specific/supported-software/t/Trimmomatic.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.39`` | ``-Java-11`` | ``system`` ``0.39`` | ``-Java-17`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ba9d3a11e..883e0bf28 100644 --- a/docs/version-specific/supported-software/t/Trinity.md +++ b/docs/version-specific/supported-software/t/Trinity.md @@ -25,5 +25,5 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2.9.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5d5f30bcb..7a76970c7 100644 --- a/docs/version-specific/supported-software/t/Trinotate.md +++ b/docs/version-specific/supported-software/t/Trinotate.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4e4e288ad..b7aac1dbe 100644 --- a/docs/version-specific/supported-software/t/Triplexator.md +++ b/docs/version-specific/supported-software/t/Triplexator.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.3`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 070eda0b0..46a3cf54c 100644 --- a/docs/version-specific/supported-software/t/Triton.md +++ b/docs/version-specific/supported-software/t/Triton.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 27f722dfa..7d4ccd5fa 100644 --- a/docs/version-specific/supported-software/t/Trycycler.md +++ b/docs/version-specific/supported-software/t/Trycycler.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.5.2`` | | ``foss/2021a`` ``0.5.3`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 59bfb9b43..336626886 100644 --- a/docs/version-specific/supported-software/t/TurboVNC.md +++ b/docs/version-specific/supported-software/t/TurboVNC.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.3`` | ``GCCcore/8.2.0`` ``3.0.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3e38225cc..d1273b411 100644 --- a/docs/version-specific/supported-software/t/index.md +++ b/docs/version-specific/supported-software/t/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (t) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - *t* - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../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) diff --git a/docs/version-specific/supported-software/t/t-SNE-CUDA.md b/docs/version-specific/supported-software/t/t-SNE-CUDA.md index 98d40e28e..e1c4b2617 100644 --- a/docs/version-specific/supported-software/t/t-SNE-CUDA.md +++ b/docs/version-specific/supported-software/t/t-SNE-CUDA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ca8f3a4a2..3be8c2a3d 100644 --- a/docs/version-specific/supported-software/t/tMAE.md +++ b/docs/version-specific/supported-software/t/tMAE.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.0.1`` | ``-R-4.1.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 637303f09..c03173797 100644 --- a/docs/version-specific/supported-software/t/tRNAscan-SE.md +++ b/docs/version-specific/supported-software/t/tRNAscan-SE.md @@ -13,5 +13,5 @@ version | toolchain ``2.0.12`` | ``GCC/11.2.0`` ``2.0.12`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2db638a5c..22eb9c1b1 100644 --- a/docs/version-specific/supported-software/t/tabix.md +++ b/docs/version-specific/supported-software/t/tabix.md @@ -22,5 +22,5 @@ version | toolchain ``0.2.6`` | ``intel/2016a`` ``0.2.6`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d13a13eae..8645afa65 100644 --- a/docs/version-specific/supported-software/t/tabixpp.md +++ b/docs/version-specific/supported-software/t/tabixpp.md @@ -17,5 +17,5 @@ version | toolchain ``1.1.2`` | ``GCC/11.3.0`` ``1.1.2`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e86f6c33d..f0b666634 100644 --- a/docs/version-specific/supported-software/t/taco.md +++ b/docs/version-specific/supported-software/t/taco.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 151dc1ca6..9d9793b60 100644 --- a/docs/version-specific/supported-software/t/tantan.md +++ b/docs/version-specific/supported-software/t/tantan.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``40`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7676865f2..7ad312147 100644 --- a/docs/version-specific/supported-software/t/task-spooler.md +++ b/docs/version-specific/supported-software/t/task-spooler.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7998dc410..88e936d5f 100644 --- a/docs/version-specific/supported-software/t/taxator-tk.md +++ b/docs/version-specific/supported-software/t/taxator-tk.md @@ -14,5 +14,5 @@ version | toolchain ``1.3.3`` | ``foss/2018b`` ``1.3.3`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf33be475..045ac3ba5 100644 --- a/docs/version-specific/supported-software/t/tbb.md +++ b/docs/version-specific/supported-software/t/tbb.md @@ -41,5 +41,5 @@ version | toolchain ``4.3.6.211`` | ``system`` ``4.4.2.152`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ae3f0eeb..0ed24308b 100644 --- a/docs/version-specific/supported-software/t/tbl2asn.md +++ b/docs/version-specific/supported-software/t/tbl2asn.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``20230713`` | ``-linux64`` | ``system`` ``25.8`` | ``-linux64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 48a938c04..61667eb70 100644 --- a/docs/version-specific/supported-software/t/tcsh.md +++ b/docs/version-specific/supported-software/t/tcsh.md @@ -24,5 +24,5 @@ version | toolchain ``6.24.07`` | ``GCCcore/12.2.0`` ``6.24.10`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd6d06cb9..7e67dcf19 100644 --- a/docs/version-specific/supported-software/t/tecplot360ex.md +++ b/docs/version-specific/supported-software/t/tecplot360ex.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``linux64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a0dd9b23..9638b6471 100644 --- a/docs/version-specific/supported-software/t/tensorboard.md +++ b/docs/version-specific/supported-software/t/tensorboard.md @@ -14,5 +14,5 @@ version | toolchain ``2.15.1`` | ``gfbf/2023a`` ``2.8.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d0540f20b..91c8caf5c 100644 --- a/docs/version-specific/supported-software/t/tensorboardX.md +++ b/docs/version-specific/supported-software/t/tensorboardX.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``2.6.2.2`` | | ``foss/2022b`` ``2.6.2.2`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5ccec1188..09446f521 100644 --- a/docs/version-specific/supported-software/t/tensorflow-compression.md +++ b/docs/version-specific/supported-software/t/tensorflow-compression.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e9493b5ea..be8818a05 100644 --- a/docs/version-specific/supported-software/t/tensorflow-probability.md +++ b/docs/version-specific/supported-software/t/tensorflow-probability.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``0.20.0`` | | ``foss/2023a`` ``0.9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcff31c84..8dfe843a8 100644 --- a/docs/version-specific/supported-software/t/terastructure.md +++ b/docs/version-specific/supported-software/t/terastructure.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0f1d5b245..4d237bd9e 100644 --- a/docs/version-specific/supported-software/t/termcolor.md +++ b/docs/version-specific/supported-software/t/termcolor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.0.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d43c1ce5c..f165aeef4 100644 --- a/docs/version-specific/supported-software/t/tesseract.md +++ b/docs/version-specific/supported-software/t/tesseract.md @@ -15,5 +15,5 @@ version | toolchain ``4.1.0`` | ``GCCcore/8.2.0`` ``5.3.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bd323dbfb..d4a01c08d 100644 --- a/docs/version-specific/supported-software/t/testpath.md +++ b/docs/version-specific/supported-software/t/testpath.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``0.3`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.3`` | ``-Python-3.5.2`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0f13d85ce..02f1ed414 100644 --- a/docs/version-specific/supported-software/t/texinfo.md +++ b/docs/version-specific/supported-software/t/texinfo.md @@ -23,5 +23,5 @@ version | toolchain ``7.0.2`` | ``GCCcore/11.3.0`` ``7.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5beedb47a..df1d240a0 100644 --- a/docs/version-specific/supported-software/t/texlive.md +++ b/docs/version-specific/supported-software/t/texlive.md @@ -18,5 +18,5 @@ version | toolchain ``20230313`` | ``GCC/12.3.0`` ``20230313`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3ffa200b..21a99c068 100644 --- a/docs/version-specific/supported-software/t/thirdorder.md +++ b/docs/version-specific/supported-software/t/thirdorder.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d99219856..371f714e1 100644 --- a/docs/version-specific/supported-software/t/thurstonianIRT.md +++ b/docs/version-specific/supported-software/t/thurstonianIRT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.0`` | ``-R-3.6.0`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bc8d99a2c..ae7d617d3 100644 --- a/docs/version-specific/supported-software/t/tidybayes.md +++ b/docs/version-specific/supported-software/t/tidybayes.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.1`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 178ed0e43..aac49bf61 100644 --- a/docs/version-specific/supported-software/t/tidymodels.md +++ b/docs/version-specific/supported-software/t/tidymodels.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.0`` | ``-R-4.0.0`` | ``foss/2020a`` ``1.1.0`` | | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d36455d7..519ce60b4 100644 --- a/docs/version-specific/supported-software/t/tiktoken.md +++ b/docs/version-specific/supported-software/t/tiktoken.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.6.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 322d9129a..4da74c572 100644 --- a/docs/version-specific/supported-software/t/time.md +++ b/docs/version-specific/supported-software/t/time.md @@ -21,5 +21,5 @@ version | toolchain ``1.9`` | ``GCCcore/8.3.0`` ``1.9`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f15bb115a..12bbda069 100644 --- a/docs/version-specific/supported-software/t/timm.md +++ b/docs/version-specific/supported-software/t/timm.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.6.13`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.9.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8cf05a60e..0b4203bf1 100644 --- a/docs/version-specific/supported-software/t/tiny-cuda-nn.md +++ b/docs/version-specific/supported-software/t/tiny-cuda-nn.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 698ddf21b..ab175c5fc 100644 --- a/docs/version-specific/supported-software/t/tmap.md +++ b/docs/version-specific/supported-software/t/tmap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20220502`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index eeb505292..b5c04db8a 100644 --- a/docs/version-specific/supported-software/t/tmux.md +++ b/docs/version-specific/supported-software/t/tmux.md @@ -28,5 +28,5 @@ version | toolchain ``3.4`` | ``GCCcore/13.3.0`` ``3.4`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f08a1c67d..622871c72 100644 --- a/docs/version-specific/supported-software/t/toil.md +++ b/docs/version-specific/supported-software/t/toil.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``5.8.0`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9eb7f2051..f4918ed04 100644 --- a/docs/version-specific/supported-software/t/tokenizers.md +++ b/docs/version-specific/supported-software/t/tokenizers.md @@ -14,5 +14,5 @@ version | toolchain ``0.13.3`` | ``GCCcore/12.2.0`` ``0.15.2`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 51a5965fd..8f29d303c 100644 --- a/docs/version-specific/supported-software/t/topaz.md +++ b/docs/version-specific/supported-software/t/topaz.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.2.5.20230926`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2.5.20231120`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81b63245f..953b8c809 100644 --- a/docs/version-specific/supported-software/t/torchaudio.md +++ b/docs/version-specific/supported-software/t/torchaudio.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5e238709c..772001c6e 100644 --- a/docs/version-specific/supported-software/t/torchdata.md +++ b/docs/version-specific/supported-software/t/torchdata.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0`` | ``-PyTorch-1.11.0-CUDA-11.3.1`` | ``foss/2021a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e28a152eb..63327ec5e 100644 --- a/docs/version-specific/supported-software/t/torchinfo.md +++ b/docs/version-specific/supported-software/t/torchinfo.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5.2`` | ``-PyTorch-1.7.1`` | ``foss/2020b`` ``1.5.2`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d6fe2d9b9..4a330a8e5 100644 --- a/docs/version-specific/supported-software/t/torchsampler.md +++ b/docs/version-specific/supported-software/t/torchsampler.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.2`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5ab3a80d0..a4dd86edb 100644 --- a/docs/version-specific/supported-software/t/torchtext.md +++ b/docs/version-specific/supported-software/t/torchtext.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` ``0.9.1`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 738c9add0..9c1f8c1ef 100644 --- a/docs/version-specific/supported-software/t/torchvf.md +++ b/docs/version-specific/supported-software/t/torchvf.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.1.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.3`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e37abb0a6..de22b88ee 100644 --- a/docs/version-specific/supported-software/t/torchvision.md +++ b/docs/version-specific/supported-software/t/torchvision.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-3.7.4-PyTorch-1.8.1`` | ``fosscuda/2019b`` ``0.9.1`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0e3cc1a92..434eac4d3 100644 --- a/docs/version-specific/supported-software/t/tornado.md +++ b/docs/version-specific/supported-software/t/tornado.md @@ -13,5 +13,5 @@ version | toolchain ``6.3.2`` | ``GCCcore/12.3.0`` ``6.4`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a7cac2581..d3fca742c 100644 --- a/docs/version-specific/supported-software/t/tox.md +++ b/docs/version-specific/supported-software/t/tox.md @@ -13,5 +13,5 @@ version | toolchain ``3.25.1`` | ``GCCcore/10.2.0`` ``3.25.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 63cda146b..233e5a382 100644 --- a/docs/version-specific/supported-software/t/tqdm.md +++ b/docs/version-specific/supported-software/t/tqdm.md @@ -29,5 +29,5 @@ version | versionsuffix | toolchain ``4.66.1`` | | ``GCCcore/12.3.0`` ``4.66.2`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a977fae7..90f49f924 100644 --- a/docs/version-specific/supported-software/t/travis.md +++ b/docs/version-specific/supported-software/t/travis.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.8.2`` | ``-Ruby-2.3.1`` | ``system`` ``1.8.4`` | ``-Ruby-2.3.3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 67af16f00..6fa582620 100644 --- a/docs/version-specific/supported-software/t/treatSens.md +++ b/docs/version-specific/supported-software/t/treatSens.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0-20201002`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ee735b2ca..fcc4e67b8 100644 --- a/docs/version-specific/supported-software/t/trimAl.md +++ b/docs/version-specific/supported-software/t/trimAl.md @@ -18,5 +18,5 @@ version | toolchain ``1.4.1`` | ``GCCcore/9.3.0`` ``1.4.1`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9659bd645..2c8ee2fa0 100644 --- a/docs/version-specific/supported-software/t/trimesh.md +++ b/docs/version-specific/supported-software/t/trimesh.md @@ -13,5 +13,5 @@ version | toolchain ``3.17.1`` | ``foss/2022a`` ``3.21.5`` | ``gfbf/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0862e6e3f..30ae031ac 100644 --- a/docs/version-specific/supported-software/t/tseriesEntropy.md +++ b/docs/version-specific/supported-software/t/tseriesEntropy.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6-0`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b73a5d287..eb5338821 100644 --- a/docs/version-specific/supported-software/t/tsne.md +++ b/docs/version-specific/supported-software/t/tsne.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.8`` | ``-Python-2.7.16`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 33c6ce24d..ac4017e49 100644 --- a/docs/version-specific/supported-software/t/turbinesFoam.md +++ b/docs/version-specific/supported-software/t/turbinesFoam.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220516`` | ``-OpenFOAM-8`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f6af38e7c..1a30abd2a 100644 --- a/docs/version-specific/supported-software/t/tvb-data.md +++ b/docs/version-specific/supported-software/t/tvb-data.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150915`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cdf03aea8..1563e8121 100644 --- a/docs/version-specific/supported-software/t/tvb-framework.md +++ b/docs/version-specific/supported-software/t/tvb-framework.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150921`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 31da156b9..b5707e999 100644 --- a/docs/version-specific/supported-software/t/tvb-library.md +++ b/docs/version-specific/supported-software/t/tvb-library.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150922`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 64650e3cc..e94c213f6 100644 --- a/docs/version-specific/supported-software/t/typing-extensions.md +++ b/docs/version-specific/supported-software/t/typing-extensions.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``4.9.0`` | | ``GCCcore/12.2.0`` ``4.9.0`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 81fc8598d..ed5957fd0 100644 --- a/docs/version-specific/supported-software/u/UCC-CUDA.md +++ b/docs/version-specific/supported-software/u/UCC-CUDA.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-CUDA-12.0.0`` | ``GCCcore/12.2.0`` ``1.2.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index add0a2546..8fea0043c 100644 --- a/docs/version-specific/supported-software/u/UCC.md +++ b/docs/version-specific/supported-software/u/UCC.md @@ -16,5 +16,5 @@ version | toolchain ``1.2.0`` | ``GCCcore/13.2.0`` ``1.3.0`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 63e7abe3a..5f8fac095 100644 --- a/docs/version-specific/supported-software/u/UCLUST.md +++ b/docs/version-specific/supported-software/u/UCLUST.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.22q`` | ``-i86linux64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 12bc67774..0d8e7a4d1 100644 --- a/docs/version-specific/supported-software/u/UCX-CUDA.md +++ b/docs/version-specific/supported-software/u/UCX-CUDA.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``1.14.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` ``1.15.0`` | ``-CUDA-12.4.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 821d28bbf..0db093496 100644 --- a/docs/version-specific/supported-software/u/UCX-ROCm.md +++ b/docs/version-specific/supported-software/u/UCX-ROCm.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.11.2`` | ``-ROCm-4.5.0`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 61f02644e..6104e9e08 100644 --- a/docs/version-specific/supported-software/u/UCX.md +++ b/docs/version-specific/supported-software/u/UCX.md @@ -39,5 +39,5 @@ version | versionsuffix | toolchain ``1.9.0`` | ``-CUDA-11.2.1`` | ``GCCcore/10.2.0`` ``1.9.0`` | | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fca38affb..fcc31a67a 100644 --- a/docs/version-specific/supported-software/u/UDUNITS.md +++ b/docs/version-specific/supported-software/u/UDUNITS.md @@ -33,5 +33,5 @@ version | toolchain ``2.2.28`` | ``GCCcore/12.3.0`` ``2.2.28`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8d61b2869..3258d58b4 100644 --- a/docs/version-specific/supported-software/u/UFL.md +++ b/docs/version-specific/supported-software/u/UFL.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index df1034d3b..06ea6bf31 100644 --- a/docs/version-specific/supported-software/u/UMI-tools.md +++ b/docs/version-specific/supported-software/u/UMI-tools.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.4`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e251c1c23..5a1525525 100644 --- a/docs/version-specific/supported-software/u/UNAFold.md +++ b/docs/version-specific/supported-software/u/UNAFold.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.8`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 35879eea1..7d1bf34a7 100644 --- a/docs/version-specific/supported-software/u/UQTk.md +++ b/docs/version-specific/supported-software/u/UQTk.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 36e2eaca2..e7de54d54 100644 --- a/docs/version-specific/supported-software/u/USEARCH.md +++ b/docs/version-specific/supported-software/u/USEARCH.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``5.2.236`` | ``-i86linux32`` | ``system`` ``6.1.544`` | ``-i86linux32`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 776d4925c..8399f8d4d 100644 --- a/docs/version-specific/supported-software/u/USPEX.md +++ b/docs/version-specific/supported-software/u/USPEX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.4.4`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d9942d371..5238e8bf9 100644 --- a/docs/version-specific/supported-software/u/UShER.md +++ b/docs/version-specific/supported-software/u/UShER.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.1`` | ``gompi/2020b`` ``0.5.0`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 98a4b3165..81b9b0ed2 100644 --- a/docs/version-specific/supported-software/u/Ultralytics.md +++ b/docs/version-specific/supported-software/u/Ultralytics.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.0.92`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7e191258..19a73b893 100644 --- a/docs/version-specific/supported-software/u/UnZip.md +++ b/docs/version-specific/supported-software/u/UnZip.md @@ -26,5 +26,5 @@ version | toolchain ``6.0`` | ``GCCcore/9.3.0`` ``6.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 038df3da4..a684d71c9 100644 --- a/docs/version-specific/supported-software/u/UniFrac.md +++ b/docs/version-specific/supported-software/u/UniFrac.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.3.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 18644ad45..12944173d 100644 --- a/docs/version-specific/supported-software/u/Unicycler.md +++ b/docs/version-specific/supported-software/u/Unicycler.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.4.9`` | | ``gompi/2021a`` ``0.5.0`` | | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3718861ff..522f7a68d 100644 --- a/docs/version-specific/supported-software/u/Unidecode.md +++ b/docs/version-specific/supported-software/u/Unidecode.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.3.6`` | | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0a4fbd9f6..af1a969c2 100644 --- a/docs/version-specific/supported-software/u/index.md +++ b/docs/version-specific/supported-software/u/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (u) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - *u* - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../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) diff --git a/docs/version-specific/supported-software/u/ucx-py.md b/docs/version-specific/supported-software/u/ucx-py.md index 500e994d9..e937af63d 100644 --- a/docs/version-specific/supported-software/u/ucx-py.md +++ b/docs/version-specific/supported-software/u/ucx-py.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.21.0`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ad96a0d64..b5a1dc3c3 100644 --- a/docs/version-specific/supported-software/u/udocker.md +++ b/docs/version-specific/supported-software/u/udocker.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-2.7.14`` | ``foss/2017b`` ``1.1.3`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 170156381..e393e838a 100644 --- a/docs/version-specific/supported-software/u/umap-learn.md +++ b/docs/version-specific/supported-software/u/umap-learn.md @@ -18,5 +18,5 @@ version | toolchain ``0.5.3`` | ``foss/2022a`` ``0.5.5`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c09060aaf..3611bcbb0 100644 --- a/docs/version-specific/supported-software/u/umi4cPackage.md +++ b/docs/version-specific/supported-software/u/umi4cPackage.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200116`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8d7727dab..714744ced 100644 --- a/docs/version-specific/supported-software/u/umis.md +++ b/docs/version-specific/supported-software/u/umis.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0.3`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 371d7c1d9..fe6c1eeec 100644 --- a/docs/version-specific/supported-software/u/uncertainties.md +++ b/docs/version-specific/supported-software/u/uncertainties.md @@ -13,5 +13,5 @@ version | toolchain ``3.1.7`` | ``foss/2021b`` ``3.1.7`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8da292bec..3d3900307 100644 --- a/docs/version-specific/supported-software/u/uncertainty-calibration.md +++ b/docs/version-specific/supported-software/u/uncertainty-calibration.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.9`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 374805c50..8299a19fb 100644 --- a/docs/version-specific/supported-software/u/unicore-uftp.md +++ b/docs/version-specific/supported-software/u/unicore-uftp.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d80aa190e..d37c6b92e 100644 --- a/docs/version-specific/supported-software/u/unifdef.md +++ b/docs/version-specific/supported-software/u/unifdef.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.12`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ea9535cc..ee0a5d1b0 100644 --- a/docs/version-specific/supported-software/u/unimap.md +++ b/docs/version-specific/supported-software/u/unimap.md @@ -13,5 +13,5 @@ version | toolchain ``0.1`` | ``GCCcore/10.2.0`` ``0.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cc65c032c..60631a543 100644 --- a/docs/version-specific/supported-software/u/units.md +++ b/docs/version-specific/supported-software/u/units.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.19`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7a08f91a..1bacf3d32 100644 --- a/docs/version-specific/supported-software/u/unixODBC.md +++ b/docs/version-specific/supported-software/u/unixODBC.md @@ -13,5 +13,5 @@ version | toolchain ``2.3.11`` | ``foss/2022b`` ``2.3.7`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 559ddef09..7df33156b 100644 --- a/docs/version-specific/supported-software/u/unrar.md +++ b/docs/version-specific/supported-software/u/unrar.md @@ -14,5 +14,5 @@ version | toolchain ``5.7.3`` | ``GCCcore/8.2.0`` ``6.0.2`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 78cca670d..c3c2eb5f7 100644 --- a/docs/version-specific/supported-software/u/utf8proc.md +++ b/docs/version-specific/supported-software/u/utf8proc.md @@ -21,5 +21,5 @@ version | toolchain ``2.8.0`` | ``GCCcore/12.2.0`` ``2.8.0`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 12b71a391..62a7debfa 100644 --- a/docs/version-specific/supported-software/u/util-linux.md +++ b/docs/version-specific/supported-software/u/util-linux.md @@ -39,5 +39,5 @@ version | toolchain ``2.39`` | ``GCCcore/13.2.0`` ``2.40`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dcfe12d29..f638cb9cf 100644 --- a/docs/version-specific/supported-software/v/V8.md +++ b/docs/version-specific/supported-software/v/V8.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-R-3.6.2`` | ``foss/2019b`` ``3.4.0`` | ``-R-4.0.0`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a80dc6c0c..43bf83eac 100644 --- a/docs/version-specific/supported-software/v/VAMPIRE-ASM.md +++ b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.0`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5bca2245a..e7b6cc245 100644 --- a/docs/version-specific/supported-software/v/VASP.md +++ b/docs/version-specific/supported-software/v/VASP.md @@ -13,5 +13,5 @@ version | toolchain ``5.4.1`` | ``intel/2016.02-GCC-4.9`` ``6.3.2`` | ``nvofbf/2022.07`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5e3e56309..ee81d325e 100644 --- a/docs/version-specific/supported-software/v/VAtools.md +++ b/docs/version-specific/supported-software/v/VAtools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c33ee7274..86c48a745 100644 --- a/docs/version-specific/supported-software/v/VBZ-Compression.md +++ b/docs/version-specific/supported-software/v/VBZ-Compression.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.1`` | ``gompi/2020b`` ``1.0.3`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3bafaa57..a58368b3a 100644 --- a/docs/version-specific/supported-software/v/VCF-kit.md +++ b/docs/version-specific/supported-software/v/VCF-kit.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-2.7.15`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 734310279..0d7096c4a 100644 --- a/docs/version-specific/supported-software/v/VCFtools.md +++ b/docs/version-specific/supported-software/v/VCFtools.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``0.1.16`` | | ``iccifort/2019.5.281`` ``0.1.16`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6b27f4b25..4dbdc3379 100644 --- a/docs/version-specific/supported-software/v/VEGAS.md +++ b/docs/version-specific/supported-software/v/VEGAS.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.27`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2e374cfbc..1a894769a 100644 --- a/docs/version-specific/supported-software/v/VEP.md +++ b/docs/version-specific/supported-software/v/VEP.md @@ -21,5 +21,5 @@ version | versionsuffix | toolchain ``95.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``96.0`` | ``-Perl-5.28.1`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fc3d8a8be..3fc1c396e 100644 --- a/docs/version-specific/supported-software/v/VERSE.md +++ b/docs/version-specific/supported-software/v/VERSE.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.1.5`` | ``foss/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2aa65fc5a..568b490df 100644 --- a/docs/version-specific/supported-software/v/VESTA.md +++ b/docs/version-specific/supported-software/v/VESTA.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.5.8`` | ``-gtk3`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ecc497a05..b9ecd5059 100644 --- a/docs/version-specific/supported-software/v/VMD.md +++ b/docs/version-specific/supported-software/v/VMD.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``1.9.4a51`` | | ``fosscuda/2020b`` ``1.9.4a57`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 03b8ceec6..55d6ef9c0 100644 --- a/docs/version-specific/supported-software/v/VMTK.md +++ b/docs/version-specific/supported-software/v/VMTK.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 90d525c67..afd9f2dd4 100644 --- a/docs/version-specific/supported-software/v/VSCode.md +++ b/docs/version-specific/supported-software/v/VSCode.md @@ -13,5 +13,5 @@ version | toolchain ``1.85.0`` | ``system`` ``1.88.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a90f16bc8..44116d3c7 100644 --- a/docs/version-specific/supported-software/v/VSEARCH.md +++ b/docs/version-specific/supported-software/v/VSEARCH.md @@ -18,5 +18,5 @@ version | toolchain ``2.25.0`` | ``GCC/12.3.0`` ``2.9.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 590593fc4..50ee688cb 100644 --- a/docs/version-specific/supported-software/v/VTK.md +++ b/docs/version-specific/supported-software/v/VTK.md @@ -46,5 +46,5 @@ version | versionsuffix | toolchain ``9.3.0`` | | ``foss/2023a`` ``9.3.0`` | | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d5ae9bc1d..2d306586d 100644 --- a/docs/version-specific/supported-software/v/VTune.md +++ b/docs/version-specific/supported-software/v/VTune.md @@ -35,5 +35,5 @@ version | toolchain ``2022.3.0`` | ``system`` ``2023.2.0`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9b07a8b7a..9f28b96c2 100644 --- a/docs/version-specific/supported-software/v/VV.md +++ b/docs/version-specific/supported-software/v/VV.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.09.19`` | ``-Python-3.6.6`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ffbc672c3..652ad87f6 100644 --- a/docs/version-specific/supported-software/v/VXL.md +++ b/docs/version-specific/supported-software/v/VXL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.18.0`` | ``foss/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 94a986346..cdf11fcc4 100644 --- a/docs/version-specific/supported-software/v/Vala.md +++ b/docs/version-specific/supported-software/v/Vala.md @@ -13,5 +13,5 @@ version | toolchain ``0.52.4`` | ``GCCcore/10.3.0`` ``0.56.14`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d2c79a828..d5bc05687 100644 --- a/docs/version-specific/supported-software/v/Valgrind.md +++ b/docs/version-specific/supported-software/v/Valgrind.md @@ -31,5 +31,5 @@ version | toolchain ``3.21.0`` | ``gompi/2023a`` ``3.23.0`` | ``gompi/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 299ba08b9..bda09393c 100644 --- a/docs/version-specific/supported-software/v/Vamb.md +++ b/docs/version-specific/supported-software/v/Vamb.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.9`` | ``-CUDA-11.5.2`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a69335a22..8c53d7f9d 100644 --- a/docs/version-specific/supported-software/v/Vampir.md +++ b/docs/version-specific/supported-software/v/Vampir.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``8.4.1`` | ``-demo`` | ``system`` ``8.4.1`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 089fd09e3..e1b0bc248 100644 --- a/docs/version-specific/supported-software/v/Vampire.md +++ b/docs/version-specific/supported-software/v/Vampire.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.5.1`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a27adc9b6..fe21825bf 100644 --- a/docs/version-specific/supported-software/v/VarDict.md +++ b/docs/version-specific/supported-software/v/VarDict.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.7`` | ``-Perl-5.28.0`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1e2b6af85..287fce874 100644 --- a/docs/version-specific/supported-software/v/VarScan.md +++ b/docs/version-specific/supported-software/v/VarScan.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.4.4`` | ``-Java-1.8`` | ``system`` ``2.4.4`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b067d239d..f4374f1ac 100644 --- a/docs/version-specific/supported-software/v/VariantMetaCaller.md +++ b/docs/version-specific/supported-software/v/VariantMetaCaller.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b221e6c7b..0c333537f 100644 --- a/docs/version-specific/supported-software/v/Velvet.md +++ b/docs/version-specific/supported-software/v/Velvet.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``1.2.10`` | ``-mt-kmer_191`` | ``foss/2023a`` ``1.2.10`` | ``-mt-kmer_37`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8a6145cce..496ac51df 100644 --- a/docs/version-specific/supported-software/v/ViennaRNA.md +++ b/docs/version-specific/supported-software/v/ViennaRNA.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``2.5.0`` | | ``foss/2021b`` ``2.5.1`` | | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1d5c8857f..0a17c9ae9 100644 --- a/docs/version-specific/supported-software/v/Vim.md +++ b/docs/version-specific/supported-software/v/Vim.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``9.0.1434`` | | ``GCCcore/12.2.0`` ``9.1.0004`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 629202c44..e8c361925 100644 --- a/docs/version-specific/supported-software/v/VirSorter.md +++ b/docs/version-specific/supported-software/v/VirSorter.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0.6`` | | ``foss/2021b`` ``20160601`` | ``-Perl-5.22.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 82b35d8e1..e8a41f1cc 100644 --- a/docs/version-specific/supported-software/v/VirSorter2.md +++ b/docs/version-specific/supported-software/v/VirSorter2.md @@ -13,5 +13,5 @@ version | toolchain ``2.2.4`` | ``foss/2021b`` ``2.2.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 44bb5d8cf..1cec9bb70 100644 --- a/docs/version-specific/supported-software/v/VirtualGL.md +++ b/docs/version-specific/supported-software/v/VirtualGL.md @@ -15,5 +15,5 @@ version | toolchain ``3.0`` | ``GCC/11.2.0`` ``3.1`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fafcb8982..898fa4030 100644 --- a/docs/version-specific/supported-software/v/Virtuoso-opensource.md +++ b/docs/version-specific/supported-software/v/Virtuoso-opensource.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.2.6.1`` | ``GCC/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 56bb4711c..186f67a48 100644 --- a/docs/version-specific/supported-software/v/VisPy.md +++ b/docs/version-specific/supported-software/v/VisPy.md @@ -16,5 +16,5 @@ version | toolchain ``0.6.6`` | ``foss/2020b`` ``0.6.6`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6a5ace0cd..7a35e58ad 100644 --- a/docs/version-specific/supported-software/v/Voro++.md +++ b/docs/version-specific/supported-software/v/Voro++.md @@ -23,5 +23,5 @@ version | toolchain ``0.4.6`` | ``intel/2016a`` ``0.4.6`` | ``intel/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 181dab18a..5e36f292c 100644 --- a/docs/version-specific/supported-software/v/index.md +++ b/docs/version-specific/supported-software/v/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (v) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - *v* - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../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) diff --git a/docs/version-specific/supported-software/v/vConTACT2.md b/docs/version-specific/supported-software/v/vConTACT2.md index 7dafede58..13d451f36 100644 --- a/docs/version-specific/supported-software/v/vConTACT2.md +++ b/docs/version-specific/supported-software/v/vConTACT2.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.11.3`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dcd127c46..9c5e29be3 100644 --- a/docs/version-specific/supported-software/v/vaeda.md +++ b/docs/version-specific/supported-software/v/vaeda.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.0.30`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f443d23ea..206cc9e82 100644 --- a/docs/version-specific/supported-software/v/variant_tools.md +++ b/docs/version-specific/supported-software/v/variant_tools.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index faa463cba..293cd1316 100644 --- a/docs/version-specific/supported-software/v/vartools.md +++ b/docs/version-specific/supported-software/v/vartools.md @@ -13,5 +13,5 @@ version | toolchain ``1.35`` | ``foss/2016b`` ``1.35`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2f6edc3b8..d9eb60a8a 100644 --- a/docs/version-specific/supported-software/v/vawk.md +++ b/docs/version-specific/supported-software/v/vawk.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cafccc43f..bce923136 100644 --- a/docs/version-specific/supported-software/v/vcflib.md +++ b/docs/version-specific/supported-software/v/vcflib.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``1.0.9`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.0.9`` | ``-R-4.3.2`` | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 490ec85d1..5aba37139 100644 --- a/docs/version-specific/supported-software/v/vcfnp.md +++ b/docs/version-specific/supported-software/v/vcfnp.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 299d220b0..2d37efa77 100644 --- a/docs/version-specific/supported-software/v/velocyto.md +++ b/docs/version-specific/supported-software/v/velocyto.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``0.17.17`` | | ``foss/2022a`` ``0.17.17`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f776f9c75..00ebc44be 100644 --- a/docs/version-specific/supported-software/v/verifyBamID.md +++ b/docs/version-specific/supported-software/v/verifyBamID.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.1.3`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8650d6bd7..0bcdafef9 100644 --- a/docs/version-specific/supported-software/v/virtualenv.md +++ b/docs/version-specific/supported-software/v/virtualenv.md @@ -13,5 +13,5 @@ version | toolchain ``20.23.1`` | ``GCCcore/12.3.0`` ``20.24.6`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6c465501c..cbddf1341 100644 --- a/docs/version-specific/supported-software/v/visdom.md +++ b/docs/version-specific/supported-software/v/visdom.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf27f05ed..e6134aa74 100644 --- a/docs/version-specific/supported-software/v/vispr.md +++ b/docs/version-specific/supported-software/v/vispr.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.14`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2427519f2..0f6e5ac70 100644 --- a/docs/version-specific/supported-software/v/vitessce-python.md +++ b/docs/version-specific/supported-software/v/vitessce-python.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20230222`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e1a92033d..979a1dc2c 100644 --- a/docs/version-specific/supported-software/v/vitessceR.md +++ b/docs/version-specific/supported-software/v/vitessceR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.99.0-20230110`` | ``-R-4.2.1`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index df5769fc3..3988f871d 100644 --- a/docs/version-specific/supported-software/v/voltools.md +++ b/docs/version-specific/supported-software/v/voltools.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.4.2`` | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8bd6601b5..7a1a0ef13 100644 --- a/docs/version-specific/supported-software/v/vorbis-tools.md +++ b/docs/version-specific/supported-software/v/vorbis-tools.md @@ -14,5 +14,5 @@ version | toolchain ``1.4.2`` | ``GCCcore/10.3.0`` ``1.4.2`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 32c3e88f5..779f67d06 100644 --- a/docs/version-specific/supported-software/v/vsc-base.md +++ b/docs/version-specific/supported-software/v/vsc-base.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``2.8.1`` | | ``system`` ``2.8.3`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 13804d907..0feffc2fe 100644 --- a/docs/version-specific/supported-software/v/vsc-install.md +++ b/docs/version-specific/supported-software/v/vsc-install.md @@ -20,5 +20,5 @@ version | versionsuffix | toolchain ``0.11.2`` | | ``system`` ``0.9.18`` | ``-Python-2.7.11`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ef13c579..55d81f568 100644 --- a/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md +++ b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2cc799c3f..642f8d796 100644 --- a/docs/version-specific/supported-software/v/vsc-mympirun.md +++ b/docs/version-specific/supported-software/v/vsc-mympirun.md @@ -41,5 +41,5 @@ version | versionsuffix | toolchain ``5.3.1`` | | ``system`` ``5.4.0`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7228c63f0..34aaaf182 100644 --- a/docs/version-specific/supported-software/v/vsc-processcontrol.md +++ b/docs/version-specific/supported-software/v/vsc-processcontrol.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.0`` | ``-vsc-base-2.1.2`` | ``system`` ``1.0`` | | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b18361136..95c580b2e 100644 --- a/docs/version-specific/supported-software/v/vt.md +++ b/docs/version-specific/supported-software/v/vt.md @@ -16,5 +16,5 @@ version | toolchain ``0.57721`` | ``GCC/9.3.0`` ``0.57721`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7155afd44..2b52b29ee 100644 --- a/docs/version-specific/supported-software/w/WCSLIB.md +++ b/docs/version-specific/supported-software/w/WCSLIB.md @@ -14,5 +14,5 @@ version | toolchain ``7.11`` | ``GCC/11.3.0`` ``7.11`` | ``GCC/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 86598d8f3..c839910fc 100644 --- a/docs/version-specific/supported-software/w/WCT.md +++ b/docs/version-specific/supported-software/w/WCT.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.6.0`` | ``-Java-11`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 698aac63c..696b34d64 100644 --- a/docs/version-specific/supported-software/w/WEKA.md +++ b/docs/version-specific/supported-software/w/WEKA.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``3.6.12`` | ``-Java-1.7.0_80`` | ``system`` ``3.7.0`` | ``-Java-1.7.0_80`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3613f922..177bfacff 100644 --- a/docs/version-specific/supported-software/w/WFA2.md +++ b/docs/version-specific/supported-software/w/WFA2.md @@ -13,5 +13,5 @@ version | toolchain ``2.3.3`` | ``GCCcore/11.3.0`` ``2.3.4`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 4e07dd080..64273a7da 100644 --- a/docs/version-specific/supported-software/w/WGDgc.md +++ b/docs/version-specific/supported-software/w/WGDgc.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ab5fc8808..e8b369348 100644 --- a/docs/version-specific/supported-software/w/WHAM.md +++ b/docs/version-specific/supported-software/w/WHAM.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``2.0.9.1`` | ``-kj_mol`` | ``intel/2019a`` ``2.0.9.1`` | | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b3ae0d7f9..346e94cbf 100644 --- a/docs/version-specific/supported-software/w/WIEN2k.md +++ b/docs/version-specific/supported-software/w/WIEN2k.md @@ -22,5 +22,5 @@ version | toolchain ``21.1`` | ``intel/2021b`` ``23.2`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0ae34893c..26827fd28 100644 --- a/docs/version-specific/supported-software/w/WISExome.md +++ b/docs/version-specific/supported-software/w/WISExome.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180517`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9d2009576..b7d91074e 100644 --- a/docs/version-specific/supported-software/w/WPS.md +++ b/docs/version-specific/supported-software/w/WPS.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``4.3.1`` | ``-dmpar`` | ``foss/2021a`` ``4.4`` | ``-dmpar`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2375ab0d0..4b76eb112 100644 --- a/docs/version-specific/supported-software/w/WRF-Fire.md +++ b/docs/version-specific/supported-software/w/WRF-Fire.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170221`` | ``-dmpar`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 83625a5f9..5d05dc870 100644 --- a/docs/version-specific/supported-software/w/WRF.md +++ b/docs/version-specific/supported-software/w/WRF.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``4.4`` | ``-dmpar`` | ``foss/2022a`` ``4.4.1`` | ``-dmpar`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index df84c91b7..67b41e710 100644 --- a/docs/version-specific/supported-software/w/WSClean.md +++ b/docs/version-specific/supported-software/w/WSClean.md @@ -13,5 +13,5 @@ version | toolchain ``3.4`` | ``foss/2022a`` ``3.4`` | ``foss/2023b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d3c3337d7..5e2ece785 100644 --- a/docs/version-specific/supported-software/w/Wannier90.md +++ b/docs/version-specific/supported-software/w/Wannier90.md @@ -34,5 +34,5 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``intel/2022b`` ``3.1.0`` | | ``intel/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fa0f870fa..91099fdef 100644 --- a/docs/version-specific/supported-software/w/WannierTools.md +++ b/docs/version-specific/supported-software/w/WannierTools.md @@ -13,5 +13,5 @@ version | toolchain ``2.3.0`` | ``intel/2018a`` ``2.5.1`` | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a1583bad2..30ef00554 100644 --- a/docs/version-specific/supported-software/w/Wayland.md +++ b/docs/version-specific/supported-software/w/Wayland.md @@ -17,5 +17,5 @@ version | toolchain ``1.22.0`` | ``GCCcore/12.3.0`` ``1.22.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 78c23ca29..a4b1ab1d4 100644 --- a/docs/version-specific/supported-software/w/Waylandpp.md +++ b/docs/version-specific/supported-software/w/Waylandpp.md @@ -13,5 +13,5 @@ version | toolchain ``1.0.0`` | ``GCCcore/11.2.0`` ``1.0.0`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b6be8fd42..062884e1b 100644 --- a/docs/version-specific/supported-software/w/WebKitGTK+.md +++ b/docs/version-specific/supported-software/w/WebKitGTK+.md @@ -16,5 +16,5 @@ version | toolchain ``2.37.1`` | ``GCC/11.2.0`` ``2.40.4`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6168e316c..96c12443f 100644 --- a/docs/version-specific/supported-software/w/WebSocket++.md +++ b/docs/version-specific/supported-software/w/WebSocket++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.8.1`` | ``gompi/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b2638ede3..677168dce 100644 --- a/docs/version-specific/supported-software/w/WhatsHap.md +++ b/docs/version-specific/supported-software/w/WhatsHap.md @@ -17,5 +17,5 @@ version | toolchain ``2.1`` | ``foss/2022b`` ``2.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a7035f360..6d579d0ff 100644 --- a/docs/version-specific/supported-software/w/WildMagic.md +++ b/docs/version-specific/supported-software/w/WildMagic.md @@ -13,5 +13,5 @@ version | toolchain ``5.17`` | ``GCCcore/10.3.0`` ``5.17`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7a5d73d96..4abdc675e 100644 --- a/docs/version-specific/supported-software/w/Winnowmap.md +++ b/docs/version-specific/supported-software/w/Winnowmap.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcff75bf4..621b71f37 100644 --- a/docs/version-specific/supported-software/w/WisecondorX.md +++ b/docs/version-specific/supported-software/w/WisecondorX.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3d516023c..835a9376f 100644 --- a/docs/version-specific/supported-software/w/index.md +++ b/docs/version-specific/supported-software/w/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (w) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - *w* - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../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) diff --git a/docs/version-specific/supported-software/w/waLBerla.md b/docs/version-specific/supported-software/w/waLBerla.md index c1eafc543..cc23a075d 100644 --- a/docs/version-specific/supported-software/w/waLBerla.md +++ b/docs/version-specific/supported-software/w/waLBerla.md @@ -13,5 +13,5 @@ version | toolchain ``6.1`` | ``foss/2021a`` ``6.1`` | ``foss/2022b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 536b41a2e..60b87ffaf 100644 --- a/docs/version-specific/supported-software/w/wandb.md +++ b/docs/version-specific/supported-software/w/wandb.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``0.16.1`` | | ``GCC/12.3.0`` ``0.8.30`` | ``-Python-3.7.4`` | ``gcccuda/2019b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6ba2f3671..6799f74b7 100644 --- a/docs/version-specific/supported-software/w/wcwidth.md +++ b/docs/version-specific/supported-software/w/wcwidth.md @@ -16,5 +16,5 @@ version | versionsuffix | toolchain ``0.1.7`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.1.7`` | ``-Python-3.5.2`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3afb9f8e2..81ad7acb8 100644 --- a/docs/version-specific/supported-software/w/webin-cli.md +++ b/docs/version-specific/supported-software/w/webin-cli.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.8.9`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7105efecc..4b83f63cb 100644 --- a/docs/version-specific/supported-software/w/wfdb.md +++ b/docs/version-specific/supported-software/w/wfdb.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.1.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ef98cb2a6..79b18fec5 100644 --- a/docs/version-specific/supported-software/w/wget.md +++ b/docs/version-specific/supported-software/w/wget.md @@ -23,5 +23,5 @@ version | toolchain ``1.21.4`` | ``GCCcore/13.2.0`` ``1.24.5`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 457ed8134..c9e613236 100644 --- a/docs/version-specific/supported-software/w/wgsim.md +++ b/docs/version-specific/supported-software/w/wgsim.md @@ -13,5 +13,5 @@ version | toolchain ``20111017`` | ``GCC/10.2.0`` ``20111017`` | ``GCC/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0be27c182..43290f804 100644 --- a/docs/version-specific/supported-software/w/wheel.md +++ b/docs/version-specific/supported-software/w/wheel.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``0.31.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` ``0.31.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 76b58df32..58aeb2fd7 100644 --- a/docs/version-specific/supported-software/w/wkhtmltopdf.md +++ b/docs/version-specific/supported-software/w/wkhtmltopdf.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.3`` | ``-Linux-x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 903d5b699..ce86ceb72 100644 --- a/docs/version-specific/supported-software/w/worker.md +++ b/docs/version-specific/supported-software/w/worker.md @@ -24,5 +24,5 @@ version | versionsuffix | toolchain ``1.6.8`` | ``-intel-2018a`` | ``system`` ``1.6.8`` | ``-intel-2018b`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe853cad6..c04b9a77c 100644 --- a/docs/version-specific/supported-software/w/wpebackend-fdo.md +++ b/docs/version-specific/supported-software/w/wpebackend-fdo.md @@ -13,5 +13,5 @@ version | toolchain ``1.13.1`` | ``GCCcore/11.2.0`` ``1.14.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c051b2b1c..f61e920ed 100644 --- a/docs/version-specific/supported-software/w/wrapt.md +++ b/docs/version-specific/supported-software/w/wrapt.md @@ -15,5 +15,5 @@ version | toolchain ``1.15.0`` | ``gfbf/2023a`` ``1.15.0`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7202b0ed6..4676a45b5 100644 --- a/docs/version-specific/supported-software/w/wrf-python.md +++ b/docs/version-specific/supported-software/w/wrf-python.md @@ -14,5 +14,5 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.3.4.1`` | | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6c64fb3e5..cc15d028f 100644 --- a/docs/version-specific/supported-software/w/wtdbg2.md +++ b/docs/version-specific/supported-software/w/wtdbg2.md @@ -15,5 +15,5 @@ version | toolchain ``2.5`` | ``GCCcore/11.3.0`` ``2.5`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8c976d1ee..8ea6db5b6 100644 --- a/docs/version-specific/supported-software/w/wxPropertyGrid.md +++ b/docs/version-specific/supported-software/w/wxPropertyGrid.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.4.15`` | ``GCC/4.9.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8f9007910..8c0f49c20 100644 --- a/docs/version-specific/supported-software/w/wxPython.md +++ b/docs/version-specific/supported-software/w/wxPython.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``4.2.0`` | | ``foss/2021b`` ``4.2.1`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7edcce515..8690728b4 100644 --- a/docs/version-specific/supported-software/w/wxWidgets.md +++ b/docs/version-specific/supported-software/w/wxWidgets.md @@ -21,5 +21,5 @@ version | toolchain ``3.2.2.1`` | ``GCC/12.2.0`` ``3.2.2.1`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 953015f42..f3989a097 100644 --- a/docs/version-specific/supported-software/x/X11.md +++ b/docs/version-specific/supported-software/x/X11.md @@ -30,5 +30,5 @@ version | toolchain ``20230603`` | ``GCCcore/12.3.0`` ``20231019`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 69eec87b1..377a98bc4 100644 --- a/docs/version-specific/supported-software/x/XALT.md +++ b/docs/version-specific/supported-software/x/XALT.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.8.4`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cf59411c8..d444ff6d2 100644 --- a/docs/version-specific/supported-software/x/XBeach.md +++ b/docs/version-specific/supported-software/x/XBeach.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20230831`` | ``gompi/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 48c187d1c..9e72cf2da 100644 --- a/docs/version-specific/supported-software/x/XCFun.md +++ b/docs/version-specific/supported-software/x/XCFun.md @@ -18,5 +18,5 @@ version | versionsuffix | toolchain ``20180122`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20190127`` | ``-Python-3.7.2`` | ``foss/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3ed5a45d2..65c7dad9f 100644 --- a/docs/version-specific/supported-software/x/XCrySDen.md +++ b/docs/version-specific/supported-software/x/XCrySDen.md @@ -18,5 +18,5 @@ version | toolchain ``1.6.2`` | ``intel/2021b`` ``1.6.2`` | ``intel/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 068f18b55..042c486b3 100644 --- a/docs/version-specific/supported-software/x/XGBoost.md +++ b/docs/version-specific/supported-software/x/XGBoost.md @@ -23,5 +23,5 @@ version | versionsuffix | toolchain ``2.0.2`` | | ``gfbf/2023a`` ``20171120`` | ``-Java-1.8.0_152`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1ce08c431..72649cd1e 100644 --- a/docs/version-specific/supported-software/x/XGrafix.md +++ b/docs/version-specific/supported-software/x/XGrafix.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.41`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index cff1bfb46..ac9ad6107 100644 --- a/docs/version-specific/supported-software/x/XKeyboardConfig.md +++ b/docs/version-specific/supported-software/x/XKeyboardConfig.md @@ -13,5 +13,5 @@ version | toolchain ``2.17`` | ``foss/2016a`` ``2.17`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 77c25dcd9..d91ec2b05 100644 --- a/docs/version-specific/supported-software/x/XMDS2.md +++ b/docs/version-specific/supported-software/x/XMDS2.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 30a36598a..b3f485216 100644 --- a/docs/version-specific/supported-software/x/XML-Compile.md +++ b/docs/version-specific/supported-software/x/XML-Compile.md @@ -13,5 +13,5 @@ version | toolchain ``1.63`` | ``GCCcore/11.2.0`` ``1.63`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 826ea7bf8..73334d4c9 100644 --- a/docs/version-specific/supported-software/x/XML-LibXML.md +++ b/docs/version-specific/supported-software/x/XML-LibXML.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``2.0208`` | | ``GCCcore/12.2.0`` ``2.0209`` | | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 898e28e86..a33b45790 100644 --- a/docs/version-specific/supported-software/x/XML-Parser.md +++ b/docs/version-specific/supported-software/x/XML-Parser.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``2.46`` | ``-Perl-5.34.1`` | ``GCCcore/11.3.0`` ``2.46`` | ``-Perl-5.36.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a22e6a8c3..331582421 100644 --- a/docs/version-specific/supported-software/x/XMLSec.md +++ b/docs/version-specific/supported-software/x/XMLSec.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``1.2.26`` | ``GCCcore/6.4.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 58ca231aa..552ff8343 100644 --- a/docs/version-specific/supported-software/x/XMLStarlet.md +++ b/docs/version-specific/supported-software/x/XMLStarlet.md @@ -13,5 +13,5 @@ version | toolchain ``1.6.1`` | ``GCCcore/6.4.0`` ``1.6.1`` | ``foss/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c9e4f4962..6b26ceb27 100644 --- a/docs/version-specific/supported-software/x/XOOPIC.md +++ b/docs/version-specific/supported-software/x/XOOPIC.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``20210302`` | ``foss/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 79cfa75db..475ca7747 100644 --- a/docs/version-specific/supported-software/x/XPLOR-NIH.md +++ b/docs/version-specific/supported-software/x/XPLOR-NIH.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4`` | ``-Linux_x86_64`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8c1cc0bb6..51f790e1e 100644 --- a/docs/version-specific/supported-software/x/XSD.md +++ b/docs/version-specific/supported-software/x/XSD.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.0.0`` | ``GCCcore/8.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c02b24e37..d2403c834 100644 --- a/docs/version-specific/supported-software/x/XTandem.md +++ b/docs/version-specific/supported-software/x/XTandem.md @@ -13,5 +13,5 @@ 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`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index af3535fd6..777238047 100644 --- a/docs/version-specific/supported-software/x/XZ.md +++ b/docs/version-specific/supported-software/x/XZ.md @@ -43,5 +43,5 @@ version | versionsuffix | toolchain ``5.4.4`` | | ``GCCcore/13.2.0`` ``5.4.5`` | | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fecdea57a..0478954ad 100644 --- a/docs/version-specific/supported-software/x/Xerces-C++.md +++ b/docs/version-specific/supported-software/x/Xerces-C++.md @@ -23,5 +23,5 @@ version | toolchain ``3.2.4`` | ``GCCcore/12.3.0`` ``3.2.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 418192ac9..46c056e2a 100644 --- a/docs/version-specific/supported-software/x/XlsxWriter.md +++ b/docs/version-specific/supported-software/x/XlsxWriter.md @@ -18,5 +18,5 @@ version | toolchain ``3.1.3`` | ``GCCcore/12.3.0`` ``3.1.9`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 409bd48c6..886969d58 100644 --- a/docs/version-specific/supported-software/x/Xmipp.md +++ b/docs/version-specific/supported-software/x/Xmipp.md @@ -15,5 +15,5 @@ version | versionsuffix | toolchain ``3.22.07-Helios`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``3.22.07-Helios`` | | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 34a2d9df6..1dbdf10a1 100644 --- a/docs/version-specific/supported-software/x/Xvfb.md +++ b/docs/version-specific/supported-software/x/Xvfb.md @@ -21,5 +21,5 @@ version | toolchain ``21.1.8`` | ``GCCcore/12.3.0`` ``21.1.9`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7cb736fbc..5b2181b25 100644 --- a/docs/version-specific/supported-software/x/index.md +++ b/docs/version-specific/supported-software/x/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (x) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - *x* - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../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) diff --git a/docs/version-specific/supported-software/x/x13as.md b/docs/version-specific/supported-software/x/x13as.md index 17c0cf821..4eced89b5 100644 --- a/docs/version-specific/supported-software/x/x13as.md +++ b/docs/version-specific/supported-software/x/x13as.md @@ -13,5 +13,5 @@ version | toolchain ``1-1-b59`` | ``GCCcore/10.2.0`` ``1-1-b59`` | ``GCCcore/11.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5a57369cd..dc2438db5 100644 --- a/docs/version-specific/supported-software/x/x264.md +++ b/docs/version-specific/supported-software/x/x264.md @@ -35,5 +35,5 @@ version | toolchain ``20230226`` | ``GCCcore/12.3.0`` ``20231019`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 00df81d53..48d99c06c 100644 --- a/docs/version-specific/supported-software/x/x265.md +++ b/docs/version-specific/supported-software/x/x265.md @@ -27,5 +27,5 @@ version | toolchain ``3.5`` | ``GCCcore/12.3.0`` ``3.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 22b3bdbc3..27ac5c52e 100644 --- a/docs/version-specific/supported-software/x/xCell.md +++ b/docs/version-specific/supported-software/x/xCell.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.12`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8e60f15fd..e344e7239 100644 --- a/docs/version-specific/supported-software/x/xESMF.md +++ b/docs/version-specific/supported-software/x/xESMF.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.3.0`` | | ``intel/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f6b9ec493..780500b02 100644 --- a/docs/version-specific/supported-software/x/xarray.md +++ b/docs/version-specific/supported-software/x/xarray.md @@ -37,5 +37,5 @@ version | versionsuffix | toolchain ``2023.4.2`` | | ``gfbf/2022b`` ``2023.9.0`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index dd225c652..d528742f1 100644 --- a/docs/version-specific/supported-software/x/xbitmaps.md +++ b/docs/version-specific/supported-software/x/xbitmaps.md @@ -15,5 +15,5 @@ version | toolchain ``1.1.1`` | ``system`` ``1.1.2`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 65c541d8c..0afdc09a0 100644 --- a/docs/version-specific/supported-software/x/xcb-proto.md +++ b/docs/version-specific/supported-software/x/xcb-proto.md @@ -13,5 +13,5 @@ version | toolchain ``1.11`` | ``system`` ``1.13`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3d4f6e848..bcd2f117b 100644 --- a/docs/version-specific/supported-software/x/xcb-util-image.md +++ b/docs/version-specific/supported-software/x/xcb-util-image.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 594357e7e..542177ae6 100644 --- a/docs/version-specific/supported-software/x/xcb-util-keysyms.md +++ b/docs/version-specific/supported-software/x/xcb-util-keysyms.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 7f335ecd3..b21eb0a53 100644 --- a/docs/version-specific/supported-software/x/xcb-util-renderutil.md +++ b/docs/version-specific/supported-software/x/xcb-util-renderutil.md @@ -13,5 +13,5 @@ version | toolchain ``0.3.9`` | ``foss/2016a`` ``0.3.9`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5ce4cd060..aa33e8c29 100644 --- a/docs/version-specific/supported-software/x/xcb-util-wm.md +++ b/docs/version-specific/supported-software/x/xcb-util-wm.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.1`` | ``foss/2016a`` ``0.4.1`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e96035c1d..9cf58784f 100644 --- a/docs/version-specific/supported-software/x/xcb-util.md +++ b/docs/version-specific/supported-software/x/xcb-util.md @@ -13,5 +13,5 @@ version | toolchain ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5475c2f96..6e3f435c2 100644 --- a/docs/version-specific/supported-software/x/xclip.md +++ b/docs/version-specific/supported-software/x/xclip.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.13`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9e1c2034f..6774e0eca 100644 --- a/docs/version-specific/supported-software/x/xdotool.md +++ b/docs/version-specific/supported-software/x/xdotool.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.20211022.1`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 718ab2804..7b393db6c 100644 --- a/docs/version-specific/supported-software/x/xextproto.md +++ b/docs/version-specific/supported-software/x/xextproto.md @@ -15,5 +15,5 @@ version | toolchain ``7.3.0`` | ``intel/2016a`` ``7.3.0`` | ``intel/2017b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 043e435ea..6527e2bc4 100644 --- a/docs/version-specific/supported-software/x/xf86vidmodeproto.md +++ b/docs/version-specific/supported-software/x/xf86vidmodeproto.md @@ -13,5 +13,5 @@ version | toolchain ``2.3.1`` | ``foss/2016a`` ``2.3.1`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe5fad51c..dfea989d1 100644 --- a/docs/version-specific/supported-software/x/xineramaproto.md +++ b/docs/version-specific/supported-software/x/xineramaproto.md @@ -13,5 +13,5 @@ version | toolchain ``1.2.1`` | ``foss/2016a`` ``1.2.1`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 6fd2944ea..4f2ce1ac2 100644 --- a/docs/version-specific/supported-software/x/xmitgcm.md +++ b/docs/version-specific/supported-software/x/xmitgcm.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a07b66dd3..7cb93adbf 100644 --- a/docs/version-specific/supported-software/x/xmlf90.md +++ b/docs/version-specific/supported-software/x/xmlf90.md @@ -21,5 +21,5 @@ version | toolchain ``1.5.4`` | ``intel-compilers/2021.4.0`` ``1.5.6`` | ``GCC/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 60f28f340..0a3fcd098 100644 --- a/docs/version-specific/supported-software/x/xonsh.md +++ b/docs/version-specific/supported-software/x/xonsh.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3.2`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f79aa53cb..f821c48b3 100644 --- a/docs/version-specific/supported-software/x/xorg-macros.md +++ b/docs/version-specific/supported-software/x/xorg-macros.md @@ -32,5 +32,5 @@ version | toolchain ``1.20.0`` | ``GCCcore/13.2.0`` ``1.20.1`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 606bf0d30..9eaac2df2 100644 --- a/docs/version-specific/supported-software/x/xpdf.md +++ b/docs/version-specific/supported-software/x/xpdf.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.04`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f5a621466..b44cc185f 100644 --- a/docs/version-specific/supported-software/x/xprop.md +++ b/docs/version-specific/supported-software/x/xprop.md @@ -30,5 +30,5 @@ version | versionsuffix | toolchain ``1.2.6`` | | ``GCCcore/12.3.0`` ``1.2.7`` | | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3ae3eb0dd..4c7ecee00 100644 --- a/docs/version-specific/supported-software/x/xproto.md +++ b/docs/version-specific/supported-software/x/xproto.md @@ -26,5 +26,5 @@ version | toolchain ``7.0.31`` | ``GCCcore/8.3.0`` ``7.0.31`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fcd650848..26888cc54 100644 --- a/docs/version-specific/supported-software/x/xtb.md +++ b/docs/version-specific/supported-software/x/xtb.md @@ -22,5 +22,5 @@ version | versionsuffix | toolchain ``6.6.1`` | | ``gfbf/2023a`` ``6.7.0`` | | ``gfbf/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8587de1d0..1fdc95051 100644 --- a/docs/version-specific/supported-software/x/xtensor.md +++ b/docs/version-specific/supported-software/x/xtensor.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.24.0`` | ``foss/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 787e758e6..ee5dc4b6b 100644 --- a/docs/version-specific/supported-software/x/xtrans.md +++ b/docs/version-specific/supported-software/x/xtrans.md @@ -15,5 +15,5 @@ version | toolchain ``1.3.5`` | ``gimkl/2.11.5`` ``1.3.5`` | ``intel/2016a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index b7388de18..ebd014a7d 100644 --- a/docs/version-specific/supported-software/x/xxHash.md +++ b/docs/version-specific/supported-software/x/xxHash.md @@ -17,5 +17,5 @@ version | toolchain ``0.8.2`` | ``GCCcore/12.3.0`` ``0.8.2`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index fe7ecaf9d..709bafb3f 100644 --- a/docs/version-specific/supported-software/x/xxd.md +++ b/docs/version-specific/supported-software/x/xxd.md @@ -18,5 +18,5 @@ version | toolchain ``9.0.2112`` | ``GCCcore/12.3.0`` ``9.1.0307`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a1c0d27b3..410def684 100644 --- a/docs/version-specific/supported-software/y/YACS.md +++ b/docs/version-specific/supported-software/y/YACS.md @@ -17,5 +17,5 @@ version | toolchain ``0.1.8`` | ``GCCcore/12.3.0`` ``0.1.8`` | ``GCCcore/8.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bd93880db..c21c3ef65 100644 --- a/docs/version-specific/supported-software/y/YANK.md +++ b/docs/version-specific/supported-software/y/YANK.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.25.2`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8b9167cfd..962dead6e 100644 --- a/docs/version-specific/supported-software/y/YAPS.md +++ b/docs/version-specific/supported-software/y/YAPS.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` ``1.1.0`` | ``-R-3.6.0`` | ``intel/2019a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 5c7f9a3ab..b8ca79b75 100644 --- a/docs/version-specific/supported-software/y/YAXT.md +++ b/docs/version-specific/supported-software/y/YAXT.md @@ -25,5 +25,5 @@ version | toolchain ``0.9.2`` | ``iimpi/2021b`` ``0.9.2.1`` | ``gompi/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9ae604984..7250e84e2 100644 --- a/docs/version-specific/supported-software/y/YODA.md +++ b/docs/version-specific/supported-software/y/YODA.md @@ -13,5 +13,5 @@ version | toolchain ``1.9.7`` | ``GCC/11.3.0`` ``1.9.9`` | ``GCC/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index bfb13ee73..5954b3447 100644 --- a/docs/version-specific/supported-software/y/Yade.md +++ b/docs/version-specific/supported-software/y/Yade.md @@ -17,5 +17,5 @@ version | versionsuffix | toolchain ``2017.01a`` | ``-Python-2.7.12`` | ``intel/2016b`` ``2018.02b`` | ``-Python-2.7.14`` | ``intel/2018a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 2b141b100..2715fc8a1 100644 --- a/docs/version-specific/supported-software/y/Yambo.md +++ b/docs/version-specific/supported-software/y/Yambo.md @@ -14,5 +14,5 @@ version | toolchain ``5.0.4`` | ``intel/2021a`` ``5.1.2`` | ``intel/2021b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ff463f936..cc14bfc8c 100644 --- a/docs/version-specific/supported-software/y/Yasm.md +++ b/docs/version-specific/supported-software/y/Yasm.md @@ -31,5 +31,5 @@ version | toolchain ``1.3.0`` | ``intel/2016b`` ``1.3.0`` | ``intel/2017a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 199a58b87..85459464b 100644 --- a/docs/version-specific/supported-software/y/Yices.md +++ b/docs/version-specific/supported-software/y/Yices.md @@ -13,5 +13,5 @@ version | toolchain ``2.6.2`` | ``GCCcore/10.2.0`` ``2.6.4`` | ``GCCcore/12.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 8abfae44c..bb8fc6c9c 100644 --- a/docs/version-specific/supported-software/y/index.md +++ b/docs/version-specific/supported-software/y/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (y) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - *y* - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../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) diff --git a/docs/version-specific/supported-software/y/yaff.md b/docs/version-specific/supported-software/y/yaff.md index 5aff306d2..896762ee4 100644 --- a/docs/version-specific/supported-software/y/yaff.md +++ b/docs/version-specific/supported-software/y/yaff.md @@ -28,5 +28,5 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 9ad1db892..c7b5c8601 100644 --- a/docs/version-specific/supported-software/y/yaml-cpp.md +++ b/docs/version-specific/supported-software/y/yaml-cpp.md @@ -16,5 +16,5 @@ version | toolchain ``0.7.0`` | ``GCCcore/12.3.0`` ``0.8.0`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index e6e89aacf..45ed8380e 100644 --- a/docs/version-specific/supported-software/y/yt.md +++ b/docs/version-specific/supported-software/y/yt.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``4.3.0`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea2c8e30f..0c3d944f6 100644 --- a/docs/version-specific/supported-software/z/Z3.md +++ b/docs/version-specific/supported-software/z/Z3.md @@ -27,5 +27,5 @@ version | versionsuffix | toolchain ``4.8.9`` | | ``GCCcore/8.3.0`` ``4.8.9`` | | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 3d35f644d..be61c1abf 100644 --- a/docs/version-specific/supported-software/z/ZIMPL.md +++ b/docs/version-specific/supported-software/z/ZIMPL.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``3.3.4`` | ``GCCcore/11.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 39d0752b0..afc8d4e21 100644 --- a/docs/version-specific/supported-software/z/ZPAQ.md +++ b/docs/version-specific/supported-software/z/ZPAQ.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``7.00`` | ``GCC/4.8.2`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f1ab1b0f0..48e5eddd2 100644 --- a/docs/version-specific/supported-software/z/Zeo++.md +++ b/docs/version-specific/supported-software/z/Zeo++.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``0.3`` | ``intel-compilers/2023.1.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 95a4bb5df..731b7e8be 100644 --- a/docs/version-specific/supported-software/z/ZeroMQ.md +++ b/docs/version-specific/supported-software/z/ZeroMQ.md @@ -37,5 +37,5 @@ version | toolchain ``4.3.4`` | ``GCCcore/12.3.0`` ``4.3.5`` | ``GCCcore/13.2.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 118042597..7550c9ce6 100644 --- a/docs/version-specific/supported-software/z/Zgoubi.md +++ b/docs/version-specific/supported-software/z/Zgoubi.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``6.0.2`` | ``GCCcore/10.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 1be3a0275..fa34ad44f 100644 --- a/docs/version-specific/supported-software/z/Zip.md +++ b/docs/version-specific/supported-software/z/Zip.md @@ -23,5 +23,5 @@ version | toolchain ``3.0`` | ``GCCcore/8.3.0`` ``3.0`` | ``GCCcore/9.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index ea2891243..50cb0da1e 100644 --- a/docs/version-specific/supported-software/z/Zopfli.md +++ b/docs/version-specific/supported-software/z/Zopfli.md @@ -15,5 +15,5 @@ version | toolchain ``1.0.3`` | ``GCCcore/11.3.0`` ``1.0.3`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index a6761f651..1e357c572 100644 --- a/docs/version-specific/supported-software/z/index.md +++ b/docs/version-specific/supported-software/z/index.md @@ -4,7 +4,7 @@ search: --- # List of supported software (z) -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - *z* +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../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) diff --git a/docs/version-specific/supported-software/z/zUMIs.md b/docs/version-specific/supported-software/z/zUMIs.md index 9a49223e0..3865adcee 100644 --- a/docs/version-specific/supported-software/z/zUMIs.md +++ b/docs/version-specific/supported-software/z/zUMIs.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.9.7`` | ``-R-4.3.2`` | ``foss/2023a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 173c02d8b..cb99d2c2e 100644 --- a/docs/version-specific/supported-software/z/zarr.md +++ b/docs/version-specific/supported-software/z/zarr.md @@ -19,5 +19,5 @@ version | versionsuffix | toolchain ``2.4.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.8.1`` | | ``foss/2020b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 65317e43d..00a0db8a5 100644 --- a/docs/version-specific/supported-software/z/zeus-mcmc.md +++ b/docs/version-specific/supported-software/z/zeus-mcmc.md @@ -12,5 +12,5 @@ version | toolchain --------|---------- ``2.5.4`` | ``foss/2022a`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 0603b2fd8..1874d9bf6 100644 --- a/docs/version-specific/supported-software/z/zfp.md +++ b/docs/version-specific/supported-software/z/zfp.md @@ -16,5 +16,5 @@ version | toolchain ``1.0.0`` | ``GCCcore/9.3.0`` ``1.0.1`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 585aef435..4410ebea7 100644 --- a/docs/version-specific/supported-software/z/zingeR.md +++ b/docs/version-specific/supported-software/z/zingeR.md @@ -12,5 +12,5 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180131`` | ``-R-3.5.1`` | ``foss/2018b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index d91484e22..02486fc96 100644 --- a/docs/version-specific/supported-software/z/zlib-ng.md +++ b/docs/version-specific/supported-software/z/zlib-ng.md @@ -15,5 +15,5 @@ version | toolchain ``2.0.7`` | ``GCCcore/11.3.0`` ``2.1.6`` | ``GCCcore/12.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c5adc063a..9a5a5beef 100644 --- a/docs/version-specific/supported-software/z/zlib.md +++ b/docs/version-specific/supported-software/z/zlib.md @@ -80,5 +80,5 @@ version | toolchain ``1.3.1`` | ``GCCcore/14.1.0`` ``1.3.1`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index f0833e84c..1dbf6ba43 100644 --- a/docs/version-specific/supported-software/z/zlibbioc.md +++ b/docs/version-specific/supported-software/z/zlibbioc.md @@ -13,5 +13,5 @@ version | versionsuffix | toolchain ``1.18.0`` | ``-R-3.2.3`` | ``intel/2016a`` ``1.20.0`` | ``-R-3.3.1`` | ``intel/2016b`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index c14b378d3..e5512a615 100644 --- a/docs/version-specific/supported-software/z/zsh.md +++ b/docs/version-specific/supported-software/z/zsh.md @@ -16,5 +16,5 @@ version | toolchain ``5.8`` | ``system`` ``5.9`` | ``system`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [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 index 922b4ccee..32bb16220 100644 --- a/docs/version-specific/supported-software/z/zstd.md +++ b/docs/version-specific/supported-software/z/zstd.md @@ -25,5 +25,5 @@ version | toolchain ``1.5.5`` | ``GCCcore/13.2.0`` ``1.5.6`` | ``GCCcore/13.3.0`` -[../0/index.md](0) - [../a/index.md](a) - [../b/index.md](b) - [../c/index.md](c) - [../d/index.md](d) - [../e/index.md](e) - [../f/index.md](f) - [../g/index.md](g) - [../h/index.md](h) - [../i/index.md](i) - [../j/index.md](j) - [../k/index.md](k) - [../l/index.md](l) - [../m/index.md](m) - [../n/index.md](n) - [../o/index.md](o) - [../p/index.md](p) - [../q/index.md](q) - [../r/index.md](r) - [../s/index.md](s) - [../t/index.md](t) - [../u/index.md](u) - [../v/index.md](v) - [../w/index.md](w) - [../x/index.md](x) - [../y/index.md](y) - [../z/index.md](z) +[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md) From 79c120a3214810a6d75de231f6e78436b42befcd Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 19:44:36 +0200 Subject: [PATCH 09/15] use None as default for --jsonfile option in software-markdown-pages.py --- docs/version-specific/software-markdown-pages.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py index 0e6cc34b1..6e77e23f7 100644 --- a/docs/version-specific/software-markdown-pages.py +++ b/docs/version-specific/software-markdown-pages.py @@ -1,6 +1,7 @@ import argparse import json import shutil +import sys from collections import defaultdict from pathlib import Path @@ -91,6 +92,10 @@ def generate_markdown_pages(jsonfile, output_base, delete_existing): :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) @@ -113,7 +118,7 @@ def generate_markdown_pages(jsonfile, output_base, delete_existing): 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='software.json', help='Input 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)') From 8e15a347203391e61f9e296fd733e8d6e743ec42 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 19:45:03 +0200 Subject: [PATCH 10/15] use temporary file to catch overview of supported software in JSON format --- docs/version-specific/update-version-specific-docs.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/version-specific/update-version-specific-docs.sh b/docs/version-specific/update-version-specific-docs.sh index 17a7e0bf3..be14eb47b 100755 --- a/docs/version-specific/update-version-specific-docs.sh +++ b/docs/version-specific/update-version-specific-docs.sh @@ -155,11 +155,12 @@ 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' -eb --list-software=detailed --output-format=json | egrep -v $skip_lines >> software.json -python software-markdown-pages.py -o supported-software --delete-existing-output -rm software.json +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 From c79e934db9bed86247923299e26c6110ef21ee5f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 19:57:39 +0200 Subject: [PATCH 11/15] consistently use context manager to write files in software-markdown-pages.py script --- .../software-markdown-pages.py | 94 +++++++++---------- 1 file changed, 45 insertions(+), 49 deletions(-) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py index 6e77e23f7..c52dc6f28 100644 --- a/docs/version-specific/software-markdown-pages.py +++ b/docs/version-specific/software-markdown-pages.py @@ -34,55 +34,51 @@ def output_markdown(processed, output_base_path): :param output_base_path: Pathlib object for base path of output """ packages = sum(len(v) for v in processed.values()) - top_page = open(output_base_path / 'index.md', 'w') - top_page.write(MKDOCS_SEARCH_PRIORITY) - top_page.write("# List of supported software\n\n") - top_page.write(f"EasyBuild supports {packages} 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() - letter_page = open(letter_dir / 'index.md', 'w') - letter_page.write(MKDOCS_SEARCH_PRIORITY) - letter_page.write(f"# List of supported software ({letter})\n\n") - letter_page.write(generate_character_links_line([v for v in processed], current=letter)) - - 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]) - - software_page = open(letter_dir / f'{software}.md', 'w') - 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') - software_page.write(generate_character_links_line([v for v in processed])) - software_page.close() - - letter_page.close() - - top_page.close() + + 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(f"EasyBuild supports {packages} 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_character_links_line([v for v in processed], current=letter)) + + 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') + software_page.write(generate_character_links_line([v for v in processed])) def generate_markdown_pages(jsonfile, output_base, delete_existing): From a3e156e5cb436f90a099c1db6a0262f0f27e7bb0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 21:05:22 +0200 Subject: [PATCH 12/15] tweak quick links like + add it to top + bottom of software overview pages --- .../software-markdown-pages.py | 31 ++++++++++++------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py index c52dc6f28..b1c515714 100644 --- a/docs/version-specific/software-markdown-pages.py +++ b/docs/version-specific/software-markdown-pages.py @@ -13,18 +13,22 @@ """ -def generate_character_links_line(characters, current=None): +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 = [] - for c in characters: - if c == current: - links.append(f'*{c}*') + 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"[{c}](../{c}/index.md)") - return f"{' - '.join(links)}\n\n" + 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): @@ -33,12 +37,14 @@ def output_markdown(processed, output_base_path): :param processed: Processed data to output (dictionary - letter -> software -> list of versions) :param output_base_path: Pathlib object for base path of output """ - packages = sum(len(v) for v in processed.values()) + software_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(f"EasyBuild supports {packages} different software packages (incl. toolchains, bundles):\n\n") + top_page.write(generate_quick_links_line(letters, 0)) + top_page.write(f"EasyBuild supports {software_cnt} different software packages (incl. toolchains, bundles):\n\n") for letter in processed: top_page.write(f" * [{letter}]({letter}/index.md)\n") @@ -48,7 +54,7 @@ def output_markdown(processed, output_base_path): 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_character_links_line([v for v in processed], current=letter)) + 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") @@ -77,8 +83,11 @@ def output_markdown(processed, output_base_path): software_page.write(" | ") software_page.write(f"``{version['toolchain']}``\n") - software_page.write('\n') - software_page.write(generate_character_links_line([v for v in processed])) + 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): From 806b9f942fc4a0dd397e1faacd3e763ca2283eed Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 21:12:02 +0200 Subject: [PATCH 13/15] update generated software overview pages (quick links) --- docs/version-specific/index.md | 2 +- docs/version-specific/supported-software/0/3d-dna.md | 3 ++- docs/version-specific/supported-software/0/3to2.md | 3 ++- docs/version-specific/supported-software/0/4ti2.md | 3 ++- docs/version-specific/supported-software/0/index.md | 8 +++++++- docs/version-specific/supported-software/a/ABAQUS.md | 3 ++- docs/version-specific/supported-software/a/ABINIT.md | 3 ++- docs/version-specific/supported-software/a/ABRA2.md | 3 ++- docs/version-specific/supported-software/a/ABRicate.md | 3 ++- docs/version-specific/supported-software/a/ABySS.md | 3 ++- docs/version-specific/supported-software/a/ACTC.md | 3 ++- docs/version-specific/supported-software/a/ADDA.md | 3 ++- docs/version-specific/supported-software/a/ADF.md | 3 ++- docs/version-specific/supported-software/a/ADIOS.md | 3 ++- docs/version-specific/supported-software/a/ADMIXTURE.md | 3 ++- docs/version-specific/supported-software/a/ADOL-C.md | 3 ++- docs/version-specific/supported-software/a/AEDT.md | 3 ++- docs/version-specific/supported-software/a/AFNI.md | 3 ++- docs/version-specific/supported-software/a/AGAT.md | 3 ++- docs/version-specific/supported-software/a/AGFusion.md | 3 ++- docs/version-specific/supported-software/a/AGeNT.md | 3 ++- docs/version-specific/supported-software/a/AICSImageIO.md | 3 ++- docs/version-specific/supported-software/a/AIMAll.md | 3 ++- docs/version-specific/supported-software/a/ALADIN.md | 3 ++- docs/version-specific/supported-software/a/ALAMODE.md | 3 ++- docs/version-specific/supported-software/a/ALFA.md | 3 ++- docs/version-specific/supported-software/a/ALL.md | 3 ++- docs/version-specific/supported-software/a/ALLPATHS-LG.md | 3 ++- docs/version-specific/supported-software/a/ALPS.md | 3 ++- docs/version-specific/supported-software/a/AMAPVox.md | 3 ++- docs/version-specific/supported-software/a/AMD-LibM.md | 3 ++- docs/version-specific/supported-software/a/AMD-RNG.md | 3 ++- .../supported-software/a/AMD-SecureRNG.md | 3 ++- docs/version-specific/supported-software/a/AMD-uProf.md | 3 ++- docs/version-specific/supported-software/a/AMGX.md | 3 ++- docs/version-specific/supported-software/a/AMICA.md | 3 ++- docs/version-specific/supported-software/a/AMOS.md | 3 ++- docs/version-specific/supported-software/a/AMPHORA2.md | 3 ++- docs/version-specific/supported-software/a/AMPL-MP.md | 3 ++- docs/version-specific/supported-software/a/AMPtk.md | 3 ++- .../supported-software/a/AMRFinderPlus.md | 3 ++- docs/version-specific/supported-software/a/AMS.md | 3 ++- docs/version-specific/supported-software/a/ANGEL.md | 3 ++- .../supported-software/a/ANIcalculator.md | 3 ++- docs/version-specific/supported-software/a/ANSYS.md | 3 ++- docs/version-specific/supported-software/a/ANSYS_CFD.md | 3 ++- docs/version-specific/supported-software/a/ANTIC.md | 3 ++- docs/version-specific/supported-software/a/ANTLR.md | 3 ++- docs/version-specific/supported-software/a/ANTs.md | 3 ++- docs/version-specific/supported-software/a/AOCC.md | 3 ++- docs/version-specific/supported-software/a/AOFlagger.md | 3 ++- docs/version-specific/supported-software/a/AOMP.md | 3 ++- docs/version-specific/supported-software/a/APBS.md | 3 ++- docs/version-specific/supported-software/a/APR-util.md | 3 ++- docs/version-specific/supported-software/a/APR.md | 3 ++- docs/version-specific/supported-software/a/ARAGORN.md | 3 ++- docs/version-specific/supported-software/a/ARCH.md | 3 ++- docs/version-specific/supported-software/a/ARGoS.md | 3 ++- docs/version-specific/supported-software/a/ARPACK++.md | 3 ++- docs/version-specific/supported-software/a/ART.md | 3 ++- docs/version-specific/supported-software/a/ARTS.md | 3 ++- docs/version-specific/supported-software/a/ARWEN.md | 3 ++- docs/version-specific/supported-software/a/ASAP.md | 3 ++- docs/version-specific/supported-software/a/ASAP3.md | 3 ++- docs/version-specific/supported-software/a/ASCAT.md | 3 ++- docs/version-specific/supported-software/a/ASE.md | 3 ++- .../supported-software/a/ASF-SearchAPI.md | 3 ++- docs/version-specific/supported-software/a/ASHS.md | 3 ++- docs/version-specific/supported-software/a/ASTRID.md | 3 ++- docs/version-specific/supported-software/a/ATAT.md | 3 ++- docs/version-specific/supported-software/a/ATK.md | 3 ++- docs/version-specific/supported-software/a/ATLAS.md | 3 ++- docs/version-specific/supported-software/a/ATSAS.md | 3 ++- docs/version-specific/supported-software/a/AUGUSTUS.md | 3 ++- docs/version-specific/supported-software/a/AUTO-07p.md | 3 ++- docs/version-specific/supported-software/a/Abseil.md | 3 ++- .../supported-software/a/AdapterRemoval.md | 3 ++- docs/version-specific/supported-software/a/Advisor.md | 3 ++- docs/version-specific/supported-software/a/Albacore.md | 3 ++- .../supported-software/a/Albumentations.md | 3 ++- docs/version-specific/supported-software/a/Alfred.md | 3 ++- docs/version-specific/supported-software/a/Allinea.md | 3 ++- docs/version-specific/supported-software/a/Alpha.md | 3 ++- docs/version-specific/supported-software/a/AlphaFold.md | 3 ++- .../supported-software/a/AlphaPulldown.md | 3 ++- docs/version-specific/supported-software/a/Amara.md | 3 ++- docs/version-specific/supported-software/a/Amber.md | 3 ++- docs/version-specific/supported-software/a/AmberMini.md | 3 ++- docs/version-specific/supported-software/a/AmberTools.md | 3 ++- docs/version-specific/supported-software/a/AmrPlusPlus.md | 3 ++- docs/version-specific/supported-software/a/Anaconda2.md | 3 ++- docs/version-specific/supported-software/a/Anaconda3.md | 3 ++- docs/version-specific/supported-software/a/Annif.md | 3 ++- docs/version-specific/supported-software/a/Annocript.md | 3 ++- docs/version-specific/supported-software/a/AptaSUITE.md | 3 ++- docs/version-specific/supported-software/a/Arb.md | 3 ++- .../supported-software/a/Arcade-Learning-Environment.md | 3 ++- docs/version-specific/supported-software/a/ArchR.md | 3 ++- docs/version-specific/supported-software/a/Archive-Zip.md | 3 ++- docs/version-specific/supported-software/a/AreTomo2.md | 3 ++- docs/version-specific/supported-software/a/Arlequin.md | 3 ++- docs/version-specific/supported-software/a/Armadillo.md | 3 ++- docs/version-specific/supported-software/a/ArrayFire.md | 3 ++- docs/version-specific/supported-software/a/Arriba.md | 3 ++- docs/version-specific/supported-software/a/Arrow.md | 3 ++- docs/version-specific/supported-software/a/Artemis.md | 3 ++- docs/version-specific/supported-software/a/ArviZ.md | 3 ++- docs/version-specific/supported-software/a/Aspera-CLI.md | 3 ++- .../supported-software/a/Aspera-Connect.md | 3 ++- docs/version-specific/supported-software/a/Assimulo.md | 3 ++- docs/version-specific/supported-software/a/AtomPAW.md | 3 ++- docs/version-specific/supported-software/a/Austin.md | 3 ++- .../version-specific/supported-software/a/AutoDock-GPU.md | 3 ++- .../supported-software/a/AutoDock-Vina.md | 3 ++- docs/version-specific/supported-software/a/AutoDock.md | 3 ++- .../supported-software/a/AutoDockSuite.md | 3 ++- docs/version-specific/supported-software/a/AutoGeneS.md | 3 ++- docs/version-specific/supported-software/a/AutoGrid.md | 3 ++- docs/version-specific/supported-software/a/AutoMap.md | 3 ++- .../supported-software/a/Autoconf-archive.md | 3 ++- docs/version-specific/supported-software/a/Autoconf.md | 3 ++- docs/version-specific/supported-software/a/Automake.md | 3 ++- docs/version-specific/supported-software/a/Autotools.md | 3 ++- docs/version-specific/supported-software/a/Avogadro2.md | 3 ++- docs/version-specific/supported-software/a/Ax.md | 3 ++- docs/version-specific/supported-software/a/aNCI.md | 3 ++- docs/version-specific/supported-software/a/abTEM.md | 3 ++- docs/version-specific/supported-software/a/ack.md | 3 ++- docs/version-specific/supported-software/a/ada.md | 3 ++- docs/version-specific/supported-software/a/adjustText.md | 3 ++- docs/version-specific/supported-software/a/affinity.md | 3 ++- docs/version-specific/supported-software/a/aiohttp.md | 3 ++- docs/version-specific/supported-software/a/alevin-fry.md | 3 ++- docs/version-specific/supported-software/a/alleleCount.md | 3 ++- .../supported-software/a/alleleIntegrator.md | 3 ++- docs/version-specific/supported-software/a/almosthere.md | 3 ++- docs/version-specific/supported-software/a/alsa-lib.md | 3 ++- docs/version-specific/supported-software/a/amask.md | 3 ++- docs/version-specific/supported-software/a/amdahl.md | 3 ++- docs/version-specific/supported-software/a/amplimap.md | 3 ++- docs/version-specific/supported-software/a/anadama2.md | 3 ++- docs/version-specific/supported-software/a/andi.md | 3 ++- docs/version-specific/supported-software/a/angsd.md | 3 ++- docs/version-specific/supported-software/a/anndata.md | 3 ++- docs/version-specific/supported-software/a/annovar.md | 3 ++- docs/version-specific/supported-software/a/ant.md | 3 ++- docs/version-specific/supported-software/a/antiSMASH.md | 3 ++- docs/version-specific/supported-software/a/anvio.md | 3 ++- docs/version-specific/supported-software/a/any2fasta.md | 3 ++- docs/version-specific/supported-software/a/apex.md | 3 ++- docs/version-specific/supported-software/a/arcasHLA.md | 3 ++- docs/version-specific/supported-software/a/archspec.md | 3 ++- docs/version-specific/supported-software/a/argtable.md | 3 ++- docs/version-specific/supported-software/a/aria2.md | 3 ++- docs/version-specific/supported-software/a/arosics.md | 3 ++- docs/version-specific/supported-software/a/arpack-ng.md | 3 ++- docs/version-specific/supported-software/a/arrow-R.md | 3 ++- .../supported-software/a/artic-ncov2019.md | 3 ++- .../supported-software/a/assembly-stats.md | 3 ++- docs/version-specific/supported-software/a/assimp.md | 3 ++- .../version-specific/supported-software/a/astro-tulips.md | 3 ++- docs/version-specific/supported-software/a/astropy.md | 3 ++- docs/version-specific/supported-software/a/at-spi2-atk.md | 3 ++- .../version-specific/supported-software/a/at-spi2-core.md | 3 ++- docs/version-specific/supported-software/a/atomate.md | 3 ++- docs/version-specific/supported-software/a/atools.md | 3 ++- docs/version-specific/supported-software/a/atropos.md | 3 ++- docs/version-specific/supported-software/a/attr.md | 3 ++- docs/version-specific/supported-software/a/attrdict.md | 3 ++- docs/version-specific/supported-software/a/attrdict3.md | 3 ++- docs/version-specific/supported-software/a/augur.md | 3 ++- docs/version-specific/supported-software/a/autopep8.md | 3 ++- docs/version-specific/supported-software/a/avro-cpp.md | 3 ++- docs/version-specific/supported-software/a/awscli.md | 3 ++- docs/version-specific/supported-software/a/axel.md | 3 ++- docs/version-specific/supported-software/a/index.md | 8 +++++++- .../supported-software/b/BA3-SNPS-autotune.md | 3 ++- docs/version-specific/supported-software/b/BAGEL.md | 3 ++- docs/version-specific/supported-software/b/BAMM.md | 3 ++- docs/version-specific/supported-software/b/BAMSurgeon.md | 3 ++- docs/version-specific/supported-software/b/BAli-Phy.md | 3 ++- docs/version-specific/supported-software/b/BBMap.md | 3 ++- docs/version-specific/supported-software/b/BCALM.md | 3 ++- docs/version-specific/supported-software/b/BCEL.md | 3 ++- docs/version-specific/supported-software/b/BCFtools.md | 3 ++- docs/version-specific/supported-software/b/BDBag.md | 3 ++- docs/version-specific/supported-software/b/BEDOPS.md | 3 ++- docs/version-specific/supported-software/b/BEDTools.md | 3 ++- docs/version-specific/supported-software/b/BEEF.md | 3 ++- docs/version-specific/supported-software/b/BFAST.md | 3 ++- docs/version-specific/supported-software/b/BFC.md | 3 ++- .../supported-software/b/BGC-Bayesian-genomic-clines.md | 3 ++- docs/version-specific/supported-software/b/BLACS.md | 3 ++- docs/version-specific/supported-software/b/BLASR.md | 3 ++- docs/version-specific/supported-software/b/BLAST+.md | 3 ++- docs/version-specific/supported-software/b/BLAST.md | 3 ++- docs/version-specific/supported-software/b/BLAT.md | 3 ++- docs/version-specific/supported-software/b/BLIS.md | 3 ++- docs/version-specific/supported-software/b/BLT.md | 3 ++- docs/version-specific/supported-software/b/BMTK.md | 3 ++- docs/version-specific/supported-software/b/BOINC.md | 3 ++- docs/version-specific/supported-software/b/BOPTEST.md | 3 ++- docs/version-specific/supported-software/b/BRAKER.md | 3 ++- docs/version-specific/supported-software/b/BRiAl.md | 3 ++- docs/version-specific/supported-software/b/BSMAPz.md | 3 ++- docs/version-specific/supported-software/b/BSseeker2.md | 3 ++- docs/version-specific/supported-software/b/BUFRLIB.md | 3 ++- docs/version-specific/supported-software/b/BUSCO.md | 3 ++- docs/version-specific/supported-software/b/BUStools.md | 3 ++- docs/version-specific/supported-software/b/BWA.md | 3 ++- docs/version-specific/supported-software/b/BWISE.md | 3 ++- .../supported-software/b/BXH_XCEDE_TOOLS.md | 3 ++- docs/version-specific/supported-software/b/BabelStream.md | 3 ++- docs/version-specific/supported-software/b/Bader.md | 3 ++- docs/version-specific/supported-software/b/BamTools.md | 3 ++- docs/version-specific/supported-software/b/BamUtil.md | 3 ++- docs/version-specific/supported-software/b/Bambi.md | 3 ++- docs/version-specific/supported-software/b/Bandage.md | 3 ++- docs/version-specific/supported-software/b/Bash.md | 3 ++- docs/version-specific/supported-software/b/BatMeth2.md | 3 ++- docs/version-specific/supported-software/b/BayeScEnv.md | 3 ++- docs/version-specific/supported-software/b/BayeScan.md | 3 ++- docs/version-specific/supported-software/b/BayesAss.md | 3 ++- .../supported-software/b/BayesAss3-SNPs.md | 3 ++- docs/version-specific/supported-software/b/BayesPrism.md | 3 ++- docs/version-specific/supported-software/b/BayesTraits.md | 3 ++- docs/version-specific/supported-software/b/Bazel.md | 3 ++- docs/version-specific/supported-software/b/Beagle.md | 3 ++- docs/version-specific/supported-software/b/Beast.md | 3 ++- .../supported-software/b/BeautifulSoup.md | 3 ++- docs/version-specific/supported-software/b/BerkeleyGW.md | 3 ++- docs/version-specific/supported-software/b/BgeeCall.md | 3 ++- docs/version-specific/supported-software/b/BgeeDB.md | 3 ++- docs/version-specific/supported-software/b/BiG-SCAPE.md | 3 ++- .../supported-software/b/BiasAdjustCXX.md | 3 ++- docs/version-specific/supported-software/b/BigDFT.md | 3 ++- docs/version-specific/supported-software/b/BinSanity.md | 3 ++- docs/version-specific/supported-software/b/Bio-DB-HTS.md | 3 ++- .../supported-software/b/Bio-EUtilities.md | 3 ++- .../supported-software/b/Bio-FeatureIO.md | 3 ++- .../version-specific/supported-software/b/Bio-SamTools.md | 3 ++- .../supported-software/b/Bio-SearchIO-hmmer.md | 3 ++- docs/version-specific/supported-software/b/BioPP.md | 3 ++- docs/version-specific/supported-software/b/BioPerl.md | 3 ++- docs/version-specific/supported-software/b/BioServices.md | 3 ++- docs/version-specific/supported-software/b/Biopython.md | 3 ++- docs/version-specific/supported-software/b/BirdNET.md | 3 ++- docs/version-specific/supported-software/b/Bismark.md | 3 ++- docs/version-specific/supported-software/b/Bison.md | 3 ++- docs/version-specific/supported-software/b/Blender.md | 3 ++- docs/version-specific/supported-software/b/Blitz++.md | 3 ++- docs/version-specific/supported-software/b/BlobTools.md | 3 ++- docs/version-specific/supported-software/b/Block.md | 3 ++- docs/version-specific/supported-software/b/Blosc.md | 3 ++- docs/version-specific/supported-software/b/Blosc2.md | 3 ++- docs/version-specific/supported-software/b/BoltzTraP.md | 3 ++- docs/version-specific/supported-software/b/BoltzTraP2.md | 3 ++- docs/version-specific/supported-software/b/Bonito.md | 3 ++- docs/version-specific/supported-software/b/Bonmin.md | 3 ++- docs/version-specific/supported-software/b/Bonnie++.md | 3 ++- docs/version-specific/supported-software/b/Boost.MPI.md | 3 ++- .../supported-software/b/Boost.Python-NumPy.md | 3 ++- .../version-specific/supported-software/b/Boost.Python.md | 3 ++- docs/version-specific/supported-software/b/Boost.md | 3 ++- docs/version-specific/supported-software/b/Bottleneck.md | 3 ++- docs/version-specific/supported-software/b/Bowtie.md | 3 ++- docs/version-specific/supported-software/b/Bowtie2.md | 3 ++- docs/version-specific/supported-software/b/Bpipe.md | 3 ++- docs/version-specific/supported-software/b/Bracken.md | 3 ++- docs/version-specific/supported-software/b/Braindecode.md | 3 ++- docs/version-specific/supported-software/b/BreakDancer.md | 3 ++- .../supported-software/b/Brotli-python.md | 3 ++- docs/version-specific/supported-software/b/Brotli.md | 3 ++- docs/version-specific/supported-software/b/Brunsli.md | 3 ++- docs/version-specific/supported-software/b/Bsoft.md | 3 ++- docs/version-specific/supported-software/b/BuDDy.md | 3 ++- docs/version-specific/supported-software/b/Bullet.md | 3 ++- docs/version-specific/supported-software/b/babl.md | 3 ++- .../supported-software/b/bam-readcount.md | 3 ++- docs/version-specific/supported-software/b/bamFilters.md | 3 ++- docs/version-specific/supported-software/b/bamtofastq.md | 3 ++- docs/version-specific/supported-software/b/barrnap.md | 3 ++- docs/version-specific/supported-software/b/basemap.md | 3 ++- docs/version-specific/supported-software/b/bases2fastq.md | 3 ++- docs/version-specific/supported-software/b/bashplotlib.md | 3 ++- docs/version-specific/supported-software/b/bat.md | 3 ++- .../supported-software/b/batchgenerators.md | 3 ++- docs/version-specific/supported-software/b/bbFTP.md | 3 ++- docs/version-specific/supported-software/b/bbcp.md | 3 ++- docs/version-specific/supported-software/b/bc.md | 3 ++- docs/version-specific/supported-software/b/bcbio-gff.md | 3 ++- docs/version-specific/supported-software/b/bcgTree.md | 3 ++- docs/version-specific/supported-software/b/bcl-convert.md | 3 ++- docs/version-specific/supported-software/b/bcl2fastq2.md | 3 ++- docs/version-specific/supported-software/b/bcolz.md | 3 ++- docs/version-specific/supported-software/b/bcrypt.md | 3 ++- docs/version-specific/supported-software/b/beagle-lib.md | 3 ++- docs/version-specific/supported-software/b/behave.md | 3 ++- docs/version-specific/supported-software/b/bench.md | 3 ++- docs/version-specific/supported-software/b/bgen-reader.md | 3 ++- docs/version-specific/supported-software/b/bgen.md | 3 ++- .../version-specific/supported-software/b/bibtexparser.md | 3 ++- docs/version-specific/supported-software/b/binutils.md | 3 ++- docs/version-specific/supported-software/b/bioawk.md | 3 ++- .../supported-software/b/biobakery-workflows.md | 3 ++- docs/version-specific/supported-software/b/biobambam2.md | 3 ++- docs/version-specific/supported-software/b/biogeme.md | 3 ++- docs/version-specific/supported-software/b/biom-format.md | 3 ++- .../version-specific/supported-software/b/biomart-perl.md | 3 ++- docs/version-specific/supported-software/b/biscuit.md | 3 ++- docs/version-specific/supported-software/b/bitarray.md | 3 ++- docs/version-specific/supported-software/b/bitshuffle.md | 3 ++- .../version-specific/supported-software/b/blasr_libcpp.md | 3 ++- docs/version-specific/supported-software/b/bmtagger.md | 3 ++- docs/version-specific/supported-software/b/bnpy.md | 3 ++- docs/version-specific/supported-software/b/bokeh.md | 3 ++- .../supported-software/b/boost_histogram.md | 3 ++- docs/version-specific/supported-software/b/boto3.md | 3 ++- docs/version-specific/supported-software/b/bpp.md | 3 ++- docs/version-specific/supported-software/b/bpytop.md | 3 ++- docs/version-specific/supported-software/b/breseq.md | 3 ++- docs/version-specific/supported-software/b/bsddb3.md | 3 ++- docs/version-specific/supported-software/b/btllib.md | 3 ++- docs/version-specific/supported-software/b/build.md | 3 ++- docs/version-specific/supported-software/b/buildenv.md | 3 ++- docs/version-specific/supported-software/b/buildingspy.md | 3 ++- docs/version-specific/supported-software/b/bwa-mem2.md | 3 ++- docs/version-specific/supported-software/b/bwa-meth.md | 3 ++- docs/version-specific/supported-software/b/bwakit.md | 3 ++- docs/version-specific/supported-software/b/bwidget.md | 3 ++- docs/version-specific/supported-software/b/bx-python.md | 3 ++- docs/version-specific/supported-software/b/byacc.md | 3 ++- docs/version-specific/supported-software/b/byobu.md | 3 ++- docs/version-specific/supported-software/b/bzip2.md | 3 ++- docs/version-specific/supported-software/b/index.md | 8 +++++++- docs/version-specific/supported-software/c/C3D.md | 3 ++- docs/version-specific/supported-software/c/CAFE5.md | 3 ++- docs/version-specific/supported-software/c/CAMPARI.md | 3 ++- docs/version-specific/supported-software/c/CAP3.md | 3 ++- docs/version-specific/supported-software/c/CASA.md | 3 ++- docs/version-specific/supported-software/c/CASPR.md | 3 ++- docs/version-specific/supported-software/c/CASTEP.md | 3 ++- docs/version-specific/supported-software/c/CAT-BAT.md | 3 ++- docs/version-specific/supported-software/c/CAVIAR.md | 3 ++- docs/version-specific/supported-software/c/CBLAS.md | 3 ++- docs/version-specific/supported-software/c/CCCL.md | 3 ++- docs/version-specific/supported-software/c/CCL.md | 3 ++- docs/version-specific/supported-software/c/CCfits.md | 3 ++- docs/version-specific/supported-software/c/CD-HIT.md | 3 ++- docs/version-specific/supported-software/c/CDAT.md | 3 ++- docs/version-specific/supported-software/c/CDBtools.md | 3 ++- docs/version-specific/supported-software/c/CDFlib.md | 3 ++- docs/version-specific/supported-software/c/CDO.md | 3 ++- docs/version-specific/supported-software/c/CENSO.md | 3 ++- docs/version-specific/supported-software/c/CESM-deps.md | 3 ++- .../supported-software/c/CFDEMcoupling.md | 3 ++- docs/version-specific/supported-software/c/CFITSIO.md | 3 ++- docs/version-specific/supported-software/c/CGAL.md | 3 ++- docs/version-specific/supported-software/c/CGNS.md | 3 ++- docs/version-specific/supported-software/c/CGmapTools.md | 3 ++- docs/version-specific/supported-software/c/CHASE.md | 3 ++- docs/version-specific/supported-software/c/CHERAB.md | 3 ++- docs/version-specific/supported-software/c/CIF2Cell.md | 3 ++- .../version-specific/supported-software/c/CIRCexplorer.md | 3 ++- .../supported-software/c/CIRCexplorer2.md | 3 ++- docs/version-specific/supported-software/c/CIRI-long.md | 3 ++- docs/version-specific/supported-software/c/CIRI.md | 3 ++- docs/version-specific/supported-software/c/CIRIquant.md | 3 ++- .../supported-software/c/CITE-seq-Count.md | 3 ++- docs/version-specific/supported-software/c/CLAPACK.md | 3 ++- docs/version-specific/supported-software/c/CLEAR.md | 3 ++- docs/version-specific/supported-software/c/CLEASE.md | 3 ++- docs/version-specific/supported-software/c/CLHEP.md | 3 ++- docs/version-specific/supported-software/c/CLIP.md | 3 ++- docs/version-specific/supported-software/c/CLISP.md | 3 ++- docs/version-specific/supported-software/c/CLooG.md | 3 ++- docs/version-specific/supported-software/c/CMAverse.md | 3 ++- docs/version-specific/supported-software/c/CMSeq.md | 3 ++- docs/version-specific/supported-software/c/CMake.md | 3 ++- docs/version-specific/supported-software/c/CNT-ILP.md | 3 ++- docs/version-specific/supported-software/c/CNVkit.md | 3 ++- docs/version-specific/supported-software/c/CNVnator.md | 3 ++- docs/version-specific/supported-software/c/COBRApy.md | 3 ++- docs/version-specific/supported-software/c/CODEX2.md | 3 ++- docs/version-specific/supported-software/c/COMEBin.md | 3 ++- docs/version-specific/supported-software/c/COMSOL.md | 3 ++- docs/version-specific/supported-software/c/CONCOCT.md | 3 ++- docs/version-specific/supported-software/c/CONN.md | 3 ++- docs/version-specific/supported-software/c/CP2K.md | 3 ++- docs/version-specific/supported-software/c/CPB.md | 3 ++- docs/version-specific/supported-software/c/CPC2.md | 3 ++- docs/version-specific/supported-software/c/CPLEX.md | 3 ++- docs/version-specific/supported-software/c/CPMD.md | 3 ++- docs/version-specific/supported-software/c/CPPE.md | 3 ++- docs/version-specific/supported-software/c/CREST.md | 3 ++- docs/version-specific/supported-software/c/CRF++.md | 3 ++- docs/version-specific/supported-software/c/CRISPR-DAV.md | 3 ++- docs/version-specific/supported-software/c/CRISPResso2.md | 3 ++- docs/version-specific/supported-software/c/CRPropa.md | 3 ++- docs/version-specific/supported-software/c/CSB.md | 3 ++- docs/version-specific/supported-software/c/CSBDeep.md | 3 ++- docs/version-specific/supported-software/c/CSBLAST.md | 3 ++- docs/version-specific/supported-software/c/CTPL.md | 3 ++- .../version-specific/supported-software/c/CUDA-Samples.md | 3 ++- docs/version-specific/supported-software/c/CUDA.md | 3 ++- docs/version-specific/supported-software/c/CUDAcompat.md | 3 ++- docs/version-specific/supported-software/c/CUDAcore.md | 3 ++- docs/version-specific/supported-software/c/CUDD.md | 3 ++- docs/version-specific/supported-software/c/CUTLASS.md | 3 ++- docs/version-specific/supported-software/c/CUnit.md | 3 ++- docs/version-specific/supported-software/c/CVX.md | 3 ++- docs/version-specific/supported-software/c/CVXOPT.md | 3 ++- docs/version-specific/supported-software/c/CVXPY.md | 3 ++- docs/version-specific/supported-software/c/CVglasso.md | 3 ++- docs/version-specific/supported-software/c/CWIPI.md | 3 ++- docs/version-specific/supported-software/c/CaDiCaL.md | 3 ++- docs/version-specific/supported-software/c/CaSpER.md | 3 ++- docs/version-specific/supported-software/c/CaVEMan.md | 3 ++- docs/version-specific/supported-software/c/Caffe.md | 3 ++- docs/version-specific/supported-software/c/Calcam.md | 3 ++- .../supported-software/c/CalculiX-CrunchiX.md | 3 ++- docs/version-specific/supported-software/c/Calendrical.md | 3 ++- docs/version-specific/supported-software/c/Calib.md | 3 ++- docs/version-specific/supported-software/c/Cantera.md | 3 ++- docs/version-specific/supported-software/c/Canvas.md | 3 ++- docs/version-specific/supported-software/c/CapnProto.md | 3 ++- docs/version-specific/supported-software/c/Cargo.md | 3 ++- docs/version-specific/supported-software/c/Carma.md | 3 ++- docs/version-specific/supported-software/c/Cartopy.md | 3 ++- docs/version-specific/supported-software/c/Casanovo.md | 3 ++- docs/version-specific/supported-software/c/Cassiopeia.md | 3 ++- docs/version-specific/supported-software/c/CastXML.md | 3 ++- docs/version-specific/supported-software/c/CatBoost.md | 3 ++- docs/version-specific/supported-software/c/CatLearn.md | 3 ++- docs/version-specific/supported-software/c/CatMAP.md | 3 ++- docs/version-specific/supported-software/c/Catch2.md | 3 ++- docs/version-specific/supported-software/c/Cbc.md | 3 ++- docs/version-specific/supported-software/c/CellBender.md | 3 ++- docs/version-specific/supported-software/c/CellChat.md | 3 ++- docs/version-specific/supported-software/c/CellMix.md | 3 ++- docs/version-specific/supported-software/c/CellOracle.md | 3 ++- .../supported-software/c/CellRanger-ARC.md | 3 ++- .../supported-software/c/CellRanger-ATAC.md | 3 ++- docs/version-specific/supported-software/c/CellRanger.md | 3 ++- docs/version-specific/supported-software/c/CellRank.md | 3 ++- docs/version-specific/supported-software/c/CellTypist.md | 3 ++- docs/version-specific/supported-software/c/Cellpose.md | 3 ++- docs/version-specific/supported-software/c/Centrifuge.md | 3 ++- docs/version-specific/supported-software/c/Cereal.md | 3 ++- docs/version-specific/supported-software/c/Cgl.md | 3 ++- docs/version-specific/supported-software/c/ChIPseeker.md | 3 ++- docs/version-specific/supported-software/c/CharLS.md | 3 ++- docs/version-specific/supported-software/c/CheMPS2.md | 3 ++- docs/version-specific/supported-software/c/Check.md | 3 ++- .../supported-software/c/CheckM-Database.md | 3 ++- docs/version-specific/supported-software/c/CheckM.md | 3 ++- docs/version-specific/supported-software/c/CheckM2.md | 3 ++- docs/version-specific/supported-software/c/Cheetah.md | 3 ++- .../supported-software/c/Chemaxon-Marvin.md | 3 ++- docs/version-specific/supported-software/c/ChimPipe.md | 3 ++- docs/version-specific/supported-software/c/Chimera.md | 3 ++- docs/version-specific/supported-software/c/Chromaprint.md | 3 ++- docs/version-specific/supported-software/c/Circlator.md | 3 ++- docs/version-specific/supported-software/c/Circos.md | 3 ++- .../version-specific/supported-software/c/Circuitscape.md | 3 ++- docs/version-specific/supported-software/c/Clair3.md | 3 ++- docs/version-specific/supported-software/c/Clang-AOMP.md | 3 ++- .../supported-software/c/Clang-Python-bindings.md | 3 ++- docs/version-specific/supported-software/c/Clang.md | 3 ++- docs/version-specific/supported-software/c/Clarabel.rs.md | 3 ++- docs/version-specific/supported-software/c/CliMetLab.md | 3 ++- .../supported-software/c/ClonalFrameML.md | 3 ++- .../version-specific/supported-software/c/CloudCompare.md | 3 ++- docs/version-specific/supported-software/c/Clp.md | 3 ++- .../supported-software/c/Clustal-Omega.md | 3 ++- docs/version-specific/supported-software/c/ClustalW2.md | 3 ++- .../supported-software/c/Cluster-Buster.md | 3 ++- .../version-specific/supported-software/c/ClusterShell.md | 3 ++- docs/version-specific/supported-software/c/CmdStanR.md | 3 ++- docs/version-specific/supported-software/c/Co-phylog.md | 3 ++- docs/version-specific/supported-software/c/CoCoALib.md | 3 ++- docs/version-specific/supported-software/c/CoSymLib.md | 3 ++- docs/version-specific/supported-software/c/CodAn.md | 3 ++- .../version-specific/supported-software/c/CodingQuarry.md | 3 ++- docs/version-specific/supported-software/c/Cogent.md | 3 ++- docs/version-specific/supported-software/c/Coin.md | 3 ++- docs/version-specific/supported-software/c/CoinUtils.md | 3 ++- docs/version-specific/supported-software/c/ColabFold.md | 3 ++- docs/version-specific/supported-software/c/Commet.md | 3 ++- docs/version-specific/supported-software/c/CompareM.md | 3 ++- docs/version-specific/supported-software/c/Compass.md | 3 ++- .../supported-software/c/Compress-Raw-Zlib.md | 3 ++- docs/version-specific/supported-software/c/Con3F.md | 3 ++- docs/version-specific/supported-software/c/Concorde.md | 3 ++- .../supported-software/c/ConcurrentVersionsSystem.md | 3 ++- .../supported-software/c/ConnectomeWorkbench.md | 3 ++- .../supported-software/c/Control-FREEC.md | 3 ++- .../version-specific/supported-software/c/CoordgenLibs.md | 3 ++- docs/version-specific/supported-software/c/Coot.md | 3 ++- docs/version-specific/supported-software/c/CopyKAT.md | 3 ++- docs/version-specific/supported-software/c/Coreutils.md | 3 ++- .../supported-software/c/CppHeaderParser.md | 3 ++- docs/version-specific/supported-software/c/CppUnit.md | 3 ++- docs/version-specific/supported-software/c/CrayCCE.md | 3 ++- docs/version-specific/supported-software/c/CrayGNU.md | 3 ++- docs/version-specific/supported-software/c/CrayIntel.md | 3 ++- docs/version-specific/supported-software/c/CrayPGI.md | 3 ++- docs/version-specific/supported-software/c/CrossMap.md | 3 ++- docs/version-specific/supported-software/c/CrossTalkZ.md | 3 ++- docs/version-specific/supported-software/c/Crumble.md | 3 ++- .../supported-software/c/CryptoMiniSat.md | 3 ++- docs/version-specific/supported-software/c/CrystFEL.md | 3 ++- docs/version-specific/supported-software/c/CuCLARK.md | 3 ++- docs/version-specific/supported-software/c/CuPy.md | 3 ++- docs/version-specific/supported-software/c/Cube.md | 3 ++- docs/version-specific/supported-software/c/CubeGUI.md | 3 ++- docs/version-specific/supported-software/c/CubeLib.md | 3 ++- docs/version-specific/supported-software/c/CubeWriter.md | 3 ++- docs/version-specific/supported-software/c/Cufflinks.md | 3 ++- docs/version-specific/supported-software/c/Cython.md | 3 ++- docs/version-specific/supported-software/c/Cytoscape.md | 3 ++- docs/version-specific/supported-software/c/c-ares.md | 3 ++- .../version-specific/supported-software/c/cDNA_Cupcake.md | 3 ++- docs/version-specific/supported-software/c/cURL.md | 3 ++- docs/version-specific/supported-software/c/cadaver.md | 3 ++- docs/version-specific/supported-software/c/cairo.md | 3 ++- docs/version-specific/supported-software/c/cairomm.md | 3 ++- docs/version-specific/supported-software/c/canu.md | 3 ++- docs/version-specific/supported-software/c/captum.md | 3 ++- docs/version-specific/supported-software/c/carputils.md | 3 ++- docs/version-specific/supported-software/c/casacore.md | 3 ++- docs/version-specific/supported-software/c/castor.md | 3 ++- .../supported-software/c/category_encoders.md | 3 ++- docs/version-specific/supported-software/c/causallift.md | 3 ++- docs/version-specific/supported-software/c/causalml.md | 3 ++- docs/version-specific/supported-software/c/ccache.md | 3 ++- docs/version-specific/supported-software/c/cclib.md | 3 ++- docs/version-specific/supported-software/c/cctbx-base.md | 3 ++- docs/version-specific/supported-software/c/cctools.md | 3 ++- docs/version-specific/supported-software/c/cdbfasta.md | 3 ++- docs/version-specific/supported-software/c/cddlib.md | 3 ++- .../version-specific/supported-software/c/cdo-bindings.md | 3 ++- docs/version-specific/supported-software/c/cdsapi.md | 3 ++- .../supported-software/c/cell2location.md | 3 ++- docs/version-specific/supported-software/c/centerline.md | 3 ++- docs/version-specific/supported-software/c/cffi.md | 3 ++- docs/version-specific/supported-software/c/cftime.md | 3 ++- docs/version-specific/supported-software/c/cget.md | 3 ++- docs/version-specific/supported-software/c/charm-gems.md | 3 ++- docs/version-specific/supported-software/c/chemprop.md | 3 ++- docs/version-specific/supported-software/c/chewBBACA.md | 3 ++- docs/version-specific/supported-software/c/chi2comb.md | 3 ++- .../supported-software/c/chromVARmotifs.md | 3 ++- docs/version-specific/supported-software/c/cicero.md | 3 ++- docs/version-specific/supported-software/c/cimfomfa.md | 3 ++- docs/version-specific/supported-software/c/cisTEM.md | 3 ++- docs/version-specific/supported-software/c/cliquer.md | 3 ++- docs/version-specific/supported-software/c/cmocean.md | 3 ++- docs/version-specific/supported-software/c/cmph.md | 3 ++- docs/version-specific/supported-software/c/code-cli.md | 3 ++- docs/version-specific/supported-software/c/code-server.md | 3 ++- docs/version-specific/supported-software/c/colossalai.md | 3 ++- docs/version-specific/supported-software/c/conan.md | 3 ++- .../version-specific/supported-software/c/configparser.md | 3 ++- .../supported-software/c/configurable-http-proxy.md | 3 ++- .../supported-software/c/connected-components-3d.md | 3 ++- docs/version-specific/supported-software/c/contextily.md | 3 ++- docs/version-specific/supported-software/c/cooler.md | 3 ++- .../version-specific/supported-software/c/core-counter.md | 3 ++- docs/version-specific/supported-software/c/corner.md | 3 ++- docs/version-specific/supported-software/c/coverage.md | 3 ++- docs/version-specific/supported-software/c/cowsay.md | 3 ++- docs/version-specific/supported-software/c/cpio.md | 3 ++- docs/version-specific/supported-software/c/cppy.md | 3 ++- docs/version-specific/supported-software/c/cppyy.md | 3 ++- docs/version-specific/supported-software/c/cppzmq.md | 3 ++- .../version-specific/supported-software/c/cpu_features.md | 3 ++- docs/version-specific/supported-software/c/cram.md | 3 ++- docs/version-specific/supported-software/c/cramtools.md | 3 ++- docs/version-specific/supported-software/c/crb-blast.md | 3 ++- docs/version-specific/supported-software/c/cromwell.md | 3 ++- docs/version-specific/supported-software/c/crossguid.md | 3 ++- docs/version-specific/supported-software/c/cryoCARE.md | 3 ++- docs/version-specific/supported-software/c/cryoDRGN.md | 3 ++- .../version-specific/supported-software/c/cryptography.md | 3 ++- docs/version-specific/supported-software/c/cscope.md | 3 ++- docs/version-specific/supported-software/c/csvkit.md | 3 ++- docs/version-specific/supported-software/c/ctags.md | 3 ++- docs/version-specific/supported-software/c/ctffind.md | 3 ++- docs/version-specific/supported-software/c/ctffind5.md | 3 ++- docs/version-specific/supported-software/c/cuDNN.md | 3 ++- docs/version-specific/supported-software/c/cuSPARSELt.md | 3 ++- docs/version-specific/supported-software/c/cuTENSOR.md | 3 ++- docs/version-specific/supported-software/c/currentNe.md | 3 ++- docs/version-specific/supported-software/c/custodian.md | 3 ++- docs/version-specific/supported-software/c/cutadapt.md | 3 ++- docs/version-specific/supported-software/c/cuteSV.md | 3 ++- docs/version-specific/supported-software/c/cwltool.md | 3 ++- docs/version-specific/supported-software/c/cxxopts.md | 3 ++- docs/version-specific/supported-software/c/cysignals.md | 3 ++- docs/version-specific/supported-software/c/cython-blis.md | 3 ++- docs/version-specific/supported-software/c/cytoolz.md | 3 ++- docs/version-specific/supported-software/c/cytosim.md | 3 ++- docs/version-specific/supported-software/c/cyvcf2.md | 3 ++- docs/version-specific/supported-software/c/index.md | 8 +++++++- docs/version-specific/supported-software/d/DALI.md | 3 ++- docs/version-specific/supported-software/d/DANPOS2.md | 3 ++- docs/version-specific/supported-software/d/DAS_Tool.md | 3 ++- docs/version-specific/supported-software/d/DB.md | 3 ++- docs/version-specific/supported-software/d/DBCSR.md | 3 ++- docs/version-specific/supported-software/d/DBD-mysql.md | 3 ++- docs/version-specific/supported-software/d/DBG2OLC.md | 3 ++- docs/version-specific/supported-software/d/DB_File.md | 3 ++- docs/version-specific/supported-software/d/DBus.md | 3 ++- docs/version-specific/supported-software/d/DCMTK.md | 3 ++- docs/version-specific/supported-software/d/DEICODE.md | 3 ++- docs/version-specific/supported-software/d/DETONATE.md | 3 ++- docs/version-specific/supported-software/d/DFA.md | 3 ++- docs/version-specific/supported-software/d/DFT-D3.md | 3 ++- docs/version-specific/supported-software/d/DFT-D4.md | 3 ++- docs/version-specific/supported-software/d/DFTB+.md | 3 ++- docs/version-specific/supported-software/d/DGL.md | 3 ++- docs/version-specific/supported-software/d/DIA-NN.md | 3 ++- docs/version-specific/supported-software/d/DIAL.md | 3 ++- docs/version-specific/supported-software/d/DIALOGUE.md | 3 ++- docs/version-specific/supported-software/d/DIAMOND.md | 3 ++- docs/version-specific/supported-software/d/DIRAC.md | 3 ++- docs/version-specific/supported-software/d/DLPack.md | 3 ++- docs/version-specific/supported-software/d/DL_POLY_4.md | 3 ++- .../supported-software/d/DL_POLY_Classic.md | 3 ++- docs/version-specific/supported-software/d/DMCfun.md | 3 ++- docs/version-specific/supported-software/d/DMLC-Core.md | 3 ++- docs/version-specific/supported-software/d/DMTCP.md | 3 ++- docs/version-specific/supported-software/d/DOLFIN.md | 3 ++- docs/version-specific/supported-software/d/DP3.md | 3 ++- docs/version-specific/supported-software/d/DRAGMAP.md | 3 ++- docs/version-specific/supported-software/d/DROP.md | 3 ++- docs/version-specific/supported-software/d/DSA.md | 3 ++- docs/version-specific/supported-software/d/DSRC.md | 3 ++- docs/version-specific/supported-software/d/DUBStepR.md | 3 ++- docs/version-specific/supported-software/d/Dakota.md | 3 ++- docs/version-specific/supported-software/d/DaliLite.md | 3 ++- docs/version-specific/supported-software/d/Dalton.md | 3 ++- docs/version-specific/supported-software/d/DeMixT.md | 3 ++- docs/version-specific/supported-software/d/DeconICA.md | 3 ++- docs/version-specific/supported-software/d/DeepLabCut.md | 3 ++- docs/version-specific/supported-software/d/DeepLoc.md | 3 ++- docs/version-specific/supported-software/d/DeepMod2.md | 3 ++- docs/version-specific/supported-software/d/DeepSurv.md | 3 ++- docs/version-specific/supported-software/d/Delft3D.md | 3 ++- docs/version-specific/supported-software/d/Delly.md | 3 ++- docs/version-specific/supported-software/d/DeltaLake.md | 3 ++- docs/version-specific/supported-software/d/Demystify.md | 3 ++- docs/version-specific/supported-software/d/DendroPy.md | 3 ++- docs/version-specific/supported-software/d/DensPart.md | 3 ++- docs/version-specific/supported-software/d/Deprecated.md | 3 ++- docs/version-specific/supported-software/d/Detectron2.md | 3 ++- docs/version-specific/supported-software/d/Devito.md | 3 ++- docs/version-specific/supported-software/d/DiCE-ML.md | 3 ++- docs/version-specific/supported-software/d/Dice.md | 3 ++- .../version-specific/supported-software/d/DicomBrowser.md | 3 ++- docs/version-specific/supported-software/d/DiffBind.md | 3 ++- docs/version-specific/supported-software/d/Diffutils.md | 3 ++- .../supported-software/d/DistributedStream.md | 3 ++- docs/version-specific/supported-software/d/DjVuLibre.md | 3 ++- docs/version-specific/supported-software/d/Doris.md | 3 ++- .../supported-software/d/DosageConvertor.md | 3 ++- .../supported-software/d/DoubletFinder.md | 3 ++- docs/version-specific/supported-software/d/Doxygen.md | 3 ++- docs/version-specific/supported-software/d/Drake.md | 3 ++- docs/version-specific/supported-software/d/Dsuite.md | 3 ++- .../version-specific/supported-software/d/DualSPHysics.md | 3 ++- docs/version-specific/supported-software/d/DyMat.md | 3 ++- docs/version-specific/supported-software/d/dRep.md | 3 ++- docs/version-specific/supported-software/d/dSFMT.md | 3 ++- docs/version-specific/supported-software/d/dadi.md | 3 ++- docs/version-specific/supported-software/d/dagitty.md | 3 ++- docs/version-specific/supported-software/d/damageproto.md | 3 ++- docs/version-specific/supported-software/d/dammit.md | 3 ++- .../supported-software/d/dask-labextension.md | 3 ++- docs/version-specific/supported-software/d/dask.md | 3 ++- docs/version-specific/supported-software/d/datalad.md | 3 ++- docs/version-specific/supported-software/d/datamash.md | 3 ++- docs/version-specific/supported-software/d/davix.md | 3 ++- docs/version-specific/supported-software/d/dbus-glib.md | 3 ++- docs/version-specific/supported-software/d/dclone.md | 3 ++- docs/version-specific/supported-software/d/dcm2niix.md | 3 ++- docs/version-specific/supported-software/d/dd.md | 3 ++- docs/version-specific/supported-software/d/deal.II.md | 3 ++- docs/version-specific/supported-software/d/deap.md | 3 ++- docs/version-specific/supported-software/d/decona.md | 3 ++- docs/version-specific/supported-software/d/deconf.md | 3 ++- docs/version-specific/supported-software/d/deepTools.md | 3 ++- docs/version-specific/supported-software/d/deepdiff.md | 3 ++- docs/version-specific/supported-software/d/deepfold.md | 3 ++- docs/version-specific/supported-software/d/deepmedic.md | 3 ++- docs/version-specific/supported-software/d/denseweight.md | 3 ++- .../supported-software/d/desktop-file-utils.md | 3 ++- docs/version-specific/supported-software/d/destiny.md | 3 ++- .../supported-software/d/devbio-napari.md | 3 ++- docs/version-specific/supported-software/d/dftd3-lib.md | 3 ++- docs/version-specific/supported-software/d/dftd4.md | 3 ++- docs/version-specific/supported-software/d/dialog.md | 3 ++- docs/version-specific/supported-software/d/dicom2nifti.md | 3 ++- docs/version-specific/supported-software/d/dijitso.md | 3 ++- docs/version-specific/supported-software/d/dill.md | 3 ++- docs/version-specific/supported-software/d/distributed.md | 3 ++- docs/version-specific/supported-software/d/dlb.md | 3 ++- docs/version-specific/supported-software/d/dlib.md | 3 ++- docs/version-specific/supported-software/d/dm-haiku.md | 3 ++- docs/version-specific/supported-software/d/dm-reverb.md | 3 ++- docs/version-specific/supported-software/d/dm-tree.md | 3 ++- docs/version-specific/supported-software/d/dominate.md | 3 ++- docs/version-specific/supported-software/d/dorado.md | 3 ++- .../supported-software/d/dotNET-Core-Runtime.md | 3 ++- docs/version-specific/supported-software/d/dotNET-Core.md | 3 ++- docs/version-specific/supported-software/d/dotNET-SDK.md | 3 ++- .../supported-software/d/double-conversion.md | 3 ++- .../version-specific/supported-software/d/drmaa-python.md | 3 ++- docs/version-specific/supported-software/d/dropEst.md | 3 ++- docs/version-specific/supported-software/d/dtcmp.md | 3 ++- docs/version-specific/supported-software/d/dtcwt.md | 3 ++- docs/version-specific/supported-software/d/dune-core.md | 3 ++- docs/version-specific/supported-software/d/dune-fem.md | 3 ++- .../version-specific/supported-software/d/duplex-tools.md | 3 ++- docs/version-specific/supported-software/d/dx-toolkit.md | 3 ++- docs/version-specific/supported-software/d/dxpy.md | 3 ++- docs/version-specific/supported-software/d/dynesty.md | 3 ++- docs/version-specific/supported-software/d/index.md | 8 +++++++- docs/version-specific/supported-software/e/E-ANTIC.md | 3 ++- docs/version-specific/supported-software/e/ECL.md | 3 ++- docs/version-specific/supported-software/e/ED2.md | 3 ++- docs/version-specific/supported-software/e/EDirect.md | 3 ++- docs/version-specific/supported-software/e/EGTtools.md | 3 ++- docs/version-specific/supported-software/e/EIGENSOFT.md | 3 ++- docs/version-specific/supported-software/e/ELFIO.md | 3 ++- docs/version-specific/supported-software/e/ELPA.md | 3 ++- docs/version-specific/supported-software/e/ELPH.md | 3 ++- docs/version-specific/supported-software/e/ELSI-RCI.md | 3 ++- docs/version-specific/supported-software/e/ELSI.md | 3 ++- docs/version-specific/supported-software/e/EMAN2.md | 3 ++- docs/version-specific/supported-software/e/EMBOSS.md | 3 ++- docs/version-specific/supported-software/e/EMU.md | 3 ++- docs/version-specific/supported-software/e/EPD.md | 3 ++- docs/version-specific/supported-software/e/EPIC.md | 3 ++- docs/version-specific/supported-software/e/ESL-Bundle.md | 3 ++- docs/version-specific/supported-software/e/ESM-2.md | 3 ++- docs/version-specific/supported-software/e/ESMF.md | 3 ++- docs/version-specific/supported-software/e/ESMPy.md | 3 ++- docs/version-specific/supported-software/e/ESMValTool.md | 3 ++- docs/version-specific/supported-software/e/ESPResSo.md | 3 ++- docs/version-specific/supported-software/e/ETE.md | 3 ++- docs/version-specific/supported-software/e/ETSF_IO.md | 3 ++- docs/version-specific/supported-software/e/EUKulele.md | 3 ++- docs/version-specific/supported-software/e/EVcouplings.md | 3 ++- docs/version-specific/supported-software/e/EZC3D.md | 3 ++- docs/version-specific/supported-software/e/EasyBuild.md | 3 ++- docs/version-specific/supported-software/e/EasyMocap.md | 3 ++- docs/version-specific/supported-software/e/EasyQC.md | 3 ++- docs/version-specific/supported-software/e/EggLib.md | 3 ++- docs/version-specific/supported-software/e/Eigen.md | 3 ++- docs/version-specific/supported-software/e/EigenExa.md | 3 ++- docs/version-specific/supported-software/e/Elk.md | 3 ++- docs/version-specific/supported-software/e/Elmer.md | 3 ++- docs/version-specific/supported-software/e/Emacs.md | 3 ++- docs/version-specific/supported-software/e/Embree.md | 3 ++- docs/version-specific/supported-software/e/EnergyPlus.md | 3 ++- .../supported-software/e/EnsEMBLCoreAPI.md | 3 ++- docs/version-specific/supported-software/e/EpiSCORE.md | 3 ++- docs/version-specific/supported-software/e/EricScript.md | 3 ++- docs/version-specific/supported-software/e/Essentia.md | 3 ++- docs/version-specific/supported-software/e/Evcxr-REPL.md | 3 ++- docs/version-specific/supported-software/e/EveryBeam.md | 3 ++- .../supported-software/e/EvidentialGene.md | 3 ++- docs/version-specific/supported-software/e/ExaBayes.md | 3 ++- docs/version-specific/supported-software/e/ExaML.md | 3 ++- .../supported-software/e/Excel-Writer-XLSX.md | 3 ++- docs/version-specific/supported-software/e/ExifTool.md | 3 ++- docs/version-specific/supported-software/e/Exonerate.md | 3 ++- .../supported-software/e/ExpressBetaDiversity.md | 3 ++- docs/version-specific/supported-software/e/Extrae.md | 3 ++- docs/version-specific/supported-software/e/ExtremeLy.md | 3 ++- docs/version-specific/supported-software/e/e3nn.md | 3 ++- .../version-specific/supported-software/e/eQuilibrator.md | 3 ++- docs/version-specific/supported-software/e/eSpeak-NG.md | 3 ++- docs/version-specific/supported-software/e/eXpress.md | 3 ++- docs/version-specific/supported-software/e/ea-utils.md | 3 ++- .../supported-software/e/earthengine-api.md | 3 ++- docs/version-specific/supported-software/e/easel.md | 3 ++- docs/version-specific/supported-software/e/ebGSEA.md | 3 ++- docs/version-specific/supported-software/e/ecBuild.md | 3 ++- docs/version-specific/supported-software/e/ecCodes.md | 3 ++- docs/version-specific/supported-software/e/ecFlow.md | 3 ++- .../supported-software/e/eccodes-python.md | 3 ++- docs/version-specific/supported-software/e/eclib.md | 3 ++- docs/version-specific/supported-software/e/edlib.md | 3 ++- .../supported-software/e/eggnog-mapper.md | 3 ++- docs/version-specific/supported-software/e/eht-imaging.md | 3 ++- docs/version-specific/supported-software/e/einops.md | 3 ++- docs/version-specific/supported-software/e/elastix.md | 3 ++- docs/version-specific/supported-software/e/elbencho.md | 3 ++- docs/version-specific/supported-software/e/elfutils.md | 3 ++- docs/version-specific/supported-software/e/elprep.md | 3 ++- docs/version-specific/supported-software/e/emcee.md | 3 ++- .../supported-software/e/enaBrowserTool.md | 3 ++- docs/version-specific/supported-software/e/enchant-2.md | 3 ++- docs/version-specific/supported-software/e/enchant.md | 3 ++- docs/version-specific/supported-software/e/ensmallen.md | 3 ++- docs/version-specific/supported-software/e/entrypoints.md | 3 ++- docs/version-specific/supported-software/e/epct.md | 3 ++- docs/version-specific/supported-software/e/epiScanpy.md | 3 ++- docs/version-specific/supported-software/e/eudev.md | 3 ++- docs/version-specific/supported-software/e/evince.md | 3 ++- docs/version-specific/supported-software/e/evmix.md | 3 ++- docs/version-specific/supported-software/e/exiv2.md | 3 ++- docs/version-specific/supported-software/e/expat.md | 3 ++- docs/version-specific/supported-software/e/expect.md | 3 ++- docs/version-specific/supported-software/e/expecttest.md | 3 ++- docs/version-specific/supported-software/e/index.md | 8 +++++++- docs/version-specific/supported-software/f/FACE.md | 3 ++- docs/version-specific/supported-software/f/FALCON.md | 3 ++- docs/version-specific/supported-software/f/FANN.md | 3 ++- docs/version-specific/supported-software/f/FASTA.md | 3 ++- .../supported-software/f/FASTX-Toolkit.md | 3 ++- docs/version-specific/supported-software/f/FBPIC.md | 3 ++- docs/version-specific/supported-software/f/FCC.md | 3 ++- docs/version-specific/supported-software/f/FCM.md | 3 ++- docs/version-specific/supported-software/f/FDMNES.md | 3 ++- docs/version-specific/supported-software/f/FDS.md | 3 ++- .../supported-software/f/FDTD_Solutions.md | 3 ++- docs/version-specific/supported-software/f/FEniCS.md | 3 ++- docs/version-specific/supported-software/f/FFAVES.md | 3 ++- docs/version-specific/supported-software/f/FFC.md | 3 ++- .../version-specific/supported-software/f/FFLAS-FFPACK.md | 3 ++- docs/version-specific/supported-software/f/FFTW.MPI.md | 3 ++- docs/version-specific/supported-software/f/FFTW.md | 3 ++- docs/version-specific/supported-software/f/FFmpeg.md | 3 ++- docs/version-specific/supported-software/f/FGSL.md | 3 ++- docs/version-specific/supported-software/f/FHI-aims.md | 3 ++- docs/version-specific/supported-software/f/FIAT.md | 3 ++- docs/version-specific/supported-software/f/FIGARO.md | 3 ++- docs/version-specific/supported-software/f/FIRESTARTER.md | 3 ++- docs/version-specific/supported-software/f/FIX.md | 3 ++- docs/version-specific/supported-software/f/FIt-SNE.md | 3 ++- docs/version-specific/supported-software/f/FLAC.md | 3 ++- docs/version-specific/supported-software/f/FLAIR.md | 3 ++- docs/version-specific/supported-software/f/FLANN.md | 3 ++- docs/version-specific/supported-software/f/FLASH.md | 3 ++- docs/version-specific/supported-software/f/FLEUR.md | 3 ++- docs/version-specific/supported-software/f/FLINT.md | 3 ++- docs/version-specific/supported-software/f/FLTK.md | 3 ++- docs/version-specific/supported-software/f/FLUENT.md | 3 ++- docs/version-specific/supported-software/f/FMILibrary.md | 3 ++- docs/version-specific/supported-software/f/FMM3D.md | 3 ++- docs/version-specific/supported-software/f/FMPy.md | 3 ++- docs/version-specific/supported-software/f/FMRIprep.md | 3 ++- docs/version-specific/supported-software/f/FMS.md | 3 ++- docs/version-specific/supported-software/f/FORD.md | 3 ++- docs/version-specific/supported-software/f/FOX-Toolkit.md | 3 ++- docs/version-specific/supported-software/f/FPM.md | 3 ++- docs/version-specific/supported-software/f/FRANz.md | 3 ++- docs/version-specific/supported-software/f/FRUIT.md | 3 ++- .../supported-software/f/FRUIT_processor.md | 3 ++- docs/version-specific/supported-software/f/FSL.md | 3 ++- docs/version-specific/supported-software/f/FSLeyes.md | 3 ++- docs/version-specific/supported-software/f/FSON.md | 3 ++- docs/version-specific/supported-software/f/FTGL.md | 3 ++- docs/version-specific/supported-software/f/FUNWAVE-TVD.md | 3 ++- docs/version-specific/supported-software/f/FUSE.md | 3 ++- docs/version-specific/supported-software/f/FabIO.md | 3 ++- docs/version-specific/supported-software/f/Faber.md | 3 ++- docs/version-specific/supported-software/f/Faiss.md | 3 ++- docs/version-specific/supported-software/f/FastANI.md | 3 ++- docs/version-specific/supported-software/f/FastFold.md | 3 ++- docs/version-specific/supported-software/f/FastME.md | 3 ++- docs/version-specific/supported-software/f/FastQC.md | 3 ++- docs/version-specific/supported-software/f/FastQTL.md | 3 ++- .../version-specific/supported-software/f/FastQ_Screen.md | 3 ++- docs/version-specific/supported-software/f/FastRFS.md | 3 ++- docs/version-specific/supported-software/f/FastTree.md | 3 ++- .../supported-software/f/FastViromeExplorer.md | 3 ++- docs/version-specific/supported-software/f/FastaIndex.md | 3 ++- docs/version-specific/supported-software/f/Fastaq.md | 3 ++- docs/version-specific/supported-software/f/Ferret.md | 3 ++- docs/version-specific/supported-software/f/FigureGen.md | 3 ++- docs/version-specific/supported-software/f/Fiji.md | 3 ++- docs/version-specific/supported-software/f/Filtlong.md | 3 ++- docs/version-specific/supported-software/f/Fiona.md | 3 ++- docs/version-specific/supported-software/f/FireWorks.md | 3 ++- docs/version-specific/supported-software/f/Firefox.md | 3 ++- docs/version-specific/supported-software/f/Flask.md | 3 ++- docs/version-specific/supported-software/f/Flexbar.md | 3 ++- docs/version-specific/supported-software/f/FlexiBLAS.md | 3 ++- docs/version-specific/supported-software/f/FlexiDot.md | 3 ++- docs/version-specific/supported-software/f/Flink.md | 3 ++- docs/version-specific/supported-software/f/Flye.md | 3 ++- docs/version-specific/supported-software/f/FoBiS.md | 3 ++- docs/version-specific/supported-software/f/FoX.md | 3 ++- docs/version-specific/supported-software/f/FoldX.md | 3 ++- .../version-specific/supported-software/f/FragGeneScan.md | 3 ++- docs/version-specific/supported-software/f/FragPipe.md | 3 ++- .../version-specific/supported-software/f/FreeBarcodes.md | 3 ++- docs/version-specific/supported-software/f/FreeFEM.md | 3 ++- docs/version-specific/supported-software/f/FreeFem++.md | 3 ++- docs/version-specific/supported-software/f/FreeImage.md | 3 ++- docs/version-specific/supported-software/f/FreeSASA.md | 3 ++- docs/version-specific/supported-software/f/FreeSurfer.md | 3 ++- docs/version-specific/supported-software/f/FreeTDS.md | 3 ++- docs/version-specific/supported-software/f/FreeXL.md | 3 ++- docs/version-specific/supported-software/f/FriBidi.md | 3 ++- docs/version-specific/supported-software/f/FuSeq.md | 3 ++- docs/version-specific/supported-software/f/Fujitsu.md | 3 ++- docs/version-specific/supported-software/f/FunGAP.md | 3 ++- .../supported-software/f/FusionCatcher.md | 3 ++- docs/version-specific/supported-software/f/f90cache.md | 3 ++- docs/version-specific/supported-software/f/f90nml.md | 3 ++- docs/version-specific/supported-software/f/f90wrap.md | 3 ++- docs/version-specific/supported-software/f/faceswap.md | 3 ++- docs/version-specific/supported-software/f/fast5.md | 3 ++- docs/version-specific/supported-software/f/fastPHASE.md | 3 ++- .../supported-software/f/fastStructure.md | 3 ++- .../version-specific/supported-software/f/fasta-reader.md | 3 ++- docs/version-specific/supported-software/f/fastahack.md | 3 ++- docs/version-specific/supported-software/f/fastai.md | 3 ++- .../supported-software/f/fastjet-contrib.md | 3 ++- docs/version-specific/supported-software/f/fastjet.md | 3 ++- docs/version-specific/supported-software/f/fastml.md | 3 ++- docs/version-specific/supported-software/f/fastp.md | 3 ++- docs/version-specific/supported-software/f/fastparquet.md | 3 ++- docs/version-specific/supported-software/f/fastq-pair.md | 3 ++- docs/version-specific/supported-software/f/fastq-tools.md | 3 ++- .../supported-software/f/fastqsplitter.md | 3 ++- docs/version-specific/supported-software/f/fastqz.md | 3 ++- docs/version-specific/supported-software/f/fatslim.md | 3 ++- docs/version-specific/supported-software/f/fbm.md | 3 ++- docs/version-specific/supported-software/f/fdict.md | 3 ++- docs/version-specific/supported-software/f/fdstools.md | 3 ++- docs/version-specific/supported-software/f/feh.md | 3 ++- docs/version-specific/supported-software/f/fermi-lite.md | 3 ++- docs/version-specific/supported-software/f/festival.md | 3 ++- docs/version-specific/supported-software/f/fetchMG.md | 3 ++- docs/version-specific/supported-software/f/ffmpi.md | 3 ++- docs/version-specific/supported-software/f/ffnet.md | 3 ++- docs/version-specific/supported-software/f/ffnvcodec.md | 3 ++- docs/version-specific/supported-software/f/fftlib.md | 3 ++- docs/version-specific/supported-software/f/fgbio.md | 3 ++- docs/version-specific/supported-software/f/file.md | 3 ++- docs/version-specific/supported-software/f/filevercmp.md | 3 ++- docs/version-specific/supported-software/f/find_circ.md | 3 ++- docs/version-specific/supported-software/f/finder.md | 3 ++- docs/version-specific/supported-software/f/findhap.md | 3 ++- docs/version-specific/supported-software/f/findutils.md | 3 ++- .../supported-software/f/fineRADstructure.md | 3 ++- .../supported-software/f/fineSTRUCTURE.md | 3 ++- docs/version-specific/supported-software/f/fio.md | 3 ++- docs/version-specific/supported-software/f/fixesproto.md | 3 ++- docs/version-specific/supported-software/f/flair-NLP.md | 3 ++- .../supported-software/f/flatbuffers-python.md | 3 ++- docs/version-specific/supported-software/f/flatbuffers.md | 3 ++- docs/version-specific/supported-software/f/flex.md | 3 ++- docs/version-specific/supported-software/f/flit.md | 3 ++- docs/version-specific/supported-software/f/flook.md | 3 ++- docs/version-specific/supported-software/f/flowFDA.md | 3 ++- docs/version-specific/supported-software/f/fmt.md | 3 ++- docs/version-specific/supported-software/f/fontconfig.md | 3 ++- docs/version-specific/supported-software/f/fontsproto.md | 3 ++- docs/version-specific/supported-software/f/forbear.md | 3 ++- docs/version-specific/supported-software/f/foss.md | 3 ++- docs/version-specific/supported-software/f/fosscuda.md | 3 ++- docs/version-specific/supported-software/f/fplll.md | 3 ++- docs/version-specific/supported-software/f/fpocket.md | 3 ++- docs/version-specific/supported-software/f/fpylll.md | 3 ++- docs/version-specific/supported-software/f/fqtrim.md | 3 ++- docs/version-specific/supported-software/f/fqzcomp.md | 3 ++- docs/version-specific/supported-software/f/freebayes.md | 3 ++- docs/version-specific/supported-software/f/freeglut.md | 3 ++- docs/version-specific/supported-software/f/freetype-py.md | 3 ++- docs/version-specific/supported-software/f/freetype.md | 3 ++- .../supported-software/f/freud-analysis.md | 3 ++- docs/version-specific/supported-software/f/fsom.md | 3 ++- docs/version-specific/supported-software/f/ftfy.md | 3 ++- docs/version-specific/supported-software/f/fugue.md | 3 ++- docs/version-specific/supported-software/f/fullrmc.md | 3 ++- docs/version-specific/supported-software/f/fumi_tools.md | 3 ++- docs/version-specific/supported-software/f/funannotate.md | 3 ++- docs/version-specific/supported-software/f/futhark.md | 3 ++- docs/version-specific/supported-software/f/futile.md | 3 ++- docs/version-specific/supported-software/f/future.md | 3 ++- docs/version-specific/supported-software/f/fxtract.md | 3 ++- docs/version-specific/supported-software/f/index.md | 8 +++++++- docs/version-specific/supported-software/g/G-PhoCS.md | 3 ++- docs/version-specific/supported-software/g/GAMESS-US.md | 3 ++- docs/version-specific/supported-software/g/GAPPadder.md | 3 ++- docs/version-specific/supported-software/g/GARLI.md | 3 ++- docs/version-specific/supported-software/g/GAT.md | 3 ++- docs/version-specific/supported-software/g/GATB-Core.md | 3 ++- docs/version-specific/supported-software/g/GATE.md | 3 ++- docs/version-specific/supported-software/g/GATK.md | 3 ++- docs/version-specific/supported-software/g/GBprocesS.md | 3 ++- docs/version-specific/supported-software/g/GC3Pie.md | 3 ++- docs/version-specific/supported-software/g/GCC.md | 3 ++- docs/version-specific/supported-software/g/GCCcore.md | 3 ++- docs/version-specific/supported-software/g/GCTA.md | 3 ++- docs/version-specific/supported-software/g/GConf.md | 3 ++- docs/version-specific/supported-software/g/GD.md | 3 ++- docs/version-specific/supported-software/g/GDAL.md | 3 ++- docs/version-specific/supported-software/g/GDB.md | 3 ++- docs/version-specific/supported-software/g/GDCHART.md | 3 ++- docs/version-specific/supported-software/g/GDCM.md | 3 ++- docs/version-specific/supported-software/g/GDGraph.md | 3 ++- docs/version-specific/supported-software/g/GDRCopy.md | 3 ++- docs/version-specific/supported-software/g/GEGL.md | 3 ++- docs/version-specific/supported-software/g/GEM-library.md | 3 ++- docs/version-specific/supported-software/g/GEM.md | 3 ++- docs/version-specific/supported-software/g/GEMMA.md | 3 ++- docs/version-specific/supported-software/g/GEOS.md | 3 ++- docs/version-specific/supported-software/g/GETORB.md | 3 ++- .../version-specific/supported-software/g/GFF3-toolkit.md | 3 ++- docs/version-specific/supported-software/g/GFOLD.md | 3 ++- docs/version-specific/supported-software/g/GHC.md | 3 ++- docs/version-specific/supported-software/g/GI-DocGen.md | 3 ++- docs/version-specific/supported-software/g/GIMIC.md | 3 ++- docs/version-specific/supported-software/g/GIMP.md | 3 ++- docs/version-specific/supported-software/g/GIMPS.md | 3 ++- docs/version-specific/supported-software/g/GKeyll.md | 3 ++- docs/version-specific/supported-software/g/GKlib-METIS.md | 3 ++- docs/version-specific/supported-software/g/GL2PS.md | 3 ++- docs/version-specific/supported-software/g/GLFW.md | 3 ++- docs/version-specific/supported-software/g/GLI.md | 3 ++- docs/version-specific/supported-software/g/GLIMMER.md | 3 ++- docs/version-specific/supported-software/g/GLIMPSE.md | 3 ++- docs/version-specific/supported-software/g/GLM-AED.md | 3 ++- docs/version-specific/supported-software/g/GLM.md | 3 ++- docs/version-specific/supported-software/g/GLPK.md | 3 ++- docs/version-specific/supported-software/g/GLib.md | 3 ++- docs/version-specific/supported-software/g/GLibmm.md | 3 ++- docs/version-specific/supported-software/g/GMAP-GSNAP.md | 3 ++- docs/version-specific/supported-software/g/GMP-ECM.md | 3 ++- docs/version-specific/supported-software/g/GMP.md | 3 ++- docs/version-specific/supported-software/g/GMT.md | 3 ++- docs/version-specific/supported-software/g/GNU.md | 3 ++- docs/version-specific/supported-software/g/GOATOOLS.md | 3 ++- docs/version-specific/supported-software/g/GOBNILP.md | 3 ++- .../supported-software/g/GObject-Introspection.md | 3 ++- docs/version-specific/supported-software/g/GP2C.md | 3 ++- docs/version-specific/supported-software/g/GPAW-setups.md | 3 ++- docs/version-specific/supported-software/g/GPAW.md | 3 ++- docs/version-specific/supported-software/g/GPy.md | 3 ++- docs/version-specific/supported-software/g/GPyOpt.md | 3 ++- docs/version-specific/supported-software/g/GPyTorch.md | 3 ++- docs/version-specific/supported-software/g/GRASP-suite.md | 3 ++- docs/version-specific/supported-software/g/GRASP.md | 3 ++- docs/version-specific/supported-software/g/GRASS.md | 3 ++- docs/version-specific/supported-software/g/GRIDSS.md | 3 ++- docs/version-specific/supported-software/g/GRIT.md | 3 ++- docs/version-specific/supported-software/g/GRNBoost.md | 3 ++- docs/version-specific/supported-software/g/GROMACS.md | 3 ++- docs/version-specific/supported-software/g/GSD.md | 3 ++- docs/version-specific/supported-software/g/GSEA.md | 3 ++- docs/version-specific/supported-software/g/GSL.md | 3 ++- .../supported-software/g/GST-plugins-bad.md | 3 ++- .../supported-software/g/GST-plugins-base.md | 3 ++- docs/version-specific/supported-software/g/GStreamer.md | 3 ++- docs/version-specific/supported-software/g/GTDB-Tk.md | 3 ++- docs/version-specific/supported-software/g/GTK+.md | 3 ++- docs/version-specific/supported-software/g/GTK2.md | 3 ++- docs/version-specific/supported-software/g/GTK3.md | 3 ++- docs/version-specific/supported-software/g/GTK4.md | 3 ++- docs/version-specific/supported-software/g/GTOOL.md | 3 ++- docs/version-specific/supported-software/g/GTS.md | 3 ++- docs/version-specific/supported-software/g/GUIDANCE.md | 3 ++- docs/version-specific/supported-software/g/GULP.md | 3 ++- docs/version-specific/supported-software/g/GUSHR.md | 3 ++- docs/version-specific/supported-software/g/Gaia.md | 3 ++- docs/version-specific/supported-software/g/GapCloser.md | 3 ++- docs/version-specific/supported-software/g/GapFiller.md | 3 ++- docs/version-specific/supported-software/g/Gaussian.md | 3 ++- docs/version-specific/supported-software/g/Gblocks.md | 3 ++- docs/version-specific/supported-software/g/Gctf.md | 3 ++- docs/version-specific/supported-software/g/Gdk-Pixbuf.md | 3 ++- docs/version-specific/supported-software/g/Gdspy.md | 3 ++- docs/version-specific/supported-software/g/Geant4-data.md | 3 ++- docs/version-specific/supported-software/g/Geant4.md | 3 ++- docs/version-specific/supported-software/g/GenMap.md | 3 ++- docs/version-specific/supported-software/g/GeneMark-ET.md | 3 ++- .../supported-software/g/GenerativeModels.md | 3 ++- docs/version-specific/supported-software/g/GenomeComb.md | 3 ++- .../version-specific/supported-software/g/GenomeMapper.md | 3 ++- .../supported-software/g/GenomeTester4.md | 3 ++- .../supported-software/g/GenomeThreader.md | 3 ++- docs/version-specific/supported-software/g/GenomeTools.md | 3 ++- docs/version-specific/supported-software/g/GenomeWorks.md | 3 ++- .../supported-software/g/Genome_Profiler.md | 3 ++- .../supported-software/g/GenotypeHarmonizer.md | 3 ++- docs/version-specific/supported-software/g/Gerris.md | 3 ++- .../version-specific/supported-software/g/GetOrganelle.md | 3 ++- docs/version-specific/supported-software/g/GffCompare.md | 3 ++- docs/version-specific/supported-software/g/Ghostscript.md | 3 ++- docs/version-specific/supported-software/g/Gibbs2.md | 3 ++- docs/version-specific/supported-software/g/GimmeMotifs.md | 3 ++- .../version-specific/supported-software/g/Giotto-Suite.md | 3 ++- docs/version-specific/supported-software/g/GitPython.md | 3 ++- docs/version-specific/supported-software/g/Givaro.md | 3 ++- docs/version-specific/supported-software/g/Giza.md | 3 ++- docs/version-specific/supported-software/g/Glade.md | 3 ++- docs/version-specific/supported-software/g/GlimmerHMM.md | 3 ++- .../version-specific/supported-software/g/GlobalArrays.md | 3 ++- docs/version-specific/supported-software/g/Globus-CLI.md | 3 ++- .../supported-software/g/GlobusConnectPersonal.md | 3 ++- docs/version-specific/supported-software/g/Glucose.md | 3 ++- docs/version-specific/supported-software/g/GnuTLS.md | 3 ++- docs/version-specific/supported-software/g/Go.md | 3 ++- docs/version-specific/supported-software/g/Godon.md | 3 ++- docs/version-specific/supported-software/g/GraPhlAn.md | 3 ++- docs/version-specific/supported-software/g/Grace.md | 3 ++- docs/version-specific/supported-software/g/Gradle.md | 3 ++- docs/version-specific/supported-software/g/GraphDB.md | 3 ++- docs/version-specific/supported-software/g/GraphMap.md | 3 ++- docs/version-specific/supported-software/g/GraphMap2.md | 3 ++- docs/version-specific/supported-software/g/Graphene.md | 3 ++- .../supported-software/g/GraphicsMagick.md | 3 ++- docs/version-specific/supported-software/g/Graphviz.md | 3 ++- docs/version-specific/supported-software/g/Greenlet.md | 3 ++- docs/version-specific/supported-software/g/Grep.md | 3 ++- docs/version-specific/supported-software/g/GroIMP.md | 3 ++- .../supported-software/g/GromacsWrapper.md | 3 ++- docs/version-specific/supported-software/g/Groovy.md | 3 ++- .../supported-software/g/GtkSourceView.md | 3 ++- docs/version-specific/supported-software/g/Guile.md | 3 ++- docs/version-specific/supported-software/g/Gurobi.md | 3 ++- docs/version-specific/supported-software/g/g2clib.md | 3 ++- docs/version-specific/supported-software/g/g2lib.md | 3 ++- docs/version-specific/supported-software/g/g2log.md | 3 ++- docs/version-specific/supported-software/g/gRPC.md | 3 ++- docs/version-specific/supported-software/g/gSOAP.md | 3 ++- docs/version-specific/supported-software/g/gap.md | 3 ++- docs/version-specific/supported-software/g/gappa.md | 3 ++- docs/version-specific/supported-software/g/garnett.md | 3 ++- docs/version-specific/supported-software/g/gawk.md | 3 ++- docs/version-specific/supported-software/g/gbasis.md | 3 ++- docs/version-specific/supported-software/g/gbs2ploidy.md | 3 ++- docs/version-specific/supported-software/g/gc.md | 3 ++- docs/version-specific/supported-software/g/gcccuda.md | 3 ++- docs/version-specific/supported-software/g/gcloud.md | 3 ++- docs/version-specific/supported-software/g/gcsfs.md | 3 ++- docs/version-specific/supported-software/g/gdbgui.md | 3 ++- docs/version-specific/supported-software/g/gdbm.md | 3 ++- docs/version-specific/supported-software/g/gdc-client.md | 3 ++- docs/version-specific/supported-software/g/gdist.md | 3 ++- docs/version-specific/supported-software/g/gearshifft.md | 3 ++- docs/version-specific/supported-software/g/gemelli.md | 3 ++- docs/version-specific/supported-software/g/gemmi.md | 3 ++- .../supported-software/g/gencore_variant_detection.md | 3 ++- docs/version-specific/supported-software/g/gengetopt.md | 3 ++- docs/version-specific/supported-software/g/genomepy.md | 3 ++- docs/version-specific/supported-software/g/genozip.md | 3 ++- docs/version-specific/supported-software/g/gensim.md | 3 ++- docs/version-specific/supported-software/g/geocube.md | 3 ++- docs/version-specific/supported-software/g/geopandas.md | 3 ++- docs/version-specific/supported-software/g/geopy.md | 3 ++- docs/version-specific/supported-software/g/georges.md | 3 ++- docs/version-specific/supported-software/g/geosphere.md | 3 ++- docs/version-specific/supported-software/g/gettext.md | 3 ++- docs/version-specific/supported-software/g/gexiv2.md | 3 ++- docs/version-specific/supported-software/g/gfbf.md | 3 ++- docs/version-specific/supported-software/g/gffread.md | 3 ++- docs/version-specific/supported-software/g/gffutils.md | 3 ++- docs/version-specific/supported-software/g/gflags.md | 3 ++- docs/version-specific/supported-software/g/gh.md | 3 ++- docs/version-specific/supported-software/g/giac.md | 3 ++- docs/version-specific/supported-software/g/giflib.md | 3 ++- docs/version-specific/supported-software/g/gifsicle.md | 3 ++- docs/version-specific/supported-software/g/gimkl.md | 3 ++- docs/version-specific/supported-software/g/gimpi.md | 3 ++- docs/version-specific/supported-software/g/gimpic.md | 3 ++- docs/version-specific/supported-software/g/giolf.md | 3 ++- docs/version-specific/supported-software/g/giolfc.md | 3 ++- docs/version-specific/supported-software/g/git-annex.md | 3 ++- docs/version-specific/supported-software/g/git-extras.md | 3 ++- docs/version-specific/supported-software/g/git-lfs.md | 3 ++- docs/version-specific/supported-software/g/git.md | 3 ++- docs/version-specific/supported-software/g/gkmSVM.md | 3 ++- docs/version-specific/supported-software/g/glew.md | 3 ++- .../supported-software/g/glib-networking.md | 3 ++- docs/version-specific/supported-software/g/glibc.md | 3 ++- docs/version-specific/supported-software/g/glog.md | 3 ++- docs/version-specific/supported-software/g/glproto.md | 3 ++- docs/version-specific/supported-software/g/gmpich.md | 3 ++- docs/version-specific/supported-software/g/gmpolf.md | 3 ++- docs/version-specific/supported-software/g/gmpy2.md | 3 ++- docs/version-specific/supported-software/g/gmsh.md | 3 ++- docs/version-specific/supported-software/g/gmvapich2.md | 3 ++- docs/version-specific/supported-software/g/gmvolf.md | 3 ++- .../version-specific/supported-software/g/gnupg-bundle.md | 3 ++- docs/version-specific/supported-software/g/gnuplot.md | 3 ++- docs/version-specific/supported-software/g/goalign.md | 3 ++- docs/version-specific/supported-software/g/gobff.md | 3 ++- docs/version-specific/supported-software/g/goblf.md | 3 ++- docs/version-specific/supported-software/g/gofasta.md | 3 ++- docs/version-specific/supported-software/g/golf.md | 3 ++- docs/version-specific/supported-software/g/gomkl.md | 3 ++- docs/version-specific/supported-software/g/gompi.md | 3 ++- docs/version-specific/supported-software/g/gompic.md | 3 ++- .../supported-software/g/google-java-format.md | 3 ++- docs/version-specific/supported-software/g/googletest.md | 3 ++- docs/version-specific/supported-software/g/gotree.md | 3 ++- docs/version-specific/supported-software/g/gperf.md | 3 ++- docs/version-specific/supported-software/g/gperftools.md | 3 ++- docs/version-specific/supported-software/g/gpustat.md | 3 ++- docs/version-specific/supported-software/g/gradunwarp.md | 3 ++- docs/version-specific/supported-software/g/graph-tool.md | 3 ++- docs/version-specific/supported-software/g/graphite2.md | 3 ++- .../supported-software/g/graphviz-python.md | 3 ++- docs/version-specific/supported-software/g/gretl.md | 3 ++- docs/version-specific/supported-software/g/grib_api.md | 3 ++- docs/version-specific/supported-software/g/grid.md | 3 ++- docs/version-specific/supported-software/g/groff.md | 3 ++- docs/version-specific/supported-software/g/grpcio.md | 3 ++- .../supported-software/g/gsettings-desktop-schemas.md | 3 ++- docs/version-specific/supported-software/g/gspell.md | 3 ++- docs/version-specific/supported-software/g/gsport.md | 3 ++- docs/version-specific/supported-software/g/gsutil.md | 3 ++- docs/version-specific/supported-software/g/gsw.md | 3 ++- docs/version-specific/supported-software/g/gubbins.md | 3 ++- docs/version-specific/supported-software/g/guenomu.md | 3 ++- docs/version-specific/supported-software/g/gzip.md | 3 ++- docs/version-specific/supported-software/g/index.md | 8 +++++++- docs/version-specific/supported-software/h/H5hut.md | 3 ++- docs/version-specific/supported-software/h/HAL.md | 3 ++- docs/version-specific/supported-software/h/HAPGEN2.md | 3 ++- docs/version-specific/supported-software/h/HBase.md | 3 ++- docs/version-specific/supported-software/h/HD-BET.md | 3 ++- docs/version-specific/supported-software/h/HDBSCAN.md | 3 ++- docs/version-specific/supported-software/h/HDDM.md | 3 ++- docs/version-specific/supported-software/h/HDF-EOS.md | 3 ++- docs/version-specific/supported-software/h/HDF-EOS2.md | 3 ++- docs/version-specific/supported-software/h/HDF-EOS5.md | 3 ++- docs/version-specific/supported-software/h/HDF.md | 3 ++- docs/version-specific/supported-software/h/HDF5.md | 3 ++- docs/version-specific/supported-software/h/HDFView.md | 3 ++- docs/version-specific/supported-software/h/HEALPix.md | 3 ++- docs/version-specific/supported-software/h/HF-Datasets.md | 3 ++- docs/version-specific/supported-software/h/HH-suite.md | 3 ++- docs/version-specific/supported-software/h/HIP.md | 3 ++- docs/version-specific/supported-software/h/HIPS.md | 3 ++- docs/version-specific/supported-software/h/HISAT2.md | 3 ++- docs/version-specific/supported-software/h/HLAminer.md | 3 ++- docs/version-specific/supported-software/h/HMMER.md | 3 ++- docs/version-specific/supported-software/h/HMMER2.md | 3 ++- docs/version-specific/supported-software/h/HOME.md | 3 ++- docs/version-specific/supported-software/h/HOMER.md | 3 ++- docs/version-specific/supported-software/h/HOOMD-blue.md | 3 ++- docs/version-specific/supported-software/h/HPCC.md | 3 ++- docs/version-specific/supported-software/h/HPCG.md | 3 ++- docs/version-specific/supported-software/h/HPCX.md | 3 ++- docs/version-specific/supported-software/h/HPDBSCAN.md | 3 ++- docs/version-specific/supported-software/h/HPL.md | 3 ++- docs/version-specific/supported-software/h/HTSeq.md | 3 ++- docs/version-specific/supported-software/h/HTSlib.md | 3 ++- docs/version-specific/supported-software/h/HTSplotter.md | 3 ++- docs/version-specific/supported-software/h/Hadoop.md | 3 ++- docs/version-specific/supported-software/h/HarfBuzz.md | 3 ++- docs/version-specific/supported-software/h/Harminv.md | 3 ++- docs/version-specific/supported-software/h/HeFFTe.md | 3 ++- docs/version-specific/supported-software/h/Health-GPS.md | 3 ++- docs/version-specific/supported-software/h/Hello.md | 3 ++- docs/version-specific/supported-software/h/HepMC.md | 3 ++- docs/version-specific/supported-software/h/HepMC3.md | 3 ++- docs/version-specific/supported-software/h/HiC-Pro.md | 3 ++- docs/version-specific/supported-software/h/HiCExplorer.md | 3 ++- docs/version-specific/supported-software/h/HiCMatrix.md | 3 ++- docs/version-specific/supported-software/h/HiGHS.md | 3 ++- docs/version-specific/supported-software/h/HighFive.md | 3 ++- docs/version-specific/supported-software/h/Highway.md | 3 ++- docs/version-specific/supported-software/h/Horovod.md | 3 ++- docs/version-specific/supported-software/h/HyPhy.md | 3 ++- docs/version-specific/supported-software/h/HyPo.md | 3 ++- docs/version-specific/supported-software/h/Hybpiper.md | 3 ++- docs/version-specific/supported-software/h/Hydra.md | 3 ++- docs/version-specific/supported-software/h/HyperQueue.md | 3 ++- docs/version-specific/supported-software/h/Hyperopt.md | 3 ++- docs/version-specific/supported-software/h/Hypre.md | 3 ++- docs/version-specific/supported-software/h/h4toh5.md | 3 ++- docs/version-specific/supported-software/h/h5netcdf.md | 3 ++- docs/version-specific/supported-software/h/h5py.md | 3 ++- docs/version-specific/supported-software/h/hampel.md | 3 ++- .../supported-software/h/hanythingondemand.md | 3 ++- docs/version-specific/supported-software/h/harmony.md | 3 ++- .../supported-software/h/hatch-jupyter-builder.md | 3 ++- docs/version-specific/supported-software/h/hatchling.md | 3 ++- docs/version-specific/supported-software/h/hdWGCNA.md | 3 ++- docs/version-specific/supported-software/h/hdf5storage.md | 3 ++- docs/version-specific/supported-software/h/heaptrack.md | 3 ++- docs/version-specific/supported-software/h/hector.md | 3 ++- docs/version-specific/supported-software/h/help2man.md | 3 ++- docs/version-specific/supported-software/h/hevea.md | 3 ++- docs/version-specific/supported-software/h/hic-straw.md | 3 ++- docs/version-specific/supported-software/h/hierfstat.md | 3 ++- docs/version-specific/supported-software/h/hifiasm.md | 3 ++- docs/version-specific/supported-software/h/hipSYCL.md | 3 ++- .../version-specific/supported-software/h/hipify-clang.md | 3 ++- docs/version-specific/supported-software/h/hiredis.md | 3 ++- docs/version-specific/supported-software/h/histolab.md | 3 ++- docs/version-specific/supported-software/h/hivtrace.md | 3 ++- docs/version-specific/supported-software/h/hl7apy.md | 3 ++- .../supported-software/h/hmmcopy_utils.md | 3 ++- docs/version-specific/supported-software/h/hmmlearn.md | 3 ++- docs/version-specific/supported-software/h/horton.md | 3 ++- .../supported-software/h/how_are_we_stranded_here.md | 3 ++- docs/version-specific/supported-software/h/htop.md | 3 ++- docs/version-specific/supported-software/h/hub.md | 3 ++- docs/version-specific/supported-software/h/humann.md | 3 ++- docs/version-specific/supported-software/h/hunspell.md | 3 ++- docs/version-specific/supported-software/h/hwloc.md | 3 ++- docs/version-specific/supported-software/h/hyperspy.md | 3 ++- docs/version-specific/supported-software/h/hypothesis.md | 3 ++- docs/version-specific/supported-software/h/index.md | 8 +++++++- docs/version-specific/supported-software/i/I-TASSER.md | 3 ++- docs/version-specific/supported-software/i/ICA-AROMA.md | 3 ++- docs/version-specific/supported-software/i/ICON.md | 3 ++- docs/version-specific/supported-software/i/ICU.md | 3 ++- docs/version-specific/supported-software/i/IDBA-UD.md | 3 ++- docs/version-specific/supported-software/i/IDG.md | 3 ++- docs/version-specific/supported-software/i/IGMPlot.md | 3 ++- docs/version-specific/supported-software/i/IGV.md | 3 ++- docs/version-specific/supported-software/i/IGVTools.md | 3 ++- docs/version-specific/supported-software/i/IJulia.md | 3 ++- docs/version-specific/supported-software/i/ILAMB.md | 3 ++- docs/version-specific/supported-software/i/IMB.md | 3 ++- docs/version-specific/supported-software/i/IML.md | 3 ++- docs/version-specific/supported-software/i/IMOD.md | 3 ++- docs/version-specific/supported-software/i/IMPUTE2.md | 3 ++- docs/version-specific/supported-software/i/IMa2.md | 3 ++- docs/version-specific/supported-software/i/IMa2p.md | 3 ++- .../supported-software/i/INTEGRATE-Neo.md | 3 ++- docs/version-specific/supported-software/i/INTEGRATE.md | 3 ++- docs/version-specific/supported-software/i/IOR.md | 3 ++- docs/version-specific/supported-software/i/IOzone.md | 3 ++- docs/version-specific/supported-software/i/IPM.md | 3 ++- docs/version-specific/supported-software/i/IPy.md | 3 ++- docs/version-specific/supported-software/i/IPython.md | 3 ++- docs/version-specific/supported-software/i/IQ-TREE.md | 3 ++- docs/version-specific/supported-software/i/IRkernel.md | 3 ++- docs/version-specific/supported-software/i/ISA-L.md | 3 ++- docs/version-specific/supported-software/i/ISL.md | 3 ++- docs/version-specific/supported-software/i/ITK.md | 3 ++- docs/version-specific/supported-software/i/ITSTool.md | 3 ++- docs/version-specific/supported-software/i/ITSx.md | 3 ++- docs/version-specific/supported-software/i/IgBLAST.md | 3 ++- docs/version-specific/supported-software/i/ImageJ.md | 3 ++- docs/version-specific/supported-software/i/ImageMagick.md | 3 ++- docs/version-specific/supported-software/i/Imath.md | 3 ++- docs/version-specific/supported-software/i/Imlib2.md | 3 ++- docs/version-specific/supported-software/i/InChI.md | 3 ++- docs/version-specific/supported-software/i/InParanoid.md | 3 ++- docs/version-specific/supported-software/i/Inelastica.md | 3 ++- docs/version-specific/supported-software/i/Inferelator.md | 3 ++- docs/version-specific/supported-software/i/Infernal.md | 3 ++- docs/version-specific/supported-software/i/Infomap.md | 3 ++- docs/version-specific/supported-software/i/Inspector.md | 3 ++- docs/version-specific/supported-software/i/IntaRNA.md | 3 ++- .../supported-software/i/IntelClusterChecker.md | 3 ++- docs/version-specific/supported-software/i/IntelDAAL.md | 3 ++- docs/version-specific/supported-software/i/IntelPython.md | 3 ++- docs/version-specific/supported-software/i/InterOp.md | 3 ++- .../version-specific/supported-software/i/InterProScan.md | 3 ++- .../supported-software/i/InterProScan_data.md | 3 ++- docs/version-specific/supported-software/i/IonQuant.md | 3 ++- docs/version-specific/supported-software/i/Ipopt.md | 3 ++- docs/version-specific/supported-software/i/Iris.md | 3 ++- docs/version-specific/supported-software/i/IronPython.md | 3 ++- docs/version-specific/supported-software/i/IsoNet.md | 3 ++- docs/version-specific/supported-software/i/IsoQuant.md | 3 ++- docs/version-specific/supported-software/i/IsoSeq.md | 3 ++- .../supported-software/i/IsoformSwitchAnalyzeR.md | 3 ++- docs/version-specific/supported-software/i/i-PI.md | 3 ++- docs/version-specific/supported-software/i/i-cisTarget.md | 3 ++- docs/version-specific/supported-software/i/i7z.md | 3 ++- docs/version-specific/supported-software/i/iCount.md | 3 ++- docs/version-specific/supported-software/i/iVar.md | 3 ++- docs/version-specific/supported-software/i/icc.md | 3 ++- docs/version-specific/supported-software/i/iccifort.md | 3 ++- .../version-specific/supported-software/i/iccifortcuda.md | 3 ++- docs/version-specific/supported-software/i/iced.md | 3 ++- docs/version-specific/supported-software/i/ichorCNA.md | 3 ++- docs/version-specific/supported-software/i/icmake.md | 3 ++- docs/version-specific/supported-software/i/idemux.md | 3 ++- docs/version-specific/supported-software/i/ieeg-cli.md | 3 ++- docs/version-specific/supported-software/i/ifort.md | 3 ++- docs/version-specific/supported-software/i/igraph.md | 3 ++- docs/version-specific/supported-software/i/igv-reports.md | 3 ++- docs/version-specific/supported-software/i/igvShiny.md | 3 ++- docs/version-specific/supported-software/i/iibff.md | 3 ++- docs/version-specific/supported-software/i/iimkl.md | 3 ++- docs/version-specific/supported-software/i/iimpi.md | 3 ++- docs/version-specific/supported-software/i/iimpic.md | 3 ++- docs/version-specific/supported-software/i/imagecodecs.md | 3 ++- docs/version-specific/supported-software/i/imageio.md | 3 ++- docs/version-specific/supported-software/i/imake.md | 3 ++- .../supported-software/i/imbalanced-learn.md | 3 ++- docs/version-specific/supported-software/i/imgaug.md | 3 ++- docs/version-specific/supported-software/i/imkl-FFTW.md | 3 ++- docs/version-specific/supported-software/i/imkl.md | 3 ++- .../version-specific/supported-software/i/immunedeconv.md | 3 ++- docs/version-specific/supported-software/i/impi.md | 3 ++- docs/version-specific/supported-software/i/imutils.md | 3 ++- docs/version-specific/supported-software/i/index.md | 8 +++++++- docs/version-specific/supported-software/i/indicators.md | 3 ++- docs/version-specific/supported-software/i/inferCNV.md | 3 ++- docs/version-specific/supported-software/i/infercnvpy.md | 3 ++- docs/version-specific/supported-software/i/inflection.md | 3 ++- docs/version-specific/supported-software/i/inih.md | 3 ++- docs/version-specific/supported-software/i/inline.md | 3 ++- docs/version-specific/supported-software/i/inputproto.md | 3 ++- .../supported-software/i/intel-compilers.md | 3 ++- docs/version-specific/supported-software/i/intel.md | 3 ++- docs/version-specific/supported-software/i/intelcuda.md | 3 ++- .../supported-software/i/intervaltree-python.md | 3 ++- .../version-specific/supported-software/i/intervaltree.md | 3 ++- docs/version-specific/supported-software/i/intltool.md | 3 ++- docs/version-specific/supported-software/i/io_lib.md | 3 ++- docs/version-specific/supported-software/i/ioapi.md | 3 ++- docs/version-specific/supported-software/i/iodata.md | 3 ++- docs/version-specific/supported-software/i/iomkl.md | 3 ++- docs/version-specific/supported-software/i/iompi.md | 3 ++- docs/version-specific/supported-software/i/iperf.md | 3 ++- docs/version-specific/supported-software/i/ipp.md | 3 ++- docs/version-specific/supported-software/i/ipympl.md | 3 ++- docs/version-specific/supported-software/i/ipyparallel.md | 3 ++- docs/version-specific/supported-software/i/ipyrad.md | 3 ++- docs/version-specific/supported-software/i/irodsfs.md | 3 ++- docs/version-specific/supported-software/i/isoCirc.md | 3 ++- docs/version-specific/supported-software/i/ispc.md | 3 ++- docs/version-specific/supported-software/i/itac.md | 3 ++- docs/version-specific/supported-software/i/itpp.md | 3 ++- docs/version-specific/supported-software/index.md | 6 ++++++ docs/version-specific/supported-software/j/JAGS.md | 3 ++- docs/version-specific/supported-software/j/JAXFrontCE.md | 3 ++- docs/version-specific/supported-software/j/JSON-GLib.md | 3 ++- docs/version-specific/supported-software/j/JUBE.md | 3 ++- docs/version-specific/supported-software/j/JUnit.md | 3 ++- docs/version-specific/supported-software/j/JWM.md | 3 ++- docs/version-specific/supported-software/j/Jansson.md | 3 ++- docs/version-specific/supported-software/j/JasPer.md | 3 ++- docs/version-specific/supported-software/j/Jasmine.md | 3 ++- docs/version-specific/supported-software/j/Java.md | 3 ++- docs/version-specific/supported-software/j/JavaFX.md | 3 ++- docs/version-specific/supported-software/j/Jblob.md | 3 ++- docs/version-specific/supported-software/j/Jellyfish.md | 3 ++- docs/version-specific/supported-software/j/JiTCODE.md | 3 ++- docs/version-specific/supported-software/j/Jmol.md | 3 ++- docs/version-specific/supported-software/j/Jorg.md | 3 ++- docs/version-specific/supported-software/j/JsonCpp.md | 3 ++- docs/version-specific/supported-software/j/Judy.md | 3 ++- docs/version-specific/supported-software/j/Julia.md | 3 ++- .../supported-software/j/Jupyter-bundle.md | 3 ++- docs/version-specific/supported-software/j/JupyterHub.md | 3 ++- docs/version-specific/supported-software/j/JupyterLab.md | 3 ++- .../supported-software/j/JupyterNotebook.md | 3 ++- docs/version-specific/supported-software/j/index.md | 8 +++++++- docs/version-specific/supported-software/j/jModelTest.md | 3 ++- docs/version-specific/supported-software/j/jax.md | 3 ++- docs/version-specific/supported-software/j/jbigkit.md | 3 ++- .../supported-software/j/jedi-language-server.md | 3 ++- docs/version-specific/supported-software/j/jedi.md | 3 ++- docs/version-specific/supported-software/j/jemalloc.md | 3 ++- docs/version-specific/supported-software/j/jhbuild.md | 3 ++- docs/version-specific/supported-software/j/jiter.md | 3 ++- docs/version-specific/supported-software/j/joypy.md | 3 ++- docs/version-specific/supported-software/j/jq.md | 3 ++- docs/version-specific/supported-software/j/json-c.md | 3 ++- .../version-specific/supported-software/j/json-fortran.md | 3 ++- .../supported-software/j/jupyter-contrib-nbextensions.md | 3 ++- .../supported-software/j/jupyter-matlab-proxy.md | 3 ++- .../supported-software/j/jupyter-resource-usage.md | 3 ++- .../supported-software/j/jupyter-rsession-proxy.md | 3 ++- .../supported-software/j/jupyter-server-proxy.md | 3 ++- .../supported-software/j/jupyter-server.md | 3 ++- .../supported-software/j/jupyterlab-lmod.md | 3 ++- docs/version-specific/supported-software/j/jupyterlmod.md | 3 ++- docs/version-specific/supported-software/j/jxrlib.md | 3 ++- docs/version-specific/supported-software/k/KAT.md | 3 ++- docs/version-specific/supported-software/k/KITE.md | 3 ++- docs/version-specific/supported-software/k/KMC.md | 3 ++- docs/version-specific/supported-software/k/KMCP.md | 3 ++- docs/version-specific/supported-software/k/KNIME.md | 3 ++- docs/version-specific/supported-software/k/KWIML.md | 3 ++- docs/version-specific/supported-software/k/KaHIP.md | 3 ++- docs/version-specific/supported-software/k/Kaiju.md | 3 ++- docs/version-specific/supported-software/k/Kaleido.md | 3 ++- docs/version-specific/supported-software/k/Kalign.md | 3 ++- docs/version-specific/supported-software/k/Kent_tools.md | 3 ++- docs/version-specific/supported-software/k/Keras.md | 3 ++- docs/version-specific/supported-software/k/KerasTuner.md | 3 ++- docs/version-specific/supported-software/k/KmerGenie.md | 3 ++- docs/version-specific/supported-software/k/Kraken.md | 3 ++- docs/version-specific/supported-software/k/Kraken2.md | 3 ++- docs/version-specific/supported-software/k/KrakenUniq.md | 3 ++- docs/version-specific/supported-software/k/Kratos.md | 3 ++- docs/version-specific/supported-software/k/KronaTools.md | 3 ++- .../version-specific/supported-software/k/KyotoCabinet.md | 3 ++- docs/version-specific/supported-software/k/index.md | 8 +++++++- docs/version-specific/supported-software/k/kWIP.md | 3 ++- docs/version-specific/supported-software/k/kallisto.md | 3 ++- docs/version-specific/supported-software/k/kb-python.md | 3 ++- docs/version-specific/supported-software/k/kbproto.md | 3 ++- docs/version-specific/supported-software/k/kedro.md | 3 ++- docs/version-specific/supported-software/k/khmer.md | 3 ++- docs/version-specific/supported-software/k/kim-api.md | 3 ++- docs/version-specific/supported-software/k/kineto.md | 3 ++- docs/version-specific/supported-software/k/king.md | 3 ++- docs/version-specific/supported-software/k/kma.md | 3 ++- docs/version-specific/supported-software/k/kneaddata.md | 3 ++- docs/version-specific/supported-software/k/kpcalg.md | 3 ++- docs/version-specific/supported-software/k/krbalancing.md | 3 ++- docs/version-specific/supported-software/k/kwant.md | 3 ++- docs/version-specific/supported-software/l/LADR.md | 3 ++- docs/version-specific/supported-software/l/LAME.md | 3 ++- docs/version-specific/supported-software/l/LAMMPS.md | 3 ++- docs/version-specific/supported-software/l/LAPACK.md | 3 ++- .../version-specific/supported-software/l/LASSO-Python.md | 3 ++- docs/version-specific/supported-software/l/LAST.md | 3 ++- docs/version-specific/supported-software/l/LASTZ.md | 3 ++- docs/version-specific/supported-software/l/LBFGS++.md | 3 ++- docs/version-specific/supported-software/l/LCov.md | 3 ++- docs/version-specific/supported-software/l/LDC.md | 3 ++- docs/version-specific/supported-software/l/LEMON.md | 3 ++- docs/version-specific/supported-software/l/LERC.md | 3 ++- docs/version-specific/supported-software/l/LHAPDF.md | 3 ++- docs/version-specific/supported-software/l/LIANA.md | 3 ++- .../supported-software/l/LIBSVM-MATLAB.md | 3 ++- .../supported-software/l/LIBSVM-Python.md | 3 ++- docs/version-specific/supported-software/l/LIBSVM.md | 3 ++- docs/version-specific/supported-software/l/LISFLOOD-FP.md | 3 ++- docs/version-specific/supported-software/l/LLDB.md | 3 ++- docs/version-specific/supported-software/l/LLVM.md | 3 ++- docs/version-specific/supported-software/l/LMDB.md | 3 ++- docs/version-specific/supported-software/l/LMfit.md | 3 ++- docs/version-specific/supported-software/l/LOHHLA.md | 3 ++- docs/version-specific/supported-software/l/LPJmL.md | 3 ++- docs/version-specific/supported-software/l/LPeg.md | 3 ++- docs/version-specific/supported-software/l/LS-PrePost.md | 3 ++- docs/version-specific/supported-software/l/LSD2.md | 3 ++- docs/version-specific/supported-software/l/LSMS.md | 3 ++- .../supported-software/l/LTR_retriever.md | 3 ++- docs/version-specific/supported-software/l/LUMPY.md | 3 ++- docs/version-specific/supported-software/l/LUSCUS.md | 3 ++- docs/version-specific/supported-software/l/LZO.md | 3 ++- .../supported-software/l/L_RNA_scaffolder.md | 3 ++- .../supported-software/l/Lab-Streaming-Layer.md | 3 ++- docs/version-specific/supported-software/l/Lace.md | 3 ++- docs/version-specific/supported-software/l/LangChain.md | 3 ++- .../version-specific/supported-software/l/LayoutParser.md | 3 ++- docs/version-specific/supported-software/l/LeadIT.md | 3 ++- docs/version-specific/supported-software/l/Leptonica.md | 3 ++- docs/version-specific/supported-software/l/LevelDB.md | 3 ++- docs/version-specific/supported-software/l/Levenshtein.md | 3 ++- docs/version-specific/supported-software/l/LiBis.md | 3 ++- docs/version-specific/supported-software/l/LibLZF.md | 3 ++- docs/version-specific/supported-software/l/LibSoup.md | 3 ++- docs/version-specific/supported-software/l/LibTIFF.md | 3 ++- docs/version-specific/supported-software/l/LibUUID.md | 3 ++- docs/version-specific/supported-software/l/Libint.md | 3 ++- docs/version-specific/supported-software/l/Lighter.md | 3 ++- docs/version-specific/supported-software/l/Lightning.md | 3 ++- docs/version-specific/supported-software/l/LinBox.md | 3 ++- docs/version-specific/supported-software/l/Lingeling.md | 3 ++- docs/version-specific/supported-software/l/LittleCMS.md | 3 ++- docs/version-specific/supported-software/l/Lmod.md | 3 ++- docs/version-specific/supported-software/l/LncLOOM.md | 3 ++- docs/version-specific/supported-software/l/LoFreq.md | 3 ++- docs/version-specific/supported-software/l/LoRDEC.md | 3 ++- docs/version-specific/supported-software/l/LocARNA.md | 3 ++- .../version-specific/supported-software/l/Log-Log4perl.md | 3 ++- docs/version-specific/supported-software/l/Loki.md | 3 ++- docs/version-specific/supported-software/l/Longshot.md | 3 ++- docs/version-specific/supported-software/l/LoopTools.md | 3 ++- docs/version-specific/supported-software/l/LtrDetector.md | 3 ++- docs/version-specific/supported-software/l/Lua.md | 3 ++- docs/version-specific/supported-software/l/LuaJIT.md | 3 ++- .../supported-software/l/LuaJIT2-OpenResty.md | 3 ++- docs/version-specific/supported-software/l/LuaRocks.md | 3 ++- .../supported-software/l/Lucene-Geo-Gazetteer.md | 3 ++- docs/version-specific/supported-software/l/index.md | 8 +++++++- docs/version-specific/supported-software/l/lDDT.md | 3 ++- .../supported-software/l/lagrangian-filtering.md | 3 ++- docs/version-specific/supported-software/l/lancet.md | 3 ++- .../supported-software/l/langchain-anthropic.md | 3 ++- docs/version-specific/supported-software/l/lavaan.md | 3 ++- docs/version-specific/supported-software/l/lcalc.md | 3 ++- docs/version-specific/supported-software/l/leafcutter.md | 3 ++- docs/version-specific/supported-software/l/leidenalg.md | 3 ++- docs/version-specific/supported-software/l/less.md | 3 ++- docs/version-specific/supported-software/l/lftp.md | 3 ++- docs/version-specific/supported-software/l/libBigWig.md | 3 ++- docs/version-specific/supported-software/l/libFLAME.md | 3 ++- docs/version-specific/supported-software/l/libGDSII.md | 3 ++- docs/version-specific/supported-software/l/libGLU.md | 3 ++- docs/version-specific/supported-software/l/libGridXC.md | 3 ++- docs/version-specific/supported-software/l/libICE.md | 3 ++- .../version-specific/supported-software/l/libMemcached.md | 3 ++- docs/version-specific/supported-software/l/libPSML.md | 3 ++- .../version-specific/supported-software/l/libQGLViewer.md | 3 ++- docs/version-specific/supported-software/l/libRmath.md | 3 ++- docs/version-specific/supported-software/l/libSBML.md | 3 ++- docs/version-specific/supported-software/l/libSM.md | 3 ++- docs/version-specific/supported-software/l/libStatGen.md | 3 ++- .../supported-software/l/libWallModelledLES.md | 3 ++- docs/version-specific/supported-software/l/libX11.md | 3 ++- docs/version-specific/supported-software/l/libXau.md | 3 ++- docs/version-specific/supported-software/l/libXcursor.md | 3 ++- docs/version-specific/supported-software/l/libXdamage.md | 3 ++- docs/version-specific/supported-software/l/libXdmcp.md | 3 ++- docs/version-specific/supported-software/l/libXext.md | 3 ++- docs/version-specific/supported-software/l/libXfixes.md | 3 ++- docs/version-specific/supported-software/l/libXfont.md | 3 ++- docs/version-specific/supported-software/l/libXft.md | 3 ++- docs/version-specific/supported-software/l/libXi.md | 3 ++- docs/version-specific/supported-software/l/libXinerama.md | 3 ++- docs/version-specific/supported-software/l/libXmu.md | 3 ++- docs/version-specific/supported-software/l/libXp.md | 3 ++- docs/version-specific/supported-software/l/libXpm.md | 3 ++- docs/version-specific/supported-software/l/libXrandr.md | 3 ++- docs/version-specific/supported-software/l/libXrender.md | 3 ++- docs/version-specific/supported-software/l/libXt.md | 3 ++- docs/version-specific/supported-software/l/libXxf86vm.md | 3 ++- docs/version-specific/supported-software/l/libabigail.md | 3 ++- docs/version-specific/supported-software/l/libaec.md | 3 ++- docs/version-specific/supported-software/l/libaed2.md | 3 ++- docs/version-specific/supported-software/l/libaio.md | 3 ++- docs/version-specific/supported-software/l/libarchive.md | 3 ++- docs/version-specific/supported-software/l/libav.md | 3 ++- docs/version-specific/supported-software/l/libavif.md | 3 ++- .../supported-software/l/libbaseencode.md | 3 ++- docs/version-specific/supported-software/l/libbitmask.md | 3 ++- docs/version-specific/supported-software/l/libbraiding.md | 3 ++- docs/version-specific/supported-software/l/libcdms.md | 3 ++- docs/version-specific/supported-software/l/libcerf.md | 3 ++- docs/version-specific/supported-software/l/libcint.md | 3 ++- docs/version-specific/supported-software/l/libcircle.md | 3 ++- docs/version-specific/supported-software/l/libcmaes.md | 3 ++- docs/version-specific/supported-software/l/libconfig.md | 3 ++- docs/version-specific/supported-software/l/libcotp.md | 3 ++- docs/version-specific/supported-software/l/libcpuset.md | 3 ++- docs/version-specific/supported-software/l/libcroco.md | 3 ++- docs/version-specific/supported-software/l/libctl.md | 3 ++- docs/version-specific/supported-software/l/libdap.md | 3 ++- docs/version-specific/supported-software/l/libde265.md | 3 ++- docs/version-specific/supported-software/l/libdeflate.md | 3 ++- .../supported-software/l/libdivsufsort.md | 3 ++- docs/version-specific/supported-software/l/libdrm.md | 3 ++- docs/version-specific/supported-software/l/libdrs.md | 3 ++- docs/version-specific/supported-software/l/libdwarf.md | 3 ++- docs/version-specific/supported-software/l/libedit.md | 3 ++- docs/version-specific/supported-software/l/libelf.md | 3 ++- docs/version-specific/supported-software/l/libemf.md | 3 ++- docs/version-specific/supported-software/l/libepoxy.md | 3 ++- docs/version-specific/supported-software/l/libev.md | 3 ++- docs/version-specific/supported-software/l/libevent.md | 3 ++- docs/version-specific/supported-software/l/libexif.md | 3 ++- docs/version-specific/supported-software/l/libfabric.md | 3 ++- docs/version-specific/supported-software/l/libfdf.md | 3 ++- docs/version-specific/supported-software/l/libffcall.md | 3 ++- docs/version-specific/supported-software/l/libffi.md | 3 ++- docs/version-specific/supported-software/l/libfontenc.md | 3 ++- docs/version-specific/supported-software/l/libfyaml.md | 3 ++- docs/version-specific/supported-software/l/libgcrypt.md | 3 ++- docs/version-specific/supported-software/l/libgd.md | 3 ++- docs/version-specific/supported-software/l/libgdiplus.md | 3 ++- docs/version-specific/supported-software/l/libgeotiff.md | 3 ++- docs/version-specific/supported-software/l/libgit2.md | 3 ++- docs/version-specific/supported-software/l/libglade.md | 3 ++- docs/version-specific/supported-software/l/libglvnd.md | 3 ++- .../version-specific/supported-software/l/libgpg-error.md | 3 ++- docs/version-specific/supported-software/l/libgpuarray.md | 3 ++- .../supported-software/l/libgtextutils.md | 3 ++- docs/version-specific/supported-software/l/libgxps.md | 3 ++- docs/version-specific/supported-software/l/libhandy.md | 3 ++- docs/version-specific/supported-software/l/libharu.md | 3 ++- docs/version-specific/supported-software/l/libheif.md | 3 ++- docs/version-specific/supported-software/l/libhomfly.md | 3 ++- docs/version-specific/supported-software/l/libibmad.md | 3 ++- docs/version-specific/supported-software/l/libibumad.md | 3 ++- docs/version-specific/supported-software/l/libiconv.md | 3 ++- docs/version-specific/supported-software/l/libidn.md | 3 ++- docs/version-specific/supported-software/l/libidn2.md | 3 ++- .../supported-software/l/libjpeg-turbo.md | 3 ++- docs/version-specific/supported-software/l/libjxl.md | 3 ++- .../version-specific/supported-software/l/libleidenalg.md | 3 ++- docs/version-specific/supported-software/l/libmad.md | 3 ++- docs/version-specific/supported-software/l/libmatheval.md | 3 ++- docs/version-specific/supported-software/l/libmaus2.md | 3 ++- docs/version-specific/supported-software/l/libmbd.md | 3 ++- .../supported-software/l/libmicrohttpd.md | 3 ++- .../version-specific/supported-software/l/libmo_unpack.md | 3 ++- docs/version-specific/supported-software/l/libmypaint.md | 3 ++- docs/version-specific/supported-software/l/libnsl.md | 3 ++- docs/version-specific/supported-software/l/libobjcryst.md | 3 ++- docs/version-specific/supported-software/l/libogg.md | 3 ++- docs/version-specific/supported-software/l/libopus.md | 3 ++- docs/version-specific/supported-software/l/libosmium.md | 3 ++- docs/version-specific/supported-software/l/libpci.md | 3 ++- .../version-specific/supported-software/l/libpciaccess.md | 3 ++- docs/version-specific/supported-software/l/libplinkio.md | 3 ++- docs/version-specific/supported-software/l/libpng.md | 3 ++- docs/version-specific/supported-software/l/libpsl.md | 3 ++- docs/version-specific/supported-software/l/libpsortb.md | 3 ++- docs/version-specific/supported-software/l/libpspio.md | 3 ++- .../supported-software/l/libpthread-stubs.md | 3 ++- docs/version-specific/supported-software/l/libreadline.md | 3 ++- docs/version-specific/supported-software/l/librosa.md | 3 ++- docs/version-specific/supported-software/l/librsb.md | 3 ++- docs/version-specific/supported-software/l/librsvg.md | 3 ++- docs/version-specific/supported-software/l/librttopo.md | 3 ++- .../supported-software/l/libsamplerate.md | 3 ++- docs/version-specific/supported-software/l/libsigc++.md | 3 ++- docs/version-specific/supported-software/l/libsigsegv.md | 3 ++- docs/version-specific/supported-software/l/libsndfile.md | 3 ++- docs/version-specific/supported-software/l/libsodium.md | 3 ++- .../supported-software/l/libspatialindex.md | 3 ++- .../supported-software/l/libspatialite.md | 3 ++- docs/version-specific/supported-software/l/libspectre.md | 3 ++- docs/version-specific/supported-software/l/libssh.md | 3 ++- .../version-specific/supported-software/l/libsupermesh.md | 3 ++- docs/version-specific/supported-software/l/libtar.md | 3 ++- docs/version-specific/supported-software/l/libtasn1.md | 3 ++- docs/version-specific/supported-software/l/libtecla.md | 3 ++- docs/version-specific/supported-software/l/libtirpc.md | 3 ++- docs/version-specific/supported-software/l/libtool.md | 3 ++- docs/version-specific/supported-software/l/libtree.md | 3 ++- .../version-specific/supported-software/l/libunistring.md | 3 ++- docs/version-specific/supported-software/l/libunwind.md | 3 ++- docs/version-specific/supported-software/l/libutempter.md | 3 ++- docs/version-specific/supported-software/l/libuv.md | 3 ++- docs/version-specific/supported-software/l/libvdwxc.md | 3 ++- docs/version-specific/supported-software/l/libvorbis.md | 3 ++- docs/version-specific/supported-software/l/libvori.md | 3 ++- docs/version-specific/supported-software/l/libwebp.md | 3 ++- docs/version-specific/supported-software/l/libwpe.md | 3 ++- docs/version-specific/supported-software/l/libxc.md | 3 ++- docs/version-specific/supported-software/l/libxcb.md | 3 ++- .../version-specific/supported-software/l/libxkbcommon.md | 3 ++- docs/version-specific/supported-software/l/libxml++.md | 3 ++- .../supported-software/l/libxml2-python.md | 3 ++- docs/version-specific/supported-software/l/libxml2.md | 3 ++- docs/version-specific/supported-software/l/libxslt.md | 3 ++- docs/version-specific/supported-software/l/libxsmm.md | 3 ++- docs/version-specific/supported-software/l/libyaml.md | 3 ++- docs/version-specific/supported-software/l/libzeep.md | 3 ++- docs/version-specific/supported-software/l/libzip.md | 3 ++- docs/version-specific/supported-software/l/lie_learn.md | 3 ++- docs/version-specific/supported-software/l/lifelines.md | 3 ++- docs/version-specific/supported-software/l/liknorm.md | 3 ++- docs/version-specific/supported-software/l/likwid.md | 3 ++- docs/version-specific/supported-software/l/lil-aretomo.md | 3 ++- docs/version-specific/supported-software/l/limix.md | 3 ++- .../supported-software/l/line_profiler.md | 3 ++- docs/version-specific/supported-software/l/lit.md | 3 ++- docs/version-specific/supported-software/l/lmoments3.md | 3 ++- docs/version-specific/supported-software/l/logaddexp.md | 3 ++- .../supported-software/l/longestrunsubsequence.md | 3 ++- .../version-specific/supported-software/l/longread_umi.md | 3 ++- docs/version-specific/supported-software/l/loomR.md | 3 ++- docs/version-specific/supported-software/l/loompy.md | 3 ++- docs/version-specific/supported-software/l/lpsolve.md | 3 ++- docs/version-specific/supported-software/l/lrslib.md | 3 ++- docs/version-specific/supported-software/l/lwgrp.md | 3 ++- docs/version-specific/supported-software/l/lxml.md | 3 ++- docs/version-specific/supported-software/l/lynx.md | 3 ++- docs/version-specific/supported-software/l/lz4.md | 3 ++- docs/version-specific/supported-software/m/M1QN3.md | 3 ++- docs/version-specific/supported-software/m/M3GNet.md | 3 ++- docs/version-specific/supported-software/m/M4.md | 3 ++- docs/version-specific/supported-software/m/MACH.md | 3 ++- docs/version-specific/supported-software/m/MACS2.md | 3 ++- docs/version-specific/supported-software/m/MACS3.md | 3 ++- docs/version-specific/supported-software/m/MACSE.md | 3 ++- docs/version-specific/supported-software/m/MAFFT.md | 3 ++- .../supported-software/m/MAGMA-gene-analysis.md | 3 ++- docs/version-specific/supported-software/m/MAGeCK.md | 3 ++- docs/version-specific/supported-software/m/MAJIQ.md | 3 ++- docs/version-specific/supported-software/m/MAKER.md | 3 ++- docs/version-specific/supported-software/m/MARS.md | 3 ++- docs/version-specific/supported-software/m/MATIO.md | 3 ++- .../supported-software/m/MATLAB-Engine.md | 3 ++- docs/version-specific/supported-software/m/MATLAB.md | 3 ++- docs/version-specific/supported-software/m/MATSim.md | 3 ++- docs/version-specific/supported-software/m/MBROLA.md | 3 ++- docs/version-specific/supported-software/m/MCL.md | 3 ++- docs/version-specific/supported-software/m/MCR.md | 3 ++- docs/version-specific/supported-software/m/MDAnalysis.md | 3 ++- docs/version-specific/supported-software/m/MDBM.md | 3 ++- docs/version-specific/supported-software/m/MDI.md | 3 ++- .../version-specific/supported-software/m/MDSplus-Java.md | 3 ++- .../supported-software/m/MDSplus-Python.md | 3 ++- docs/version-specific/supported-software/m/MDSplus.md | 3 ++- docs/version-specific/supported-software/m/MDTraj.md | 3 ++- docs/version-specific/supported-software/m/MEGA.md | 3 ++- docs/version-specific/supported-software/m/MEGACC.md | 3 ++- docs/version-specific/supported-software/m/MEGAHIT.md | 3 ++- docs/version-specific/supported-software/m/MEGAN.md | 3 ++- docs/version-specific/supported-software/m/MEM.md | 3 ++- docs/version-specific/supported-software/m/MEME.md | 3 ++- docs/version-specific/supported-software/m/MEMOTE.md | 3 ++- docs/version-specific/supported-software/m/MERCKX.md | 3 ++- docs/version-specific/supported-software/m/MESS.md | 3 ++- docs/version-specific/supported-software/m/METIS.md | 3 ++- docs/version-specific/supported-software/m/MICOM.md | 3 ++- docs/version-specific/supported-software/m/MIGRATE-N.md | 3 ++- docs/version-specific/supported-software/m/MINC.md | 3 ++- docs/version-specific/supported-software/m/MINPACK.md | 3 ++- docs/version-specific/supported-software/m/MIRA.md | 3 ++- docs/version-specific/supported-software/m/MITObim.md | 3 ++- docs/version-specific/supported-software/m/MITgcmutils.md | 3 ++- docs/version-specific/supported-software/m/MLC.md | 3 ++- docs/version-specific/supported-software/m/MLflow.md | 3 ++- docs/version-specific/supported-software/m/MLxtend.md | 3 ++- docs/version-specific/supported-software/m/MMSEQ.md | 3 ++- docs/version-specific/supported-software/m/MMseqs2.md | 3 ++- docs/version-specific/supported-software/m/MNE-Python.md | 3 ++- docs/version-specific/supported-software/m/MOABB.md | 3 ++- docs/version-specific/supported-software/m/MOABS.md | 3 ++- docs/version-specific/supported-software/m/MOB-suite.md | 3 ++- docs/version-specific/supported-software/m/MODFLOW.md | 3 ++- docs/version-specific/supported-software/m/MOFA2.md | 3 ++- docs/version-specific/supported-software/m/MONA.md | 3 ++- docs/version-specific/supported-software/m/MONAI-Label.md | 3 ++- docs/version-specific/supported-software/m/MONAI.md | 3 ++- docs/version-specific/supported-software/m/MOOSE.md | 3 ++- docs/version-specific/supported-software/m/MPB.md | 3 ++- docs/version-specific/supported-software/m/MPC.md | 3 ++- docs/version-specific/supported-software/m/MPFI.md | 3 ++- docs/version-specific/supported-software/m/MPFR.md | 3 ++- docs/version-specific/supported-software/m/MPICH.md | 3 ++- docs/version-specific/supported-software/m/MPICH2.md | 3 ++- docs/version-specific/supported-software/m/MPJ-Express.md | 3 ++- docs/version-specific/supported-software/m/MRCPP.md | 3 ++- docs/version-specific/supported-software/m/MRChem.md | 3 ++- docs/version-specific/supported-software/m/MRIcron.md | 3 ++- docs/version-specific/supported-software/m/MRPRESSO.md | 3 ++- docs/version-specific/supported-software/m/MRtrix.md | 3 ++- docs/version-specific/supported-software/m/MSFragger.md | 3 ++- docs/version-specific/supported-software/m/MSM.md | 3 ++- docs/version-specific/supported-software/m/MSPC.md | 3 ++- docs/version-specific/supported-software/m/MTL4.md | 3 ++- docs/version-specific/supported-software/m/MUMPS.md | 3 ++- docs/version-specific/supported-software/m/MUMmer.md | 3 ++- docs/version-specific/supported-software/m/MUSCLE.md | 3 ++- docs/version-specific/supported-software/m/MUSCLE3.md | 3 ++- docs/version-specific/supported-software/m/MUST.md | 3 ++- docs/version-specific/supported-software/m/MVAPICH2.md | 3 ++- docs/version-specific/supported-software/m/MView.md | 3 ++- docs/version-specific/supported-software/m/MXNet.md | 3 ++- docs/version-specific/supported-software/m/MaSuRCA.md | 3 ++- docs/version-specific/supported-software/m/Magics.md | 3 ++- .../version-specific/supported-software/m/MagresPython.md | 3 ++- docs/version-specific/supported-software/m/Mako.md | 3 ++- docs/version-specific/supported-software/m/Mamba.md | 3 ++- docs/version-specific/supported-software/m/MapSplice.md | 3 ++- docs/version-specific/supported-software/m/Maple.md | 3 ++- docs/version-specific/supported-software/m/Maq.md | 3 ++- .../supported-software/m/MariaDB-connector-c.md | 3 ++- docs/version-specific/supported-software/m/MariaDB.md | 3 ++- docs/version-specific/supported-software/m/Markdown.md | 3 ++- docs/version-specific/supported-software/m/Mash.md | 3 ++- docs/version-specific/supported-software/m/Mashtree.md | 3 ++- docs/version-specific/supported-software/m/MathGL.md | 3 ++- docs/version-specific/supported-software/m/Mathematica.md | 3 ++- docs/version-specific/supported-software/m/Maude.md | 3 ++- docs/version-specific/supported-software/m/Maven.md | 3 ++- docs/version-specific/supported-software/m/MaxBin.md | 3 ++- docs/version-specific/supported-software/m/MaxQuant.md | 3 ++- docs/version-specific/supported-software/m/MbedTLS.md | 3 ++- docs/version-specific/supported-software/m/MedPy.md | 3 ++- docs/version-specific/supported-software/m/Meep.md | 3 ++- docs/version-specific/supported-software/m/Megalodon.md | 3 ++- docs/version-specific/supported-software/m/Meld.md | 3 ++- docs/version-specific/supported-software/m/Mercurial.md | 3 ++- docs/version-specific/supported-software/m/Mesa-demos.md | 3 ++- docs/version-specific/supported-software/m/Mesa.md | 3 ++- docs/version-specific/supported-software/m/Meson.md | 3 ++- docs/version-specific/supported-software/m/Mesquite.md | 3 ++- docs/version-specific/supported-software/m/MetaBAT.md | 3 ++- docs/version-specific/supported-software/m/MetaDecoder.md | 3 ++- docs/version-specific/supported-software/m/MetaEuk.md | 3 ++- .../supported-software/m/MetaGeneAnnotator.md | 3 ++- .../version-specific/supported-software/m/MetaMorpheus.md | 3 ++- docs/version-specific/supported-software/m/MetaPhlAn.md | 3 ++- docs/version-specific/supported-software/m/MetaPhlAn2.md | 3 ++- .../supported-software/m/MetaboAnalystR.md | 3 ++- .../supported-software/m/Metagenome-Atlas.md | 3 ++- docs/version-specific/supported-software/m/Metal.md | 3 ++- docs/version-specific/supported-software/m/MetalWalls.md | 3 ++- docs/version-specific/supported-software/m/Metaxa2.md | 3 ++- .../version-specific/supported-software/m/MethylDackel.md | 3 ++- docs/version-specific/supported-software/m/MiGEC.md | 3 ++- docs/version-specific/supported-software/m/MiXCR.md | 3 ++- .../supported-software/m/MicrobeAnnotator.md | 3 ++- docs/version-specific/supported-software/m/Mikado.md | 3 ++- docs/version-specific/supported-software/m/Miller.md | 3 ++- docs/version-specific/supported-software/m/MinCED.md | 3 ++- docs/version-specific/supported-software/m/MinPath.md | 3 ++- docs/version-specific/supported-software/m/Mini-XML.md | 3 ++- docs/version-specific/supported-software/m/MiniCARD.md | 3 ++- docs/version-specific/supported-software/m/MiniSat.md | 3 ++- docs/version-specific/supported-software/m/Miniconda2.md | 3 ++- docs/version-specific/supported-software/m/Miniconda3.md | 3 ++- docs/version-specific/supported-software/m/Miniforge3.md | 3 ++- docs/version-specific/supported-software/m/Minimac4.md | 3 ++- docs/version-specific/supported-software/m/Minipolish.md | 3 ++- docs/version-specific/supported-software/m/Mish-Cuda.md | 3 ++- docs/version-specific/supported-software/m/MitoHiFi.md | 3 ++- docs/version-specific/supported-software/m/MitoZ.md | 3 ++- docs/version-specific/supported-software/m/MixMHC2pred.md | 3 ++- docs/version-specific/supported-software/m/Mmg.md | 3 ++- .../version-specific/supported-software/m/ModelTest-NG.md | 3 ++- docs/version-specific/supported-software/m/Molcas.md | 3 ++- docs/version-specific/supported-software/m/Molden.md | 3 ++- docs/version-specific/supported-software/m/Molekel.md | 3 ++- docs/version-specific/supported-software/m/Molpro.md | 3 ++- docs/version-specific/supported-software/m/Mono.md | 3 ++- docs/version-specific/supported-software/m/Monocle3.md | 3 ++- docs/version-specific/supported-software/m/MoreRONN.md | 3 ++- docs/version-specific/supported-software/m/Mothur.md | 3 ++- docs/version-specific/supported-software/m/MotionCor2.md | 3 ++- docs/version-specific/supported-software/m/MotionCor3.md | 3 ++- docs/version-specific/supported-software/m/MoviePy.md | 3 ++- docs/version-specific/supported-software/m/MrBayes.md | 3 ++- docs/version-specific/supported-software/m/MuJoCo.md | 3 ++- docs/version-specific/supported-software/m/MuPeXI.md | 3 ++- docs/version-specific/supported-software/m/MuSiC.md | 3 ++- docs/version-specific/supported-software/m/MuTect.md | 3 ++- docs/version-specific/supported-software/m/MultiNest.md | 3 ++- docs/version-specific/supported-software/m/MultiQC.md | 3 ++- .../supported-software/m/MultilevelEstimators.md | 3 ++- docs/version-specific/supported-software/m/Multiwfn.md | 3 ++- docs/version-specific/supported-software/m/MyCC.md | 3 ++- docs/version-specific/supported-software/m/MyMediaLite.md | 3 ++- .../version-specific/supported-software/m/MySQL-python.md | 3 ++- docs/version-specific/supported-software/m/MySQL.md | 3 ++- docs/version-specific/supported-software/m/Myokit.md | 3 ++- docs/version-specific/supported-software/m/index.md | 8 +++++++- docs/version-specific/supported-software/m/m4ri.md | 3 ++- docs/version-specific/supported-software/m/m4rie.md | 3 ++- docs/version-specific/supported-software/m/maeparser.md | 3 ++- docs/version-specific/supported-software/m/magick.md | 3 ++- docs/version-specific/supported-software/m/magma.md | 3 ++- docs/version-specific/supported-software/m/mahotas.md | 3 ++- docs/version-specific/supported-software/m/make.md | 3 ++- docs/version-specific/supported-software/m/makedepend.md | 3 ++- docs/version-specific/supported-software/m/makedepf90.md | 3 ++- docs/version-specific/supported-software/m/makefun.md | 3 ++- docs/version-specific/supported-software/m/makeinfo.md | 3 ++- docs/version-specific/supported-software/m/mandrake.md | 3 ++- docs/version-specific/supported-software/m/mannkendall.md | 3 ++- docs/version-specific/supported-software/m/manta.md | 3 ++- docs/version-specific/supported-software/m/mapDamage.md | 3 ++- .../version-specific/supported-software/m/matlab-proxy.md | 3 ++- .../supported-software/m/matplotlib-inline.md | 3 ++- docs/version-specific/supported-software/m/matplotlib.md | 3 ++- docs/version-specific/supported-software/m/maturin.md | 3 ++- .../version-specific/supported-software/m/mauveAligner.md | 3 ++- docs/version-specific/supported-software/m/mawk.md | 3 ++- docs/version-specific/supported-software/m/mayavi.md | 3 ++- docs/version-specific/supported-software/m/maze.md | 3 ++- docs/version-specific/supported-software/m/mbuffer.md | 3 ++- docs/version-specific/supported-software/m/mc.md | 3 ++- docs/version-specific/supported-software/m/mctc-lib.md | 3 ++- docs/version-specific/supported-software/m/mcu.md | 3 ++- docs/version-specific/supported-software/m/mdtest.md | 3 ++- docs/version-specific/supported-software/m/mdust.md | 3 ++- docs/version-specific/supported-software/m/meRanTK.md | 3 ++- docs/version-specific/supported-software/m/meboot.md | 3 ++- docs/version-specific/supported-software/m/medImgProc.md | 3 ++- docs/version-specific/supported-software/m/medaka.md | 3 ++- docs/version-specific/supported-software/m/memkind.md | 3 ++- .../supported-software/m/memory-profiler.md | 3 ++- docs/version-specific/supported-software/m/memtester.md | 3 ++- docs/version-specific/supported-software/m/meshalyzer.md | 3 ++- docs/version-specific/supported-software/m/meshio.md | 3 ++- docs/version-specific/supported-software/m/meshtool.md | 3 ++- .../version-specific/supported-software/m/meson-python.md | 3 ++- docs/version-specific/supported-software/m/metaWRAP.md | 3 ++- docs/version-specific/supported-software/m/metaerg.md | 3 ++- .../version-specific/supported-software/m/methylartist.md | 3 ++- docs/version-specific/supported-software/m/methylpy.md | 3 ++- docs/version-specific/supported-software/m/mfqe.md | 3 ++- docs/version-specific/supported-software/m/mgen.md | 3 ++- docs/version-specific/supported-software/m/mgltools.md | 3 ++- docs/version-specific/supported-software/m/mhcflurry.md | 3 ++- docs/version-specific/supported-software/m/mhcnuggets.md | 3 ++- docs/version-specific/supported-software/m/miRDeep2.md | 3 ++- docs/version-specific/supported-software/m/microctools.md | 3 ++- docs/version-specific/supported-software/m/mimalloc.md | 3 ++- docs/version-specific/supported-software/m/miniasm.md | 3 ++- docs/version-specific/supported-software/m/minibar.md | 3 ++- docs/version-specific/supported-software/m/minieigen.md | 3 ++- docs/version-specific/supported-software/m/minimap2.md | 3 ++- docs/version-specific/supported-software/m/minizip.md | 3 ++- docs/version-specific/supported-software/m/misha.md | 3 ++- docs/version-specific/supported-software/m/mkl-dnn.md | 3 ++- docs/version-specific/supported-software/m/mkl-service.md | 3 ++- docs/version-specific/supported-software/m/mkl_fft.md | 3 ++- .../supported-software/m/ml-collections.md | 3 ++- docs/version-specific/supported-software/m/ml_dtypes.md | 3 ++- docs/version-specific/supported-software/m/mlpack.md | 3 ++- docs/version-specific/supported-software/m/mm-common.md | 3 ++- docs/version-specific/supported-software/m/mmtf-cpp.md | 3 ++- docs/version-specific/supported-software/m/modred.md | 3 ++- docs/version-specific/supported-software/m/mold.md | 3 ++- .../version-specific/supported-software/m/molecularGSM.md | 3 ++- docs/version-specific/supported-software/m/molmod.md | 3 ++- docs/version-specific/supported-software/m/mongolite.md | 3 ++- docs/version-specific/supported-software/m/moonjit.md | 3 ++- docs/version-specific/supported-software/m/mordecai.md | 3 ++- .../supported-software/m/morphosamplers.md | 3 ++- docs/version-specific/supported-software/m/mosdepth.md | 3 ++- docs/version-specific/supported-software/m/motif.md | 3 ++- .../supported-software/m/motionSegmentation.md | 3 ++- docs/version-specific/supported-software/m/mpath.md | 3 ++- docs/version-specific/supported-software/m/mpi4py.md | 3 ++- docs/version-specific/supported-software/m/mpiP.md | 3 ++- .../version-specific/supported-software/m/mpifileutils.md | 3 ++- docs/version-specific/supported-software/m/mpmath.md | 3 ++- docs/version-specific/supported-software/m/mrcfile.md | 3 ++- docs/version-specific/supported-software/m/msgpack-c.md | 3 ++- docs/version-specific/supported-software/m/msprime.md | 3 ++- docs/version-specific/supported-software/m/mstore.md | 3 ++- docs/version-specific/supported-software/m/muMerge.md | 3 ++- docs/version-specific/supported-software/m/muParser.md | 3 ++- docs/version-specific/supported-software/m/mujoco-py.md | 3 ++- docs/version-specific/supported-software/m/multicharge.md | 3 ++- docs/version-specific/supported-software/m/multichoose.md | 3 ++- .../version-specific/supported-software/m/multiprocess.md | 3 ++- docs/version-specific/supported-software/m/mumott.md | 3 ++- docs/version-specific/supported-software/m/muparserx.md | 3 ++- docs/version-specific/supported-software/m/mutil.md | 3 ++- docs/version-specific/supported-software/m/mxml.md | 3 ++- docs/version-specific/supported-software/m/mxmlplus.md | 3 ++- docs/version-specific/supported-software/m/mygene.md | 3 ++- docs/version-specific/supported-software/m/mympingpong.md | 3 ++- docs/version-specific/supported-software/m/mypy.md | 3 ++- docs/version-specific/supported-software/m/mysqlclient.md | 3 ++- docs/version-specific/supported-software/n/NAG.md | 3 ++- docs/version-specific/supported-software/n/NAGfor.md | 3 ++- docs/version-specific/supported-software/n/NAMD.md | 3 ++- docs/version-specific/supported-software/n/NASM.md | 3 ++- docs/version-specific/supported-software/n/NBO.md | 3 ++- .../version-specific/supported-software/n/NCBI-Toolkit.md | 3 ++- docs/version-specific/supported-software/n/NCCL-tests.md | 3 ++- docs/version-specific/supported-software/n/NCCL.md | 3 ++- docs/version-specific/supported-software/n/NCIPLOT.md | 3 ++- docs/version-specific/supported-software/n/NCL.md | 3 ++- docs/version-specific/supported-software/n/NCO.md | 3 ++- docs/version-specific/supported-software/n/NECI.md | 3 ++- docs/version-specific/supported-software/n/NEURON.md | 3 ++- docs/version-specific/supported-software/n/NEXUS-CL.md | 3 ++- docs/version-specific/supported-software/n/NEdit.md | 3 ++- docs/version-specific/supported-software/n/NFFT.md | 3 ++- docs/version-specific/supported-software/n/NGLess.md | 3 ++- docs/version-specific/supported-software/n/NGS-Python.md | 3 ++- docs/version-specific/supported-software/n/NGS.md | 3 ++- docs/version-specific/supported-software/n/NGSadmix.md | 3 ++- docs/version-specific/supported-software/n/NGSpeciesID.md | 3 ++- docs/version-specific/supported-software/n/NIMBLE.md | 3 ++- docs/version-specific/supported-software/n/NIfTI.md | 3 ++- docs/version-specific/supported-software/n/NLMpy.md | 3 ++- docs/version-specific/supported-software/n/NLTK.md | 3 ++- docs/version-specific/supported-software/n/NLopt.md | 3 ++- docs/version-specific/supported-software/n/NOVOPlasty.md | 3 ++- .../version-specific/supported-software/n/NRGLjubljana.md | 3 ++- docs/version-specific/supported-software/n/NSPR.md | 3 ++- docs/version-specific/supported-software/n/NSS.md | 3 ++- docs/version-specific/supported-software/n/NTL.md | 3 ++- docs/version-specific/supported-software/n/NTPoly.md | 3 ++- docs/version-specific/supported-software/n/NVHPC.md | 3 ++- docs/version-specific/supported-software/n/NVSHMEM.md | 3 ++- docs/version-specific/supported-software/n/NWChem.md | 3 ++- docs/version-specific/supported-software/n/NanoCaller.md | 3 ++- docs/version-specific/supported-software/n/NanoComp.md | 3 ++- docs/version-specific/supported-software/n/NanoFilt.md | 3 ++- docs/version-specific/supported-software/n/NanoLyse.md | 3 ++- docs/version-specific/supported-software/n/NanoPlot.md | 3 ++- docs/version-specific/supported-software/n/NanoStat.md | 3 ++- .../supported-software/n/NanopolishComp.md | 3 ++- docs/version-specific/supported-software/n/Nek5000.md | 3 ++- docs/version-specific/supported-software/n/Nektar++.md | 3 ++- docs/version-specific/supported-software/n/Net-core.md | 3 ++- docs/version-specific/supported-software/n/NetLogo.md | 3 ++- docs/version-specific/supported-software/n/NetPIPE.md | 3 ++- docs/version-specific/supported-software/n/NetPyNE.md | 3 ++- docs/version-specific/supported-software/n/NeuroKit.md | 3 ++- docs/version-specific/supported-software/n/NewHybrids.md | 3 ++- docs/version-specific/supported-software/n/NextGenMap.md | 3 ++- docs/version-specific/supported-software/n/Nextflow.md | 3 ++- docs/version-specific/supported-software/n/NiBabel.md | 3 ++- docs/version-specific/supported-software/n/Nilearn.md | 3 ++- docs/version-specific/supported-software/n/Nim.md | 3 ++- docs/version-specific/supported-software/n/Ninja.md | 3 ++- docs/version-specific/supported-software/n/Nipype.md | 3 ++- docs/version-specific/supported-software/n/Node-RED.md | 3 ++- docs/version-specific/supported-software/n/Normaliz.md | 3 ++- .../supported-software/n/Nsight-Compute.md | 3 ++- .../supported-software/n/Nsight-Systems.md | 3 ++- docs/version-specific/supported-software/n/NxTrim.md | 3 ++- docs/version-specific/supported-software/n/index.md | 8 +++++++- docs/version-specific/supported-software/n/n2v.md | 3 ++- docs/version-specific/supported-software/n/namedlist.md | 3 ++- docs/version-specific/supported-software/n/nano.md | 3 ++- docs/version-specific/supported-software/n/nanocompore.md | 3 ++- docs/version-specific/supported-software/n/nanoflann.md | 3 ++- docs/version-specific/supported-software/n/nanoget.md | 3 ++- docs/version-specific/supported-software/n/nanomath.md | 3 ++- .../supported-software/n/nanomax-analysis-utils.md | 3 ++- docs/version-specific/supported-software/n/nanonet.md | 3 ++- docs/version-specific/supported-software/n/nanopolish.md | 3 ++- docs/version-specific/supported-software/n/napari.md | 3 ++- docs/version-specific/supported-software/n/nauty.md | 3 ++- docs/version-specific/supported-software/n/nbclassic.md | 3 ++- docs/version-specific/supported-software/n/ncbi-vdb.md | 3 ++- docs/version-specific/supported-software/n/ncdf4.md | 3 ++- docs/version-specific/supported-software/n/ncdu.md | 3 ++- docs/version-specific/supported-software/n/ncolor.md | 3 ++- docs/version-specific/supported-software/n/ncompress.md | 3 ++- docs/version-specific/supported-software/n/ncurses.md | 3 ++- docs/version-specific/supported-software/n/ncview.md | 3 ++- docs/version-specific/supported-software/n/nd2reader.md | 3 ++- docs/version-specific/supported-software/n/ne.md | 3 ++- docs/version-specific/supported-software/n/neon.md | 3 ++- .../supported-software/n/neptune-client.md | 3 ++- docs/version-specific/supported-software/n/netCDF-C++.md | 3 ++- docs/version-specific/supported-software/n/netCDF-C++4.md | 3 ++- .../supported-software/n/netCDF-Fortran.md | 3 ++- docs/version-specific/supported-software/n/netCDF.md | 3 ++- docs/version-specific/supported-software/n/netMHC.md | 3 ++- docs/version-specific/supported-software/n/netMHCII.md | 3 ++- docs/version-specific/supported-software/n/netMHCIIpan.md | 3 ++- docs/version-specific/supported-software/n/netMHCpan.md | 3 ++- .../supported-software/n/netcdf4-python.md | 3 ++- docs/version-specific/supported-software/n/netloc.md | 3 ++- docs/version-specific/supported-software/n/nettle.md | 3 ++- .../version-specific/supported-software/n/networkTools.md | 3 ++- docs/version-specific/supported-software/n/networkx.md | 3 ++- docs/version-specific/supported-software/n/nf-core-mag.md | 3 ++- docs/version-specific/supported-software/n/nf-core.md | 3 ++- docs/version-specific/supported-software/n/nghttp2.md | 3 ++- docs/version-specific/supported-software/n/nghttp3.md | 3 ++- docs/version-specific/supported-software/n/nglview.md | 3 ++- docs/version-specific/supported-software/n/ngspice.md | 3 ++- docs/version-specific/supported-software/n/ngtcp2.md | 3 ++- docs/version-specific/supported-software/n/nichenetr.md | 3 ++- docs/version-specific/supported-software/n/nifti2dicom.md | 3 ++- .../supported-software/n/nlohmann_json.md | 3 ++- docs/version-specific/supported-software/n/nnU-Net.md | 3 ++- docs/version-specific/supported-software/n/nodejs.md | 3 ++- docs/version-specific/supported-software/n/noise.md | 3 ++- .../supported-software/n/nose-parameterized.md | 3 ++- docs/version-specific/supported-software/n/nose3.md | 3 ++- docs/version-specific/supported-software/n/novaSTA.md | 3 ++- docs/version-specific/supported-software/n/novoalign.md | 3 ++- docs/version-specific/supported-software/n/npstat.md | 3 ++- docs/version-specific/supported-software/n/nsync.md | 3 ++- docs/version-specific/supported-software/n/ntCard.md | 3 ++- docs/version-specific/supported-software/n/ntEdit.md | 3 ++- docs/version-specific/supported-software/n/ntHits.md | 3 ++- docs/version-specific/supported-software/n/num2words.md | 3 ++- docs/version-specific/supported-software/n/numactl.md | 3 ++- docs/version-specific/supported-software/n/numba.md | 3 ++- docs/version-specific/supported-software/n/numdiff.md | 3 ++- docs/version-specific/supported-software/n/numexpr.md | 3 ++- docs/version-specific/supported-software/n/numpy.md | 3 ++- docs/version-specific/supported-software/n/nvitop.md | 3 ++- docs/version-specific/supported-software/n/nvofbf.md | 3 ++- docs/version-specific/supported-software/n/nvompi.md | 3 ++- docs/version-specific/supported-software/n/nvtop.md | 3 ++- docs/version-specific/supported-software/o/OBITools.md | 3 ++- docs/version-specific/supported-software/o/OBITools3.md | 3 ++- docs/version-specific/supported-software/o/OCNet.md | 3 ++- docs/version-specific/supported-software/o/OCaml.md | 3 ++- docs/version-specific/supported-software/o/OGDF.md | 3 ++- docs/version-specific/supported-software/o/OMA.md | 3 ++- .../supported-software/o/OMERO.insight.md | 3 ++- docs/version-specific/supported-software/o/OMERO.py.md | 3 ++- .../version-specific/supported-software/o/ONNX-Runtime.md | 3 ++- docs/version-specific/supported-software/o/ONNX.md | 3 ++- docs/version-specific/supported-software/o/OOMPA.md | 3 ++- docs/version-specific/supported-software/o/OPARI2.md | 3 ++- docs/version-specific/supported-software/o/OPERA-MS.md | 3 ++- docs/version-specific/supported-software/o/OPERA.md | 3 ++- docs/version-specific/supported-software/o/OR-Tools.md | 3 ++- docs/version-specific/supported-software/o/ORCA.md | 3 ++- docs/version-specific/supported-software/o/ORFfinder.md | 3 ++- docs/version-specific/supported-software/o/OSPRay.md | 3 ++- .../supported-software/o/OSU-Micro-Benchmarks.md | 3 ++- docs/version-specific/supported-software/o/OTF2.md | 3 ++- docs/version-specific/supported-software/o/OVITO.md | 3 ++- docs/version-specific/supported-software/o/Oases.md | 3 ++- docs/version-specific/supported-software/o/Octave.md | 3 ++- docs/version-specific/supported-software/o/Octopus-vcf.md | 3 ++- docs/version-specific/supported-software/o/OmegaFold.md | 3 ++- docs/version-specific/supported-software/o/Omnipose.md | 3 ++- .../supported-software/o/Open-Data-Cube-Core.md | 3 ++- docs/version-specific/supported-software/o/OpenAI-Gym.md | 3 ++- docs/version-specific/supported-software/o/OpenBLAS.md | 3 ++- docs/version-specific/supported-software/o/OpenBabel.md | 3 ++- docs/version-specific/supported-software/o/OpenCV.md | 3 ++- .../supported-software/o/OpenCensus-python.md | 3 ++- .../version-specific/supported-software/o/OpenCoarrays.md | 3 ++- docs/version-specific/supported-software/o/OpenColorIO.md | 3 ++- docs/version-specific/supported-software/o/OpenEXR.md | 3 ++- docs/version-specific/supported-software/o/OpenFAST.md | 3 ++- .../supported-software/o/OpenFOAM-Extend.md | 3 ++- docs/version-specific/supported-software/o/OpenFOAM.md | 3 ++- docs/version-specific/supported-software/o/OpenFace.md | 3 ++- docs/version-specific/supported-software/o/OpenFold.md | 3 ++- .../supported-software/o/OpenForceField.md | 3 ++- docs/version-specific/supported-software/o/OpenImageIO.md | 3 ++- docs/version-specific/supported-software/o/OpenJPEG.md | 3 ++- docs/version-specific/supported-software/o/OpenKIM-API.md | 3 ++- docs/version-specific/supported-software/o/OpenMEEG.md | 3 ++- .../supported-software/o/OpenMM-PLUMED.md | 3 ++- docs/version-specific/supported-software/o/OpenMM.md | 3 ++- docs/version-specific/supported-software/o/OpenMMTools.md | 3 ++- docs/version-specific/supported-software/o/OpenMPI.md | 3 ++- docs/version-specific/supported-software/o/OpenMS.md | 3 ++- docs/version-specific/supported-software/o/OpenMolcas.md | 3 ++- docs/version-specific/supported-software/o/OpenNLP.md | 3 ++- docs/version-specific/supported-software/o/OpenPGM.md | 3 ++- docs/version-specific/supported-software/o/OpenPIV.md | 3 ++- docs/version-specific/supported-software/o/OpenRefine.md | 3 ++- docs/version-specific/supported-software/o/OpenSSL.md | 3 ++- .../supported-software/o/OpenSceneGraph.md | 3 ++- docs/version-specific/supported-software/o/OpenSees.md | 3 ++- .../supported-software/o/OpenSlide-Java.md | 3 ++- docs/version-specific/supported-software/o/OpenSlide.md | 3 ++- .../supported-software/o/OpenStackClient.md | 3 ++- docs/version-specific/supported-software/o/OptaDOS.md | 3 ++- docs/version-specific/supported-software/o/Optax.md | 3 ++- docs/version-specific/supported-software/o/OptiType.md | 3 ++- docs/version-specific/supported-software/o/OptiX.md | 3 ++- docs/version-specific/supported-software/o/Optuna.md | 3 ++- docs/version-specific/supported-software/o/OrfM.md | 3 ++- docs/version-specific/supported-software/o/OrthoFinder.md | 3 ++- docs/version-specific/supported-software/o/OrthoMCL.md | 3 ++- docs/version-specific/supported-software/o/Osi.md | 3 ++- docs/version-specific/supported-software/o/index.md | 8 +++++++- docs/version-specific/supported-software/o/ocamlbuild.md | 3 ++- docs/version-specific/supported-software/o/occt.md | 3 ++- docs/version-specific/supported-software/o/oceanspy.md | 3 ++- docs/version-specific/supported-software/o/olaFlow.md | 3 ++- docs/version-specific/supported-software/o/olego.md | 3 ++- docs/version-specific/supported-software/o/onedrive.md | 3 ++- .../supported-software/o/ont-fast5-api.md | 3 ++- docs/version-specific/supported-software/o/ont-guppy.md | 3 ++- docs/version-specific/supported-software/o/ont-remora.md | 3 ++- docs/version-specific/supported-software/o/openCARP.md | 3 ++- .../supported-software/o/openkim-models.md | 3 ++- docs/version-specific/supported-software/o/openpyxl.md | 3 ++- .../supported-software/o/openslide-python.md | 3 ++- docs/version-specific/supported-software/o/optiSLang.md | 3 ++- docs/version-specific/supported-software/o/orthAgogue.md | 3 ++- docs/version-specific/supported-software/o/ownCloud.md | 3 ++- docs/version-specific/supported-software/o/oxDNA.md | 3 ++- docs/version-specific/supported-software/o/oxford_asl.md | 3 ++- docs/version-specific/supported-software/p/PAGAN2.md | 3 ++- docs/version-specific/supported-software/p/PAL2NAL.md | 3 ++- docs/version-specific/supported-software/p/PALEOMIX.md | 3 ++- docs/version-specific/supported-software/p/PAML.md | 3 ++- docs/version-specific/supported-software/p/PANDAseq.md | 3 ++- docs/version-specific/supported-software/p/PAPI.md | 3 ++- docs/version-specific/supported-software/p/PARI-GP.md | 3 ++- docs/version-specific/supported-software/p/PASA.md | 3 ++- docs/version-specific/supported-software/p/PAUP.md | 3 ++- docs/version-specific/supported-software/p/PBSuite.md | 3 ++- docs/version-specific/supported-software/p/PBZIP2.md | 3 ++- docs/version-specific/supported-software/p/PCAngsd.md | 3 ++- docs/version-specific/supported-software/p/PCC.md | 3 ++- docs/version-specific/supported-software/p/PCL.md | 3 ++- docs/version-specific/supported-software/p/PCMSolver.md | 3 ++- docs/version-specific/supported-software/p/PCRE.md | 3 ++- docs/version-specific/supported-software/p/PCRE2.md | 3 ++- docs/version-specific/supported-software/p/PCRaster.md | 3 ++- docs/version-specific/supported-software/p/PDM.md | 3 ++- docs/version-specific/supported-software/p/PDT.md | 3 ++- docs/version-specific/supported-software/p/PEAR.md | 3 ++- docs/version-specific/supported-software/p/PEPT.md | 3 ++- docs/version-specific/supported-software/p/PEST++.md | 3 ++- docs/version-specific/supported-software/p/PETSc.md | 3 ++- docs/version-specific/supported-software/p/PFFT.md | 3 ++- docs/version-specific/supported-software/p/PGDSpider.md | 3 ++- docs/version-specific/supported-software/p/PGI.md | 3 ++- docs/version-specific/supported-software/p/PGPLOT.md | 3 ++- docs/version-specific/supported-software/p/PHANOTATE.md | 3 ++- docs/version-specific/supported-software/p/PHASE.md | 3 ++- docs/version-specific/supported-software/p/PHAST.md | 3 ++- docs/version-specific/supported-software/p/PHLAT.md | 3 ++- docs/version-specific/supported-software/p/PHYLIP.md | 3 ++- .../supported-software/p/PICI-LIGGGHTS.md | 3 ++- docs/version-specific/supported-software/p/PICRUSt2.md | 3 ++- docs/version-specific/supported-software/p/PIL.md | 3 ++- docs/version-specific/supported-software/p/PIMS.md | 3 ++- docs/version-specific/supported-software/p/PIPITS.md | 3 ++- docs/version-specific/supported-software/p/PIRATE.md | 3 ++- docs/version-specific/supported-software/p/PLAMS.md | 3 ++- docs/version-specific/supported-software/p/PLAST.md | 3 ++- docs/version-specific/supported-software/p/PLINK.md | 3 ++- docs/version-specific/supported-software/p/PLINKSEQ.md | 3 ++- docs/version-specific/supported-software/p/PLUMED.md | 3 ++- docs/version-specific/supported-software/p/PLY.md | 3 ++- docs/version-specific/supported-software/p/PLplot.md | 3 ++- docs/version-specific/supported-software/p/PMIx.md | 3 ++- docs/version-specific/supported-software/p/POT.md | 3 ++- docs/version-specific/supported-software/p/POV-Ray.md | 3 ++- docs/version-specific/supported-software/p/PPanGGOLiN.md | 3 ++- docs/version-specific/supported-software/p/PPfold.md | 3 ++- docs/version-specific/supported-software/p/PRANK.md | 3 ++- docs/version-specific/supported-software/p/PRC.md | 3 ++- docs/version-specific/supported-software/p/PREQUAL.md | 3 ++- docs/version-specific/supported-software/p/PRINSEQ.md | 3 ++- docs/version-specific/supported-software/p/PRISMS-PF.md | 3 ++- docs/version-specific/supported-software/p/PROJ.md | 3 ++- docs/version-specific/supported-software/p/PRRTE.md | 3 ++- docs/version-specific/supported-software/p/PRSice.md | 3 ++- docs/version-specific/supported-software/p/PSASS.md | 3 ++- docs/version-specific/supported-software/p/PSI.md | 3 ++- docs/version-specific/supported-software/p/PSI4.md | 3 ++- docs/version-specific/supported-software/p/PSIPRED.md | 3 ++- docs/version-specific/supported-software/p/PSM2.md | 3 ++- docs/version-specific/supported-software/p/PSORTb.md | 3 ++- docs/version-specific/supported-software/p/PSolver.md | 3 ++- docs/version-specific/supported-software/p/PTESFinder.md | 3 ++- docs/version-specific/supported-software/p/PYPOWER.md | 3 ++- docs/version-specific/supported-software/p/PYTHIA.md | 3 ++- docs/version-specific/supported-software/p/PaStiX.md | 3 ++- docs/version-specific/supported-software/p/Pandoc.md | 3 ++- docs/version-specific/supported-software/p/Panedr.md | 3 ++- docs/version-specific/supported-software/p/Pango.md | 3 ++- docs/version-specific/supported-software/p/ParMETIS.md | 3 ++- docs/version-specific/supported-software/p/ParMGridGen.md | 3 ++- docs/version-specific/supported-software/p/ParaView.md | 3 ++- .../supported-software/p/Parallel-Hashmap.md | 3 ++- docs/version-specific/supported-software/p/ParallelIO.md | 3 ++- docs/version-specific/supported-software/p/Paraver.md | 3 ++- docs/version-specific/supported-software/p/Parcels.md | 3 ++- docs/version-specific/supported-software/p/ParmEd.md | 3 ++- docs/version-specific/supported-software/p/Parsl.md | 3 ++- .../supported-software/p/PartitionFinder.md | 3 ++- docs/version-specific/supported-software/p/PennCNV.md | 3 ++- docs/version-specific/supported-software/p/Percolator.md | 3 ++- .../supported-software/p/Perl-bundle-CPAN.md | 3 ++- docs/version-specific/supported-software/p/Perl.md | 3 ++- .../supported-software/p/Perl4-CoreLibs.md | 3 ++- docs/version-specific/supported-software/p/Perseus.md | 3 ++- docs/version-specific/supported-software/p/PfamScan.md | 3 ++- .../supported-software/p/Phantompeakqualtools.md | 3 ++- docs/version-specific/supported-software/p/PheWAS.md | 3 ++- docs/version-specific/supported-software/p/PheWeb.md | 3 ++- docs/version-specific/supported-software/p/Phenoflow.md | 3 ++- docs/version-specific/supported-software/p/PhiPack.md | 3 ++- docs/version-specific/supported-software/p/Philosopher.md | 3 ++- docs/version-specific/supported-software/p/PhyML.md | 3 ++- .../supported-software/p/PhyloBayes-MPI.md | 3 ++- docs/version-specific/supported-software/p/PhyloPhlAn.md | 3 ++- docs/version-specific/supported-software/p/PileOMeth.md | 3 ++- docs/version-specific/supported-software/p/Pillow-SIMD.md | 3 ++- docs/version-specific/supported-software/p/Pillow.md | 3 ++- docs/version-specific/supported-software/p/Pilon.md | 3 ++- docs/version-specific/supported-software/p/Pindel.md | 3 ++- docs/version-specific/supported-software/p/Pingouin.md | 3 ++- docs/version-specific/supported-software/p/Pint.md | 3 ++- docs/version-specific/supported-software/p/Pisces.md | 3 ++- docs/version-specific/supported-software/p/PlaScope.md | 3 ++- docs/version-specific/supported-software/p/PlasmaPy.md | 3 ++- docs/version-specific/supported-software/p/Platanus.md | 3 ++- .../version-specific/supported-software/p/Platypus-Opt.md | 3 ++- docs/version-specific/supported-software/p/Platypus.md | 3 ++- docs/version-specific/supported-software/p/Ploticus.md | 3 ++- docs/version-specific/supported-software/p/PnetCDF.md | 3 ++- docs/version-specific/supported-software/p/Porechop.md | 3 ++- docs/version-specific/supported-software/p/PortAudio.md | 3 ++- docs/version-specific/supported-software/p/PortMidi.md | 3 ++- docs/version-specific/supported-software/p/Portcullis.md | 3 ++- docs/version-specific/supported-software/p/PostgreSQL.md | 3 ++- docs/version-specific/supported-software/p/Postgres-XL.md | 3 ++- docs/version-specific/supported-software/p/Primer3.md | 3 ++- docs/version-specific/supported-software/p/ProBiS.md | 3 ++- docs/version-specific/supported-software/p/ProFit.md | 3 ++- docs/version-specific/supported-software/p/ProbABEL.md | 3 ++- docs/version-specific/supported-software/p/ProjectQ.md | 3 ++- docs/version-specific/supported-software/p/ProtHint.md | 3 ++- docs/version-specific/supported-software/p/ProteinMPNN.md | 3 ++- .../version-specific/supported-software/p/Proteinortho.md | 3 ++- docs/version-specific/supported-software/p/PsiCLASS.md | 3 ++- docs/version-specific/supported-software/p/PuLP.md | 3 ++- docs/version-specific/supported-software/p/PyAEDT.md | 3 ++- docs/version-specific/supported-software/p/PyAMG.md | 3 ++- docs/version-specific/supported-software/p/PyAPS3.md | 3 ++- docs/version-specific/supported-software/p/PyAV.md | 3 ++- docs/version-specific/supported-software/p/PyBerny.md | 3 ++- docs/version-specific/supported-software/p/PyBioLib.md | 3 ++- docs/version-specific/supported-software/p/PyCUDA.md | 3 ++- docs/version-specific/supported-software/p/PyCairo.md | 3 ++- docs/version-specific/supported-software/p/PyCalib.md | 3 ++- docs/version-specific/supported-software/p/PyCharm.md | 3 ++- docs/version-specific/supported-software/p/PyCheMPS2.md | 3 ++- docs/version-specific/supported-software/p/PyCifRW.md | 3 ++- docs/version-specific/supported-software/p/PyClone.md | 3 ++- docs/version-specific/supported-software/p/PyCogent.md | 3 ++- docs/version-specific/supported-software/p/PyDamage.md | 3 ++- .../version-specific/supported-software/p/PyDatastream.md | 3 ++- docs/version-specific/supported-software/p/PyEVTK.md | 3 ++- docs/version-specific/supported-software/p/PyEXR.md | 3 ++- docs/version-specific/supported-software/p/PyFFmpeg.md | 3 ++- docs/version-specific/supported-software/p/PyFMI.md | 3 ++- docs/version-specific/supported-software/p/PyFR.md | 3 ++- docs/version-specific/supported-software/p/PyFoam.md | 3 ++- docs/version-specific/supported-software/p/PyFrag.md | 3 ++- docs/version-specific/supported-software/p/PyGEOS.md | 3 ++- docs/version-specific/supported-software/p/PyGObject.md | 3 ++- docs/version-specific/supported-software/p/PyGTK.md | 3 ++- docs/version-specific/supported-software/p/PyGTS.md | 3 ++- docs/version-specific/supported-software/p/PyGWAS.md | 3 ++- docs/version-specific/supported-software/p/PyHMMER.md | 3 ++- docs/version-specific/supported-software/p/PyImageJ.md | 3 ++- docs/version-specific/supported-software/p/PyInstaller.md | 3 ++- docs/version-specific/supported-software/p/PyMC.md | 3 ++- docs/version-specific/supported-software/p/PyMC3.md | 3 ++- docs/version-specific/supported-software/p/PyMOL.md | 3 ++- docs/version-specific/supported-software/p/PyNAST.md | 3 ++- docs/version-specific/supported-software/p/PyOD.md | 3 ++- docs/version-specific/supported-software/p/PyOpenCL.md | 3 ++- docs/version-specific/supported-software/p/PyOpenGL.md | 3 ++- docs/version-specific/supported-software/p/PyPSA.md | 3 ++- docs/version-specific/supported-software/p/PyPy.md | 3 ++- .../version-specific/supported-software/p/PyQt-builder.md | 3 ++- docs/version-specific/supported-software/p/PyQt.md | 3 ++- docs/version-specific/supported-software/p/PyQt5.md | 3 ++- docs/version-specific/supported-software/p/PyQtGraph.md | 3 ++- docs/version-specific/supported-software/p/PyRETIS.md | 3 ++- docs/version-specific/supported-software/p/PyRe.md | 3 ++- docs/version-specific/supported-software/p/PyRosetta.md | 3 ++- docs/version-specific/supported-software/p/PySAT.md | 3 ++- docs/version-specific/supported-software/p/PySCF.md | 3 ++- docs/version-specific/supported-software/p/PySINDy.md | 3 ++- docs/version-specific/supported-software/p/PySide2.md | 3 ++- docs/version-specific/supported-software/p/PyStan.md | 3 ++- docs/version-specific/supported-software/p/PyTables.md | 3 ++- docs/version-specific/supported-software/p/PyTensor.md | 3 ++- .../supported-software/p/PyTorch-Geometric.md | 3 ++- .../supported-software/p/PyTorch-Ignite.md | 3 ++- .../supported-software/p/PyTorch-Image-Models.md | 3 ++- .../supported-software/p/PyTorch-Lightning.md | 3 ++- .../supported-software/p/PyTorch-bundle.md | 3 ++- docs/version-specific/supported-software/p/PyTorch.md | 3 ++- docs/version-specific/supported-software/p/PyTorch3D.md | 3 ++- .../version-specific/supported-software/p/PyTorchVideo.md | 3 ++- docs/version-specific/supported-software/p/PyVCF.md | 3 ++- docs/version-specific/supported-software/p/PyVCF3.md | 3 ++- docs/version-specific/supported-software/p/PyVista.md | 3 ++- docs/version-specific/supported-software/p/PyWBGT.md | 3 ++- docs/version-specific/supported-software/p/PyWavelets.md | 3 ++- docs/version-specific/supported-software/p/PyYAML.md | 3 ++- docs/version-specific/supported-software/p/PyZMQ.md | 3 ++- docs/version-specific/supported-software/p/PycURL.md | 3 ++- docs/version-specific/supported-software/p/Pychopper.md | 3 ++- docs/version-specific/supported-software/p/Pygments.md | 3 ++- docs/version-specific/supported-software/p/Pyke3.md | 3 ++- docs/version-specific/supported-software/p/Pylint.md | 3 ++- docs/version-specific/supported-software/p/Pyomo.md | 3 ++- docs/version-specific/supported-software/p/Pyro4.md | 3 ++- docs/version-specific/supported-software/p/Pysam.md | 3 ++- docs/version-specific/supported-software/p/Pysolar.md | 3 ++- .../supported-software/p/Python-bundle-PyPI.md | 3 ++- .../supported-software/p/Python-bundle.md | 3 ++- docs/version-specific/supported-software/p/Python.md | 3 ++- docs/version-specific/supported-software/p/index.md | 8 +++++++- docs/version-specific/supported-software/p/p11-kit.md | 3 ++- .../supported-software/p/p4-phylogenetics.md | 3 ++- docs/version-specific/supported-software/p/p4est.md | 3 ++- docs/version-specific/supported-software/p/p4vasp.md | 3 ++- docs/version-specific/supported-software/p/p7zip.md | 3 ++- docs/version-specific/supported-software/p/pFUnit.md | 3 ++- docs/version-specific/supported-software/p/pIRS.md | 3 ++- docs/version-specific/supported-software/p/packmol.md | 3 ++- docs/version-specific/supported-software/p/pagmo.md | 3 ++- docs/version-specific/supported-software/p/pairsnp.md | 3 ++- docs/version-specific/supported-software/p/paladin.md | 3 ++- docs/version-specific/supported-software/p/panaroo.md | 3 ++- docs/version-specific/supported-software/p/pandapower.md | 3 ++- .../supported-software/p/pandas-datareader.md | 3 ++- docs/version-specific/supported-software/p/pandas.md | 3 ++- docs/version-specific/supported-software/p/pangolin.md | 3 ++- docs/version-specific/supported-software/p/panito.md | 3 ++- .../supported-software/p/parallel-fastq-dump.md | 3 ++- docs/version-specific/supported-software/p/parallel.md | 3 ++- .../supported-software/p/parameterized.md | 3 ++- docs/version-specific/supported-software/p/paramiko.md | 3 ++- docs/version-specific/supported-software/p/parasail.md | 3 ++- docs/version-specific/supported-software/p/pasta.md | 3 ++- docs/version-specific/supported-software/p/pastml.md | 3 ++- docs/version-specific/supported-software/p/patch.md | 3 ++- docs/version-specific/supported-software/p/patchelf.md | 3 ++- docs/version-specific/supported-software/p/path.py.md | 3 ++- docs/version-specific/supported-software/p/pauvre.md | 3 ++- docs/version-specific/supported-software/p/pbbam.md | 3 ++- docs/version-specific/supported-software/p/pbcopper.md | 3 ++- docs/version-specific/supported-software/p/pbdagcon.md | 3 ++- docs/version-specific/supported-software/p/pbipa.md | 3 ++- docs/version-specific/supported-software/p/pblat.md | 3 ++- docs/version-specific/supported-software/p/pbmm2.md | 3 ++- docs/version-specific/supported-software/p/pbs_python.md | 3 ++- docs/version-specific/supported-software/p/pdf2docx.md | 3 ++- docs/version-specific/supported-software/p/pdsh.md | 3 ++- docs/version-specific/supported-software/p/peakdetect.md | 3 ++- .../supported-software/p/perl-app-cpanminus.md | 3 ++- docs/version-specific/supported-software/p/petsc4py.md | 3 ++- docs/version-specific/supported-software/p/pfind.md | 3 ++- docs/version-specific/supported-software/p/pftoolsV3.md | 3 ++- docs/version-specific/supported-software/p/phonemizer.md | 3 ++- docs/version-specific/supported-software/p/phono3py.md | 3 ++- docs/version-specific/supported-software/p/phonopy.md | 3 ++- docs/version-specific/supported-software/p/photontorch.md | 3 ++- docs/version-specific/supported-software/p/phototonic.md | 3 ++- docs/version-specific/supported-software/p/phylokit.md | 3 ++- docs/version-specific/supported-software/p/phylonaut.md | 3 ++- docs/version-specific/supported-software/p/phyluce.md | 3 ++- docs/version-specific/supported-software/p/phyx.md | 3 ++- docs/version-specific/supported-software/p/piSvM-JSC.md | 3 ++- docs/version-specific/supported-software/p/piSvM.md | 3 ++- docs/version-specific/supported-software/p/picard.md | 3 ++- docs/version-specific/supported-software/p/pigz.md | 3 ++- docs/version-specific/supported-software/p/pip.md | 3 ++- docs/version-specific/supported-software/p/pixman.md | 3 ++- docs/version-specific/supported-software/p/pizzly.md | 3 ++- docs/version-specific/supported-software/p/pkg-config.md | 3 ++- docs/version-specific/supported-software/p/pkgconf.md | 3 ++- docs/version-specific/supported-software/p/pkgconfig.md | 3 ++- docs/version-specific/supported-software/p/planarity.md | 3 ++- docs/version-specific/supported-software/p/plantcv.md | 3 ++- docs/version-specific/supported-software/p/plantri.md | 3 ++- docs/version-specific/supported-software/p/plc.md | 3 ++- docs/version-specific/supported-software/p/plinkQC.md | 3 ++- .../supported-software/p/plinkliftover.md | 3 ++- docs/version-specific/supported-software/p/plmc.md | 3 ++- docs/version-specific/supported-software/p/plot1cell.md | 3 ++- docs/version-specific/supported-software/p/plotly-orca.md | 3 ++- docs/version-specific/supported-software/p/plotly.md | 3 ++- docs/version-specific/supported-software/p/plotly.py.md | 3 ++- docs/version-specific/supported-software/p/plotutils.md | 3 ++- docs/version-specific/supported-software/p/pmt.md | 3 ++- docs/version-specific/supported-software/p/pmx.md | 3 ++- docs/version-specific/supported-software/p/pocl.md | 3 ++- .../supported-software/p/pod5-file-format.md | 3 ++- docs/version-specific/supported-software/p/poetry.md | 3 ++- docs/version-specific/supported-software/p/polars.md | 3 ++- docs/version-specific/supported-software/p/polymake.md | 3 ++- docs/version-specific/supported-software/p/pomkl.md | 3 ++- docs/version-specific/supported-software/p/pompi.md | 3 ++- docs/version-specific/supported-software/p/poppler.md | 3 ++- docs/version-specific/supported-software/p/poppunk.md | 3 ++- docs/version-specific/supported-software/p/popscle.md | 3 ++- docs/version-specific/supported-software/p/popt.md | 3 ++- docs/version-specific/supported-software/p/porefoam.md | 3 ++- docs/version-specific/supported-software/p/poretools.md | 3 ++- docs/version-specific/supported-software/p/powerlaw.md | 3 ++- .../version-specific/supported-software/p/pp-sketchlib.md | 3 ++- docs/version-specific/supported-software/p/ppl.md | 3 ++- docs/version-specific/supported-software/p/pplacer.md | 3 ++- docs/version-specific/supported-software/p/pplpy.md | 3 ++- docs/version-specific/supported-software/p/preCICE.md | 3 ++- docs/version-specific/supported-software/p/premailer.md | 3 ++- docs/version-specific/supported-software/p/preseq.md | 3 ++- docs/version-specific/supported-software/p/presto.md | 3 ++- docs/version-specific/supported-software/p/pretty-yaml.md | 3 ++- docs/version-specific/supported-software/p/primecount.md | 3 ++- .../version-specific/supported-software/p/primecountpy.md | 3 ++- docs/version-specific/supported-software/p/printproto.md | 3 ++- docs/version-specific/supported-software/p/prodigal.md | 3 ++- docs/version-specific/supported-software/p/prokka.md | 3 ++- .../supported-software/p/prompt-toolkit.md | 3 ++- docs/version-specific/supported-software/p/proovread.md | 3 ++- docs/version-specific/supported-software/p/propy.md | 3 ++- .../supported-software/p/protobuf-python.md | 3 ++- docs/version-specific/supported-software/p/protobuf.md | 3 ++- docs/version-specific/supported-software/p/protozero.md | 3 ++- docs/version-specific/supported-software/p/pscom.md | 3 ++- docs/version-specific/supported-software/p/psmc.md | 3 ++- docs/version-specific/supported-software/p/psmpi.md | 3 ++- docs/version-specific/supported-software/p/psmpi2.md | 3 ++- docs/version-specific/supported-software/p/psrecord.md | 3 ++- docs/version-specific/supported-software/p/pstoedit.md | 3 ++- docs/version-specific/supported-software/p/psutil.md | 3 ++- docs/version-specific/supported-software/p/psycopg.md | 3 ++- docs/version-specific/supported-software/p/psycopg2.md | 3 ++- docs/version-specific/supported-software/p/ptemcee.md | 3 ++- docs/version-specific/supported-software/p/pubtcrs.md | 3 ++- docs/version-specific/supported-software/p/pugixml.md | 3 ++- docs/version-specific/supported-software/p/pullseq.md | 3 ++- docs/version-specific/supported-software/p/purge_dups.md | 3 ++- docs/version-specific/supported-software/p/pv.md | 3 ++- .../version-specific/supported-software/p/py-aiger-bdd.md | 3 ++- docs/version-specific/supported-software/p/py-aiger.md | 3 ++- docs/version-specific/supported-software/p/py-c3d.md | 3 ++- docs/version-specific/supported-software/p/py-cpuinfo.md | 3 ++- docs/version-specific/supported-software/p/py.md | 3 ++- docs/version-specific/supported-software/p/py3Dmol.md | 3 ++- docs/version-specific/supported-software/p/pyABC.md | 3 ++- docs/version-specific/supported-software/p/pyBigWig.md | 3 ++- docs/version-specific/supported-software/p/pyEGA3.md | 3 ++- docs/version-specific/supported-software/p/pyFAI.md | 3 ++- docs/version-specific/supported-software/p/pyFFTW.md | 3 ++- docs/version-specific/supported-software/p/pyGAM.md | 3 ++- docs/version-specific/supported-software/p/pyGIMLi.md | 3 ++- .../supported-software/p/pyGenomeTracks.md | 3 ++- .../supported-software/p/pyMannKendall.md | 3 ++- docs/version-specific/supported-software/p/pySCENIC.md | 3 ++- docs/version-specific/supported-software/p/pyScaf.md | 3 ++- docs/version-specific/supported-software/p/pyWannier90.md | 3 ++- docs/version-specific/supported-software/p/pyXDF.md | 3 ++- docs/version-specific/supported-software/p/pybedtools.md | 3 ++- .../supported-software/p/pybind11-stubgen.md | 3 ++- docs/version-specific/supported-software/p/pybind11.md | 3 ++- docs/version-specific/supported-software/p/pybinding.md | 3 ++- docs/version-specific/supported-software/p/pyccel.md | 3 ++- docs/version-specific/supported-software/p/pycma.md | 3 ++- docs/version-specific/supported-software/p/pycoQC.md | 3 ++- docs/version-specific/supported-software/p/pycocotools.md | 3 ++- docs/version-specific/supported-software/p/pycodestyle.md | 3 ++- docs/version-specific/supported-software/p/pycubescd.md | 3 ++- docs/version-specific/supported-software/p/pydantic.md | 3 ++- docs/version-specific/supported-software/p/pydicom-seg.md | 3 ++- docs/version-specific/supported-software/p/pydicom.md | 3 ++- docs/version-specific/supported-software/p/pydlpoly.md | 3 ++- docs/version-specific/supported-software/p/pydot.md | 3 ++- docs/version-specific/supported-software/p/pyenchant.md | 3 ++- docs/version-specific/supported-software/p/pyfaidx.md | 3 ++- docs/version-specific/supported-software/p/pyfasta.md | 3 ++- docs/version-specific/supported-software/p/pyfits.md | 3 ++- docs/version-specific/supported-software/p/pygame.md | 3 ++- docs/version-specific/supported-software/p/pygccxml.md | 3 ++- docs/version-specific/supported-software/p/pygmo.md | 3 ++- docs/version-specific/supported-software/p/pygraphviz.md | 3 ++- docs/version-specific/supported-software/p/pygrib.md | 3 ++- docs/version-specific/supported-software/p/pyhdf.md | 3 ++- docs/version-specific/supported-software/p/pyiron.md | 3 ++- docs/version-specific/supported-software/p/pylift.md | 3 ++- docs/version-specific/supported-software/p/pylipid.md | 3 ++- docs/version-specific/supported-software/p/pymatgen-db.md | 3 ++- docs/version-specific/supported-software/p/pymatgen.md | 3 ++- docs/version-specific/supported-software/p/pymbar.md | 3 ++- docs/version-specific/supported-software/p/pymca.md | 3 ++- docs/version-specific/supported-software/p/pymemcache.md | 3 ++- docs/version-specific/supported-software/p/pyobjcryst.md | 3 ++- docs/version-specific/supported-software/p/pyodbc.md | 3 ++- docs/version-specific/supported-software/p/pyparsing.md | 3 ++- docs/version-specific/supported-software/p/pyperf.md | 3 ++- docs/version-specific/supported-software/p/pyplusplus.md | 3 ++- docs/version-specific/supported-software/p/pypmt.md | 3 ++- docs/version-specific/supported-software/p/pyproj.md | 3 ++- docs/version-specific/supported-software/p/pyqstem.md | 3 ++- docs/version-specific/supported-software/p/pyradiomics.md | 3 ++- docs/version-specific/supported-software/p/pyringe.md | 3 ++- docs/version-specific/supported-software/p/pyro-api.md | 3 ++- docs/version-specific/supported-software/p/pyro-ppl.md | 3 ++- docs/version-specific/supported-software/p/pysamstats.md | 3 ++- docs/version-specific/supported-software/p/pyseer.md | 3 ++- docs/version-specific/supported-software/p/pysheds.md | 3 ++- docs/version-specific/supported-software/p/pyshp.md | 3 ++- docs/version-specific/supported-software/p/pyslim.md | 3 ++- docs/version-specific/supported-software/p/pysndfx.md | 3 ++- docs/version-specific/supported-software/p/pyspoa.md | 3 ++- docs/version-specific/supported-software/p/pysqlite.md | 3 ++- docs/version-specific/supported-software/p/pysteps.md | 3 ++- docs/version-specific/supported-software/p/pystran.md | 3 ++- docs/version-specific/supported-software/p/pytesseract.md | 3 ++- .../supported-software/p/pytest-benchmark.md | 3 ++- docs/version-specific/supported-software/p/pytest-cpp.md | 3 ++- .../supported-software/p/pytest-flakefinder.md | 3 ++- .../supported-software/p/pytest-rerunfailures.md | 3 ++- .../version-specific/supported-software/p/pytest-shard.md | 3 ++- .../supported-software/p/pytest-workflow.md | 3 ++- .../version-specific/supported-software/p/pytest-xdist.md | 3 ++- docs/version-specific/supported-software/p/pytest.md | 3 ++- .../supported-software/p/pythermalcomfort.md | 3 ++- .../supported-software/p/python-Levenshtein.md | 3 ++- .../supported-software/p/python-casacore.md | 3 ++- docs/version-specific/supported-software/p/python-docx.md | 3 ++- docs/version-specific/supported-software/p/python-hl7.md | 3 ++- .../supported-software/p/python-igraph.md | 3 ++- .../supported-software/p/python-irodsclient.md | 3 ++- docs/version-specific/supported-software/p/python-isal.md | 3 ++- .../supported-software/p/python-libsbml.md | 3 ++- .../supported-software/p/python-louvain.md | 3 ++- .../supported-software/p/python-mujoco.md | 3 ++- .../supported-software/p/python-parasail.md | 3 ++- .../supported-software/p/python-telegram-bot.md | 3 ++- .../supported-software/p/python-weka-wrapper3.md | 3 ++- .../supported-software/p/python-xxhash.md | 3 ++- docs/version-specific/supported-software/p/pythran.md | 3 ++- .../supported-software/p/pytorch-3dunet.md | 3 ++- .../supported-software/p/pytorch-CycleGAN-pix2pix.md | 3 ++- docs/version-specific/supported-software/q/Q6.md | 3 ++- docs/version-specific/supported-software/q/QCA.md | 3 ++- .../version-specific/supported-software/q/QCG-PilotJob.md | 3 ++- docs/version-specific/supported-software/q/QCxMS.md | 3 ++- docs/version-specific/supported-software/q/QD.md | 3 ++- docs/version-specific/supported-software/q/QDD.md | 3 ++- docs/version-specific/supported-software/q/QEMU.md | 3 ++- docs/version-specific/supported-software/q/QGIS.md | 3 ++- docs/version-specific/supported-software/q/QIIME.md | 3 ++- docs/version-specific/supported-software/q/QIIME2.md | 3 ++- docs/version-specific/supported-software/q/QJson.md | 3 ++- docs/version-specific/supported-software/q/QML.md | 3 ++- docs/version-specific/supported-software/q/QScintilla.md | 3 ++- docs/version-specific/supported-software/q/QTLtools.md | 3 ++- docs/version-specific/supported-software/q/QUAST.md | 3 ++- docs/version-specific/supported-software/q/Qhull.md | 3 ++- docs/version-specific/supported-software/q/Qiskit.md | 3 ++- docs/version-specific/supported-software/q/Qt.md | 3 ++- docs/version-specific/supported-software/q/Qt5.md | 3 ++- docs/version-specific/supported-software/q/Qt5Webkit.md | 3 ++- docs/version-specific/supported-software/q/Qt6.md | 3 ++- docs/version-specific/supported-software/q/QtKeychain.md | 3 ++- docs/version-specific/supported-software/q/QtPy.md | 3 ++- docs/version-specific/supported-software/q/Qtconsole.md | 3 ++- docs/version-specific/supported-software/q/QuPath.md | 3 ++- docs/version-specific/supported-software/q/QuTiP.md | 3 ++- docs/version-specific/supported-software/q/QuaZIP.md | 3 ++- docs/version-specific/supported-software/q/Qualimap.md | 3 ++- docs/version-specific/supported-software/q/Quandl.md | 3 ++- .../supported-software/q/QuantumESPRESSO.md | 3 ++- docs/version-specific/supported-software/q/QuickFF.md | 3 ++- docs/version-specific/supported-software/q/QuickPIC.md | 3 ++- docs/version-specific/supported-software/q/QuickTree.md | 3 ++- docs/version-specific/supported-software/q/Quip.md | 3 ++- docs/version-specific/supported-software/q/Quorum.md | 3 ++- docs/version-specific/supported-software/q/Qwt.md | 3 ++- docs/version-specific/supported-software/q/QwtPolar.md | 3 ++- docs/version-specific/supported-software/q/index.md | 8 +++++++- docs/version-specific/supported-software/q/q2-krona.md | 3 ++- docs/version-specific/supported-software/q/qcat.md | 3 ++- docs/version-specific/supported-software/q/qcint.md | 3 ++- docs/version-specific/supported-software/q/qforce.md | 3 ++- docs/version-specific/supported-software/q/qmflows.md | 3 ++- docs/version-specific/supported-software/q/qnorm.md | 3 ++- docs/version-specific/supported-software/q/qpth.md | 3 ++- docs/version-specific/supported-software/q/qrupdate.md | 3 ++- docs/version-specific/supported-software/q/qtop.md | 3 ++- docs/version-specific/supported-software/r/R-INLA.md | 3 ++- docs/version-specific/supported-software/r/R-MXM.md | 3 ++- .../supported-software/r/R-bundle-Bioconductor.md | 3 ++- .../supported-software/r/R-bundle-CRAN.md | 3 ++- docs/version-specific/supported-software/r/R-keras.md | 3 ++- docs/version-specific/supported-software/r/R-opencv.md | 3 ++- docs/version-specific/supported-software/r/R-tesseract.md | 3 ++- docs/version-specific/supported-software/r/R-transport.md | 3 ++- docs/version-specific/supported-software/r/R.md | 3 ++- docs/version-specific/supported-software/r/R2jags.md | 3 ++- docs/version-specific/supported-software/r/RAPSearch2.md | 3 ++- docs/version-specific/supported-software/r/RASPA2.md | 3 ++- docs/version-specific/supported-software/r/RAxML-NG.md | 3 ++- docs/version-specific/supported-software/r/RAxML.md | 3 ++- docs/version-specific/supported-software/r/RBFOpt.md | 3 ++- docs/version-specific/supported-software/r/RCall.md | 3 ++- docs/version-specific/supported-software/r/RDFlib.md | 3 ++- docs/version-specific/supported-software/r/RDKit.md | 3 ++- .../supported-software/r/RDP-Classifier.md | 3 ++- docs/version-specific/supported-software/r/RE2.md | 3 ++- docs/version-specific/supported-software/r/RECON.md | 3 ++- docs/version-specific/supported-software/r/RELION.md | 3 ++- docs/version-specific/supported-software/r/REMORA.md | 3 ++- docs/version-specific/supported-software/r/RERconverge.md | 3 ++- docs/version-specific/supported-software/r/RFdiffusion.md | 3 ++- docs/version-specific/supported-software/r/RHEIA.md | 3 ++- docs/version-specific/supported-software/r/RInChI.md | 3 ++- docs/version-specific/supported-software/r/RLCard.md | 3 ++- docs/version-specific/supported-software/r/RMBlast.md | 3 ++- docs/version-specific/supported-software/r/RNA-Bloom.md | 3 ++- docs/version-specific/supported-software/r/RNA-SeQC.md | 3 ++- docs/version-specific/supported-software/r/RNAIndel.md | 3 ++- docs/version-specific/supported-software/r/RNAclust.md | 3 ++- docs/version-specific/supported-software/r/RNAcode.md | 3 ++- docs/version-specific/supported-software/r/RNAmmer.md | 3 ++- docs/version-specific/supported-software/r/RNAz.md | 3 ++- .../version-specific/supported-software/r/ROCR-Runtime.md | 3 ++- .../supported-software/r/ROCT-Thunk-Interface.md | 3 ++- .../supported-software/r/ROCm-CompilerSupport.md | 3 ++- docs/version-specific/supported-software/r/ROCm.md | 3 ++- docs/version-specific/supported-software/r/ROI_PAC.md | 3 ++- docs/version-specific/supported-software/r/ROME.md | 3 ++- docs/version-specific/supported-software/r/ROOT.md | 3 ++- docs/version-specific/supported-software/r/RPostgreSQL.md | 3 ++- docs/version-specific/supported-software/r/RQGIS3.md | 3 ++- docs/version-specific/supported-software/r/RSEM.md | 3 ++- docs/version-specific/supported-software/r/RSeQC.md | 3 ++- docs/version-specific/supported-software/r/RStan.md | 3 ++- .../supported-software/r/RStudio-Server.md | 3 ++- docs/version-specific/supported-software/r/RTG-Tools.md | 3 ++- docs/version-specific/supported-software/r/RaGOO.md | 3 ++- docs/version-specific/supported-software/r/Racon.md | 3 ++- docs/version-specific/supported-software/r/RagTag.md | 3 ++- docs/version-specific/supported-software/r/Ragout.md | 3 ++- docs/version-specific/supported-software/r/RapidJSON.md | 3 ++- docs/version-specific/supported-software/r/Raptor.md | 3 ++- docs/version-specific/supported-software/r/Rascaf.md | 3 ++- docs/version-specific/supported-software/r/Ratatosk.md | 3 ++- docs/version-specific/supported-software/r/Raven.md | 3 ++- .../supported-software/r/Ray-assembler.md | 3 ++- docs/version-specific/supported-software/r/Ray-project.md | 3 ++- docs/version-specific/supported-software/r/Raysect.md | 3 ++- docs/version-specific/supported-software/r/Rcorrector.md | 3 ++- docs/version-specific/supported-software/r/RcppGSL.md | 3 ++- docs/version-specific/supported-software/r/ReFrame.md | 3 ++- docs/version-specific/supported-software/r/ReMatCh.md | 3 ++- docs/version-specific/supported-software/r/Reads2snp.md | 3 ++- docs/version-specific/supported-software/r/Reapr.md | 3 ++- docs/version-specific/supported-software/r/ReaxFF.md | 3 ++- docs/version-specific/supported-software/r/Red.md | 3 ++- docs/version-specific/supported-software/r/Redis.md | 3 ++- docs/version-specific/supported-software/r/Redundans.md | 3 ++- docs/version-specific/supported-software/r/RegTools.md | 3 ++- docs/version-specific/supported-software/r/Relate.md | 3 ++- docs/version-specific/supported-software/r/RepastHPC.md | 3 ++- .../version-specific/supported-software/r/RepeatMasker.md | 3 ++- .../supported-software/r/RepeatModeler.md | 3 ++- docs/version-specific/supported-software/r/RepeatScout.md | 3 ++- .../version-specific/supported-software/r/ResistanceGA.md | 3 ++- docs/version-specific/supported-software/r/Restrander.md | 3 ++- docs/version-specific/supported-software/r/RevBayes.md | 3 ++- docs/version-specific/supported-software/r/Rgurobi.md | 3 ++- docs/version-specific/supported-software/r/RheoTool.md | 3 ++- docs/version-specific/supported-software/r/Rhodium.md | 3 ++- docs/version-specific/supported-software/r/Rivet.md | 3 ++- docs/version-specific/supported-software/r/Rmath.md | 3 ++- docs/version-specific/supported-software/r/RnBeads.md | 3 ++- docs/version-specific/supported-software/r/Roary.md | 3 ++- docs/version-specific/supported-software/r/Rosetta.md | 3 ++- docs/version-specific/supported-software/r/Rtree.md | 3 ++- docs/version-specific/supported-software/r/Ruby-Tk.md | 3 ++- docs/version-specific/supported-software/r/Ruby.md | 3 ++- docs/version-specific/supported-software/r/Rust.md | 3 ++- docs/version-specific/supported-software/r/index.md | 8 +++++++- docs/version-specific/supported-software/r/rCUDA.md | 3 ++- docs/version-specific/supported-software/r/rMATS-turbo.md | 3 ++- docs/version-specific/supported-software/r/radeontop.md | 3 ++- docs/version-specific/supported-software/r/radian.md | 3 ++- docs/version-specific/supported-software/r/rampart.md | 3 ++- docs/version-specific/supported-software/r/randfold.md | 3 ++- docs/version-specific/supported-software/r/randrproto.md | 3 ++- docs/version-specific/supported-software/r/rapidNJ.md | 3 ++- docs/version-specific/supported-software/r/rapidcsv.md | 3 ++- docs/version-specific/supported-software/r/rapidtide.md | 3 ++- docs/version-specific/supported-software/r/rasterio.md | 3 ++- docs/version-specific/supported-software/r/rasterstats.md | 3 ++- docs/version-specific/supported-software/r/rclone.md | 3 ++- docs/version-specific/supported-software/r/re2c.md | 3 ++- docs/version-specific/supported-software/r/redis-py.md | 3 ++- docs/version-specific/supported-software/r/regionmask.md | 3 ++- docs/version-specific/supported-software/r/remake.md | 3 ++- docs/version-specific/supported-software/r/renderproto.md | 3 ++- docs/version-specific/supported-software/r/request.md | 3 ++- docs/version-specific/supported-software/r/requests.md | 3 ++- docs/version-specific/supported-software/r/resolos.md | 3 ++- docs/version-specific/supported-software/r/rethinking.md | 3 ++- docs/version-specific/supported-software/r/retworkx.md | 3 ++- docs/version-specific/supported-software/r/rgdal.md | 3 ++- docs/version-specific/supported-software/r/rgeos.md | 3 ++- docs/version-specific/supported-software/r/rhdf5.md | 3 ++- docs/version-specific/supported-software/r/rickflow.md | 3 ++- docs/version-specific/supported-software/r/rioxarray.md | 3 ++- docs/version-specific/supported-software/r/ripunzip.md | 3 ++- docs/version-specific/supported-software/r/rising.md | 3 ++- docs/version-specific/supported-software/r/rjags.md | 3 ++- docs/version-specific/supported-software/r/rmarkdown.md | 3 ++- docs/version-specific/supported-software/r/rnaQUAST.md | 3 ++- docs/version-specific/supported-software/r/rocm-cmake.md | 3 ++- docs/version-specific/supported-software/r/rocm-smi.md | 3 ++- docs/version-specific/supported-software/r/rocminfo.md | 3 ++- docs/version-specific/supported-software/r/root_numpy.md | 3 ++- docs/version-specific/supported-software/r/rootpy.md | 3 ++- docs/version-specific/supported-software/r/rpmrebuild.md | 3 ++- docs/version-specific/supported-software/r/rpy2.md | 3 ++- docs/version-specific/supported-software/r/rstanarm.md | 3 ++- docs/version-specific/supported-software/r/ruamel.yaml.md | 3 ++- docs/version-specific/supported-software/r/ruffus.md | 3 ++- docs/version-specific/supported-software/r/ruptures.md | 3 ++- docs/version-specific/supported-software/r/rustworkx.md | 3 ++- docs/version-specific/supported-software/s/S-Lang.md | 3 ++- docs/version-specific/supported-software/s/S4.md | 3 ++- docs/version-specific/supported-software/s/SAGE.md | 3 ++- .../version-specific/supported-software/s/SALMON-TDDFT.md | 3 ++- docs/version-specific/supported-software/s/SALib.md | 3 ++- docs/version-specific/supported-software/s/SAMtools.md | 3 ++- docs/version-specific/supported-software/s/SAP.md | 3 ++- docs/version-specific/supported-software/s/SAS.md | 3 ++- docs/version-specific/supported-software/s/SBCL.md | 3 ++- docs/version-specific/supported-software/s/SCALCE.md | 3 ++- docs/version-specific/supported-software/s/SCENIC.md | 3 ++- docs/version-specific/supported-software/s/SCGid.md | 3 ++- docs/version-specific/supported-software/s/SCIP.md | 3 ++- docs/version-specific/supported-software/s/SCIPhI.md | 3 ++- docs/version-specific/supported-software/s/SCOOP.md | 3 ++- docs/version-specific/supported-software/s/SCOTCH.md | 3 ++- .../version-specific/supported-software/s/SCReadCounts.md | 3 ++- docs/version-specific/supported-software/s/SCnorm.md | 3 ++- docs/version-specific/supported-software/s/SCons.md | 3 ++- docs/version-specific/supported-software/s/SCopeLoomR.md | 3 ++- docs/version-specific/supported-software/s/SDCC.md | 3 ++- docs/version-specific/supported-software/s/SDL.md | 3 ++- docs/version-specific/supported-software/s/SDL2.md | 3 ++- docs/version-specific/supported-software/s/SDL2_gfx.md | 3 ++- docs/version-specific/supported-software/s/SDL2_image.md | 3 ++- docs/version-specific/supported-software/s/SDL2_mixer.md | 3 ++- docs/version-specific/supported-software/s/SDL2_ttf.md | 3 ++- docs/version-specific/supported-software/s/SDL_image.md | 3 ++- docs/version-specific/supported-software/s/SDSL.md | 3 ++- docs/version-specific/supported-software/s/SEACells.md | 3 ++- docs/version-specific/supported-software/s/SECAPR.md | 3 ++- docs/version-specific/supported-software/s/SELFIES.md | 3 ++- docs/version-specific/supported-software/s/SEPP.md | 3 ++- docs/version-specific/supported-software/s/SHAP.md | 3 ++- docs/version-specific/supported-software/s/SHAPEIT.md | 3 ++- docs/version-specific/supported-software/s/SHAPEIT4.md | 3 ++- docs/version-specific/supported-software/s/SHORE.md | 3 ++- docs/version-specific/supported-software/s/SHTns.md | 3 ++- docs/version-specific/supported-software/s/SICER2.md | 3 ++- docs/version-specific/supported-software/s/SIMPLE.md | 3 ++- docs/version-specific/supported-software/s/SIONlib.md | 3 ++- docs/version-specific/supported-software/s/SIP.md | 3 ++- docs/version-specific/supported-software/s/SISSO++.md | 3 ++- docs/version-specific/supported-software/s/SISSO.md | 3 ++- docs/version-specific/supported-software/s/SKESA.md | 3 ++- docs/version-specific/supported-software/s/SLATEC.md | 3 ++- docs/version-specific/supported-software/s/SLEPc.md | 3 ++- docs/version-specific/supported-software/s/SLiM.md | 3 ++- docs/version-specific/supported-software/s/SMAP.md | 3 ++- docs/version-specific/supported-software/s/SMARTdenovo.md | 3 ++- docs/version-specific/supported-software/s/SMC++.md | 3 ++- docs/version-specific/supported-software/s/SMRT-Link.md | 3 ++- docs/version-specific/supported-software/s/SMV.md | 3 ++- .../supported-software/s/SNAP-ESA-python.md | 3 ++- docs/version-specific/supported-software/s/SNAP-ESA.md | 3 ++- docs/version-specific/supported-software/s/SNAP-HMM.md | 3 ++- docs/version-specific/supported-software/s/SNAP.md | 3 ++- .../version-specific/supported-software/s/SNAPE-pooled.md | 3 ++- docs/version-specific/supported-software/s/SNPhylo.md | 3 ++- docs/version-specific/supported-software/s/SNPomatic.md | 3 ++- docs/version-specific/supported-software/s/SOAPaligner.md | 3 ++- .../supported-software/s/SOAPdenovo-Trans.md | 3 ++- docs/version-specific/supported-software/s/SOAPdenovo2.md | 3 ++- docs/version-specific/supported-software/s/SOAPfuse.md | 3 ++- docs/version-specific/supported-software/s/SOCI.md | 3 ++- docs/version-specific/supported-software/s/SPAdes.md | 3 ++- docs/version-specific/supported-software/s/SPEI.md | 3 ++- docs/version-specific/supported-software/s/SPLASH.md | 3 ++- docs/version-specific/supported-software/s/SPM.md | 3 ++- docs/version-specific/supported-software/s/SPOOLES.md | 3 ++- docs/version-specific/supported-software/s/SPOTPY.md | 3 ++- docs/version-specific/supported-software/s/SPRNG.md | 3 ++- docs/version-specific/supported-software/s/SQLAlchemy.md | 3 ++- docs/version-specific/supported-software/s/SQLite.md | 3 ++- docs/version-specific/supported-software/s/SRA-Toolkit.md | 3 ++- docs/version-specific/supported-software/s/SRPRISM.md | 3 ++- docs/version-specific/supported-software/s/SRST2.md | 3 ++- docs/version-specific/supported-software/s/SSAHA2.md | 3 ++- docs/version-specific/supported-software/s/SSN.md | 3 ++- .../version-specific/supported-software/s/SSPACE_Basic.md | 3 ++- docs/version-specific/supported-software/s/SSW.md | 3 ++- docs/version-specific/supported-software/s/STACEY.md | 3 ++- docs/version-specific/supported-software/s/STAMP.md | 3 ++- docs/version-specific/supported-software/s/STAR-CCM+.md | 3 ++- docs/version-specific/supported-software/s/STAR-Fusion.md | 3 ++- docs/version-specific/supported-software/s/STAR.md | 3 ++- docs/version-specific/supported-software/s/STEAK.md | 3 ++- docs/version-specific/supported-software/s/STIR.md | 3 ++- docs/version-specific/supported-software/s/STREAM.md | 3 ++- docs/version-specific/supported-software/s/STRUMPACK.md | 3 ++- docs/version-specific/supported-software/s/STRique.md | 3 ++- docs/version-specific/supported-software/s/SUMACLUST.md | 3 ++- docs/version-specific/supported-software/s/SUMATRA.md | 3 ++- docs/version-specific/supported-software/s/SUMO.md | 3 ++- docs/version-specific/supported-software/s/SUNDIALS.md | 3 ++- docs/version-specific/supported-software/s/SUPPA.md | 3 ++- docs/version-specific/supported-software/s/SURVIVOR.md | 3 ++- docs/version-specific/supported-software/s/SVDetect.md | 3 ++- docs/version-specific/supported-software/s/SVDquest.md | 3 ++- docs/version-specific/supported-software/s/SVG.md | 3 ++- docs/version-specific/supported-software/s/SVIM.md | 3 ++- docs/version-specific/supported-software/s/SVclone.md | 3 ++- docs/version-specific/supported-software/s/SWASH.md | 3 ++- docs/version-specific/supported-software/s/SWAT+.md | 3 ++- docs/version-specific/supported-software/s/SWIG.md | 3 ++- docs/version-specific/supported-software/s/SWIPE.md | 3 ++- docs/version-specific/supported-software/s/SYMMETRICA.md | 3 ++- docs/version-specific/supported-software/s/SYMPHONY.md | 3 ++- docs/version-specific/supported-software/s/Sabre.md | 3 ++- docs/version-specific/supported-software/s/Safetensors.md | 3 ++- docs/version-specific/supported-software/s/Sailfish.md | 3 ++- docs/version-specific/supported-software/s/Salmon.md | 3 ++- docs/version-specific/supported-software/s/Sambamba.md | 3 ++- docs/version-specific/supported-software/s/Samcef.md | 3 ++- docs/version-specific/supported-software/s/Satsuma2.md | 3 ++- docs/version-specific/supported-software/s/Saxon-HE.md | 3 ++- docs/version-specific/supported-software/s/ScaFaCoS.md | 3 ++- docs/version-specific/supported-software/s/ScaLAPACK.md | 3 ++- docs/version-specific/supported-software/s/Scalasca.md | 3 ++- docs/version-specific/supported-software/s/Scalene.md | 3 ++- docs/version-specific/supported-software/s/Schrodinger.md | 3 ++- .../version-specific/supported-software/s/SciPy-bundle.md | 3 ++- .../supported-software/s/SciTools-Iris.md | 3 ++- .../supported-software/s/ScientificPython.md | 3 ++- docs/version-specific/supported-software/s/Scoary.md | 3 ++- docs/version-specific/supported-software/s/Score-P.md | 3 ++- docs/version-specific/supported-software/s/Scrappie.md | 3 ++- docs/version-specific/supported-software/s/Scythe.md | 3 ++- docs/version-specific/supported-software/s/SeaView.md | 3 ++- docs/version-specific/supported-software/s/Seaborn.md | 3 ++- docs/version-specific/supported-software/s/SearchGUI.md | 3 ++- docs/version-specific/supported-software/s/Seeder.md | 3 ++- docs/version-specific/supported-software/s/SeisSol.md | 3 ++- docs/version-specific/supported-software/s/SelEstim.md | 3 ++- docs/version-specific/supported-software/s/SemiBin.md | 3 ++- .../supported-software/s/Sentence-Transformers.md | 3 ++- .../supported-software/s/SentencePiece.md | 3 ++- docs/version-specific/supported-software/s/Seq-Gen.md | 3 ++- docs/version-specific/supported-software/s/SeqAn.md | 3 ++- docs/version-specific/supported-software/s/SeqAn3.md | 3 ++- docs/version-specific/supported-software/s/SeqKit.md | 3 ++- docs/version-specific/supported-software/s/SeqLib.md | 3 ++- docs/version-specific/supported-software/s/SeqPrep.md | 3 ++- docs/version-specific/supported-software/s/Seqmagick.md | 3 ++- docs/version-specific/supported-software/s/Serf.md | 3 ++- docs/version-specific/supported-software/s/Seurat.md | 3 ++- docs/version-specific/supported-software/s/SeuratData.md | 3 ++- docs/version-specific/supported-software/s/SeuratDisk.md | 3 ++- .../supported-software/s/SeuratWrappers.md | 3 ++- docs/version-specific/supported-software/s/Shannon.md | 3 ++- docs/version-specific/supported-software/s/Shapely.md | 3 ++- docs/version-specific/supported-software/s/Shasta.md | 3 ++- docs/version-specific/supported-software/s/ShengBTE.md | 3 ++- docs/version-specific/supported-software/s/Short-Pair.md | 3 ++- docs/version-specific/supported-software/s/SiNVICT.md | 3 ++- docs/version-specific/supported-software/s/Sibelia.md | 3 ++- docs/version-specific/supported-software/s/Siesta.md | 3 ++- docs/version-specific/supported-software/s/SignalP.md | 3 ++- docs/version-specific/supported-software/s/SimNIBS.md | 3 ++- docs/version-specific/supported-software/s/SimPEG.md | 3 ++- docs/version-specific/supported-software/s/SimVascular.md | 3 ++- .../version-specific/supported-software/s/Simple-DFTD3.md | 3 ++- .../supported-software/s/SimpleElastix.md | 3 ++- docs/version-specific/supported-software/s/SimpleITK.md | 3 ++- docs/version-specific/supported-software/s/Simstrat.md | 3 ++- docs/version-specific/supported-software/s/SingleM.md | 3 ++- docs/version-specific/supported-software/s/Singular.md | 3 ++- docs/version-specific/supported-software/s/SlamDunk.md | 3 ++- docs/version-specific/supported-software/s/Smoldyn.md | 3 ++- docs/version-specific/supported-software/s/Sniffles.md | 3 ++- docs/version-specific/supported-software/s/SoPlex.md | 3 ++- docs/version-specific/supported-software/s/SoQt.md | 3 ++- docs/version-specific/supported-software/s/SoX.md | 3 ++- docs/version-specific/supported-software/s/SoXt.md | 3 ++- docs/version-specific/supported-software/s/SolexaQA++.md | 3 ++- docs/version-specific/supported-software/s/SortMeRNA.md | 3 ++- docs/version-specific/supported-software/s/SoupX.md | 3 ++- docs/version-specific/supported-software/s/SpaceRanger.md | 3 ++- docs/version-specific/supported-software/s/Spack.md | 3 ++- docs/version-specific/supported-software/s/Spark.md | 3 ++- docs/version-specific/supported-software/s/SpatialDE.md | 3 ++- docs/version-specific/supported-software/s/SpectrA.md | 3 ++- .../supported-software/s/Sphinx-RTD-Theme.md | 3 ++- docs/version-specific/supported-software/s/Sphinx.md | 3 ++- docs/version-specific/supported-software/s/SpiceyPy.md | 3 ++- docs/version-specific/supported-software/s/SpiecEasi.md | 3 ++- docs/version-specific/supported-software/s/SplAdder.md | 3 ++- docs/version-specific/supported-software/s/SpliceMap.md | 3 ++- docs/version-specific/supported-software/s/Spyder.md | 3 ++- docs/version-specific/supported-software/s/SqueezeMeta.md | 3 ++- docs/version-specific/supported-software/s/Squidpy.md | 3 ++- docs/version-specific/supported-software/s/StaMPS.md | 3 ++- docs/version-specific/supported-software/s/Stack.md | 3 ++- docs/version-specific/supported-software/s/Stacks.md | 3 ++- docs/version-specific/supported-software/s/Stampy.md | 3 ++- docs/version-specific/supported-software/s/Stata.md | 3 ++- .../version-specific/supported-software/s/Statistics-R.md | 3 ++- docs/version-specific/supported-software/s/Strainberry.md | 3 ++- docs/version-specific/supported-software/s/StringTie.md | 3 ++- docs/version-specific/supported-software/s/Structure.md | 3 ++- .../supported-software/s/Structure_threader.md | 3 ++- .../version-specific/supported-software/s/SuAVE-biomat.md | 3 ++- docs/version-specific/supported-software/s/Subread.md | 3 ++- docs/version-specific/supported-software/s/Subversion.md | 3 ++- docs/version-specific/supported-software/s/SuiteSparse.md | 3 ++- docs/version-specific/supported-software/s/SunPy.md | 3 ++- docs/version-specific/supported-software/s/SuperLU.md | 3 ++- .../version-specific/supported-software/s/SuperLU_DIST.md | 3 ++- docs/version-specific/supported-software/s/SyRI.md | 3 ++- .../supported-software/s/SymEngine-python.md | 3 ++- docs/version-specific/supported-software/s/SymEngine.md | 3 ++- docs/version-specific/supported-software/s/Szip.md | 3 ++- docs/version-specific/supported-software/s/index.md | 8 +++++++- docs/version-specific/supported-software/s/s3fs.md | 3 ++- .../supported-software/s/safestringlib.md | 3 ++- docs/version-specific/supported-software/s/samblaster.md | 3 ++- docs/version-specific/supported-software/s/samclip.md | 3 ++- docs/version-specific/supported-software/s/samplot.md | 3 ++- docs/version-specific/supported-software/s/sansa.md | 3 ++- docs/version-specific/supported-software/s/savvy.md | 3 ++- docs/version-specific/supported-software/s/sbt.md | 3 ++- docs/version-specific/supported-software/s/scArches.md | 3 ++- docs/version-specific/supported-software/s/scCODA.md | 3 ++- docs/version-specific/supported-software/s/scGSVA.md | 3 ++- docs/version-specific/supported-software/s/scGeneFit.md | 3 ++- .../supported-software/s/scHiCExplorer.md | 3 ++- docs/version-specific/supported-software/s/scPred.md | 3 ++- docs/version-specific/supported-software/s/scVelo.md | 3 ++- docs/version-specific/supported-software/s/scanpy.md | 3 ++- docs/version-specific/supported-software/s/sceasy.md | 3 ++- docs/version-specific/supported-software/s/sciClone.md | 3 ++- .../version-specific/supported-software/s/scib-metrics.md | 3 ++- docs/version-specific/supported-software/s/scib.md | 3 ++- .../version-specific/supported-software/s/scikit-allel.md | 3 ++- docs/version-specific/supported-software/s/scikit-bio.md | 3 ++- .../supported-software/s/scikit-build-core.md | 3 ++- .../version-specific/supported-software/s/scikit-build.md | 3 ++- docs/version-specific/supported-software/s/scikit-cuda.md | 3 ++- .../supported-software/s/scikit-extremes.md | 3 ++- .../version-specific/supported-software/s/scikit-image.md | 3 ++- .../version-specific/supported-software/s/scikit-learn.md | 3 ++- docs/version-specific/supported-software/s/scikit-lego.md | 3 ++- docs/version-specific/supported-software/s/scikit-misc.md | 3 ++- .../supported-software/s/scikit-multilearn.md | 3 ++- .../supported-software/s/scikit-optimize.md | 3 ++- docs/version-specific/supported-software/s/scikit-plot.md | 3 ++- .../supported-software/s/scikit-uplift.md | 3 ++- docs/version-specific/supported-software/s/scipy.md | 3 ++- docs/version-specific/supported-software/s/scp.md | 3 ++- docs/version-specific/supported-software/s/scrublet.md | 3 ++- docs/version-specific/supported-software/s/scvi-tools.md | 3 ++- docs/version-specific/supported-software/s/segemehl.md | 3 ++- .../supported-software/s/segment-anything.md | 3 ++- .../supported-software/s/segmentation-models-pytorch.md | 3 ++- .../supported-software/s/segmentation-models.md | 3 ++- docs/version-specific/supported-software/s/semla.md | 3 ++- docs/version-specific/supported-software/s/sentinelsat.md | 3 ++- docs/version-specific/supported-software/s/sep.md | 3 ++- docs/version-specific/supported-software/s/seq2HLA.md | 3 ++- docs/version-specific/supported-software/s/seqtk.md | 3 ++- .../supported-software/s/setuptools-rust.md | 3 ++- docs/version-specific/supported-software/s/setuptools.md | 3 ++- docs/version-specific/supported-software/s/sf.md | 3 ++- docs/version-specific/supported-software/s/sfftk.md | 3 ++- docs/version-specific/supported-software/s/shapAAR.md | 3 ++- docs/version-specific/supported-software/s/sharutils.md | 3 ++- docs/version-specific/supported-software/s/shift.md | 3 ++- docs/version-specific/supported-software/s/shovill.md | 3 ++- docs/version-specific/supported-software/s/shrinkwrap.md | 3 ++- docs/version-specific/supported-software/s/sickle.md | 3 ++- .../supported-software/s/silhouetteRank.md | 3 ++- docs/version-specific/supported-software/s/silx.md | 3 ++- docs/version-specific/supported-software/s/simanneal.md | 3 ++- docs/version-specific/supported-software/s/simint.md | 3 ++- docs/version-specific/supported-software/s/simpy.md | 3 ++- docs/version-specific/supported-software/s/sinto.md | 3 ++- docs/version-specific/supported-software/s/siscone.md | 3 ++- docs/version-specific/supported-software/s/sketchmap.md | 3 ++- docs/version-specific/supported-software/s/skewer.md | 3 ++- .../supported-software/s/sklearn-pandas.md | 3 ++- docs/version-specific/supported-software/s/sklearn-som.md | 3 ++- docs/version-specific/supported-software/s/skorch.md | 3 ++- docs/version-specific/supported-software/s/sktime.md | 3 ++- docs/version-specific/supported-software/s/slepc4py.md | 3 ++- docs/version-specific/supported-software/s/sleuth.md | 3 ++- .../supported-software/s/slidingwindow.md | 3 ++- docs/version-specific/supported-software/s/slow5tools.md | 3 ++- docs/version-specific/supported-software/s/slurm-drmaa.md | 3 ++- docs/version-specific/supported-software/s/smafa.md | 3 ++- .../supported-software/s/smallgenomeutilities.md | 3 ++- docs/version-specific/supported-software/s/smfishHmrf.md | 3 ++- .../supported-software/s/smithwaterman.md | 3 ++- docs/version-specific/supported-software/s/smooth-topk.md | 3 ++- docs/version-specific/supported-software/s/snakemake.md | 3 ++- docs/version-specific/supported-software/s/snaphu.md | 3 ++- docs/version-specific/supported-software/s/snappy.md | 3 ++- docs/version-specific/supported-software/s/snippy.md | 3 ++- docs/version-specific/supported-software/s/snp-sites.md | 3 ++- docs/version-specific/supported-software/s/snpEff.md | 3 ++- docs/version-specific/supported-software/s/socat.md | 3 ++- docs/version-specific/supported-software/s/solo.md | 3 ++- docs/version-specific/supported-software/s/sonic.md | 3 ++- docs/version-specific/supported-software/s/spaCy.md | 3 ++- docs/version-specific/supported-software/s/spaln.md | 3 ++- .../supported-software/s/sparse-neighbors-search.md | 3 ++- docs/version-specific/supported-software/s/sparsehash.md | 3 ++- docs/version-specific/supported-software/s/spatialreg.md | 3 ++- docs/version-specific/supported-software/s/spdlog.md | 3 ++- .../supported-software/s/spectral.methods.md | 3 ++- .../version-specific/supported-software/s/speech_tools.md | 3 ++- docs/version-specific/supported-software/s/spektral.md | 3 ++- .../supported-software/s/spglib-python.md | 3 ++- docs/version-specific/supported-software/s/spglib.md | 3 ++- docs/version-specific/supported-software/s/split-seq.md | 3 ++- docs/version-specific/supported-software/s/splitRef.md | 3 ++- docs/version-specific/supported-software/s/spoa.md | 3 ++- .../supported-software/s/sradownloader.md | 3 ++- docs/version-specific/supported-software/s/stardist.md | 3 ++- docs/version-specific/supported-software/s/starparser.md | 3 ++- docs/version-specific/supported-software/s/stars.md | 3 ++- docs/version-specific/supported-software/s/statsmodels.md | 3 ++- docs/version-specific/supported-software/s/stpipeline.md | 3 ++- docs/version-specific/supported-software/s/strace.md | 3 ++- docs/version-specific/supported-software/s/strelka.md | 3 ++- docs/version-specific/supported-software/s/stripy.md | 3 ++- docs/version-specific/supported-software/s/suave.md | 3 ++- docs/version-specific/supported-software/s/subset-bam.md | 3 ++- docs/version-specific/supported-software/s/subunit.md | 3 ++- docs/version-specific/supported-software/s/suds.md | 3 ++- docs/version-specific/supported-software/s/supermagic.md | 3 ++- docs/version-specific/supported-software/s/supernova.md | 3 ++- docs/version-specific/supported-software/s/svist4get.md | 3 ++- docs/version-specific/supported-software/s/swarm.md | 3 ++- docs/version-specific/supported-software/s/swifter.md | 3 ++- docs/version-specific/supported-software/s/swissknife.md | 3 ++- docs/version-specific/supported-software/s/sympy.md | 3 ++- .../supported-software/s/synapseclient.md | 3 ++- docs/version-specific/supported-software/s/synthcity.md | 3 ++- docs/version-specific/supported-software/s/sysbench.md | 3 ++- docs/version-specific/supported-software/t/T-Coffee.md | 3 ++- docs/version-specific/supported-software/t/TALON.md | 3 ++- docs/version-specific/supported-software/t/TALYS.md | 3 ++- docs/version-specific/supported-software/t/TAMkin.md | 3 ++- docs/version-specific/supported-software/t/TBA.md | 3 ++- docs/version-specific/supported-software/t/TCC.md | 3 ++- docs/version-specific/supported-software/t/TCLAP.md | 3 ++- .../supported-software/t/TELEMAC-MASCARET.md | 3 ++- docs/version-specific/supported-software/t/TEToolkit.md | 3 ++- .../supported-software/t/TEtranscripts.md | 3 ++- docs/version-specific/supported-software/t/TF-COMB.md | 3 ++- docs/version-specific/supported-software/t/TFEA.md | 3 ++- docs/version-specific/supported-software/t/THetA.md | 3 ++- docs/version-specific/supported-software/t/TINKER.md | 3 ++- docs/version-specific/supported-software/t/TM-align.md | 3 ++- docs/version-specific/supported-software/t/TN93.md | 3 ++- docs/version-specific/supported-software/t/TOBIAS.md | 3 ++- .../version-specific/supported-software/t/TOML-Fortran.md | 3 ++- docs/version-specific/supported-software/t/TOPAS.md | 3 ++- .../supported-software/t/TRAVIS-Analyzer.md | 3 ++- docs/version-specific/supported-software/t/TRF.md | 3 ++- docs/version-specific/supported-software/t/TRIQS-cthyb.md | 3 ++- .../supported-software/t/TRIQS-dft_tools.md | 3 ++- docs/version-specific/supported-software/t/TRIQS-tprf.md | 3 ++- docs/version-specific/supported-software/t/TRIQS.md | 3 ++- docs/version-specific/supported-software/t/TRUST.md | 3 ++- docs/version-specific/supported-software/t/TRUST4.md | 3 ++- docs/version-specific/supported-software/t/TVB-deps.md | 3 ++- docs/version-specific/supported-software/t/TVB.md | 3 ++- docs/version-specific/supported-software/t/TWL-NINJA.md | 3 ++- docs/version-specific/supported-software/t/TXR.md | 3 ++- docs/version-specific/supported-software/t/TagDust.md | 3 ++- docs/version-specific/supported-software/t/TagLib.md | 3 ++- docs/version-specific/supported-software/t/Taiyaki.md | 3 ++- docs/version-specific/supported-software/t/Tapenade.md | 3 ++- docs/version-specific/supported-software/t/Tcl.md | 3 ++- docs/version-specific/supported-software/t/Telescope.md | 3 ++- docs/version-specific/supported-software/t/Teneto.md | 3 ++- .../supported-software/t/TensorFlow-Datasets.md | 3 ++- .../supported-software/t/TensorFlow-Graphics.md | 3 ++- docs/version-specific/supported-software/t/TensorFlow.md | 3 ++- docs/version-specific/supported-software/t/TensorRT.md | 3 ++- .../supported-software/t/Tesla-Deployment-Kit.md | 3 ++- docs/version-specific/supported-software/t/TetGen.md | 3 ++- docs/version-specific/supported-software/t/Text-CSV.md | 3 ++- docs/version-specific/supported-software/t/Theano.md | 3 ++- docs/version-specific/supported-software/t/ThemisPy.md | 3 ++- docs/version-specific/supported-software/t/TiCCutils.md | 3 ++- docs/version-specific/supported-software/t/TiMBL.md | 3 ++- docs/version-specific/supported-software/t/Tika.md | 3 ++- docs/version-specific/supported-software/t/TinyDB.md | 3 ++- docs/version-specific/supported-software/t/TinyXML.md | 3 ++- docs/version-specific/supported-software/t/Tk.md | 3 ++- docs/version-specific/supported-software/t/Tkinter.md | 3 ++- docs/version-specific/supported-software/t/ToFu.md | 3 ++- docs/version-specific/supported-software/t/Togl.md | 3 ++- docs/version-specific/supported-software/t/Tombo.md | 3 ++- docs/version-specific/supported-software/t/TopHat.md | 3 ++- docs/version-specific/supported-software/t/TorchIO.md | 3 ++- docs/version-specific/supported-software/t/TotalView.md | 3 ++- docs/version-specific/supported-software/t/Tracer.md | 3 ++- .../version-specific/supported-software/t/TransDecoder.md | 3 ++- .../supported-software/t/TranscriptClean.md | 3 ++- .../version-specific/supported-software/t/Transformers.md | 3 ++- docs/version-specific/supported-software/t/Transrate.md | 3 ++- docs/version-specific/supported-software/t/TreeMix.md | 3 ++- docs/version-specific/supported-software/t/TreeShrink.md | 3 ++- docs/version-specific/supported-software/t/Triangle.md | 3 ++- docs/version-specific/supported-software/t/Trilinos.md | 3 ++- docs/version-specific/supported-software/t/Trim_Galore.md | 3 ++- docs/version-specific/supported-software/t/Trimmomatic.md | 3 ++- docs/version-specific/supported-software/t/Trinity.md | 3 ++- docs/version-specific/supported-software/t/Trinotate.md | 3 ++- docs/version-specific/supported-software/t/Triplexator.md | 3 ++- docs/version-specific/supported-software/t/Triton.md | 3 ++- docs/version-specific/supported-software/t/Trycycler.md | 3 ++- docs/version-specific/supported-software/t/TurboVNC.md | 3 ++- docs/version-specific/supported-software/t/index.md | 8 +++++++- docs/version-specific/supported-software/t/t-SNE-CUDA.md | 3 ++- docs/version-specific/supported-software/t/tMAE.md | 3 ++- docs/version-specific/supported-software/t/tRNAscan-SE.md | 3 ++- docs/version-specific/supported-software/t/tabix.md | 3 ++- docs/version-specific/supported-software/t/tabixpp.md | 3 ++- docs/version-specific/supported-software/t/taco.md | 3 ++- docs/version-specific/supported-software/t/tantan.md | 3 ++- .../version-specific/supported-software/t/task-spooler.md | 3 ++- docs/version-specific/supported-software/t/taxator-tk.md | 3 ++- docs/version-specific/supported-software/t/tbb.md | 3 ++- docs/version-specific/supported-software/t/tbl2asn.md | 3 ++- docs/version-specific/supported-software/t/tcsh.md | 3 ++- .../version-specific/supported-software/t/tecplot360ex.md | 3 ++- docs/version-specific/supported-software/t/tensorboard.md | 3 ++- .../version-specific/supported-software/t/tensorboardX.md | 3 ++- .../supported-software/t/tensorflow-compression.md | 3 ++- .../supported-software/t/tensorflow-probability.md | 3 ++- .../supported-software/t/terastructure.md | 3 ++- docs/version-specific/supported-software/t/termcolor.md | 3 ++- docs/version-specific/supported-software/t/tesseract.md | 3 ++- docs/version-specific/supported-software/t/testpath.md | 3 ++- docs/version-specific/supported-software/t/texinfo.md | 3 ++- docs/version-specific/supported-software/t/texlive.md | 3 ++- docs/version-specific/supported-software/t/thirdorder.md | 3 ++- .../supported-software/t/thurstonianIRT.md | 3 ++- docs/version-specific/supported-software/t/tidybayes.md | 3 ++- docs/version-specific/supported-software/t/tidymodels.md | 3 ++- docs/version-specific/supported-software/t/tiktoken.md | 3 ++- docs/version-specific/supported-software/t/time.md | 3 ++- docs/version-specific/supported-software/t/timm.md | 3 ++- .../version-specific/supported-software/t/tiny-cuda-nn.md | 3 ++- docs/version-specific/supported-software/t/tmap.md | 3 ++- docs/version-specific/supported-software/t/tmux.md | 3 ++- docs/version-specific/supported-software/t/toil.md | 3 ++- docs/version-specific/supported-software/t/tokenizers.md | 3 ++- docs/version-specific/supported-software/t/topaz.md | 3 ++- docs/version-specific/supported-software/t/torchaudio.md | 3 ++- docs/version-specific/supported-software/t/torchdata.md | 3 ++- docs/version-specific/supported-software/t/torchinfo.md | 3 ++- .../version-specific/supported-software/t/torchsampler.md | 3 ++- docs/version-specific/supported-software/t/torchtext.md | 3 ++- docs/version-specific/supported-software/t/torchvf.md | 3 ++- docs/version-specific/supported-software/t/torchvision.md | 3 ++- docs/version-specific/supported-software/t/tornado.md | 3 ++- docs/version-specific/supported-software/t/tox.md | 3 ++- docs/version-specific/supported-software/t/tqdm.md | 3 ++- docs/version-specific/supported-software/t/travis.md | 3 ++- docs/version-specific/supported-software/t/treatSens.md | 3 ++- docs/version-specific/supported-software/t/trimAl.md | 3 ++- docs/version-specific/supported-software/t/trimesh.md | 3 ++- .../supported-software/t/tseriesEntropy.md | 3 ++- docs/version-specific/supported-software/t/tsne.md | 3 ++- .../version-specific/supported-software/t/turbinesFoam.md | 3 ++- docs/version-specific/supported-software/t/tvb-data.md | 3 ++- .../supported-software/t/tvb-framework.md | 3 ++- docs/version-specific/supported-software/t/tvb-library.md | 3 ++- .../supported-software/t/typing-extensions.md | 3 ++- docs/version-specific/supported-software/u/UCC-CUDA.md | 3 ++- docs/version-specific/supported-software/u/UCC.md | 3 ++- docs/version-specific/supported-software/u/UCLUST.md | 3 ++- docs/version-specific/supported-software/u/UCX-CUDA.md | 3 ++- docs/version-specific/supported-software/u/UCX-ROCm.md | 3 ++- docs/version-specific/supported-software/u/UCX.md | 3 ++- docs/version-specific/supported-software/u/UDUNITS.md | 3 ++- docs/version-specific/supported-software/u/UFL.md | 3 ++- docs/version-specific/supported-software/u/UMI-tools.md | 3 ++- docs/version-specific/supported-software/u/UNAFold.md | 3 ++- docs/version-specific/supported-software/u/UQTk.md | 3 ++- docs/version-specific/supported-software/u/USEARCH.md | 3 ++- docs/version-specific/supported-software/u/USPEX.md | 3 ++- docs/version-specific/supported-software/u/UShER.md | 3 ++- docs/version-specific/supported-software/u/Ultralytics.md | 3 ++- docs/version-specific/supported-software/u/UnZip.md | 3 ++- docs/version-specific/supported-software/u/UniFrac.md | 3 ++- docs/version-specific/supported-software/u/Unicycler.md | 3 ++- docs/version-specific/supported-software/u/Unidecode.md | 3 ++- docs/version-specific/supported-software/u/index.md | 8 +++++++- docs/version-specific/supported-software/u/ucx-py.md | 3 ++- docs/version-specific/supported-software/u/udocker.md | 3 ++- docs/version-specific/supported-software/u/umap-learn.md | 3 ++- .../version-specific/supported-software/u/umi4cPackage.md | 3 ++- docs/version-specific/supported-software/u/umis.md | 3 ++- .../supported-software/u/uncertainties.md | 3 ++- .../supported-software/u/uncertainty-calibration.md | 3 ++- .../version-specific/supported-software/u/unicore-uftp.md | 3 ++- docs/version-specific/supported-software/u/unifdef.md | 3 ++- docs/version-specific/supported-software/u/unimap.md | 3 ++- docs/version-specific/supported-software/u/units.md | 3 ++- docs/version-specific/supported-software/u/unixODBC.md | 3 ++- docs/version-specific/supported-software/u/unrar.md | 3 ++- docs/version-specific/supported-software/u/utf8proc.md | 3 ++- docs/version-specific/supported-software/u/util-linux.md | 3 ++- docs/version-specific/supported-software/v/V8.md | 3 ++- docs/version-specific/supported-software/v/VAMPIRE-ASM.md | 3 ++- docs/version-specific/supported-software/v/VASP.md | 3 ++- docs/version-specific/supported-software/v/VAtools.md | 3 ++- .../supported-software/v/VBZ-Compression.md | 3 ++- docs/version-specific/supported-software/v/VCF-kit.md | 3 ++- docs/version-specific/supported-software/v/VCFtools.md | 3 ++- docs/version-specific/supported-software/v/VEGAS.md | 3 ++- docs/version-specific/supported-software/v/VEP.md | 3 ++- docs/version-specific/supported-software/v/VERSE.md | 3 ++- docs/version-specific/supported-software/v/VESTA.md | 3 ++- docs/version-specific/supported-software/v/VMD.md | 3 ++- docs/version-specific/supported-software/v/VMTK.md | 3 ++- docs/version-specific/supported-software/v/VSCode.md | 3 ++- docs/version-specific/supported-software/v/VSEARCH.md | 3 ++- docs/version-specific/supported-software/v/VTK.md | 3 ++- docs/version-specific/supported-software/v/VTune.md | 3 ++- docs/version-specific/supported-software/v/VV.md | 3 ++- docs/version-specific/supported-software/v/VXL.md | 3 ++- docs/version-specific/supported-software/v/Vala.md | 3 ++- docs/version-specific/supported-software/v/Valgrind.md | 3 ++- docs/version-specific/supported-software/v/Vamb.md | 3 ++- docs/version-specific/supported-software/v/Vampir.md | 3 ++- docs/version-specific/supported-software/v/Vampire.md | 3 ++- docs/version-specific/supported-software/v/VarDict.md | 3 ++- docs/version-specific/supported-software/v/VarScan.md | 3 ++- .../supported-software/v/VariantMetaCaller.md | 3 ++- docs/version-specific/supported-software/v/Velvet.md | 3 ++- docs/version-specific/supported-software/v/ViennaRNA.md | 3 ++- docs/version-specific/supported-software/v/Vim.md | 3 ++- docs/version-specific/supported-software/v/VirSorter.md | 3 ++- docs/version-specific/supported-software/v/VirSorter2.md | 3 ++- docs/version-specific/supported-software/v/VirtualGL.md | 3 ++- .../supported-software/v/Virtuoso-opensource.md | 3 ++- docs/version-specific/supported-software/v/VisPy.md | 3 ++- docs/version-specific/supported-software/v/Voro++.md | 3 ++- docs/version-specific/supported-software/v/index.md | 8 +++++++- docs/version-specific/supported-software/v/vConTACT2.md | 3 ++- docs/version-specific/supported-software/v/vaeda.md | 3 ++- .../supported-software/v/variant_tools.md | 3 ++- docs/version-specific/supported-software/v/vartools.md | 3 ++- docs/version-specific/supported-software/v/vawk.md | 3 ++- docs/version-specific/supported-software/v/vcflib.md | 3 ++- docs/version-specific/supported-software/v/vcfnp.md | 3 ++- docs/version-specific/supported-software/v/velocyto.md | 3 ++- docs/version-specific/supported-software/v/verifyBamID.md | 3 ++- docs/version-specific/supported-software/v/virtualenv.md | 3 ++- docs/version-specific/supported-software/v/visdom.md | 3 ++- docs/version-specific/supported-software/v/vispr.md | 3 ++- .../supported-software/v/vitessce-python.md | 3 ++- docs/version-specific/supported-software/v/vitessceR.md | 3 ++- docs/version-specific/supported-software/v/voltools.md | 3 ++- .../version-specific/supported-software/v/vorbis-tools.md | 3 ++- docs/version-specific/supported-software/v/vsc-base.md | 3 ++- docs/version-specific/supported-software/v/vsc-install.md | 3 ++- .../supported-software/v/vsc-mympirun-scoop.md | 3 ++- .../version-specific/supported-software/v/vsc-mympirun.md | 3 ++- .../supported-software/v/vsc-processcontrol.md | 3 ++- docs/version-specific/supported-software/v/vt.md | 3 ++- docs/version-specific/supported-software/w/WCSLIB.md | 3 ++- docs/version-specific/supported-software/w/WCT.md | 3 ++- docs/version-specific/supported-software/w/WEKA.md | 3 ++- docs/version-specific/supported-software/w/WFA2.md | 3 ++- docs/version-specific/supported-software/w/WGDgc.md | 3 ++- docs/version-specific/supported-software/w/WHAM.md | 3 ++- docs/version-specific/supported-software/w/WIEN2k.md | 3 ++- docs/version-specific/supported-software/w/WISExome.md | 3 ++- docs/version-specific/supported-software/w/WPS.md | 3 ++- docs/version-specific/supported-software/w/WRF-Fire.md | 3 ++- docs/version-specific/supported-software/w/WRF.md | 3 ++- docs/version-specific/supported-software/w/WSClean.md | 3 ++- docs/version-specific/supported-software/w/Wannier90.md | 3 ++- .../version-specific/supported-software/w/WannierTools.md | 3 ++- docs/version-specific/supported-software/w/Wayland.md | 3 ++- docs/version-specific/supported-software/w/Waylandpp.md | 3 ++- docs/version-specific/supported-software/w/WebKitGTK+.md | 3 ++- docs/version-specific/supported-software/w/WebSocket++.md | 3 ++- docs/version-specific/supported-software/w/WhatsHap.md | 3 ++- docs/version-specific/supported-software/w/WildMagic.md | 3 ++- docs/version-specific/supported-software/w/Winnowmap.md | 3 ++- docs/version-specific/supported-software/w/WisecondorX.md | 3 ++- docs/version-specific/supported-software/w/index.md | 8 +++++++- docs/version-specific/supported-software/w/waLBerla.md | 3 ++- docs/version-specific/supported-software/w/wandb.md | 3 ++- docs/version-specific/supported-software/w/wcwidth.md | 3 ++- docs/version-specific/supported-software/w/webin-cli.md | 3 ++- docs/version-specific/supported-software/w/wfdb.md | 3 ++- docs/version-specific/supported-software/w/wget.md | 3 ++- docs/version-specific/supported-software/w/wgsim.md | 3 ++- docs/version-specific/supported-software/w/wheel.md | 3 ++- docs/version-specific/supported-software/w/wkhtmltopdf.md | 3 ++- docs/version-specific/supported-software/w/worker.md | 3 ++- .../supported-software/w/wpebackend-fdo.md | 3 ++- docs/version-specific/supported-software/w/wrapt.md | 3 ++- docs/version-specific/supported-software/w/wrf-python.md | 3 ++- docs/version-specific/supported-software/w/wtdbg2.md | 3 ++- .../supported-software/w/wxPropertyGrid.md | 3 ++- docs/version-specific/supported-software/w/wxPython.md | 3 ++- docs/version-specific/supported-software/w/wxWidgets.md | 3 ++- docs/version-specific/supported-software/x/X11.md | 3 ++- docs/version-specific/supported-software/x/XALT.md | 3 ++- docs/version-specific/supported-software/x/XBeach.md | 3 ++- docs/version-specific/supported-software/x/XCFun.md | 3 ++- docs/version-specific/supported-software/x/XCrySDen.md | 3 ++- docs/version-specific/supported-software/x/XGBoost.md | 3 ++- docs/version-specific/supported-software/x/XGrafix.md | 3 ++- .../supported-software/x/XKeyboardConfig.md | 3 ++- docs/version-specific/supported-software/x/XMDS2.md | 3 ++- docs/version-specific/supported-software/x/XML-Compile.md | 3 ++- docs/version-specific/supported-software/x/XML-LibXML.md | 3 ++- docs/version-specific/supported-software/x/XML-Parser.md | 3 ++- docs/version-specific/supported-software/x/XMLSec.md | 3 ++- docs/version-specific/supported-software/x/XMLStarlet.md | 3 ++- docs/version-specific/supported-software/x/XOOPIC.md | 3 ++- docs/version-specific/supported-software/x/XPLOR-NIH.md | 3 ++- docs/version-specific/supported-software/x/XSD.md | 3 ++- docs/version-specific/supported-software/x/XTandem.md | 3 ++- docs/version-specific/supported-software/x/XZ.md | 3 ++- docs/version-specific/supported-software/x/Xerces-C++.md | 3 ++- docs/version-specific/supported-software/x/XlsxWriter.md | 3 ++- docs/version-specific/supported-software/x/Xmipp.md | 3 ++- docs/version-specific/supported-software/x/Xvfb.md | 3 ++- docs/version-specific/supported-software/x/index.md | 8 +++++++- docs/version-specific/supported-software/x/x13as.md | 3 ++- docs/version-specific/supported-software/x/x264.md | 3 ++- docs/version-specific/supported-software/x/x265.md | 3 ++- docs/version-specific/supported-software/x/xCell.md | 3 ++- docs/version-specific/supported-software/x/xESMF.md | 3 ++- docs/version-specific/supported-software/x/xarray.md | 3 ++- docs/version-specific/supported-software/x/xbitmaps.md | 3 ++- docs/version-specific/supported-software/x/xcb-proto.md | 3 ++- .../supported-software/x/xcb-util-image.md | 3 ++- .../supported-software/x/xcb-util-keysyms.md | 3 ++- .../supported-software/x/xcb-util-renderutil.md | 3 ++- docs/version-specific/supported-software/x/xcb-util-wm.md | 3 ++- docs/version-specific/supported-software/x/xcb-util.md | 3 ++- docs/version-specific/supported-software/x/xclip.md | 3 ++- docs/version-specific/supported-software/x/xdotool.md | 3 ++- docs/version-specific/supported-software/x/xextproto.md | 3 ++- .../supported-software/x/xf86vidmodeproto.md | 3 ++- .../supported-software/x/xineramaproto.md | 3 ++- docs/version-specific/supported-software/x/xmitgcm.md | 3 ++- docs/version-specific/supported-software/x/xmlf90.md | 3 ++- docs/version-specific/supported-software/x/xonsh.md | 3 ++- docs/version-specific/supported-software/x/xorg-macros.md | 3 ++- docs/version-specific/supported-software/x/xpdf.md | 3 ++- docs/version-specific/supported-software/x/xprop.md | 3 ++- docs/version-specific/supported-software/x/xproto.md | 3 ++- docs/version-specific/supported-software/x/xtb.md | 3 ++- docs/version-specific/supported-software/x/xtensor.md | 3 ++- docs/version-specific/supported-software/x/xtrans.md | 3 ++- docs/version-specific/supported-software/x/xxHash.md | 3 ++- docs/version-specific/supported-software/x/xxd.md | 3 ++- docs/version-specific/supported-software/y/YACS.md | 3 ++- docs/version-specific/supported-software/y/YANK.md | 3 ++- docs/version-specific/supported-software/y/YAPS.md | 3 ++- docs/version-specific/supported-software/y/YAXT.md | 3 ++- docs/version-specific/supported-software/y/YODA.md | 3 ++- docs/version-specific/supported-software/y/Yade.md | 3 ++- docs/version-specific/supported-software/y/Yambo.md | 3 ++- docs/version-specific/supported-software/y/Yasm.md | 3 ++- docs/version-specific/supported-software/y/Yices.md | 3 ++- docs/version-specific/supported-software/y/index.md | 8 +++++++- docs/version-specific/supported-software/y/yaff.md | 3 ++- docs/version-specific/supported-software/y/yaml-cpp.md | 3 ++- docs/version-specific/supported-software/y/yt.md | 3 ++- docs/version-specific/supported-software/z/Z3.md | 3 ++- docs/version-specific/supported-software/z/ZIMPL.md | 3 ++- docs/version-specific/supported-software/z/ZPAQ.md | 3 ++- docs/version-specific/supported-software/z/Zeo++.md | 3 ++- docs/version-specific/supported-software/z/ZeroMQ.md | 3 ++- docs/version-specific/supported-software/z/Zgoubi.md | 3 ++- docs/version-specific/supported-software/z/Zip.md | 3 ++- docs/version-specific/supported-software/z/Zopfli.md | 3 ++- docs/version-specific/supported-software/z/index.md | 8 +++++++- docs/version-specific/supported-software/z/zUMIs.md | 3 ++- docs/version-specific/supported-software/z/zarr.md | 3 ++- docs/version-specific/supported-software/z/zeus-mcmc.md | 3 ++- docs/version-specific/supported-software/z/zfp.md | 3 ++- docs/version-specific/supported-software/z/zingeR.md | 3 ++- docs/version-specific/supported-software/z/zlib-ng.md | 3 ++- docs/version-specific/supported-software/z/zlib.md | 3 ++- docs/version-specific/supported-software/z/zlibbioc.md | 3 ++- docs/version-specific/supported-software/z/zsh.md | 3 ++- docs/version-specific/supported-software/z/zstd.md | 3 ++- 3581 files changed, 7300 insertions(+), 3580 deletions(-) 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/supported-software/0/3d-dna.md b/docs/version-specific/supported-software/0/3d-dna.md index c599a05e5..68e973974 100644 --- a/docs/version-specific/supported-software/0/3d-dna.md +++ b/docs/version-specific/supported-software/0/3d-dna.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``180922`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/0/3to2.md b/docs/version-specific/supported-software/0/3to2.md index f2e8a69c9..a1f43f43d 100644 --- a/docs/version-specific/supported-software/0/3to2.md +++ b/docs/version-specific/supported-software/0/3to2.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/0/4ti2.md b/docs/version-specific/supported-software/0/4ti2.md index 786b3d3f7..40706f818 100644 --- a/docs/version-specific/supported-software/0/4ti2.md +++ b/docs/version-specific/supported-software/0/4ti2.md @@ -15,5 +15,6 @@ version | toolchain ``1.6.9`` | ``GCC/8.2.0-2.31.1`` ``1.6.9`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/0/index.md b/docs/version-specific/supported-software/0/index.md index e31afd42c..1e8861f86 100644 --- a/docs/version-specific/supported-software/0/index.md +++ b/docs/version-specific/supported-software/0/index.md @@ -4,8 +4,14 @@ search: --- # List of supported software (0) -*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) +*(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 index 55d2c48ba..366dbb823 100644 --- a/docs/version-specific/supported-software/a/ABAQUS.md +++ b/docs/version-specific/supported-software/a/ABAQUS.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``6.13.5`` | ``-linux-x86_64`` | ``system`` ``6.14.1`` | ``-linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ABINIT.md b/docs/version-specific/supported-software/a/ABINIT.md index 3ad453512..79e6160b4 100644 --- a/docs/version-specific/supported-software/a/ABINIT.md +++ b/docs/version-specific/supported-software/a/ABINIT.md @@ -38,5 +38,6 @@ version | versionsuffix | toolchain ``9.6.2`` | | ``intel/2021b`` ``9.6.2`` | | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ABRA2.md b/docs/version-specific/supported-software/a/ABRA2.md index 254182562..95f6e3844 100644 --- a/docs/version-specific/supported-software/a/ABRA2.md +++ b/docs/version-specific/supported-software/a/ABRA2.md @@ -14,5 +14,6 @@ version | toolchain ``2.23`` | ``GCC/10.2.0`` ``2.23`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ABRicate.md b/docs/version-specific/supported-software/a/ABRicate.md index 497f92248..01947458f 100644 --- a/docs/version-specific/supported-software/a/ABRicate.md +++ b/docs/version-specific/supported-software/a/ABRicate.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.9.9`` | | ``gompi/2019b`` ``1.0.0`` | | ``gompi/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ABySS.md b/docs/version-specific/supported-software/a/ABySS.md index 67d335f91..8053c7f92 100644 --- a/docs/version-specific/supported-software/a/ABySS.md +++ b/docs/version-specific/supported-software/a/ABySS.md @@ -21,5 +21,6 @@ version | toolchain ``2.2.5`` | ``foss/2020b`` ``2.3.7`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ACTC.md b/docs/version-specific/supported-software/a/ACTC.md index ea0ed5447..ef3d8c177 100644 --- a/docs/version-specific/supported-software/a/ACTC.md +++ b/docs/version-specific/supported-software/a/ACTC.md @@ -18,5 +18,6 @@ version | toolchain ``1.1`` | ``GCCcore/9.3.0`` ``1.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ADDA.md b/docs/version-specific/supported-software/a/ADDA.md index 67dd4298a..c507d745e 100644 --- a/docs/version-specific/supported-software/a/ADDA.md +++ b/docs/version-specific/supported-software/a/ADDA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3b4`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ADF.md b/docs/version-specific/supported-software/a/ADF.md index 68bcfdccb..7da204852 100644 --- a/docs/version-specific/supported-software/a/ADF.md +++ b/docs/version-specific/supported-software/a/ADF.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2016.101`` | | ``system`` ``2019.303`` | ``-intelmpi`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ADIOS.md b/docs/version-specific/supported-software/a/ADIOS.md index 1a274ef54..e93a224b2 100644 --- a/docs/version-specific/supported-software/a/ADIOS.md +++ b/docs/version-specific/supported-software/a/ADIOS.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.13.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``20210804`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ADMIXTURE.md b/docs/version-specific/supported-software/a/ADMIXTURE.md index 4073bc1c8..b56f1c7ba 100644 --- a/docs/version-specific/supported-software/a/ADMIXTURE.md +++ b/docs/version-specific/supported-software/a/ADMIXTURE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8aca04048..9b5bde771 100644 --- a/docs/version-specific/supported-software/a/ADOL-C.md +++ b/docs/version-specific/supported-software/a/ADOL-C.md @@ -13,5 +13,6 @@ version | toolchain ``2.7.0`` | ``gompi/2019a`` ``2.7.2`` | ``gompi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AEDT.md b/docs/version-specific/supported-software/a/AEDT.md index cb39e0da3..9c79789c8 100644 --- a/docs/version-specific/supported-software/a/AEDT.md +++ b/docs/version-specific/supported-software/a/AEDT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2024R1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AFNI.md b/docs/version-specific/supported-software/a/AFNI.md index 88e91e277..a25b5e596 100644 --- a/docs/version-specific/supported-software/a/AFNI.md +++ b/docs/version-specific/supported-software/a/AFNI.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``20160329`` | ``-Python-2.7.11`` | ``intel/2016a`` ``24.0.02`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AGAT.md b/docs/version-specific/supported-software/a/AGAT.md index 84d7a2967..a494e1583 100644 --- a/docs/version-specific/supported-software/a/AGAT.md +++ b/docs/version-specific/supported-software/a/AGAT.md @@ -13,5 +13,6 @@ version | toolchain ``0.9.2`` | ``GCC/11.2.0`` ``1.1.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AGFusion.md b/docs/version-specific/supported-software/a/AGFusion.md index 6a6b81be3..ceac30bb2 100644 --- a/docs/version-specific/supported-software/a/AGFusion.md +++ b/docs/version-specific/supported-software/a/AGFusion.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AGeNT.md b/docs/version-specific/supported-software/a/AGeNT.md index 06f11b12c..4e322a0b8 100644 --- a/docs/version-specific/supported-software/a/AGeNT.md +++ b/docs/version-specific/supported-software/a/AGeNT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AICSImageIO.md b/docs/version-specific/supported-software/a/AICSImageIO.md index e5bda439d..cc2297e94 100644 --- a/docs/version-specific/supported-software/a/AICSImageIO.md +++ b/docs/version-specific/supported-software/a/AICSImageIO.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.14.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AIMAll.md b/docs/version-specific/supported-software/a/AIMAll.md index a5fb27bf8..2da0fef96 100644 --- a/docs/version-specific/supported-software/a/AIMAll.md +++ b/docs/version-specific/supported-software/a/AIMAll.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``19.10.12`` | ``-linux_64bit`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ALADIN.md b/docs/version-specific/supported-software/a/ALADIN.md index e2941661f..2023b8759 100644 --- a/docs/version-specific/supported-software/a/ALADIN.md +++ b/docs/version-specific/supported-software/a/ALADIN.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``36t1_op2bf1`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ALAMODE.md b/docs/version-specific/supported-software/a/ALAMODE.md index 27d53a7c1..f4b8dc5c3 100644 --- a/docs/version-specific/supported-software/a/ALAMODE.md +++ b/docs/version-specific/supported-software/a/ALAMODE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ALFA.md b/docs/version-specific/supported-software/a/ALFA.md index 2d121d613..9f2e18b0a 100644 --- a/docs/version-specific/supported-software/a/ALFA.md +++ b/docs/version-specific/supported-software/a/ALFA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ALL.md b/docs/version-specific/supported-software/a/ALL.md index 13dad8559..f3399f1c4 100644 --- a/docs/version-specific/supported-software/a/ALL.md +++ b/docs/version-specific/supported-software/a/ALL.md @@ -13,5 +13,6 @@ version | toolchain ``0.9.2`` | ``foss/2022b`` ``0.9.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7ae636ca0..3d30d02fa 100644 --- a/docs/version-specific/supported-software/a/ALLPATHS-LG.md +++ b/docs/version-specific/supported-software/a/ALLPATHS-LG.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``52488`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ALPS.md b/docs/version-specific/supported-software/a/ALPS.md index cedd86dfd..80a37eb10 100644 --- a/docs/version-specific/supported-software/a/ALPS.md +++ b/docs/version-specific/supported-software/a/ALPS.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.3.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.3.0`` | ``-Python-3.5.2`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMAPVox.md b/docs/version-specific/supported-software/a/AMAPVox.md index 36e501ea4..9bb5b7c31 100644 --- a/docs/version-specific/supported-software/a/AMAPVox.md +++ b/docs/version-specific/supported-software/a/AMAPVox.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.9.4`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a144cb7c4..31847b0cd 100644 --- a/docs/version-specific/supported-software/a/AMD-LibM.md +++ b/docs/version-specific/supported-software/a/AMD-LibM.md @@ -13,5 +13,6 @@ version | toolchain ``3.2.2`` | ``GCC/7.3.0-2.30`` ``3.6.0-4`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6cb4ed5e2..95c0f4c1a 100644 --- a/docs/version-specific/supported-software/a/AMD-RNG.md +++ b/docs/version-specific/supported-software/a/AMD-RNG.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``GCC/7.3.0-2.30`` ``2.2-4`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a3ffc4955..bd79efe1e 100644 --- a/docs/version-specific/supported-software/a/AMD-SecureRNG.md +++ b/docs/version-specific/supported-software/a/AMD-SecureRNG.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``GCC/7.3.0-2.30`` ``2.2-4`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fcd94f48c..c533035ae 100644 --- a/docs/version-specific/supported-software/a/AMD-uProf.md +++ b/docs/version-specific/supported-software/a/AMD-uProf.md @@ -14,5 +14,6 @@ version | toolchain ``3.5.671`` | ``system`` ``4.1.424`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMGX.md b/docs/version-specific/supported-software/a/AMGX.md index 14b705eb0..8e8c4db08 100644 --- a/docs/version-specific/supported-software/a/AMGX.md +++ b/docs/version-specific/supported-software/a/AMGX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMICA.md b/docs/version-specific/supported-software/a/AMICA.md index 1f7ed89d9..c0fc71c4c 100644 --- a/docs/version-specific/supported-software/a/AMICA.md +++ b/docs/version-specific/supported-software/a/AMICA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2024.1.19`` | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMOS.md b/docs/version-specific/supported-software/a/AMOS.md index 15430d6a6..f0321b6e4 100644 --- a/docs/version-specific/supported-software/a/AMOS.md +++ b/docs/version-specific/supported-software/a/AMOS.md @@ -14,5 +14,6 @@ version | toolchain ``3.1.0`` | ``foss/2021b`` ``3.1.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMPHORA2.md b/docs/version-specific/supported-software/a/AMPHORA2.md index 0c799b67e..0a87f27bf 100644 --- a/docs/version-specific/supported-software/a/AMPHORA2.md +++ b/docs/version-specific/supported-software/a/AMPHORA2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190730`` | ``-Java-13-pthreads-avx2`` | ``gompi/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d2d2d65c9..884b0f942 100644 --- a/docs/version-specific/supported-software/a/AMPL-MP.md +++ b/docs/version-specific/supported-software/a/AMPL-MP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1.0`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMPtk.md b/docs/version-specific/supported-software/a/AMPtk.md index 584d0cf98..3d6684997 100644 --- a/docs/version-specific/supported-software/a/AMPtk.md +++ b/docs/version-specific/supported-software/a/AMPtk.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.4`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMRFinderPlus.md b/docs/version-specific/supported-software/a/AMRFinderPlus.md index 036515915..5f762d100 100644 --- a/docs/version-specific/supported-software/a/AMRFinderPlus.md +++ b/docs/version-specific/supported-software/a/AMRFinderPlus.md @@ -13,5 +13,6 @@ version | toolchain ``3.11.18`` | ``gompi/2021b`` ``3.11.18`` | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AMS.md b/docs/version-specific/supported-software/a/AMS.md index 50a11f53f..e0c588944 100644 --- a/docs/version-specific/supported-software/a/AMS.md +++ b/docs/version-specific/supported-software/a/AMS.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2023.101`` | ``-intelmpi`` | ``iimpi/2022a`` ``2023.104`` | ``-intelmpi`` | ``iimpi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ANGEL.md b/docs/version-specific/supported-software/a/ANGEL.md index 22456c1fd..896bef3e9 100644 --- a/docs/version-specific/supported-software/a/ANGEL.md +++ b/docs/version-specific/supported-software/a/ANGEL.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ANIcalculator.md b/docs/version-specific/supported-software/a/ANIcalculator.md index 786fd6bbe..baecd973d 100644 --- a/docs/version-specific/supported-software/a/ANIcalculator.md +++ b/docs/version-specific/supported-software/a/ANIcalculator.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``GCCcore/10.3.0`` ``1.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ANSYS.md b/docs/version-specific/supported-software/a/ANSYS.md index 30ae9edef..d7675190a 100644 --- a/docs/version-specific/supported-software/a/ANSYS.md +++ b/docs/version-specific/supported-software/a/ANSYS.md @@ -14,5 +14,6 @@ version | toolchain ``2022R2`` | ``system`` ``2023R1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7f2e6bc73..fbdf21ab1 100644 --- a/docs/version-specific/supported-software/a/ANSYS_CFD.md +++ b/docs/version-specific/supported-software/a/ANSYS_CFD.md @@ -13,5 +13,6 @@ version | toolchain ``16.2`` | ``system`` ``17.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ANTIC.md b/docs/version-specific/supported-software/a/ANTIC.md index caa931091..4fe03e794 100644 --- a/docs/version-specific/supported-software/a/ANTIC.md +++ b/docs/version-specific/supported-software/a/ANTIC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.5`` | ``gfbf/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ANTLR.md b/docs/version-specific/supported-software/a/ANTLR.md index 76f28b63b..b1a7ef77b 100644 --- a/docs/version-specific/supported-software/a/ANTLR.md +++ b/docs/version-specific/supported-software/a/ANTLR.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``2.7.7`` | | ``intel/2017b`` ``2.7.7`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ANTs.md b/docs/version-specific/supported-software/a/ANTs.md index 0b9f9e846..2a68169fd 100644 --- a/docs/version-specific/supported-software/a/ANTs.md +++ b/docs/version-specific/supported-software/a/ANTs.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.3.5`` | | ``foss/2021a`` ``2.5.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AOCC.md b/docs/version-specific/supported-software/a/AOCC.md index 3e259b1dd..e88d506c0 100644 --- a/docs/version-specific/supported-software/a/AOCC.md +++ b/docs/version-specific/supported-software/a/AOCC.md @@ -23,5 +23,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.2.0`` ``4.0.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AOFlagger.md b/docs/version-specific/supported-software/a/AOFlagger.md index c3f97391d..1a940a439 100644 --- a/docs/version-specific/supported-software/a/AOFlagger.md +++ b/docs/version-specific/supported-software/a/AOFlagger.md @@ -13,5 +13,6 @@ version | toolchain ``3.4.0`` | ``foss/2022a`` ``3.4.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AOMP.md b/docs/version-specific/supported-software/a/AOMP.md index afb75c50f..0abb9a317 100644 --- a/docs/version-specific/supported-software/a/AOMP.md +++ b/docs/version-specific/supported-software/a/AOMP.md @@ -13,5 +13,6 @@ version | toolchain ``13.0-2`` | ``GCCcore/10.2.0`` ``13.0-2`` | ``gcccuda/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/APBS.md b/docs/version-specific/supported-software/a/APBS.md index 22982a2b8..a577e5cdc 100644 --- a/docs/version-specific/supported-software/a/APBS.md +++ b/docs/version-specific/supported-software/a/APBS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-linux-static-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index feb064efa..6bf0b9a5b 100644 --- a/docs/version-specific/supported-software/a/APR-util.md +++ b/docs/version-specific/supported-software/a/APR-util.md @@ -21,5 +21,6 @@ version | toolchain ``1.6.1`` | ``iomkl/2018a`` ``1.6.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/APR.md b/docs/version-specific/supported-software/a/APR.md index ddba9652a..c7b1b3898 100644 --- a/docs/version-specific/supported-software/a/APR.md +++ b/docs/version-specific/supported-software/a/APR.md @@ -21,5 +21,6 @@ version | toolchain ``1.7.0`` | ``GCCcore/9.3.0`` ``1.7.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ARAGORN.md b/docs/version-specific/supported-software/a/ARAGORN.md index 6abcd1286..0a2c962d1 100644 --- a/docs/version-specific/supported-software/a/ARAGORN.md +++ b/docs/version-specific/supported-software/a/ARAGORN.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.38`` | ``iccifort/2019.5.281`` ``1.2.41`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ARCH.md b/docs/version-specific/supported-software/a/ARCH.md index 8d307ea88..8eed7f544 100644 --- a/docs/version-specific/supported-software/a/ARCH.md +++ b/docs/version-specific/supported-software/a/ARCH.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ARGoS.md b/docs/version-specific/supported-software/a/ARGoS.md index df28f9bdd..9f93523b2 100644 --- a/docs/version-specific/supported-software/a/ARGoS.md +++ b/docs/version-specific/supported-software/a/ARGoS.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.0.0-beta53`` | ``-Lua-5.2.4`` | ``foss/2018b`` ``3.0.0-beta59`` | | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ARPACK++.md b/docs/version-specific/supported-software/a/ARPACK++.md index c9ada6b14..4e0c1536b 100644 --- a/docs/version-specific/supported-software/a/ARPACK++.md +++ b/docs/version-specific/supported-software/a/ARPACK++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2018.03.26`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ART.md b/docs/version-specific/supported-software/a/ART.md index d2b32dd02..f623f06e7 100644 --- a/docs/version-specific/supported-software/a/ART.md +++ b/docs/version-specific/supported-software/a/ART.md @@ -13,5 +13,6 @@ version | toolchain ``2016.06.05`` | ``GCCcore/6.4.0`` ``2016.06.05`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ARTS.md b/docs/version-specific/supported-software/a/ARTS.md index 82472d935..5ab322847 100644 --- a/docs/version-specific/supported-software/a/ARTS.md +++ b/docs/version-specific/supported-software/a/ARTS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.64`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ARWEN.md b/docs/version-specific/supported-software/a/ARWEN.md index 8cebbeb89..2441f2602 100644 --- a/docs/version-specific/supported-software/a/ARWEN.md +++ b/docs/version-specific/supported-software/a/ARWEN.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.3`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ASAP.md b/docs/version-specific/supported-software/a/ASAP.md index 0e9d21706..3b1d21733 100644 --- a/docs/version-specific/supported-software/a/ASAP.md +++ b/docs/version-specific/supported-software/a/ASAP.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ASAP3.md b/docs/version-specific/supported-software/a/ASAP3.md index bb2b8043a..67860b3b9 100644 --- a/docs/version-specific/supported-software/a/ASAP3.md +++ b/docs/version-specific/supported-software/a/ASAP3.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``3.13.3`` | | ``foss/2023a`` ``3.13.3`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ASCAT.md b/docs/version-specific/supported-software/a/ASCAT.md index bf4eedd7c..1f403fd18 100644 --- a/docs/version-specific/supported-software/a/ASCAT.md +++ b/docs/version-specific/supported-software/a/ASCAT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``3.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ASE.md b/docs/version-specific/supported-software/a/ASE.md index 0630af41f..2c31b91c2 100644 --- a/docs/version-specific/supported-software/a/ASE.md +++ b/docs/version-specific/supported-software/a/ASE.md @@ -65,5 +65,6 @@ version | versionsuffix | toolchain ``3.22.1`` | | ``intel/2022a`` ``3.9.1.4567`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b8de6deab..86ec59a07 100644 --- a/docs/version-specific/supported-software/a/ASF-SearchAPI.md +++ b/docs/version-specific/supported-software/a/ASF-SearchAPI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.5.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ASHS.md b/docs/version-specific/supported-software/a/ASHS.md index f56b9663f..23e30bc70 100644 --- a/docs/version-specific/supported-software/a/ASHS.md +++ b/docs/version-specific/supported-software/a/ASHS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``rev103_20140612`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ASTRID.md b/docs/version-specific/supported-software/a/ASTRID.md index f6eb24e9a..c619742b7 100644 --- a/docs/version-specific/supported-software/a/ASTRID.md +++ b/docs/version-specific/supported-software/a/ASTRID.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.1`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ATAT.md b/docs/version-specific/supported-software/a/ATAT.md index 85ba6a57c..3ff0b6f3b 100644 --- a/docs/version-specific/supported-software/a/ATAT.md +++ b/docs/version-specific/supported-software/a/ATAT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.36`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ATK.md b/docs/version-specific/supported-software/a/ATK.md index a2cd1c001..de5fc9cfb 100644 --- a/docs/version-specific/supported-software/a/ATK.md +++ b/docs/version-specific/supported-software/a/ATK.md @@ -35,5 +35,6 @@ version | toolchain ``2.38.0`` | ``GCCcore/12.3.0`` ``2.38.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ATLAS.md b/docs/version-specific/supported-software/a/ATLAS.md index 60df4e0fb..2fdb3ccf3 100644 --- a/docs/version-specific/supported-software/a/ATLAS.md +++ b/docs/version-specific/supported-software/a/ATLAS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.10.2`` | ``-LAPACK-3.6.1`` | ``GCC/5.4.0-2.26`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ATSAS.md b/docs/version-specific/supported-software/a/ATSAS.md index 4476e4f83..cdf18b231 100644 --- a/docs/version-specific/supported-software/a/ATSAS.md +++ b/docs/version-specific/supported-software/a/ATSAS.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.5.1-1`` | ``.sl5.x86_64`` | ``system`` ``2.7.1-1`` | ``.el7.x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AUGUSTUS.md b/docs/version-specific/supported-software/a/AUGUSTUS.md index 1e7f65d10..7f93f28ca 100644 --- a/docs/version-specific/supported-software/a/AUGUSTUS.md +++ b/docs/version-specific/supported-software/a/AUGUSTUS.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``foss/2022a`` ``3.5.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5b4fcfcad..3394a9ed4 100644 --- a/docs/version-specific/supported-software/a/AUTO-07p.md +++ b/docs/version-specific/supported-software/a/AUTO-07p.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.3`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Abseil.md b/docs/version-specific/supported-software/a/Abseil.md index d06e2ed60..6e52a1f22 100644 --- a/docs/version-specific/supported-software/a/Abseil.md +++ b/docs/version-specific/supported-software/a/Abseil.md @@ -16,5 +16,6 @@ version | toolchain ``20230125.3`` | ``GCCcore/12.3.0`` ``20240116.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AdapterRemoval.md b/docs/version-specific/supported-software/a/AdapterRemoval.md index dc82b0345..cfd8b0134 100644 --- a/docs/version-specific/supported-software/a/AdapterRemoval.md +++ b/docs/version-specific/supported-software/a/AdapterRemoval.md @@ -18,5 +18,6 @@ version | toolchain ``2.3.2`` | ``GCC/11.2.0`` ``2.3.3`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Advisor.md b/docs/version-specific/supported-software/a/Advisor.md index 528b470e5..e9bfd9944 100644 --- a/docs/version-specific/supported-software/a/Advisor.md +++ b/docs/version-specific/supported-software/a/Advisor.md @@ -23,5 +23,6 @@ version | toolchain ``2023.0.0`` | ``system`` ``2023.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Albacore.md b/docs/version-specific/supported-software/a/Albacore.md index 5b6f63eca..7062c665b 100644 --- a/docs/version-specific/supported-software/a/Albacore.md +++ b/docs/version-specific/supported-software/a/Albacore.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-Python-3.6.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Albumentations.md b/docs/version-specific/supported-software/a/Albumentations.md index 925324e84..f2f08e208 100644 --- a/docs/version-specific/supported-software/a/Albumentations.md +++ b/docs/version-specific/supported-software/a/Albumentations.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.3.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Alfred.md b/docs/version-specific/supported-software/a/Alfred.md index 520e868ae..ec393ac30 100644 --- a/docs/version-specific/supported-software/a/Alfred.md +++ b/docs/version-specific/supported-software/a/Alfred.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.6`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Allinea.md b/docs/version-specific/supported-software/a/Allinea.md index 4f07c0ef1..ed4dfbe95 100644 --- a/docs/version-specific/supported-software/a/Allinea.md +++ b/docs/version-specific/supported-software/a/Allinea.md @@ -14,5 +14,6 @@ version | toolchain ``4.1-32834-Redhat-6.0-x86_64`` | ``system`` ``6.1.1-Ubuntu-14.04-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Alpha.md b/docs/version-specific/supported-software/a/Alpha.md index bf311da7f..73db1b32c 100644 --- a/docs/version-specific/supported-software/a/Alpha.md +++ b/docs/version-specific/supported-software/a/Alpha.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200430`` | ``-Python-2.7.16`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AlphaFold.md b/docs/version-specific/supported-software/a/AlphaFold.md index 704ed38ac..d93001eaf 100644 --- a/docs/version-specific/supported-software/a/AlphaFold.md +++ b/docs/version-specific/supported-software/a/AlphaFold.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``2.3.4`` | ``-CUDA-11.7.0-ColabFold`` | ``foss/2022a`` ``2.3.4`` | ``-ColabFold`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AlphaPulldown.md b/docs/version-specific/supported-software/a/AlphaPulldown.md index 6ce63a09a..002de2df0 100644 --- a/docs/version-specific/supported-software/a/AlphaPulldown.md +++ b/docs/version-specific/supported-software/a/AlphaPulldown.md @@ -13,5 +13,6 @@ version | toolchain ``0.30.4`` | ``foss/2020b`` ``0.30.4`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Amara.md b/docs/version-specific/supported-software/a/Amara.md index ea33805dc..54003b93f 100644 --- a/docs/version-specific/supported-software/a/Amara.md +++ b/docs/version-specific/supported-software/a/Amara.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.0.2`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.2.0.2`` | ``-Python-2.7.15`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Amber.md b/docs/version-specific/supported-software/a/Amber.md index f0ce21797..b4368bc3d 100644 --- a/docs/version-specific/supported-software/a/Amber.md +++ b/docs/version-specific/supported-software/a/Amber.md @@ -35,5 +35,6 @@ version | versionsuffix | toolchain ``22.0`` | ``-AmberTools-22.3`` | ``foss/2021b`` ``22.4`` | ``-AmberTools-22.5-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AmberMini.md b/docs/version-specific/supported-software/a/AmberMini.md index b6ff262d9..4cae084a1 100644 --- a/docs/version-specific/supported-software/a/AmberMini.md +++ b/docs/version-specific/supported-software/a/AmberMini.md @@ -13,5 +13,6 @@ version | toolchain ``16.16.0`` | ``intel/2017b`` ``16.16.0`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AmberTools.md b/docs/version-specific/supported-software/a/AmberTools.md index 7542d0053..c44e5deca 100644 --- a/docs/version-specific/supported-software/a/AmberTools.md +++ b/docs/version-specific/supported-software/a/AmberTools.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``21.12`` | | ``foss/2021b`` ``22.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AmrPlusPlus.md b/docs/version-specific/supported-software/a/AmrPlusPlus.md index fc2db6fa2..a39e69dd4 100644 --- a/docs/version-specific/supported-software/a/AmrPlusPlus.md +++ b/docs/version-specific/supported-software/a/AmrPlusPlus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0-20200114`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Anaconda2.md b/docs/version-specific/supported-software/a/Anaconda2.md index 63fcc9239..2d741c1e5 100644 --- a/docs/version-specific/supported-software/a/Anaconda2.md +++ b/docs/version-specific/supported-software/a/Anaconda2.md @@ -21,5 +21,6 @@ version | toolchain ``5.1.0`` | ``system`` ``5.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Anaconda3.md b/docs/version-specific/supported-software/a/Anaconda3.md index 9b3f3c3c3..6d971899a 100644 --- a/docs/version-specific/supported-software/a/Anaconda3.md +++ b/docs/version-specific/supported-software/a/Anaconda3.md @@ -32,5 +32,6 @@ version | toolchain ``5.1.0`` | ``system`` ``5.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Annif.md b/docs/version-specific/supported-software/a/Annif.md index 9fadea115..06a64c749 100644 --- a/docs/version-specific/supported-software/a/Annif.md +++ b/docs/version-specific/supported-software/a/Annif.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.40.0`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.40.0`` | ``-Python-3.7.2`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Annocript.md b/docs/version-specific/supported-software/a/Annocript.md index 214e36101..4e03a9184 100644 --- a/docs/version-specific/supported-software/a/Annocript.md +++ b/docs/version-specific/supported-software/a/Annocript.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AptaSUITE.md b/docs/version-specific/supported-software/a/AptaSUITE.md index 1bb7824db..99198eafe 100644 --- a/docs/version-specific/supported-software/a/AptaSUITE.md +++ b/docs/version-specific/supported-software/a/AptaSUITE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.4`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Arb.md b/docs/version-specific/supported-software/a/Arb.md index d5f67605a..251f0ac17 100644 --- a/docs/version-specific/supported-software/a/Arb.md +++ b/docs/version-specific/supported-software/a/Arb.md @@ -18,5 +18,6 @@ version | toolchain ``2.22.1`` | ``foss/2021b`` ``2.23.0`` | ``gfbf/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dc2e9d514..6e9c79da1 100644 --- a/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md +++ b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md @@ -13,5 +13,6 @@ version | toolchain ``0.7.3`` | ``foss/2021b`` ``0.8.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ArchR.md b/docs/version-specific/supported-software/a/ArchR.md index d2daefaf4..f181d9818 100644 --- a/docs/version-specific/supported-software/a/ArchR.md +++ b/docs/version-specific/supported-software/a/ArchR.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.2`` | ``-R-4.2.2`` | ``foss/2022b`` ``1.0.2`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3f37fcf3e..7d289e4ee 100644 --- a/docs/version-specific/supported-software/a/Archive-Zip.md +++ b/docs/version-specific/supported-software/a/Archive-Zip.md @@ -16,5 +16,6 @@ version | toolchain ``1.68`` | ``GCCcore/11.3.0`` ``1.68`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AreTomo2.md b/docs/version-specific/supported-software/a/AreTomo2.md index e78d38ab0..ec4ae7301 100644 --- a/docs/version-specific/supported-software/a/AreTomo2.md +++ b/docs/version-specific/supported-software/a/AreTomo2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Arlequin.md b/docs/version-specific/supported-software/a/Arlequin.md index c48ee2b65..4b5b3e652 100644 --- a/docs/version-specific/supported-software/a/Arlequin.md +++ b/docs/version-specific/supported-software/a/Arlequin.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.5.2.2`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Armadillo.md b/docs/version-specific/supported-software/a/Armadillo.md index af64dabe2..d8002012b 100644 --- a/docs/version-specific/supported-software/a/Armadillo.md +++ b/docs/version-specific/supported-software/a/Armadillo.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``9.900.1`` | | ``foss/2019b`` ``9.900.1`` | | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ArrayFire.md b/docs/version-specific/supported-software/a/ArrayFire.md index cfc1d06e5..8a231136b 100644 --- a/docs/version-specific/supported-software/a/ArrayFire.md +++ b/docs/version-specific/supported-software/a/ArrayFire.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.6.4`` | ``-CUDA-9.2.88`` | ``foss/2018b`` ``3.6.4`` | | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Arriba.md b/docs/version-specific/supported-software/a/Arriba.md index bb026753b..e7aceb36c 100644 --- a/docs/version-specific/supported-software/a/Arriba.md +++ b/docs/version-specific/supported-software/a/Arriba.md @@ -17,5 +17,6 @@ version | toolchain ``2.3.0`` | ``GCC/11.2.0`` ``2.4.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Arrow.md b/docs/version-specific/supported-software/a/Arrow.md index 4c0f263c5..cf7d79faa 100644 --- a/docs/version-specific/supported-software/a/Arrow.md +++ b/docs/version-specific/supported-software/a/Arrow.md @@ -31,5 +31,6 @@ version | versionsuffix | toolchain ``8.0.0`` | | ``foss/2022.05`` ``8.0.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Artemis.md b/docs/version-specific/supported-software/a/Artemis.md index b065c1c20..4cb2fd623 100644 --- a/docs/version-specific/supported-software/a/Artemis.md +++ b/docs/version-specific/supported-software/a/Artemis.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``18.0.3`` | ``-Java-11`` | ``system`` ``18.2.0`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ArviZ.md b/docs/version-specific/supported-software/a/ArviZ.md index 36be78300..f9bb848fa 100644 --- a/docs/version-specific/supported-software/a/ArviZ.md +++ b/docs/version-specific/supported-software/a/ArviZ.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.7.0`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 15d04ae4a..8bf1ab3ab 100644 --- a/docs/version-specific/supported-software/a/Aspera-CLI.md +++ b/docs/version-specific/supported-software/a/Aspera-CLI.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.9.0`` | ``.1326.6985b21`` | ``system`` ``3.9.6`` | ``.1467.159c5b1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b131f632a..1cd1afdd8 100644 --- a/docs/version-specific/supported-software/a/Aspera-Connect.md +++ b/docs/version-specific/supported-software/a/Aspera-Connect.md @@ -13,5 +13,6 @@ version | toolchain ``3.6.1`` | ``system`` ``3.9.6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Assimulo.md b/docs/version-specific/supported-software/a/Assimulo.md index c871d3bf6..f4f2b589a 100644 --- a/docs/version-specific/supported-software/a/Assimulo.md +++ b/docs/version-specific/supported-software/a/Assimulo.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.9`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AtomPAW.md b/docs/version-specific/supported-software/a/AtomPAW.md index acf8c8946..1cca5335e 100644 --- a/docs/version-specific/supported-software/a/AtomPAW.md +++ b/docs/version-specific/supported-software/a/AtomPAW.md @@ -13,5 +13,6 @@ version | toolchain ``4.1.0.5`` | ``intel/2018b`` ``4.1.0.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Austin.md b/docs/version-specific/supported-software/a/Austin.md index 6113cae12..6697b378f 100644 --- a/docs/version-specific/supported-software/a/Austin.md +++ b/docs/version-specific/supported-software/a/Austin.md @@ -13,5 +13,6 @@ version | toolchain ``3.2.0`` | ``GCCcore/11.2.0`` ``3.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 346262786..5ae1191e1 100644 --- a/docs/version-specific/supported-software/a/AutoDock-GPU.md +++ b/docs/version-specific/supported-software/a/AutoDock-GPU.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9a40ab2b2..40086aae1 100644 --- a/docs/version-specific/supported-software/a/AutoDock-Vina.md +++ b/docs/version-specific/supported-software/a/AutoDock-Vina.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.2.3`` | | ``foss/2021a`` ``1.2.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AutoDock.md b/docs/version-specific/supported-software/a/AutoDock.md index 2793fd926..140a8319e 100644 --- a/docs/version-specific/supported-software/a/AutoDock.md +++ b/docs/version-specific/supported-software/a/AutoDock.md @@ -13,5 +13,6 @@ version | toolchain ``4.2.5.1`` | ``GCC/5.2.0`` ``4.2.6`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AutoDockSuite.md b/docs/version-specific/supported-software/a/AutoDockSuite.md index af70a3f3e..fd696174e 100644 --- a/docs/version-specific/supported-software/a/AutoDockSuite.md +++ b/docs/version-specific/supported-software/a/AutoDockSuite.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.2.6`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AutoGeneS.md b/docs/version-specific/supported-software/a/AutoGeneS.md index ad68b4298..02ebea341 100644 --- a/docs/version-specific/supported-software/a/AutoGeneS.md +++ b/docs/version-specific/supported-software/a/AutoGeneS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AutoGrid.md b/docs/version-specific/supported-software/a/AutoGrid.md index b3efe43f0..b0fb2d1c8 100644 --- a/docs/version-specific/supported-software/a/AutoGrid.md +++ b/docs/version-specific/supported-software/a/AutoGrid.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.2.5.1`` | ``GCC/5.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/AutoMap.md b/docs/version-specific/supported-software/a/AutoMap.md index 6a97746c6..303fdbf48 100644 --- a/docs/version-specific/supported-software/a/AutoMap.md +++ b/docs/version-specific/supported-software/a/AutoMap.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-20200324`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5e340b4af..5f7acd2ef 100644 --- a/docs/version-specific/supported-software/a/Autoconf-archive.md +++ b/docs/version-specific/supported-software/a/Autoconf-archive.md @@ -14,5 +14,6 @@ version | toolchain ``2021.02.19`` | ``GCCcore/10.2.0`` ``2023.02.20`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Autoconf.md b/docs/version-specific/supported-software/a/Autoconf.md index c68f7af67..79e6a3b9b 100644 --- a/docs/version-specific/supported-software/a/Autoconf.md +++ b/docs/version-specific/supported-software/a/Autoconf.md @@ -57,5 +57,6 @@ version | toolchain ``2.71`` | ``system`` ``2.72`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Automake.md b/docs/version-specific/supported-software/a/Automake.md index 1c21f0eaa..94ce4cfa1 100644 --- a/docs/version-specific/supported-software/a/Automake.md +++ b/docs/version-specific/supported-software/a/Automake.md @@ -62,5 +62,6 @@ version | toolchain ``1.16.5`` | ``GCCcore/13.3.0`` ``1.16.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Autotools.md b/docs/version-specific/supported-software/a/Autotools.md index f1049e005..fd7a47d7f 100644 --- a/docs/version-specific/supported-software/a/Autotools.md +++ b/docs/version-specific/supported-software/a/Autotools.md @@ -57,5 +57,6 @@ version | toolchain ``20220317`` | ``system`` ``20231222`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Avogadro2.md b/docs/version-specific/supported-software/a/Avogadro2.md index bd40b59b6..79c9d754e 100644 --- a/docs/version-specific/supported-software/a/Avogadro2.md +++ b/docs/version-specific/supported-software/a/Avogadro2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.97.0`` | ``-linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/Ax.md b/docs/version-specific/supported-software/a/Ax.md index e66a0f688..e86801fd7 100644 --- a/docs/version-specific/supported-software/a/Ax.md +++ b/docs/version-specific/supported-software/a/Ax.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/aNCI.md b/docs/version-specific/supported-software/a/aNCI.md index fbcf5bd57..477be1780 100644 --- a/docs/version-specific/supported-software/a/aNCI.md +++ b/docs/version-specific/supported-software/a/aNCI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/abTEM.md b/docs/version-specific/supported-software/a/abTEM.md index 8cd6c75a6..cd14aa0b4 100644 --- a/docs/version-specific/supported-software/a/abTEM.md +++ b/docs/version-specific/supported-software/a/abTEM.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.0b26`` | ``-ASE-3.22.0`` | ``foss/2020b`` ``1.0.0b26`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ack.md b/docs/version-specific/supported-software/a/ack.md index 6e1a5f7e5..e8c172e6d 100644 --- a/docs/version-specific/supported-software/a/ack.md +++ b/docs/version-specific/supported-software/a/ack.md @@ -14,5 +14,6 @@ version | toolchain ``3.4.0`` | ``GCCcore/10.2.0`` ``3.5.0`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ada.md b/docs/version-specific/supported-software/a/ada.md index 8e81170d7..33efb77de 100644 --- a/docs/version-specific/supported-software/a/ada.md +++ b/docs/version-specific/supported-software/a/ada.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0-5`` | ``-R-3.4.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/adjustText.md b/docs/version-specific/supported-software/a/adjustText.md index f9fee8ecc..ef3ea0d86 100644 --- a/docs/version-specific/supported-software/a/adjustText.md +++ b/docs/version-specific/supported-software/a/adjustText.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.7.3`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.1.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/affinity.md b/docs/version-specific/supported-software/a/affinity.md index eb190ec45..99bdc2902 100644 --- a/docs/version-specific/supported-software/a/affinity.md +++ b/docs/version-specific/supported-software/a/affinity.md @@ -13,5 +13,6 @@ version | toolchain ``20230524`` | ``foss/2022a`` ``20230524`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/aiohttp.md b/docs/version-specific/supported-software/a/aiohttp.md index 0973dbee4..a28507cd9 100644 --- a/docs/version-specific/supported-software/a/aiohttp.md +++ b/docs/version-specific/supported-software/a/aiohttp.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``3.8.5`` | | ``GCCcore/12.3.0`` ``3.9.5`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a9d496a39..0c7f22699 100644 --- a/docs/version-specific/supported-software/a/alevin-fry.md +++ b/docs/version-specific/supported-software/a/alevin-fry.md @@ -14,5 +14,6 @@ version | toolchain ``0.6.0`` | ``GCCcore/10.3.0`` ``0.9.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/alleleCount.md b/docs/version-specific/supported-software/a/alleleCount.md index 13b6be959..763aaf5a0 100644 --- a/docs/version-specific/supported-software/a/alleleCount.md +++ b/docs/version-specific/supported-software/a/alleleCount.md @@ -14,5 +14,6 @@ version | toolchain ``4.2.1`` | ``GCC/11.3.0`` ``4.3.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/alleleIntegrator.md b/docs/version-specific/supported-software/a/alleleIntegrator.md index 10d9c847c..8f26ac778 100644 --- a/docs/version-specific/supported-software/a/alleleIntegrator.md +++ b/docs/version-specific/supported-software/a/alleleIntegrator.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.8.8`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.8.8`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/almosthere.md b/docs/version-specific/supported-software/a/almosthere.md index 17f333432..3b83e5f73 100644 --- a/docs/version-specific/supported-software/a/almosthere.md +++ b/docs/version-specific/supported-software/a/almosthere.md @@ -14,5 +14,6 @@ version | toolchain ``1.0.10`` | ``GCCcore/9.3.0`` ``2.0.2`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b784564a1..fff60b407 100644 --- a/docs/version-specific/supported-software/a/alsa-lib.md +++ b/docs/version-specific/supported-software/a/alsa-lib.md @@ -16,5 +16,6 @@ version | toolchain ``1.2.8`` | ``GCCcore/11.3.0`` ``1.2.9`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/amask.md b/docs/version-specific/supported-software/a/amask.md index 02ce36bb2..505829d54 100644 --- a/docs/version-specific/supported-software/a/amask.md +++ b/docs/version-specific/supported-software/a/amask.md @@ -13,5 +13,6 @@ version | toolchain ``20171106`` | ``foss/2018a`` ``20190404`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/amdahl.md b/docs/version-specific/supported-software/a/amdahl.md index ec5663ba1..e7fcae3a0 100644 --- a/docs/version-specific/supported-software/a/amdahl.md +++ b/docs/version-specific/supported-software/a/amdahl.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.1`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/amplimap.md b/docs/version-specific/supported-software/a/amplimap.md index 229a581dc..58e04ef9c 100644 --- a/docs/version-specific/supported-software/a/amplimap.md +++ b/docs/version-specific/supported-software/a/amplimap.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.16`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/anadama2.md b/docs/version-specific/supported-software/a/anadama2.md index 6c5b165a4..250fcaf0c 100644 --- a/docs/version-specific/supported-software/a/anadama2.md +++ b/docs/version-specific/supported-software/a/anadama2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.10.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/andi.md b/docs/version-specific/supported-software/a/andi.md index af0516eb6..bdde585fb 100644 --- a/docs/version-specific/supported-software/a/andi.md +++ b/docs/version-specific/supported-software/a/andi.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/angsd.md b/docs/version-specific/supported-software/a/angsd.md index b0f59bbff..312c4e188 100644 --- a/docs/version-specific/supported-software/a/angsd.md +++ b/docs/version-specific/supported-software/a/angsd.md @@ -19,5 +19,6 @@ version | toolchain ``0.940`` | ``GCC/11.2.0`` ``0.940`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/anndata.md b/docs/version-specific/supported-software/a/anndata.md index 38e709f8a..2c6537102 100644 --- a/docs/version-specific/supported-software/a/anndata.md +++ b/docs/version-specific/supported-software/a/anndata.md @@ -15,5 +15,6 @@ version | toolchain ``0.9.2`` | ``foss/2021a`` ``0.9.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/annovar.md b/docs/version-specific/supported-software/a/annovar.md index 4b68e3280..130c7cba8 100644 --- a/docs/version-specific/supported-software/a/annovar.md +++ b/docs/version-specific/supported-software/a/annovar.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``20191024`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` ``20200607`` | ``-Perl-5.34.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/ant.md b/docs/version-specific/supported-software/a/ant.md index f195f1b52..a2a74b504 100644 --- a/docs/version-specific/supported-software/a/ant.md +++ b/docs/version-specific/supported-software/a/ant.md @@ -41,5 +41,6 @@ version | versionsuffix | toolchain ``1.9.6`` | ``-Java-1.8.0_77`` | ``system`` ``1.9.7`` | ``-Java-1.8.0_92`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/antiSMASH.md b/docs/version-specific/supported-software/a/antiSMASH.md index 448e86a02..0e142dc3c 100644 --- a/docs/version-specific/supported-software/a/antiSMASH.md +++ b/docs/version-specific/supported-software/a/antiSMASH.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``5.2.0`` | | ``foss/2020b`` ``6.0.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/anvio.md b/docs/version-specific/supported-software/a/anvio.md index 50e9b028c..1d946ce0a 100644 --- a/docs/version-specific/supported-software/a/anvio.md +++ b/docs/version-specific/supported-software/a/anvio.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``6.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``8`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/any2fasta.md b/docs/version-specific/supported-software/a/any2fasta.md index 0a8436622..259927646 100644 --- a/docs/version-specific/supported-software/a/any2fasta.md +++ b/docs/version-specific/supported-software/a/any2fasta.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.4.2`` | | ``GCCcore/8.3.0`` ``0.4.2`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/apex.md b/docs/version-specific/supported-software/a/apex.md index 22d9891c5..164b280ed 100644 --- a/docs/version-specific/supported-software/a/apex.md +++ b/docs/version-specific/supported-software/a/apex.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20200325`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``20210420`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/arcasHLA.md b/docs/version-specific/supported-software/a/arcasHLA.md index d18928467..2d7716eb3 100644 --- a/docs/version-specific/supported-software/a/arcasHLA.md +++ b/docs/version-specific/supported-software/a/arcasHLA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/archspec.md b/docs/version-specific/supported-software/a/archspec.md index f39487872..57afb896c 100644 --- a/docs/version-specific/supported-software/a/archspec.md +++ b/docs/version-specific/supported-software/a/archspec.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.2.1`` | | ``GCCcore/12.3.0`` ``0.2.2`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/argtable.md b/docs/version-specific/supported-software/a/argtable.md index 8be4fb22e..e8679c69b 100644 --- a/docs/version-specific/supported-software/a/argtable.md +++ b/docs/version-specific/supported-software/a/argtable.md @@ -20,5 +20,6 @@ version | toolchain ``2.13`` | ``intel/2018a`` ``2.13`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/aria2.md b/docs/version-specific/supported-software/a/aria2.md index b982990c3..226e4f26c 100644 --- a/docs/version-specific/supported-software/a/aria2.md +++ b/docs/version-specific/supported-software/a/aria2.md @@ -13,5 +13,6 @@ version | toolchain ``1.35.0`` | ``GCCcore/10.3.0`` ``1.36.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/arosics.md b/docs/version-specific/supported-software/a/arosics.md index bbc3d0443..ee546d293 100644 --- a/docs/version-specific/supported-software/a/arosics.md +++ b/docs/version-specific/supported-software/a/arosics.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.6`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8d4a3ebcc..ea0d9302d 100644 --- a/docs/version-specific/supported-software/a/arpack-ng.md +++ b/docs/version-specific/supported-software/a/arpack-ng.md @@ -36,5 +36,6 @@ version | toolchain ``3.9.0`` | ``foss/2023b`` ``3.9.1`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 552f17873..daf5f8364 100644 --- a/docs/version-specific/supported-software/a/arrow-R.md +++ b/docs/version-specific/supported-software/a/arrow-R.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``6.0.0.2`` | ``-R-4.2.0`` | ``foss/2021b`` ``8.0.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ae1eda120..2b0a89f04 100644 --- a/docs/version-specific/supported-software/a/artic-ncov2019.md +++ b/docs/version-specific/supported-software/a/artic-ncov2019.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2020.04.13`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2021.06.24`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6c5aeb9e5..5bef3aa87 100644 --- a/docs/version-specific/supported-software/a/assembly-stats.md +++ b/docs/version-specific/supported-software/a/assembly-stats.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/assimp.md b/docs/version-specific/supported-software/a/assimp.md index 46aabdf27..ec754c4f5 100644 --- a/docs/version-specific/supported-software/a/assimp.md +++ b/docs/version-specific/supported-software/a/assimp.md @@ -14,5 +14,6 @@ version | toolchain ``5.2.5`` | ``GCCcore/12.3.0`` ``5.3.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5fd9b142d..054506581 100644 --- a/docs/version-specific/supported-software/a/astro-tulips.md +++ b/docs/version-specific/supported-software/a/astro-tulips.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/astropy.md b/docs/version-specific/supported-software/a/astropy.md index 978265719..8a8a10831 100644 --- a/docs/version-specific/supported-software/a/astropy.md +++ b/docs/version-specific/supported-software/a/astropy.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``5.1.1`` | | ``intel/2022a`` ``5.2.2`` | | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dec098d49..c76f42189 100644 --- a/docs/version-specific/supported-software/a/at-spi2-atk.md +++ b/docs/version-specific/supported-software/a/at-spi2-atk.md @@ -22,5 +22,6 @@ version | toolchain ``2.38.0`` | ``GCCcore/12.3.0`` ``2.38.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5c9da3b4d..404248f5b 100644 --- a/docs/version-specific/supported-software/a/at-spi2-core.md +++ b/docs/version-specific/supported-software/a/at-spi2-core.md @@ -22,5 +22,6 @@ version | toolchain ``2.49.91`` | ``GCCcore/12.3.0`` ``2.50.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/atomate.md b/docs/version-specific/supported-software/a/atomate.md index 451ebd16b..685aa12f4 100644 --- a/docs/version-specific/supported-software/a/atomate.md +++ b/docs/version-specific/supported-software/a/atomate.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/atools.md b/docs/version-specific/supported-software/a/atools.md index e19435a48..cfb415c01 100644 --- a/docs/version-specific/supported-software/a/atools.md +++ b/docs/version-specific/supported-software/a/atools.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.5.1`` | | ``GCCcore/12.3.0`` ``1.5.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/atropos.md b/docs/version-specific/supported-software/a/atropos.md index b9e546894..13302daba 100644 --- a/docs/version-specific/supported-software/a/atropos.md +++ b/docs/version-specific/supported-software/a/atropos.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.21`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.1.32`` | | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/attr.md b/docs/version-specific/supported-software/a/attr.md index 4bbaf0501..f28ab8710 100644 --- a/docs/version-specific/supported-software/a/attr.md +++ b/docs/version-specific/supported-software/a/attr.md @@ -17,5 +17,6 @@ version | toolchain ``2.5.1`` | ``GCCcore/11.3.0`` ``2.5.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/attrdict.md b/docs/version-specific/supported-software/a/attrdict.md index fdfcd5c7a..46cc1c654 100644 --- a/docs/version-specific/supported-software/a/attrdict.md +++ b/docs/version-specific/supported-software/a/attrdict.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/attrdict3.md b/docs/version-specific/supported-software/a/attrdict3.md index f7635ef49..ec1fbf796 100644 --- a/docs/version-specific/supported-software/a/attrdict3.md +++ b/docs/version-specific/supported-software/a/attrdict3.md @@ -14,5 +14,6 @@ version | toolchain ``2.0.2`` | ``GCCcore/11.3.0`` ``2.0.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/augur.md b/docs/version-specific/supported-software/a/augur.md index 1113302e7..47e313616 100644 --- a/docs/version-specific/supported-software/a/augur.md +++ b/docs/version-specific/supported-software/a/augur.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/autopep8.md b/docs/version-specific/supported-software/a/autopep8.md index b52e2046a..13053f50f 100644 --- a/docs/version-specific/supported-software/a/autopep8.md +++ b/docs/version-specific/supported-software/a/autopep8.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.0.4`` | | ``foss/2022a`` ``2.2.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8fc20082d..e430c9cb7 100644 --- a/docs/version-specific/supported-software/a/avro-cpp.md +++ b/docs/version-specific/supported-software/a/avro-cpp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.11.1`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/awscli.md b/docs/version-specific/supported-software/a/awscli.md index b1c140403..7c6efe656 100644 --- a/docs/version-specific/supported-software/a/awscli.md +++ b/docs/version-specific/supported-software/a/awscli.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``2.11.21`` | | ``GCCcore/11.3.0`` ``2.15.2`` | | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/axel.md b/docs/version-specific/supported-software/a/axel.md index 9d24111ec..5568c07b9 100644 --- a/docs/version-specific/supported-software/a/axel.md +++ b/docs/version-specific/supported-software/a/axel.md @@ -13,5 +13,6 @@ version | toolchain ``2.17.9`` | ``GCCcore/8.3.0`` ``2.17.9`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/a/index.md b/docs/version-specific/supported-software/a/index.md index 02e615492..d324eac13 100644 --- a/docs/version-specific/supported-software/a/index.md +++ b/docs/version-specific/supported-software/a/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (a) -[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) +*(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) @@ -176,3 +178,7 @@ search: * [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 index ee08a4282..0db4c34a8 100644 --- a/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md +++ b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.2`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BAGEL.md b/docs/version-specific/supported-software/b/BAGEL.md index 9cac2b891..440b87e23 100644 --- a/docs/version-specific/supported-software/b/BAGEL.md +++ b/docs/version-specific/supported-software/b/BAGEL.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.2`` | ``foss/2021a`` ``1.2.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BAMM.md b/docs/version-specific/supported-software/b/BAMM.md index c949fb52b..5dfa2b468 100644 --- a/docs/version-specific/supported-software/b/BAMM.md +++ b/docs/version-specific/supported-software/b/BAMM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BAMSurgeon.md b/docs/version-specific/supported-software/b/BAMSurgeon.md index 7ccb496c6..7fce28a42 100644 --- a/docs/version-specific/supported-software/b/BAMSurgeon.md +++ b/docs/version-specific/supported-software/b/BAMSurgeon.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a742820ac..c74e64914 100644 --- a/docs/version-specific/supported-software/b/BAli-Phy.md +++ b/docs/version-specific/supported-software/b/BAli-Phy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.6.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BBMap.md b/docs/version-specific/supported-software/b/BBMap.md index 1f942ca82..a6600a03c 100644 --- a/docs/version-specific/supported-software/b/BBMap.md +++ b/docs/version-specific/supported-software/b/BBMap.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``39.01`` | | ``GCC/11.3.0`` ``39.01`` | | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BCALM.md b/docs/version-specific/supported-software/b/BCALM.md index 5dadda44e..42016b7d3 100644 --- a/docs/version-specific/supported-software/b/BCALM.md +++ b/docs/version-specific/supported-software/b/BCALM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BCEL.md b/docs/version-specific/supported-software/b/BCEL.md index 63b44f9bc..d0c050d7b 100644 --- a/docs/version-specific/supported-software/b/BCEL.md +++ b/docs/version-specific/supported-software/b/BCEL.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.2`` | ``-Java-1.8`` | ``system`` ``6.5.0`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BCFtools.md b/docs/version-specific/supported-software/b/BCFtools.md index 38074afab..7536f64dd 100644 --- a/docs/version-specific/supported-software/b/BCFtools.md +++ b/docs/version-specific/supported-software/b/BCFtools.md @@ -34,5 +34,6 @@ version | toolchain ``1.9`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BDBag.md b/docs/version-specific/supported-software/b/BDBag.md index 6c1ce68cc..8bd23ddf0 100644 --- a/docs/version-specific/supported-software/b/BDBag.md +++ b/docs/version-specific/supported-software/b/BDBag.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.6.3`` | | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BEDOPS.md b/docs/version-specific/supported-software/b/BEDOPS.md index 31527d88b..011465c60 100644 --- a/docs/version-specific/supported-software/b/BEDOPS.md +++ b/docs/version-specific/supported-software/b/BEDOPS.md @@ -20,5 +20,6 @@ version | toolchain ``2.4.35`` | ``foss/2018b`` ``2.4.41`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BEDTools.md b/docs/version-specific/supported-software/b/BEDTools.md index e2b2d27a6..b72491189 100644 --- a/docs/version-specific/supported-software/b/BEDTools.md +++ b/docs/version-specific/supported-software/b/BEDTools.md @@ -34,5 +34,6 @@ version | toolchain ``2.30.0`` | ``iccifort/2020.4.304`` ``2.31.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BEEF.md b/docs/version-specific/supported-software/b/BEEF.md index faf78f020..45c41e1e9 100644 --- a/docs/version-specific/supported-software/b/BEEF.md +++ b/docs/version-specific/supported-software/b/BEEF.md @@ -13,5 +13,6 @@ version | toolchain ``0.1.1`` | ``iccifort/2019.5.281`` ``0.1.1`` | ``iccifort/2020.4.304`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BFAST.md b/docs/version-specific/supported-software/b/BFAST.md index 6d774d58c..95ca2cb95 100644 --- a/docs/version-specific/supported-software/b/BFAST.md +++ b/docs/version-specific/supported-software/b/BFAST.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.0a`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BFC.md b/docs/version-specific/supported-software/b/BFC.md index bc041dafa..d61766084 100644 --- a/docs/version-specific/supported-software/b/BFC.md +++ b/docs/version-specific/supported-software/b/BFC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 827ebeca5..7e2bae688 100644 --- a/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md +++ b/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.03`` | ``gompi/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLACS.md b/docs/version-specific/supported-software/b/BLACS.md index 4a69e37c6..cff32dba7 100644 --- a/docs/version-specific/supported-software/b/BLACS.md +++ b/docs/version-specific/supported-software/b/BLACS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``gmvapich2/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLASR.md b/docs/version-specific/supported-software/b/BLASR.md index dff3cfdc3..b557d0192 100644 --- a/docs/version-specific/supported-software/b/BLASR.md +++ b/docs/version-specific/supported-software/b/BLASR.md @@ -14,5 +14,6 @@ version | toolchain ``20170330`` | ``intel/2017a`` ``5.3.3`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLAST+.md b/docs/version-specific/supported-software/b/BLAST+.md index 7dd36785e..3ac849d8f 100644 --- a/docs/version-specific/supported-software/b/BLAST+.md +++ b/docs/version-specific/supported-software/b/BLAST+.md @@ -38,5 +38,6 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``iimpi/2019a`` ``2.9.0`` | | ``iimpi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLAST.md b/docs/version-specific/supported-software/b/BLAST.md index 5307b1c46..23d3c9c5a 100644 --- a/docs/version-specific/supported-software/b/BLAST.md +++ b/docs/version-specific/supported-software/b/BLAST.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.2.26`` | ``-Linux_x86_64`` | ``system`` ``2.8.1`` | ``-Linux_x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLAT.md b/docs/version-specific/supported-software/b/BLAT.md index 905133cfd..e813db51c 100644 --- a/docs/version-specific/supported-software/b/BLAT.md +++ b/docs/version-specific/supported-software/b/BLAT.md @@ -21,5 +21,6 @@ version | toolchain ``3.7`` | ``GCC/11.2.0`` ``3.7`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLIS.md b/docs/version-specific/supported-software/b/BLIS.md index ed89b8e21..2e13ec5fb 100644 --- a/docs/version-specific/supported-software/b/BLIS.md +++ b/docs/version-specific/supported-software/b/BLIS.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-amd`` | ``GCCcore/10.3.0`` ``3.1`` | ``-amd`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BLT.md b/docs/version-specific/supported-software/b/BLT.md index 978ba96ae..44b7248c1 100644 --- a/docs/version-specific/supported-software/b/BLT.md +++ b/docs/version-specific/supported-software/b/BLT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20181223`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BMTK.md b/docs/version-specific/supported-software/b/BMTK.md index effc65cc8..ea75e35ff 100644 --- a/docs/version-specific/supported-software/b/BMTK.md +++ b/docs/version-specific/supported-software/b/BMTK.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.8`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BOINC.md b/docs/version-specific/supported-software/b/BOINC.md index 3a47e40c8..1b6a3fb2e 100644 --- a/docs/version-specific/supported-software/b/BOINC.md +++ b/docs/version-specific/supported-software/b/BOINC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.2.42`` | ``-client`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BOPTEST.md b/docs/version-specific/supported-software/b/BOPTEST.md index be8af6977..4a145fc94 100644 --- a/docs/version-specific/supported-software/b/BOPTEST.md +++ b/docs/version-specific/supported-software/b/BOPTEST.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BRAKER.md b/docs/version-specific/supported-software/b/BRAKER.md index 5b6b8f861..e53e319b0 100644 --- a/docs/version-specific/supported-software/b/BRAKER.md +++ b/docs/version-specific/supported-software/b/BRAKER.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.1.6`` | | ``foss/2021b`` ``2.1.6`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BRiAl.md b/docs/version-specific/supported-software/b/BRiAl.md index 7672db415..5556e8d8e 100644 --- a/docs/version-specific/supported-software/b/BRiAl.md +++ b/docs/version-specific/supported-software/b/BRiAl.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.12`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BSMAPz.md b/docs/version-specific/supported-software/b/BSMAPz.md index a9e862f50..f48414b51 100644 --- a/docs/version-specific/supported-software/b/BSMAPz.md +++ b/docs/version-specific/supported-software/b/BSMAPz.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BSseeker2.md b/docs/version-specific/supported-software/b/BSseeker2.md index 86578c0fb..fb6383ab1 100644 --- a/docs/version-specific/supported-software/b/BSseeker2.md +++ b/docs/version-specific/supported-software/b/BSseeker2.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BUFRLIB.md b/docs/version-specific/supported-software/b/BUFRLIB.md index 9fa0ead31..27da2cec2 100644 --- a/docs/version-specific/supported-software/b/BUFRLIB.md +++ b/docs/version-specific/supported-software/b/BUFRLIB.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``11.3.0.2`` | ``iccifort/2020.1.217`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BUSCO.md b/docs/version-specific/supported-software/b/BUSCO.md index 600acb5af..4fb1c8cb7 100644 --- a/docs/version-specific/supported-software/b/BUSCO.md +++ b/docs/version-specific/supported-software/b/BUSCO.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``5.4.5`` | | ``foss/2022a`` ``5.4.7`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BUStools.md b/docs/version-specific/supported-software/b/BUStools.md index 7a9d5ecf1..6cf971626 100644 --- a/docs/version-specific/supported-software/b/BUStools.md +++ b/docs/version-specific/supported-software/b/BUStools.md @@ -14,5 +14,6 @@ version | toolchain ``0.40.0`` | ``foss/2018b`` ``0.43.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BWA.md b/docs/version-specific/supported-software/b/BWA.md index b96145e39..2173e4863 100644 --- a/docs/version-specific/supported-software/b/BWA.md +++ b/docs/version-specific/supported-software/b/BWA.md @@ -42,5 +42,6 @@ version | toolchain ``0.7.17`` | ``intel/2018b`` ``0.7.18`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BWISE.md b/docs/version-specific/supported-software/b/BWISE.md index 33d94cf1f..f12260faa 100644 --- a/docs/version-specific/supported-software/b/BWISE.md +++ b/docs/version-specific/supported-software/b/BWISE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180820`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3b7221efb..a7045eb27 100644 --- a/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md +++ b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.11.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BabelStream.md b/docs/version-specific/supported-software/b/BabelStream.md index 923404eeb..78034f8c7 100644 --- a/docs/version-specific/supported-software/b/BabelStream.md +++ b/docs/version-specific/supported-software/b/BabelStream.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4`` | ``-omp`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bader.md b/docs/version-specific/supported-software/b/Bader.md index f6880ecd2..4a16fada1 100644 --- a/docs/version-specific/supported-software/b/Bader.md +++ b/docs/version-specific/supported-software/b/Bader.md @@ -15,5 +15,6 @@ version | toolchain ``1.04`` | ``GCC/11.2.0`` ``1.04`` | ``iccifort/2020.4.304`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BamTools.md b/docs/version-specific/supported-software/b/BamTools.md index c91363c0b..798c822ba 100644 --- a/docs/version-specific/supported-software/b/BamTools.md +++ b/docs/version-specific/supported-software/b/BamTools.md @@ -32,5 +32,6 @@ version | toolchain ``2.5.2`` | ``GCC/12.2.0`` ``2.5.2`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BamUtil.md b/docs/version-specific/supported-software/b/BamUtil.md index 8d215eadd..b33844c48 100644 --- a/docs/version-specific/supported-software/b/BamUtil.md +++ b/docs/version-specific/supported-software/b/BamUtil.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.13`` | ``intel/2016b`` ``1.0.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bambi.md b/docs/version-specific/supported-software/b/Bambi.md index 1cebb2d38..36c64da13 100644 --- a/docs/version-specific/supported-software/b/Bambi.md +++ b/docs/version-specific/supported-software/b/Bambi.md @@ -13,5 +13,6 @@ version | toolchain ``0.7.1`` | ``foss/2021b`` ``0.7.1`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bandage.md b/docs/version-specific/supported-software/b/Bandage.md index aaa17adc4..d97104c53 100644 --- a/docs/version-specific/supported-software/b/Bandage.md +++ b/docs/version-specific/supported-software/b/Bandage.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``GCCcore/11.2.0`` ``0.9.0`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bash.md b/docs/version-specific/supported-software/b/Bash.md index 19872c961..054af2e58 100644 --- a/docs/version-specific/supported-software/b/Bash.md +++ b/docs/version-specific/supported-software/b/Bash.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3`` | ``GCC/4.9.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BatMeth2.md b/docs/version-specific/supported-software/b/BatMeth2.md index 1caf4e366..3ed5d2e77 100644 --- a/docs/version-specific/supported-software/b/BatMeth2.md +++ b/docs/version-specific/supported-software/b/BatMeth2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BayeScEnv.md b/docs/version-specific/supported-software/b/BayeScEnv.md index e640b0b27..969eb0121 100644 --- a/docs/version-specific/supported-software/b/BayeScEnv.md +++ b/docs/version-specific/supported-software/b/BayeScEnv.md @@ -14,5 +14,6 @@ version | toolchain ``1.1`` | ``foss/2016a`` ``1.1`` | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BayeScan.md b/docs/version-specific/supported-software/b/BayeScan.md index 2f55ac1ac..f2f1ff27a 100644 --- a/docs/version-specific/supported-software/b/BayeScan.md +++ b/docs/version-specific/supported-software/b/BayeScan.md @@ -14,5 +14,6 @@ version | toolchain ``2.1`` | ``foss/2018a`` ``2.1`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BayesAss.md b/docs/version-specific/supported-software/b/BayesAss.md index 29fae104d..ff6df5aef 100644 --- a/docs/version-specific/supported-software/b/BayesAss.md +++ b/docs/version-specific/supported-software/b/BayesAss.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.4`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c09119b6a..cee7d7d26 100644 --- a/docs/version-specific/supported-software/b/BayesAss3-SNPs.md +++ b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BayesPrism.md b/docs/version-specific/supported-software/b/BayesPrism.md index 708bc821a..17a5dc239 100644 --- a/docs/version-specific/supported-software/b/BayesPrism.md +++ b/docs/version-specific/supported-software/b/BayesPrism.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BayesTraits.md b/docs/version-specific/supported-software/b/BayesTraits.md index db1d6d041..9361ec10e 100644 --- a/docs/version-specific/supported-software/b/BayesTraits.md +++ b/docs/version-specific/supported-software/b/BayesTraits.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.0`` | ``-Beta-Linux64`` | ``system`` ``3.0.2`` | ``-Linux`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bazel.md b/docs/version-specific/supported-software/b/Bazel.md index 1943e8f4f..188c8eafb 100644 --- a/docs/version-specific/supported-software/b/Bazel.md +++ b/docs/version-specific/supported-software/b/Bazel.md @@ -43,5 +43,6 @@ version | versionsuffix | toolchain ``6.3.1`` | | ``GCCcore/12.2.0`` ``6.3.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Beagle.md b/docs/version-specific/supported-software/b/Beagle.md index 9d1edd643..9446dd8ba 100644 --- a/docs/version-specific/supported-software/b/Beagle.md +++ b/docs/version-specific/supported-software/b/Beagle.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.4.22Jul22.46e`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Beast.md b/docs/version-specific/supported-software/b/Beast.md index 51a02c879..26e4a6734 100644 --- a/docs/version-specific/supported-software/b/Beast.md +++ b/docs/version-specific/supported-software/b/Beast.md @@ -24,5 +24,6 @@ version | toolchain ``2.6.7`` | ``GCC/10.3.0`` ``2.7.3`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BeautifulSoup.md b/docs/version-specific/supported-software/b/BeautifulSoup.md index 376d990c3..42d7dee09 100644 --- a/docs/version-specific/supported-software/b/BeautifulSoup.md +++ b/docs/version-specific/supported-software/b/BeautifulSoup.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``4.9.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``4.9.3`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BerkeleyGW.md b/docs/version-specific/supported-software/b/BerkeleyGW.md index ae11aaa66..c54edd86a 100644 --- a/docs/version-specific/supported-software/b/BerkeleyGW.md +++ b/docs/version-specific/supported-software/b/BerkeleyGW.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``intel/2022a`` ``4.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BgeeCall.md b/docs/version-specific/supported-software/b/BgeeCall.md index 0663686ef..5074346b0 100644 --- a/docs/version-specific/supported-software/b/BgeeCall.md +++ b/docs/version-specific/supported-software/b/BgeeCall.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.16.0`` | ``-R-%(rver)s`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BgeeDB.md b/docs/version-specific/supported-software/b/BgeeDB.md index be09c211b..bec4bf089 100644 --- a/docs/version-specific/supported-software/b/BgeeDB.md +++ b/docs/version-specific/supported-software/b/BgeeDB.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.26.0`` | ``-R-%(rver)s`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 733f8889b..66ffe9e00 100644 --- a/docs/version-specific/supported-software/b/BiG-SCAPE.md +++ b/docs/version-specific/supported-software/b/BiG-SCAPE.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.5`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BiasAdjustCXX.md b/docs/version-specific/supported-software/b/BiasAdjustCXX.md index 6d28fd974..85bd02a2c 100644 --- a/docs/version-specific/supported-software/b/BiasAdjustCXX.md +++ b/docs/version-specific/supported-software/b/BiasAdjustCXX.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.9.1`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BigDFT.md b/docs/version-specific/supported-software/b/BigDFT.md index 06f72c750..27c1334f6 100644 --- a/docs/version-specific/supported-software/b/BigDFT.md +++ b/docs/version-specific/supported-software/b/BigDFT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.9.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BinSanity.md b/docs/version-specific/supported-software/b/BinSanity.md index e877d02c2..c10c1e1f0 100644 --- a/docs/version-specific/supported-software/b/BinSanity.md +++ b/docs/version-specific/supported-software/b/BinSanity.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.5`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bea5d0282..8aa4c77d1 100644 --- a/docs/version-specific/supported-software/b/Bio-DB-HTS.md +++ b/docs/version-specific/supported-software/b/Bio-DB-HTS.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``3.01`` | | ``GCC/12.2.0`` ``3.01`` | ``-Perl-5.28.1`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1e0137594..b2bc7e8b0 100644 --- a/docs/version-specific/supported-software/b/Bio-EUtilities.md +++ b/docs/version-specific/supported-software/b/Bio-EUtilities.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.76`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fc7e82469..8774eb292 100644 --- a/docs/version-specific/supported-software/b/Bio-FeatureIO.md +++ b/docs/version-specific/supported-software/b/Bio-FeatureIO.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.905`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2a567b4a8..c43766a6d 100644 --- a/docs/version-specific/supported-software/b/Bio-SamTools.md +++ b/docs/version-specific/supported-software/b/Bio-SamTools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.43`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f2643389a..528f72637 100644 --- a/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md +++ b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md @@ -16,5 +16,6 @@ version | toolchain ``1.7.3`` | ``GCC/11.3.0`` ``1.7.3`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BioPP.md b/docs/version-specific/supported-software/b/BioPP.md index babb757ec..1fefe84ca 100644 --- a/docs/version-specific/supported-software/b/BioPP.md +++ b/docs/version-specific/supported-software/b/BioPP.md @@ -13,5 +13,6 @@ version | toolchain ``2.4.1`` | ``GCC/8.2.0-2.31.1`` ``2.4.1`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BioPerl.md b/docs/version-specific/supported-software/b/BioPerl.md index 5288687c8..e426e3941 100644 --- a/docs/version-specific/supported-software/b/BioPerl.md +++ b/docs/version-specific/supported-software/b/BioPerl.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``1.7.8`` | | ``GCCcore/12.2.0`` ``1.7.8`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BioServices.md b/docs/version-specific/supported-software/b/BioServices.md index 0b166cd06..07863f6bb 100644 --- a/docs/version-specific/supported-software/b/BioServices.md +++ b/docs/version-specific/supported-software/b/BioServices.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.9`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Biopython.md b/docs/version-specific/supported-software/b/Biopython.md index d4495cbad..4fdeba25a 100644 --- a/docs/version-specific/supported-software/b/Biopython.md +++ b/docs/version-specific/supported-software/b/Biopython.md @@ -50,5 +50,6 @@ version | versionsuffix | toolchain ``1.81`` | | ``foss/2022b`` ``1.83`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BirdNET.md b/docs/version-specific/supported-software/b/BirdNET.md index 736a47e87..c4788e586 100644 --- a/docs/version-specific/supported-software/b/BirdNET.md +++ b/docs/version-specific/supported-software/b/BirdNET.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20201214`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bismark.md b/docs/version-specific/supported-software/b/Bismark.md index d4a49b158..1e06e383c 100644 --- a/docs/version-specific/supported-software/b/Bismark.md +++ b/docs/version-specific/supported-software/b/Bismark.md @@ -17,5 +17,6 @@ version | toolchain ``0.24.0`` | ``GCC/11.3.0`` ``0.24.1`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bison.md b/docs/version-specific/supported-software/b/Bison.md index 3a781b0ff..daf680353 100644 --- a/docs/version-specific/supported-software/b/Bison.md +++ b/docs/version-specific/supported-software/b/Bison.md @@ -90,5 +90,6 @@ version | toolchain ``3.8.2`` | ``GCCcore/9.5.0`` ``3.8.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Blender.md b/docs/version-specific/supported-software/b/Blender.md index 62bbe4dd7..1fe8bda1c 100644 --- a/docs/version-specific/supported-software/b/Blender.md +++ b/docs/version-specific/supported-software/b/Blender.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``3.6.5`` | ``-linux-x86_64-CUDA-12.1.1`` | ``system`` ``4.0.1`` | ``-linux-x86_64-CUDA-12.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Blitz++.md b/docs/version-specific/supported-software/b/Blitz++.md index 12be83f5b..5f8c05219 100644 --- a/docs/version-specific/supported-software/b/Blitz++.md +++ b/docs/version-specific/supported-software/b/Blitz++.md @@ -19,5 +19,6 @@ version | toolchain ``1.0.2`` | ``GCCcore/13.2.0`` ``1.0.2`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BlobTools.md b/docs/version-specific/supported-software/b/BlobTools.md index c131a5657..152063361 100644 --- a/docs/version-specific/supported-software/b/BlobTools.md +++ b/docs/version-specific/supported-software/b/BlobTools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180528`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Block.md b/docs/version-specific/supported-software/b/Block.md index adbd0aef4..a7413e6fa 100644 --- a/docs/version-specific/supported-software/b/Block.md +++ b/docs/version-specific/supported-software/b/Block.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.3-20200525`` | ``foss/2022a`` ``1.5.3-20200525`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Blosc.md b/docs/version-specific/supported-software/b/Blosc.md index c08e28a1b..bfbe68430 100644 --- a/docs/version-specific/supported-software/b/Blosc.md +++ b/docs/version-specific/supported-software/b/Blosc.md @@ -29,5 +29,6 @@ version | toolchain ``1.21.5`` | ``GCCcore/12.3.0`` ``1.21.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Blosc2.md b/docs/version-specific/supported-software/b/Blosc2.md index 9b365951e..e43199b75 100644 --- a/docs/version-specific/supported-software/b/Blosc2.md +++ b/docs/version-specific/supported-software/b/Blosc2.md @@ -19,5 +19,6 @@ version | toolchain ``2.8.0`` | ``GCCcore/12.2.0`` ``2.8.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BoltzTraP.md b/docs/version-specific/supported-software/b/BoltzTraP.md index de4a74b2b..8c0411df0 100644 --- a/docs/version-specific/supported-software/b/BoltzTraP.md +++ b/docs/version-specific/supported-software/b/BoltzTraP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.5`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BoltzTraP2.md b/docs/version-specific/supported-software/b/BoltzTraP2.md index e864c8964..07cadae09 100644 --- a/docs/version-specific/supported-software/b/BoltzTraP2.md +++ b/docs/version-specific/supported-software/b/BoltzTraP2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``22.12.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bonito.md b/docs/version-specific/supported-software/b/Bonito.md index a93134c94..914377e36 100644 --- a/docs/version-specific/supported-software/b/Bonito.md +++ b/docs/version-specific/supported-software/b/Bonito.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.3.8`` | | ``fosscuda/2020b`` ``0.4.0`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bonmin.md b/docs/version-specific/supported-software/b/Bonmin.md index abecf25de..e37c73257 100644 --- a/docs/version-specific/supported-software/b/Bonmin.md +++ b/docs/version-specific/supported-software/b/Bonmin.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.7`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bonnie++.md b/docs/version-specific/supported-software/b/Bonnie++.md index 02f4eae69..fe2a33975 100644 --- a/docs/version-specific/supported-software/b/Bonnie++.md +++ b/docs/version-specific/supported-software/b/Bonnie++.md @@ -13,5 +13,6 @@ version | toolchain ``1.97`` | ``foss/2016a`` ``2.00a`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 597e526be..87dfffe2d 100644 --- a/docs/version-specific/supported-software/b/Boost.MPI.md +++ b/docs/version-specific/supported-software/b/Boost.MPI.md @@ -17,5 +17,6 @@ version | toolchain ``1.81.0`` | ``gompi/2022b`` ``1.82.0`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fcc94a8c3..9f48921f6 100644 --- a/docs/version-specific/supported-software/b/Boost.Python-NumPy.md +++ b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.79.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index acd92fbac..7c3a74d3f 100644 --- a/docs/version-specific/supported-software/b/Boost.Python.md +++ b/docs/version-specific/supported-software/b/Boost.Python.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``1.79.0`` | | ``GCC/11.3.0`` ``1.83.0`` | | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Boost.md b/docs/version-specific/supported-software/b/Boost.md index 7c7651fab..d7093033f 100644 --- a/docs/version-specific/supported-software/b/Boost.md +++ b/docs/version-specific/supported-software/b/Boost.md @@ -105,5 +105,6 @@ version | versionsuffix | toolchain ``1.83.0`` | | ``GCC/13.2.0`` ``1.85.0`` | | ``GCC/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bottleneck.md b/docs/version-specific/supported-software/b/Bottleneck.md index dab6f0db8..f9c5682ef 100644 --- a/docs/version-specific/supported-software/b/Bottleneck.md +++ b/docs/version-specific/supported-software/b/Bottleneck.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.6`` | | ``foss/2022a`` ``1.3.7`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bowtie.md b/docs/version-specific/supported-software/b/Bowtie.md index c9baf97b5..8621ec7b0 100644 --- a/docs/version-specific/supported-software/b/Bowtie.md +++ b/docs/version-specific/supported-software/b/Bowtie.md @@ -33,5 +33,6 @@ version | toolchain ``1.3.1`` | ``GCC/11.2.0`` ``1.3.1`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bowtie2.md b/docs/version-specific/supported-software/b/Bowtie2.md index 29b3efe09..4c66a4c11 100644 --- a/docs/version-specific/supported-software/b/Bowtie2.md +++ b/docs/version-specific/supported-software/b/Bowtie2.md @@ -38,5 +38,6 @@ version | toolchain ``2.5.1`` | ``GCC/12.2.0`` ``2.5.1`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bpipe.md b/docs/version-specific/supported-software/b/Bpipe.md index fba9543e2..1d082aa70 100644 --- a/docs/version-specific/supported-software/b/Bpipe.md +++ b/docs/version-specific/supported-software/b/Bpipe.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.9.2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bracken.md b/docs/version-specific/supported-software/b/Bracken.md index b52000cd6..e21b34190 100644 --- a/docs/version-specific/supported-software/b/Bracken.md +++ b/docs/version-specific/supported-software/b/Bracken.md @@ -15,5 +15,6 @@ version | toolchain ``2.7`` | ``GCCcore/11.2.0`` ``2.9`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Braindecode.md b/docs/version-specific/supported-software/b/Braindecode.md index 4e0ac17c8..bccb0f2d4 100644 --- a/docs/version-specific/supported-software/b/Braindecode.md +++ b/docs/version-specific/supported-software/b/Braindecode.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` ``0.8.1`` | ``-PyTorch-2.1.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BreakDancer.md b/docs/version-specific/supported-software/b/BreakDancer.md index 6f565e012..c875e6751 100644 --- a/docs/version-specific/supported-software/b/BreakDancer.md +++ b/docs/version-specific/supported-software/b/BreakDancer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.5`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8cf99a229..00bbe899a 100644 --- a/docs/version-specific/supported-software/b/Brotli-python.md +++ b/docs/version-specific/supported-software/b/Brotli-python.md @@ -17,5 +17,6 @@ version | toolchain ``1.0.9`` | ``GCCcore/12.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Brotli.md b/docs/version-specific/supported-software/b/Brotli.md index 1c7867343..e48f69869 100644 --- a/docs/version-specific/supported-software/b/Brotli.md +++ b/docs/version-specific/supported-software/b/Brotli.md @@ -20,5 +20,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/13.2.0`` ``1.1.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Brunsli.md b/docs/version-specific/supported-software/b/Brunsli.md index 826afcc8d..741eae19f 100644 --- a/docs/version-specific/supported-software/b/Brunsli.md +++ b/docs/version-specific/supported-software/b/Brunsli.md @@ -16,5 +16,6 @@ version | toolchain ``0.1`` | ``GCCcore/12.2.0`` ``0.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bsoft.md b/docs/version-specific/supported-software/b/Bsoft.md index 3ed98c0e3..5fa9e31fd 100644 --- a/docs/version-specific/supported-software/b/Bsoft.md +++ b/docs/version-specific/supported-software/b/Bsoft.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.2`` | ``foss/2017b`` ``2.0.7`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/BuDDy.md b/docs/version-specific/supported-software/b/BuDDy.md index 2b78e6f9d..591f26526 100644 --- a/docs/version-specific/supported-software/b/BuDDy.md +++ b/docs/version-specific/supported-software/b/BuDDy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/Bullet.md b/docs/version-specific/supported-software/b/Bullet.md index 763d9bae1..48e7724e8 100644 --- a/docs/version-specific/supported-software/b/Bullet.md +++ b/docs/version-specific/supported-software/b/Bullet.md @@ -13,5 +13,6 @@ version | toolchain ``2.83.7`` | ``foss/2016a`` ``2.83.7`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/babl.md b/docs/version-specific/supported-software/b/babl.md index 3298fe3d5..56a8dcca4 100644 --- a/docs/version-specific/supported-software/b/babl.md +++ b/docs/version-specific/supported-software/b/babl.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.86`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a27a64d93..aba564601 100644 --- a/docs/version-specific/supported-software/b/bam-readcount.md +++ b/docs/version-specific/supported-software/b/bam-readcount.md @@ -15,5 +15,6 @@ version | toolchain ``0.8.0`` | ``foss/2018b`` ``1.0.1`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bamFilters.md b/docs/version-specific/supported-software/b/bamFilters.md index 05e957564..23a580f51 100644 --- a/docs/version-specific/supported-software/b/bamFilters.md +++ b/docs/version-specific/supported-software/b/bamFilters.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2022-06-30`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bamtofastq.md b/docs/version-specific/supported-software/b/bamtofastq.md index 6263ecf9a..e06cae439 100644 --- a/docs/version-specific/supported-software/b/bamtofastq.md +++ b/docs/version-specific/supported-software/b/bamtofastq.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.0`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/barrnap.md b/docs/version-specific/supported-software/b/barrnap.md index 022bd861f..71a90db7f 100644 --- a/docs/version-specific/supported-software/b/barrnap.md +++ b/docs/version-specific/supported-software/b/barrnap.md @@ -16,5 +16,6 @@ version | toolchain ``0.9`` | ``gompi/2021b`` ``0.9`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/basemap.md b/docs/version-specific/supported-software/b/basemap.md index 2c5aa3574..99e6ef2a4 100644 --- a/docs/version-specific/supported-software/b/basemap.md +++ b/docs/version-specific/supported-software/b/basemap.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.3.6`` | | ``foss/2022a`` ``1.3.9`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bases2fastq.md b/docs/version-specific/supported-software/b/bases2fastq.md index a8ea41bfa..5f2c05844 100644 --- a/docs/version-specific/supported-software/b/bases2fastq.md +++ b/docs/version-specific/supported-software/b/bases2fastq.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bashplotlib.md b/docs/version-specific/supported-software/b/bashplotlib.md index 39d489a3a..b8a74e879 100644 --- a/docs/version-specific/supported-software/b/bashplotlib.md +++ b/docs/version-specific/supported-software/b/bashplotlib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.5`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bat.md b/docs/version-specific/supported-software/b/bat.md index 7ca15f182..91d6777ee 100644 --- a/docs/version-specific/supported-software/b/bat.md +++ b/docs/version-specific/supported-software/b/bat.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-Python-3.6.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/batchgenerators.md b/docs/version-specific/supported-software/b/batchgenerators.md index 1046b8da7..37d85fa0b 100644 --- a/docs/version-specific/supported-software/b/batchgenerators.md +++ b/docs/version-specific/supported-software/b/batchgenerators.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.25`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bbFTP.md b/docs/version-specific/supported-software/b/bbFTP.md index 25c78ff29..e3d66f132 100644 --- a/docs/version-specific/supported-software/b/bbFTP.md +++ b/docs/version-specific/supported-software/b/bbFTP.md @@ -14,5 +14,6 @@ version | toolchain ``3.2.1`` | ``intel/2016a`` ``3.2.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bbcp.md b/docs/version-specific/supported-software/b/bbcp.md index 25bb946ca..12b83ce24 100644 --- a/docs/version-specific/supported-software/b/bbcp.md +++ b/docs/version-specific/supported-software/b/bbcp.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``12.01.30.00.0`` | ``-amd64_linux26`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bc.md b/docs/version-specific/supported-software/b/bc.md index 5c13a24b9..e0b87c378 100644 --- a/docs/version-specific/supported-software/b/bc.md +++ b/docs/version-specific/supported-software/b/bc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.06.95`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 03a8fbb32..c38b984e5 100644 --- a/docs/version-specific/supported-software/b/bcbio-gff.md +++ b/docs/version-specific/supported-software/b/bcbio-gff.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.7.0`` | | ``foss/2022a`` ``0.7.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bcgTree.md b/docs/version-specific/supported-software/b/bcgTree.md index 95c54f34a..4193b01a7 100644 --- a/docs/version-specific/supported-software/b/bcgTree.md +++ b/docs/version-specific/supported-software/b/bcgTree.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.10`` | ``-Perl-5.26.1`` | ``intel/2018a`` ``1.1.0`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2c9118236..442ff10ad 100644 --- a/docs/version-specific/supported-software/b/bcl-convert.md +++ b/docs/version-specific/supported-software/b/bcl-convert.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.3-2`` | ``el7.x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bcl2fastq2.md b/docs/version-specific/supported-software/b/bcl2fastq2.md index 54c84b7b4..00b87c467 100644 --- a/docs/version-specific/supported-software/b/bcl2fastq2.md +++ b/docs/version-specific/supported-software/b/bcl2fastq2.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``2.20.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.20.0`` | | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bcolz.md b/docs/version-specific/supported-software/b/bcolz.md index ce391bfd8..e8b225d35 100644 --- a/docs/version-specific/supported-software/b/bcolz.md +++ b/docs/version-specific/supported-software/b/bcolz.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.2.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bcrypt.md b/docs/version-specific/supported-software/b/bcrypt.md index 23c205fc1..ccb4a564a 100644 --- a/docs/version-specific/supported-software/b/bcrypt.md +++ b/docs/version-specific/supported-software/b/bcrypt.md @@ -13,5 +13,6 @@ version | toolchain ``4.0.1`` | ``GCCcore/12.3.0`` ``4.1.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 06b0489d3..25227ffbc 100644 --- a/docs/version-specific/supported-software/b/beagle-lib.md +++ b/docs/version-specific/supported-software/b/beagle-lib.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``3.1.2`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``4.0.0`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/behave.md b/docs/version-specific/supported-software/b/behave.md index bb8be9bc6..5c4f9f8bb 100644 --- a/docs/version-specific/supported-software/b/behave.md +++ b/docs/version-specific/supported-software/b/behave.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.5`` | ``-Python-2.7.12`` | ``foss/2016b`` ``1.2.6`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bench.md b/docs/version-specific/supported-software/b/bench.md index 437f4b2a0..746378853 100644 --- a/docs/version-specific/supported-software/b/bench.md +++ b/docs/version-specific/supported-software/b/bench.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9bd481a89..ec59e4589 100644 --- a/docs/version-specific/supported-software/b/bgen-reader.md +++ b/docs/version-specific/supported-software/b/bgen-reader.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bgen.md b/docs/version-specific/supported-software/b/bgen.md index be800dc86..62006e8e4 100644 --- a/docs/version-specific/supported-software/b/bgen.md +++ b/docs/version-specific/supported-software/b/bgen.md @@ -14,5 +14,6 @@ version | toolchain ``3.0.3`` | ``GCCcore/9.3.0`` ``4.1.3`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bibtexparser.md b/docs/version-specific/supported-software/b/bibtexparser.md index d9f581c50..0857405d1 100644 --- a/docs/version-specific/supported-software/b/bibtexparser.md +++ b/docs/version-specific/supported-software/b/bibtexparser.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/binutils.md b/docs/version-specific/supported-software/b/binutils.md index 6d74b1a44..fe1c98eb4 100644 --- a/docs/version-specific/supported-software/b/binutils.md +++ b/docs/version-specific/supported-software/b/binutils.md @@ -74,5 +74,6 @@ version | toolchain ``2.42`` | ``GCCcore/14.1.0`` ``2.42`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bioawk.md b/docs/version-specific/supported-software/b/bioawk.md index 4c6b079b1..c702a07d1 100644 --- a/docs/version-specific/supported-software/b/bioawk.md +++ b/docs/version-specific/supported-software/b/bioawk.md @@ -14,5 +14,6 @@ version | toolchain ``1.0`` | ``GCC/11.2.0`` ``1.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 72af4d359..e4bc81622 100644 --- a/docs/version-specific/supported-software/b/biobakery-workflows.md +++ b/docs/version-specific/supported-software/b/biobakery-workflows.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/biobambam2.md b/docs/version-specific/supported-software/b/biobambam2.md index d256e1b50..16a4d2f32 100644 --- a/docs/version-specific/supported-software/b/biobambam2.md +++ b/docs/version-specific/supported-software/b/biobambam2.md @@ -14,5 +14,6 @@ version | toolchain ``2.0.87`` | ``GCC/11.3.0`` ``2.0.87`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/biogeme.md b/docs/version-specific/supported-software/b/biogeme.md index a3245bdf8..33b21c21a 100644 --- a/docs/version-specific/supported-software/b/biogeme.md +++ b/docs/version-specific/supported-software/b/biogeme.md @@ -15,5 +15,6 @@ version | toolchain ``3.2.6`` | ``foss/2022a`` ``3.2.8`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4e0344135..43242b1b2 100644 --- a/docs/version-specific/supported-software/b/biom-format.md +++ b/docs/version-specific/supported-software/b/biom-format.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.1.15`` | | ``foss/2022b`` ``2.1.15`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cb082ae3f..b411e9d1b 100644 --- a/docs/version-specific/supported-software/b/biomart-perl.md +++ b/docs/version-specific/supported-software/b/biomart-perl.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7_e6db561`` | ``-Perl-5.26.0`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/biscuit.md b/docs/version-specific/supported-software/b/biscuit.md index d643b94c4..d4c3b5532 100644 --- a/docs/version-specific/supported-software/b/biscuit.md +++ b/docs/version-specific/supported-software/b/biscuit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.4`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bitarray.md b/docs/version-specific/supported-software/b/bitarray.md index 009305e41..32f52f3a8 100644 --- a/docs/version-specific/supported-software/b/bitarray.md +++ b/docs/version-specific/supported-software/b/bitarray.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.5.3`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bitshuffle.md b/docs/version-specific/supported-software/b/bitshuffle.md index 2ba09270d..a18c3cfe4 100644 --- a/docs/version-specific/supported-software/b/bitshuffle.md +++ b/docs/version-specific/supported-software/b/bitshuffle.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cf2ad67b1..135f6de19 100644 --- a/docs/version-specific/supported-software/b/blasr_libcpp.md +++ b/docs/version-specific/supported-software/b/blasr_libcpp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20170426`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bmtagger.md b/docs/version-specific/supported-software/b/bmtagger.md index 359f84b01..a52364de9 100644 --- a/docs/version-specific/supported-software/b/bmtagger.md +++ b/docs/version-specific/supported-software/b/bmtagger.md @@ -14,5 +14,6 @@ version | toolchain ``3.101`` | ``gompi/2019a`` ``3.101`` | ``gompi/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bnpy.md b/docs/version-specific/supported-software/b/bnpy.md index 98ff9402b..d1e567b2c 100644 --- a/docs/version-specific/supported-software/b/bnpy.md +++ b/docs/version-specific/supported-software/b/bnpy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bokeh.md b/docs/version-specific/supported-software/b/bokeh.md index 6d13f21dd..8c3e2ac7a 100644 --- a/docs/version-specific/supported-software/b/bokeh.md +++ b/docs/version-specific/supported-software/b/bokeh.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``3.2.2`` | | ``foss/2023a`` ``3.4.1`` | | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ef96c5bad..66d5cbbd0 100644 --- a/docs/version-specific/supported-software/b/boost_histogram.md +++ b/docs/version-specific/supported-software/b/boost_histogram.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/boto3.md b/docs/version-specific/supported-software/b/boto3.md index 517588f9e..f58785efa 100644 --- a/docs/version-specific/supported-software/b/boto3.md +++ b/docs/version-specific/supported-software/b/boto3.md @@ -16,5 +16,6 @@ version | toolchain ``1.26.37`` | ``GCCcore/11.3.0`` ``1.28.70`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bpp.md b/docs/version-specific/supported-software/b/bpp.md index 70657175c..c44241c0b 100644 --- a/docs/version-specific/supported-software/b/bpp.md +++ b/docs/version-specific/supported-software/b/bpp.md @@ -13,5 +13,6 @@ version | toolchain ``4.3.8`` | ``GCC/8.3.0`` ``4.4.0`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bpytop.md b/docs/version-specific/supported-software/b/bpytop.md index 6fcb5c682..c8bf85cff 100644 --- a/docs/version-specific/supported-software/b/bpytop.md +++ b/docs/version-specific/supported-software/b/bpytop.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.60`` | ``GCCcore/10.2.0`` ``1.0.67`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/breseq.md b/docs/version-specific/supported-software/b/breseq.md index aca8d4301..9f01b17ab 100644 --- a/docs/version-specific/supported-software/b/breseq.md +++ b/docs/version-specific/supported-software/b/breseq.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.36.1`` | | ``foss/2021b`` ``0.38.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bsddb3.md b/docs/version-specific/supported-software/b/bsddb3.md index 8070e1479..48cf51d8d 100644 --- a/docs/version-specific/supported-software/b/bsddb3.md +++ b/docs/version-specific/supported-software/b/bsddb3.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``6.2.9`` | | ``GCCcore/10.2.0`` ``6.2.9`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/btllib.md b/docs/version-specific/supported-software/b/btllib.md index a664d25f0..02e555085 100644 --- a/docs/version-specific/supported-software/b/btllib.md +++ b/docs/version-specific/supported-software/b/btllib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/build.md b/docs/version-specific/supported-software/b/build.md index 7825b80d5..bfe1e6e68 100644 --- a/docs/version-specific/supported-software/b/build.md +++ b/docs/version-specific/supported-software/b/build.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.3`` | ``foss/2023a`` ``1.0.3`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/buildenv.md b/docs/version-specific/supported-software/b/buildenv.md index 2a57a67eb..c898545bd 100644 --- a/docs/version-specific/supported-software/b/buildenv.md +++ b/docs/version-specific/supported-software/b/buildenv.md @@ -47,5 +47,6 @@ version | versionsuffix | toolchain ``default`` | | ``intelcuda/2020b`` ``default`` | | ``nvompi/2022.07`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/buildingspy.md b/docs/version-specific/supported-software/b/buildingspy.md index 72d7fe9ed..a8191635e 100644 --- a/docs/version-specific/supported-software/b/buildingspy.md +++ b/docs/version-specific/supported-software/b/buildingspy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 117889cbc..0bb79c56f 100644 --- a/docs/version-specific/supported-software/b/bwa-mem2.md +++ b/docs/version-specific/supported-software/b/bwa-mem2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.1`` | ``intel-compilers/2023.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9a7e10b88..d367ec8af 100644 --- a/docs/version-specific/supported-software/b/bwa-meth.md +++ b/docs/version-specific/supported-software/b/bwa-meth.md @@ -14,5 +14,6 @@ version | toolchain ``0.2.2`` | ``iccifort/2019.5.281`` ``0.2.6`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bwakit.md b/docs/version-specific/supported-software/b/bwakit.md index 22934a3f0..c3b73dcbc 100644 --- a/docs/version-specific/supported-software/b/bwakit.md +++ b/docs/version-specific/supported-software/b/bwakit.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.15`` | ``_x64-linux`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bwidget.md b/docs/version-specific/supported-software/b/bwidget.md index 04052393c..5079f2667 100644 --- a/docs/version-specific/supported-software/b/bwidget.md +++ b/docs/version-specific/supported-software/b/bwidget.md @@ -17,5 +17,6 @@ version | toolchain ``1.9.15`` | ``GCCcore/11.2.0`` ``1.9.15`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a8f528be9..7175bb54e 100644 --- a/docs/version-specific/supported-software/b/bx-python.md +++ b/docs/version-specific/supported-software/b/bx-python.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``0.8.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.9.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/byacc.md b/docs/version-specific/supported-software/b/byacc.md index 06e4e2212..5891a6a73 100644 --- a/docs/version-specific/supported-software/b/byacc.md +++ b/docs/version-specific/supported-software/b/byacc.md @@ -15,5 +15,6 @@ version | toolchain ``20160606`` | ``intel/2016b`` ``20170709`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/byobu.md b/docs/version-specific/supported-software/b/byobu.md index ab31fc091..7f6cd602d 100644 --- a/docs/version-specific/supported-software/b/byobu.md +++ b/docs/version-specific/supported-software/b/byobu.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.133`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/bzip2.md b/docs/version-specific/supported-software/b/bzip2.md index 1fadbfe36..194fd254e 100644 --- a/docs/version-specific/supported-software/b/bzip2.md +++ b/docs/version-specific/supported-software/b/bzip2.md @@ -48,5 +48,6 @@ version | toolchain ``1.0.8`` | ``GCCcore/9.3.0`` ``1.0.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/b/index.md b/docs/version-specific/supported-software/b/index.md index 4ea1d61b4..ed88dc249 100644 --- a/docs/version-specific/supported-software/b/index.md +++ b/docs/version-specific/supported-software/b/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (b) -[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) +*(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) @@ -164,3 +166,7 @@ search: * [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 index 3f75e90ca..b8e62d897 100644 --- a/docs/version-specific/supported-software/c/C3D.md +++ b/docs/version-specific/supported-software/c/C3D.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CAFE5.md b/docs/version-specific/supported-software/c/CAFE5.md index 5688ce1e3..26291befb 100644 --- a/docs/version-specific/supported-software/c/CAFE5.md +++ b/docs/version-specific/supported-software/c/CAFE5.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.0`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CAMPARI.md b/docs/version-specific/supported-software/c/CAMPARI.md index ca80d831f..af66b36d8 100644 --- a/docs/version-specific/supported-software/c/CAMPARI.md +++ b/docs/version-specific/supported-software/c/CAMPARI.md @@ -13,5 +13,6 @@ version | toolchain ``4.0`` | ``intel/2020b`` ``4.0`` | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CAP3.md b/docs/version-specific/supported-software/c/CAP3.md index c80933d6e..8c93ceef6 100644 --- a/docs/version-specific/supported-software/c/CAP3.md +++ b/docs/version-specific/supported-software/c/CAP3.md @@ -14,5 +14,6 @@ version | toolchain ``20071221-intel-x86_64`` | ``system`` ``20071221-opteron`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CASA.md b/docs/version-specific/supported-software/c/CASA.md index 6ee234cb3..f4ec02a79 100644 --- a/docs/version-specific/supported-software/c/CASA.md +++ b/docs/version-specific/supported-software/c/CASA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.5.5-21`` | ``-py3.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CASPR.md b/docs/version-specific/supported-software/c/CASPR.md index 0bb4e27b6..45128e26d 100644 --- a/docs/version-specific/supported-software/c/CASPR.md +++ b/docs/version-specific/supported-software/c/CASPR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20200730`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CASTEP.md b/docs/version-specific/supported-software/c/CASTEP.md index f4f2418b6..caad7400f 100644 --- a/docs/version-specific/supported-software/c/CASTEP.md +++ b/docs/version-specific/supported-software/c/CASTEP.md @@ -18,5 +18,6 @@ version | toolchain ``22.11`` | ``foss/2022a`` ``23.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8109aed79..e0674cc9f 100644 --- a/docs/version-specific/supported-software/c/CAT-BAT.md +++ b/docs/version-specific/supported-software/c/CAT-BAT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.2.3`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CAVIAR.md b/docs/version-specific/supported-software/c/CAVIAR.md index 577a63686..3e2285761 100644 --- a/docs/version-specific/supported-software/c/CAVIAR.md +++ b/docs/version-specific/supported-software/c/CAVIAR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2-20190419`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CBLAS.md b/docs/version-specific/supported-software/c/CBLAS.md index f396fa9aa..3a98057cf 100644 --- a/docs/version-specific/supported-software/c/CBLAS.md +++ b/docs/version-specific/supported-software/c/CBLAS.md @@ -14,5 +14,6 @@ version | toolchain ``20110120`` | ``intel/2019b`` ``20110120`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CCCL.md b/docs/version-specific/supported-software/c/CCCL.md index 35cb7dcff..6a001cb63 100644 --- a/docs/version-specific/supported-software/c/CCCL.md +++ b/docs/version-specific/supported-software/c/CCCL.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CCL.md b/docs/version-specific/supported-software/c/CCL.md index 3e7959aa9..48f195a33 100644 --- a/docs/version-specific/supported-software/c/CCL.md +++ b/docs/version-specific/supported-software/c/CCL.md @@ -17,5 +17,6 @@ version | toolchain ``1.12.2`` | ``GCCcore/12.3.0`` ``1.12.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CCfits.md b/docs/version-specific/supported-software/c/CCfits.md index c36648c42..26f87604c 100644 --- a/docs/version-specific/supported-software/c/CCfits.md +++ b/docs/version-specific/supported-software/c/CCfits.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f18cfb646..acb41c735 100644 --- a/docs/version-specific/supported-software/c/CD-HIT.md +++ b/docs/version-specific/supported-software/c/CD-HIT.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``4.8.1`` | | ``foss/2018b`` ``4.8.1`` | | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CDAT.md b/docs/version-specific/supported-software/c/CDAT.md index 0a72c5602..aa25e9d5c 100644 --- a/docs/version-specific/supported-software/c/CDAT.md +++ b/docs/version-specific/supported-software/c/CDAT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CDBtools.md b/docs/version-specific/supported-software/c/CDBtools.md index 926a596b5..593575ede 100644 --- a/docs/version-specific/supported-software/c/CDBtools.md +++ b/docs/version-specific/supported-software/c/CDBtools.md @@ -13,5 +13,6 @@ version | toolchain ``0.99`` | ``GCC/10.2.0`` ``0.99`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CDFlib.md b/docs/version-specific/supported-software/c/CDFlib.md index 416db888b..a973dc5c1 100644 --- a/docs/version-specific/supported-software/c/CDFlib.md +++ b/docs/version-specific/supported-software/c/CDFlib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.9`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CDO.md b/docs/version-specific/supported-software/c/CDO.md index dabf5163c..255d9dcf6 100644 --- a/docs/version-specific/supported-software/c/CDO.md +++ b/docs/version-specific/supported-software/c/CDO.md @@ -28,5 +28,6 @@ version | toolchain ``2.2.2`` | ``gompi/2023a`` ``2.2.2`` | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CENSO.md b/docs/version-specific/supported-software/c/CENSO.md index 0830f14f8..c1962b06b 100644 --- a/docs/version-specific/supported-software/c/CENSO.md +++ b/docs/version-specific/supported-software/c/CENSO.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5542537d1..ca2bd1727 100644 --- a/docs/version-specific/supported-software/c/CESM-deps.md +++ b/docs/version-specific/supported-software/c/CESM-deps.md @@ -16,5 +16,6 @@ version | toolchain ``2`` | ``intel/2018b`` ``2`` | ``iomkl/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CFDEMcoupling.md b/docs/version-specific/supported-software/c/CFDEMcoupling.md index 6d9dc392c..b90dc9567 100644 --- a/docs/version-specific/supported-software/c/CFDEMcoupling.md +++ b/docs/version-specific/supported-software/c/CFDEMcoupling.md @@ -13,5 +13,6 @@ version | toolchain ``3.8.0`` | ``foss/2018a`` ``3.8.0`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CFITSIO.md b/docs/version-specific/supported-software/c/CFITSIO.md index ee99aa6c9..590bddfd8 100644 --- a/docs/version-specific/supported-software/c/CFITSIO.md +++ b/docs/version-specific/supported-software/c/CFITSIO.md @@ -30,5 +30,6 @@ version | toolchain ``4.3.0`` | ``GCCcore/12.3.0`` ``4.3.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CGAL.md b/docs/version-specific/supported-software/c/CGAL.md index cd3106a26..92a8dff8f 100644 --- a/docs/version-specific/supported-software/c/CGAL.md +++ b/docs/version-specific/supported-software/c/CGAL.md @@ -45,5 +45,6 @@ version | versionsuffix | toolchain ``5.6`` | | ``GCCcore/12.3.0`` ``5.6.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CGNS.md b/docs/version-specific/supported-software/c/CGNS.md index 408fa4842..eb52f3db8 100644 --- a/docs/version-specific/supported-software/c/CGNS.md +++ b/docs/version-specific/supported-software/c/CGNS.md @@ -13,5 +13,6 @@ version | toolchain ``3.3.1`` | ``foss/2016b`` ``4.1.0`` | ``intelcuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CGmapTools.md b/docs/version-specific/supported-software/c/CGmapTools.md index 03502c07c..79c9425fd 100644 --- a/docs/version-specific/supported-software/c/CGmapTools.md +++ b/docs/version-specific/supported-software/c/CGmapTools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.2`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CHASE.md b/docs/version-specific/supported-software/c/CHASE.md index dcaca3c48..e1d6edebc 100644 --- a/docs/version-specific/supported-software/c/CHASE.md +++ b/docs/version-specific/supported-software/c/CHASE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20130626`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CHERAB.md b/docs/version-specific/supported-software/c/CHERAB.md index 33287603e..a10510b64 100644 --- a/docs/version-specific/supported-software/c/CHERAB.md +++ b/docs/version-specific/supported-software/c/CHERAB.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``foss/2020b`` ``1.4.0`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CIF2Cell.md b/docs/version-specific/supported-software/c/CIF2Cell.md index 082db8501..18b9d0b0d 100644 --- a/docs/version-specific/supported-software/c/CIF2Cell.md +++ b/docs/version-specific/supported-software/c/CIF2Cell.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.10`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CIRCexplorer.md b/docs/version-specific/supported-software/c/CIRCexplorer.md index 8ac1562a9..518a9e466 100644 --- a/docs/version-specific/supported-software/c/CIRCexplorer.md +++ b/docs/version-specific/supported-software/c/CIRCexplorer.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.10`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CIRCexplorer2.md b/docs/version-specific/supported-software/c/CIRCexplorer2.md index 3eaafe212..8dcf5f6d5 100644 --- a/docs/version-specific/supported-software/c/CIRCexplorer2.md +++ b/docs/version-specific/supported-software/c/CIRCexplorer2.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3.8`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.3.8`` | ``-Python-2.7.18`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 294de5bcd..e2912a387 100644 --- a/docs/version-specific/supported-software/c/CIRI-long.md +++ b/docs/version-specific/supported-software/c/CIRI-long.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CIRI.md b/docs/version-specific/supported-software/c/CIRI.md index 29ea4e581..c71755ed9 100644 --- a/docs/version-specific/supported-software/c/CIRI.md +++ b/docs/version-specific/supported-software/c/CIRI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.6`` | ``-Perl-5.26.0`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CIRIquant.md b/docs/version-specific/supported-software/c/CIRIquant.md index ac3d9d9c4..b8b64d0a5 100644 --- a/docs/version-specific/supported-software/c/CIRIquant.md +++ b/docs/version-specific/supported-software/c/CIRIquant.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2-20221201`` | ``-Python-2.7.18`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7070b190e..150685ace 100644 --- a/docs/version-specific/supported-software/c/CITE-seq-Count.md +++ b/docs/version-specific/supported-software/c/CITE-seq-Count.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.4.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLAPACK.md b/docs/version-specific/supported-software/c/CLAPACK.md index 5148c5159..1826f980e 100644 --- a/docs/version-specific/supported-software/c/CLAPACK.md +++ b/docs/version-specific/supported-software/c/CLAPACK.md @@ -14,5 +14,6 @@ version | toolchain ``3.2.1`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``3.2.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLEAR.md b/docs/version-specific/supported-software/c/CLEAR.md index c2a3611a0..28480f1aa 100644 --- a/docs/version-specific/supported-software/c/CLEAR.md +++ b/docs/version-specific/supported-software/c/CLEAR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210117`` | ``-Python-2.7.18`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLEASE.md b/docs/version-specific/supported-software/c/CLEASE.md index beaff879b..b70d4f888 100644 --- a/docs/version-specific/supported-software/c/CLEASE.md +++ b/docs/version-specific/supported-software/c/CLEASE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.10.6`` | ``intel/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLHEP.md b/docs/version-specific/supported-software/c/CLHEP.md index 40188ecb1..30d178b74 100644 --- a/docs/version-specific/supported-software/c/CLHEP.md +++ b/docs/version-specific/supported-software/c/CLHEP.md @@ -30,5 +30,6 @@ version | toolchain ``2.4.6.2`` | ``GCC/11.3.0`` ``2.4.6.4`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLIP.md b/docs/version-specific/supported-software/c/CLIP.md index 32398b09a..6b636a743 100644 --- a/docs/version-specific/supported-software/c/CLIP.md +++ b/docs/version-specific/supported-software/c/CLIP.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20230220`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLISP.md b/docs/version-specific/supported-software/c/CLISP.md index ded884951..38a437bf5 100644 --- a/docs/version-specific/supported-software/c/CLISP.md +++ b/docs/version-specific/supported-software/c/CLISP.md @@ -13,5 +13,6 @@ version | toolchain ``2.49`` | ``GCCcore/6.4.0`` ``2.49`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CLooG.md b/docs/version-specific/supported-software/c/CLooG.md index 77d4a7d4e..82563a1da 100644 --- a/docs/version-specific/supported-software/c/CLooG.md +++ b/docs/version-specific/supported-software/c/CLooG.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.18.1`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CMAverse.md b/docs/version-specific/supported-software/c/CMAverse.md index 9090c7a3c..e5d1ed0bf 100644 --- a/docs/version-specific/supported-software/c/CMAverse.md +++ b/docs/version-specific/supported-software/c/CMAverse.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220112`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CMSeq.md b/docs/version-specific/supported-software/c/CMSeq.md index 3233ecdea..fb02ca592 100644 --- a/docs/version-specific/supported-software/c/CMSeq.md +++ b/docs/version-specific/supported-software/c/CMSeq.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.0.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CMake.md b/docs/version-specific/supported-software/c/CMake.md index 55aeb7f61..eb2949022 100644 --- a/docs/version-specific/supported-software/c/CMake.md +++ b/docs/version-specific/supported-software/c/CMake.md @@ -96,5 +96,6 @@ version | toolchain ``3.9.5`` | ``GCCcore/6.4.0`` ``3.9.6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0bf082d78..21050bef3 100644 --- a/docs/version-specific/supported-software/c/CNT-ILP.md +++ b/docs/version-specific/supported-software/c/CNT-ILP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20171031`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CNVkit.md b/docs/version-specific/supported-software/c/CNVkit.md index ce0d050da..d0783100e 100644 --- a/docs/version-specific/supported-software/c/CNVkit.md +++ b/docs/version-specific/supported-software/c/CNVkit.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.9.6`` | ``-Python-3.7.2-R-3.6.0`` | ``foss/2019a`` ``0.9.8`` | ``-R-4.0.3`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CNVnator.md b/docs/version-specific/supported-software/c/CNVnator.md index 504ac0f44..3a89c3aaf 100644 --- a/docs/version-specific/supported-software/c/CNVnator.md +++ b/docs/version-specific/supported-software/c/CNVnator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.3`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/COBRApy.md b/docs/version-specific/supported-software/c/COBRApy.md index 0c04242a7..77dabef61 100644 --- a/docs/version-specific/supported-software/c/COBRApy.md +++ b/docs/version-specific/supported-software/c/COBRApy.md @@ -13,5 +13,6 @@ version | toolchain ``0.26.0`` | ``foss/2021a`` ``0.29.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CODEX2.md b/docs/version-specific/supported-software/c/CODEX2.md index 50502a2df..fac7b7f0a 100644 --- a/docs/version-specific/supported-software/c/CODEX2.md +++ b/docs/version-specific/supported-software/c/CODEX2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180227`` | ``-R-3.4.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/COMEBin.md b/docs/version-specific/supported-software/c/COMEBin.md index 4f6274b72..60884f2a5 100644 --- a/docs/version-specific/supported-software/c/COMEBin.md +++ b/docs/version-specific/supported-software/c/COMEBin.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3-20240310`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/COMSOL.md b/docs/version-specific/supported-software/c/COMSOL.md index 254a18b83..5a1449769 100644 --- a/docs/version-specific/supported-software/c/COMSOL.md +++ b/docs/version-specific/supported-software/c/COMSOL.md @@ -13,5 +13,6 @@ version | toolchain ``5.4.0.225`` | ``system`` ``6.2.0.290`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CONCOCT.md b/docs/version-specific/supported-software/c/CONCOCT.md index d5d7a42b9..f2d923d12 100644 --- a/docs/version-specific/supported-software/c/CONCOCT.md +++ b/docs/version-specific/supported-software/c/CONCOCT.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.1.0`` | ``-Python-2.7.18`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CONN.md b/docs/version-specific/supported-software/c/CONN.md index 75971ebcf..5064ac522 100644 --- a/docs/version-specific/supported-software/c/CONN.md +++ b/docs/version-specific/supported-software/c/CONN.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``21a`` | ``-MATLAB-2021a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CP2K.md b/docs/version-specific/supported-software/c/CP2K.md index 355a4d5c3..39475573c 100644 --- a/docs/version-specific/supported-software/c/CP2K.md +++ b/docs/version-specific/supported-software/c/CP2K.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``8.2`` | | ``intel/2021a`` ``9.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CPB.md b/docs/version-specific/supported-software/c/CPB.md index 805ccb853..38280c999 100644 --- a/docs/version-specific/supported-software/c/CPB.md +++ b/docs/version-specific/supported-software/c/CPB.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``11-4-2011`` | ``-Python-2.7.13`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CPC2.md b/docs/version-specific/supported-software/c/CPC2.md index 59eacff51..001ba54e5 100644 --- a/docs/version-specific/supported-software/c/CPC2.md +++ b/docs/version-specific/supported-software/c/CPC2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CPLEX.md b/docs/version-specific/supported-software/c/CPLEX.md index 010281354..7044f8b89 100644 --- a/docs/version-specific/supported-software/c/CPLEX.md +++ b/docs/version-specific/supported-software/c/CPLEX.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``22.1.1`` | | ``GCCcore/11.2.0`` ``22.1.1`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CPMD.md b/docs/version-specific/supported-software/c/CPMD.md index 06f16354a..d6636d4bb 100644 --- a/docs/version-specific/supported-software/c/CPMD.md +++ b/docs/version-specific/supported-software/c/CPMD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CPPE.md b/docs/version-specific/supported-software/c/CPPE.md index ea0f6873b..13cee025f 100644 --- a/docs/version-specific/supported-software/c/CPPE.md +++ b/docs/version-specific/supported-software/c/CPPE.md @@ -13,5 +13,6 @@ version | toolchain ``0.3.1`` | ``GCC/11.3.0`` ``0.3.1`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CREST.md b/docs/version-specific/supported-software/c/CREST.md index 985e0f07c..8cf10c8b4 100644 --- a/docs/version-specific/supported-software/c/CREST.md +++ b/docs/version-specific/supported-software/c/CREST.md @@ -17,5 +17,6 @@ version | toolchain ``20240319`` | ``gfbf/2023a`` ``3.0.1`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CRF++.md b/docs/version-specific/supported-software/c/CRF++.md index 74a5d9621..4463e7019 100644 --- a/docs/version-specific/supported-software/c/CRF++.md +++ b/docs/version-specific/supported-software/c/CRF++.md @@ -13,5 +13,6 @@ version | toolchain ``0.58`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``0.58`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 20bba081d..81be292df 100644 --- a/docs/version-specific/supported-software/c/CRISPR-DAV.md +++ b/docs/version-specific/supported-software/c/CRISPR-DAV.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CRISPResso2.md b/docs/version-specific/supported-software/c/CRISPResso2.md index 70507f767..55b7dec26 100644 --- a/docs/version-specific/supported-software/c/CRISPResso2.md +++ b/docs/version-specific/supported-software/c/CRISPResso2.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.1.2`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.2.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CRPropa.md b/docs/version-specific/supported-software/c/CRPropa.md index 2edf1d068..b344635d0 100644 --- a/docs/version-specific/supported-software/c/CRPropa.md +++ b/docs/version-specific/supported-software/c/CRPropa.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` ``3.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CSB.md b/docs/version-specific/supported-software/c/CSB.md index d8056a290..51395741c 100644 --- a/docs/version-specific/supported-software/c/CSB.md +++ b/docs/version-specific/supported-software/c/CSB.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.5`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CSBDeep.md b/docs/version-specific/supported-software/c/CSBDeep.md index 7201bd8bc..575f39e9e 100644 --- a/docs/version-specific/supported-software/c/CSBDeep.md +++ b/docs/version-specific/supported-software/c/CSBDeep.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.7.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.7.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CSBLAST.md b/docs/version-specific/supported-software/c/CSBLAST.md index 29734cd19..43f9a8f47 100644 --- a/docs/version-specific/supported-software/c/CSBLAST.md +++ b/docs/version-specific/supported-software/c/CSBLAST.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.3`` | ``GCCcore/8.3.0`` ``2.2.4`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CTPL.md b/docs/version-specific/supported-software/c/CTPL.md index cbfbb3bbf..a75cc809d 100644 --- a/docs/version-specific/supported-software/c/CTPL.md +++ b/docs/version-specific/supported-software/c/CTPL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.2`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 91983be96..d4122844a 100644 --- a/docs/version-specific/supported-software/c/CUDA-Samples.md +++ b/docs/version-specific/supported-software/c/CUDA-Samples.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``11.6`` | ``-CUDA-11.7.0`` | ``GCC/11.3.0`` ``12.1`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CUDA.md b/docs/version-specific/supported-software/c/CUDA.md index 2e6339e7a..65db18289 100644 --- a/docs/version-specific/supported-software/c/CUDA.md +++ b/docs/version-specific/supported-software/c/CUDA.md @@ -63,5 +63,6 @@ version | toolchain ``9.2.88`` | ``GCC/7.3.0-2.30`` ``9.2.88`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CUDAcompat.md b/docs/version-specific/supported-software/c/CUDAcompat.md index 039210f14..adc5d6d7f 100644 --- a/docs/version-specific/supported-software/c/CUDAcompat.md +++ b/docs/version-specific/supported-software/c/CUDAcompat.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``11.7`` | | ``system`` ``11`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CUDAcore.md b/docs/version-specific/supported-software/c/CUDAcore.md index 00c71c120..e55b4b8d8 100644 --- a/docs/version-specific/supported-software/c/CUDAcore.md +++ b/docs/version-specific/supported-software/c/CUDAcore.md @@ -18,5 +18,6 @@ version | toolchain ``11.4.0`` | ``system`` ``11.5.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CUDD.md b/docs/version-specific/supported-software/c/CUDD.md index cf5bbed2e..7ea48740f 100644 --- a/docs/version-specific/supported-software/c/CUDD.md +++ b/docs/version-specific/supported-software/c/CUDD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CUTLASS.md b/docs/version-specific/supported-software/c/CUTLASS.md index 3a19d9e1a..55afd663a 100644 --- a/docs/version-specific/supported-software/c/CUTLASS.md +++ b/docs/version-specific/supported-software/c/CUTLASS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CUnit.md b/docs/version-specific/supported-software/c/CUnit.md index 24098b663..d47d93999 100644 --- a/docs/version-specific/supported-software/c/CUnit.md +++ b/docs/version-specific/supported-software/c/CUnit.md @@ -15,5 +15,6 @@ version | toolchain ``2.1-3`` | ``GCCcore/12.3.0`` ``2.1-3`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CVX.md b/docs/version-specific/supported-software/c/CVX.md index 18f61a74a..9a5c5b170 100644 --- a/docs/version-specific/supported-software/c/CVX.md +++ b/docs/version-specific/supported-software/c/CVX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2`` | ``-MATLAB-2023a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CVXOPT.md b/docs/version-specific/supported-software/c/CVXOPT.md index e3eb5a3fc..377f7a150 100644 --- a/docs/version-specific/supported-software/c/CVXOPT.md +++ b/docs/version-specific/supported-software/c/CVXOPT.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``1.2.6`` | | ``foss/2021a`` ``1.3.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CVXPY.md b/docs/version-specific/supported-software/c/CVXPY.md index 264c6d6bf..21cf32ec6 100644 --- a/docs/version-specific/supported-software/c/CVXPY.md +++ b/docs/version-specific/supported-software/c/CVXPY.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``foss/2022a`` ``1.4.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CVglasso.md b/docs/version-specific/supported-software/c/CVglasso.md index d34084df5..01f80a092 100644 --- a/docs/version-specific/supported-software/c/CVglasso.md +++ b/docs/version-specific/supported-software/c/CVglasso.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CWIPI.md b/docs/version-specific/supported-software/c/CWIPI.md index b307e4dc9..c0c3902de 100644 --- a/docs/version-specific/supported-software/c/CWIPI.md +++ b/docs/version-specific/supported-software/c/CWIPI.md @@ -13,5 +13,6 @@ version | toolchain ``0.12.0`` | ``gompi/2021a`` ``0.12.0`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CaDiCaL.md b/docs/version-specific/supported-software/c/CaDiCaL.md index 1c8b77b65..e0674b18c 100644 --- a/docs/version-specific/supported-software/c/CaDiCaL.md +++ b/docs/version-specific/supported-software/c/CaDiCaL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CaSpER.md b/docs/version-specific/supported-software/c/CaSpER.md index 7ce9f9c68..066cb521d 100644 --- a/docs/version-specific/supported-software/c/CaSpER.md +++ b/docs/version-specific/supported-software/c/CaSpER.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CaVEMan.md b/docs/version-specific/supported-software/c/CaVEMan.md index aa63821d8..4799c3787 100644 --- a/docs/version-specific/supported-software/c/CaVEMan.md +++ b/docs/version-specific/supported-software/c/CaVEMan.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.13.2`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Caffe.md b/docs/version-specific/supported-software/c/Caffe.md index 9d190167c..690f1387d 100644 --- a/docs/version-specific/supported-software/c/Caffe.md +++ b/docs/version-specific/supported-software/c/Caffe.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``rc3`` | ``-CUDA-7.5.18-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Calcam.md b/docs/version-specific/supported-software/c/Calcam.md index 5dbb387f2..c64940765 100644 --- a/docs/version-specific/supported-software/c/Calcam.md +++ b/docs/version-specific/supported-software/c/Calcam.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.1.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 25822b192..1eff92e03 100644 --- a/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md +++ b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md @@ -14,5 +14,6 @@ version | toolchain ``2.20`` | ``foss/2022b`` ``2.20`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Calendrical.md b/docs/version-specific/supported-software/c/Calendrical.md index e4a7ca4b7..0b089469a 100644 --- a/docs/version-specific/supported-software/c/Calendrical.md +++ b/docs/version-specific/supported-software/c/Calendrical.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.0.2a`` | ``-Python-3.6.4`` | ``intel/2018a`` ``2.0.2a`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Calib.md b/docs/version-specific/supported-software/c/Calib.md index e0d3ad5d7..2ca2f4a83 100644 --- a/docs/version-specific/supported-software/c/Calib.md +++ b/docs/version-specific/supported-software/c/Calib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.4`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cantera.md b/docs/version-specific/supported-software/c/Cantera.md index 53df25e37..ea0f157b3 100644 --- a/docs/version-specific/supported-software/c/Cantera.md +++ b/docs/version-specific/supported-software/c/Cantera.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2.6.0`` | | ``foss/2022a`` ``3.0.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Canvas.md b/docs/version-specific/supported-software/c/Canvas.md index 0de9702fd..dd31ce507 100644 --- a/docs/version-specific/supported-software/c/Canvas.md +++ b/docs/version-specific/supported-software/c/Canvas.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.39.0.1598`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CapnProto.md b/docs/version-specific/supported-software/c/CapnProto.md index 52309a4d9..b8308ce34 100644 --- a/docs/version-specific/supported-software/c/CapnProto.md +++ b/docs/version-specific/supported-software/c/CapnProto.md @@ -21,5 +21,6 @@ version | toolchain ``1.0.1`` | ``GCCcore/12.3.0`` ``1.0.1.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cargo.md b/docs/version-specific/supported-software/c/Cargo.md index 066d04c96..39a663f55 100644 --- a/docs/version-specific/supported-software/c/Cargo.md +++ b/docs/version-specific/supported-software/c/Cargo.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13.0`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Carma.md b/docs/version-specific/supported-software/c/Carma.md index 042da6283..0dfe4c0a4 100644 --- a/docs/version-specific/supported-software/c/Carma.md +++ b/docs/version-specific/supported-software/c/Carma.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.01`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cartopy.md b/docs/version-specific/supported-software/c/Cartopy.md index 0bfd05a05..4a23d1f08 100644 --- a/docs/version-specific/supported-software/c/Cartopy.md +++ b/docs/version-specific/supported-software/c/Cartopy.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``0.20.3`` | | ``foss/2022a`` ``0.22.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Casanovo.md b/docs/version-specific/supported-software/c/Casanovo.md index b2e4e9e6c..cd0f8d1ab 100644 --- a/docs/version-specific/supported-software/c/Casanovo.md +++ b/docs/version-specific/supported-software/c/Casanovo.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``3.3.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cassiopeia.md b/docs/version-specific/supported-software/c/Cassiopeia.md index 0ba3ffbc0..3da4e3879 100644 --- a/docs/version-specific/supported-software/c/Cassiopeia.md +++ b/docs/version-specific/supported-software/c/Cassiopeia.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CastXML.md b/docs/version-specific/supported-software/c/CastXML.md index ba86b4a4a..a214ac146 100644 --- a/docs/version-specific/supported-software/c/CastXML.md +++ b/docs/version-specific/supported-software/c/CastXML.md @@ -14,5 +14,6 @@ version | toolchain ``20160617`` | ``foss/2016a`` ``20180806`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CatBoost.md b/docs/version-specific/supported-software/c/CatBoost.md index f3867f7bc..2b3fd06ba 100644 --- a/docs/version-specific/supported-software/c/CatBoost.md +++ b/docs/version-specific/supported-software/c/CatBoost.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CatLearn.md b/docs/version-specific/supported-software/c/CatLearn.md index bdaf25b82..923d9de25 100644 --- a/docs/version-specific/supported-software/c/CatLearn.md +++ b/docs/version-specific/supported-software/c/CatLearn.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.2`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CatMAP.md b/docs/version-specific/supported-software/c/CatMAP.md index 26b001c72..12eb188b0 100644 --- a/docs/version-specific/supported-software/c/CatMAP.md +++ b/docs/version-specific/supported-software/c/CatMAP.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20170927`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20220519`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Catch2.md b/docs/version-specific/supported-software/c/Catch2.md index bd37d3107..bac6b59fd 100644 --- a/docs/version-specific/supported-software/c/Catch2.md +++ b/docs/version-specific/supported-software/c/Catch2.md @@ -18,5 +18,6 @@ version | toolchain ``2.13.9`` | ``system`` ``2.9.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cbc.md b/docs/version-specific/supported-software/c/Cbc.md index ef7ee9288..3aab1d878 100644 --- a/docs/version-specific/supported-software/c/Cbc.md +++ b/docs/version-specific/supported-software/c/Cbc.md @@ -16,5 +16,6 @@ version | toolchain ``2.10.5`` | ``foss/2021a`` ``2.10.5`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellBender.md b/docs/version-specific/supported-software/c/CellBender.md index 6ba12de4d..c7a48075e 100644 --- a/docs/version-specific/supported-software/c/CellBender.md +++ b/docs/version-specific/supported-software/c/CellBender.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``0.3.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellChat.md b/docs/version-specific/supported-software/c/CellChat.md index 9aa835e0e..7033ad8f5 100644 --- a/docs/version-specific/supported-software/c/CellChat.md +++ b/docs/version-specific/supported-software/c/CellChat.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellMix.md b/docs/version-specific/supported-software/c/CellMix.md index d9427920e..0383df495 100644 --- a/docs/version-specific/supported-software/c/CellMix.md +++ b/docs/version-specific/supported-software/c/CellMix.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellOracle.md b/docs/version-specific/supported-software/c/CellOracle.md index 48c3577d9..452beff6d 100644 --- a/docs/version-specific/supported-software/c/CellOracle.md +++ b/docs/version-specific/supported-software/c/CellOracle.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.12.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7daaf69d3..558abd434 100644 --- a/docs/version-specific/supported-software/c/CellRanger-ARC.md +++ b/docs/version-specific/supported-software/c/CellRanger-ARC.md @@ -15,5 +15,6 @@ version | toolchain ``2.0.1`` | ``system`` ``2.0.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 565925d6d..b6e1c5b74 100644 --- a/docs/version-specific/supported-software/c/CellRanger-ATAC.md +++ b/docs/version-specific/supported-software/c/CellRanger-ATAC.md @@ -14,5 +14,6 @@ version | toolchain ``2.0.0`` | ``system`` ``2.1.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellRanger.md b/docs/version-specific/supported-software/c/CellRanger.md index 6c8b1ab53..c968d9905 100644 --- a/docs/version-specific/supported-software/c/CellRanger.md +++ b/docs/version-specific/supported-software/c/CellRanger.md @@ -26,5 +26,6 @@ version | toolchain ``8.0.0`` | ``system`` ``8.0.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellRank.md b/docs/version-specific/supported-software/c/CellRank.md index 4b839ef56..ad905247a 100644 --- a/docs/version-specific/supported-software/c/CellRank.md +++ b/docs/version-specific/supported-software/c/CellRank.md @@ -13,5 +13,6 @@ version | toolchain ``1.4.0`` | ``foss/2021a`` ``2.0.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CellTypist.md b/docs/version-specific/supported-software/c/CellTypist.md index b3b484e75..5297b67ae 100644 --- a/docs/version-specific/supported-software/c/CellTypist.md +++ b/docs/version-specific/supported-software/c/CellTypist.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.0`` | ``foss/2021b`` ``1.6.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cellpose.md b/docs/version-specific/supported-software/c/Cellpose.md index 4fa5f8fd8..d7855f127 100644 --- a/docs/version-specific/supported-software/c/Cellpose.md +++ b/docs/version-specific/supported-software/c/Cellpose.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.2.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Centrifuge.md b/docs/version-specific/supported-software/c/Centrifuge.md index 84a291ce6..118a67c35 100644 --- a/docs/version-specific/supported-software/c/Centrifuge.md +++ b/docs/version-specific/supported-software/c/Centrifuge.md @@ -16,5 +16,6 @@ version | toolchain ``1.0.4`` | ``gompi/2020b`` ``1.0.4`` | ``gompi/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cereal.md b/docs/version-specific/supported-software/c/Cereal.md index b111ac06f..d119563cf 100644 --- a/docs/version-specific/supported-software/c/Cereal.md +++ b/docs/version-specific/supported-software/c/Cereal.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.2`` | ``GCCcore/12.2.0`` ``1.3.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cgl.md b/docs/version-specific/supported-software/c/Cgl.md index 1b8b733ca..b7d45dbbe 100644 --- a/docs/version-specific/supported-software/c/Cgl.md +++ b/docs/version-specific/supported-software/c/Cgl.md @@ -16,5 +16,6 @@ version | toolchain ``0.60.7`` | ``foss/2022b`` ``0.60.8`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ChIPseeker.md b/docs/version-specific/supported-software/c/ChIPseeker.md index 5fbbcf7e7..3c938c48f 100644 --- a/docs/version-specific/supported-software/c/ChIPseeker.md +++ b/docs/version-specific/supported-software/c/ChIPseeker.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.32.1`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CharLS.md b/docs/version-specific/supported-software/c/CharLS.md index 0e9f560f9..f0c6eea1e 100644 --- a/docs/version-specific/supported-software/c/CharLS.md +++ b/docs/version-specific/supported-software/c/CharLS.md @@ -20,5 +20,6 @@ version | toolchain ``2.4.2`` | ``GCCcore/12.2.0`` ``2.4.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CheMPS2.md b/docs/version-specific/supported-software/c/CheMPS2.md index 0df63408f..b1cac90c1 100644 --- a/docs/version-specific/supported-software/c/CheMPS2.md +++ b/docs/version-specific/supported-software/c/CheMPS2.md @@ -25,5 +25,6 @@ version | toolchain ``1.8.9`` | ``intel/2019a`` ``1.8.9`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Check.md b/docs/version-specific/supported-software/c/Check.md index cf27bfd9f..bc6363982 100644 --- a/docs/version-specific/supported-software/c/Check.md +++ b/docs/version-specific/supported-software/c/Check.md @@ -20,5 +20,6 @@ version | toolchain ``0.15.2`` | ``GCCcore/13.2.0`` ``0.15.2`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 11177a0e3..594b6b44d 100644 --- a/docs/version-specific/supported-software/c/CheckM-Database.md +++ b/docs/version-specific/supported-software/c/CheckM-Database.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2015_01_16`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CheckM.md b/docs/version-specific/supported-software/c/CheckM.md index 6afb43b70..80c91b211 100644 --- a/docs/version-specific/supported-software/c/CheckM.md +++ b/docs/version-specific/supported-software/c/CheckM.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``1.1.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``1.2.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CheckM2.md b/docs/version-specific/supported-software/c/CheckM2.md index 9cf9317e0..dfd33c140 100644 --- a/docs/version-specific/supported-software/c/CheckM2.md +++ b/docs/version-specific/supported-software/c/CheckM2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cheetah.md b/docs/version-specific/supported-software/c/Cheetah.md index 37b71c499..d5907ac17 100644 --- a/docs/version-specific/supported-software/c/Cheetah.md +++ b/docs/version-specific/supported-software/c/Cheetah.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.4`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2076ef498..f0307eb83 100644 --- a/docs/version-specific/supported-software/c/Chemaxon-Marvin.md +++ b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md @@ -13,5 +13,6 @@ version | toolchain ``21.14`` | ``system`` ``23.9`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ChimPipe.md b/docs/version-specific/supported-software/c/ChimPipe.md index 32825a02e..8d0bebf69 100644 --- a/docs/version-specific/supported-software/c/ChimPipe.md +++ b/docs/version-specific/supported-software/c/ChimPipe.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.9.5`` | ``-Python-2.7.12`` | ``foss/2016b`` ``0.9.5`` | | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Chimera.md b/docs/version-specific/supported-software/c/Chimera.md index 9c64139e3..9dd573ddf 100644 --- a/docs/version-specific/supported-software/c/Chimera.md +++ b/docs/version-specific/supported-software/c/Chimera.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.10`` | ``-linux_x86_64`` | ``system`` ``1.16`` | ``-linux_x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Chromaprint.md b/docs/version-specific/supported-software/c/Chromaprint.md index 59fec7c5a..e1cfa15a7 100644 --- a/docs/version-specific/supported-software/c/Chromaprint.md +++ b/docs/version-specific/supported-software/c/Chromaprint.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.3`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Circlator.md b/docs/version-specific/supported-software/c/Circlator.md index 5bf16cb82..ee37bca8d 100644 --- a/docs/version-specific/supported-software/c/Circlator.md +++ b/docs/version-specific/supported-software/c/Circlator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.5`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Circos.md b/docs/version-specific/supported-software/c/Circos.md index 1d336aac2..d0bcaa264 100644 --- a/docs/version-specific/supported-software/c/Circos.md +++ b/docs/version-specific/supported-software/c/Circos.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.69-9`` | | ``GCCcore/11.3.0`` ``0.69-9`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Circuitscape.md b/docs/version-specific/supported-software/c/Circuitscape.md index c053520b3..d0eb66c8b 100644 --- a/docs/version-specific/supported-software/c/Circuitscape.md +++ b/docs/version-specific/supported-software/c/Circuitscape.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.12.3`` | ``-Julia-1.7.2`` | ``system`` ``5.12.3`` | ``-Julia-1.9.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Clair3.md b/docs/version-specific/supported-software/c/Clair3.md index cfdf54c7c..f12f39dba 100644 --- a/docs/version-specific/supported-software/c/Clair3.md +++ b/docs/version-specific/supported-software/c/Clair3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3d7c4551e..c7865fd7b 100644 --- a/docs/version-specific/supported-software/c/Clang-AOMP.md +++ b/docs/version-specific/supported-software/c/Clang-AOMP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 85e239e81..5a6486f87 100644 --- a/docs/version-specific/supported-software/c/Clang-Python-bindings.md +++ b/docs/version-specific/supported-software/c/Clang-Python-bindings.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``16.0.6`` | | ``GCCcore/12.3.0`` ``8.0.0`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Clang.md b/docs/version-specific/supported-software/c/Clang.md index b72f9f460..b39e643f2 100644 --- a/docs/version-specific/supported-software/c/Clang.md +++ b/docs/version-specific/supported-software/c/Clang.md @@ -54,5 +54,6 @@ version | versionsuffix | toolchain ``9.0.1`` | | ``GCCcore/8.3.0`` ``9.0.1`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1089da0a8..bc6f8f5a7 100644 --- a/docs/version-specific/supported-software/c/Clarabel.rs.md +++ b/docs/version-specific/supported-software/c/Clarabel.rs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.1`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CliMetLab.md b/docs/version-specific/supported-software/c/CliMetLab.md index 9e2e1e6b0..b7c60fe68 100644 --- a/docs/version-specific/supported-software/c/CliMetLab.md +++ b/docs/version-specific/supported-software/c/CliMetLab.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.12.6`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ClonalFrameML.md b/docs/version-specific/supported-software/c/ClonalFrameML.md index 0cddaf76c..753583336 100644 --- a/docs/version-specific/supported-software/c/ClonalFrameML.md +++ b/docs/version-specific/supported-software/c/ClonalFrameML.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.11`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CloudCompare.md b/docs/version-specific/supported-software/c/CloudCompare.md index 4a8d7ec96..880392ca7 100644 --- a/docs/version-specific/supported-software/c/CloudCompare.md +++ b/docs/version-specific/supported-software/c/CloudCompare.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.12.4`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Clp.md b/docs/version-specific/supported-software/c/Clp.md index 29c5ec3be..7f4ba437a 100644 --- a/docs/version-specific/supported-software/c/Clp.md +++ b/docs/version-specific/supported-software/c/Clp.md @@ -17,5 +17,6 @@ version | toolchain ``1.17.8`` | ``foss/2022b`` ``1.17.9`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ea01047b5..e2d8fe494 100644 --- a/docs/version-specific/supported-software/c/Clustal-Omega.md +++ b/docs/version-specific/supported-software/c/Clustal-Omega.md @@ -20,5 +20,6 @@ version | toolchain ``1.2.4`` | ``intel/2018b`` ``1.2.4`` | ``intel-compilers/2021.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ClustalW2.md b/docs/version-specific/supported-software/c/ClustalW2.md index 0021ec5d6..d7f63b57c 100644 --- a/docs/version-specific/supported-software/c/ClustalW2.md +++ b/docs/version-specific/supported-software/c/ClustalW2.md @@ -21,5 +21,6 @@ version | toolchain ``2.1`` | ``intel/2018b`` ``2.1`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 77beebfb7..7a1fba504 100644 --- a/docs/version-specific/supported-software/c/Cluster-Buster.md +++ b/docs/version-specific/supported-software/c/Cluster-Buster.md @@ -13,5 +13,6 @@ version | toolchain ``20160106`` | ``intel/2016a`` ``20200507`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ClusterShell.md b/docs/version-specific/supported-software/c/ClusterShell.md index 71198979b..a571d4441 100644 --- a/docs/version-specific/supported-software/c/ClusterShell.md +++ b/docs/version-specific/supported-software/c/ClusterShell.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CmdStanR.md b/docs/version-specific/supported-software/c/CmdStanR.md index 0750ad76d..868deddbe 100644 --- a/docs/version-specific/supported-software/c/CmdStanR.md +++ b/docs/version-specific/supported-software/c/CmdStanR.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.5.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.7.1`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 79d5af95a..df0e470f8 100644 --- a/docs/version-specific/supported-software/c/Co-phylog.md +++ b/docs/version-specific/supported-software/c/Co-phylog.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20201012`` | ``GCC/7.3.0-2.30`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CoCoALib.md b/docs/version-specific/supported-software/c/CoCoALib.md index 511454e75..cc1daf483 100644 --- a/docs/version-specific/supported-software/c/CoCoALib.md +++ b/docs/version-specific/supported-software/c/CoCoALib.md @@ -15,5 +15,6 @@ version | toolchain ``0.99818`` | ``GCC/11.3.0`` ``0.99850`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CoSymLib.md b/docs/version-specific/supported-software/c/CoSymLib.md index 6aecab0b2..e1c669ca1 100644 --- a/docs/version-specific/supported-software/c/CoSymLib.md +++ b/docs/version-specific/supported-software/c/CoSymLib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.10.9`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CodAn.md b/docs/version-specific/supported-software/c/CodAn.md index 8a3863299..7bf2d8d54 100644 --- a/docs/version-specific/supported-software/c/CodAn.md +++ b/docs/version-specific/supported-software/c/CodAn.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CodingQuarry.md b/docs/version-specific/supported-software/c/CodingQuarry.md index 3d0be730f..ebc1b4b95 100644 --- a/docs/version-specific/supported-software/c/CodingQuarry.md +++ b/docs/version-specific/supported-software/c/CodingQuarry.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cogent.md b/docs/version-specific/supported-software/c/Cogent.md index 4ad89e74d..0d45af031 100644 --- a/docs/version-specific/supported-software/c/Cogent.md +++ b/docs/version-specific/supported-software/c/Cogent.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``8.0.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Coin.md b/docs/version-specific/supported-software/c/Coin.md index b39d24b0f..5db26a862 100644 --- a/docs/version-specific/supported-software/c/Coin.md +++ b/docs/version-specific/supported-software/c/Coin.md @@ -13,5 +13,6 @@ version | toolchain ``4.0.0`` | ``GCC/10.3.0`` ``4.0.0`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CoinUtils.md b/docs/version-specific/supported-software/c/CoinUtils.md index ce3f4aae5..6ecccd394 100644 --- a/docs/version-specific/supported-software/c/CoinUtils.md +++ b/docs/version-specific/supported-software/c/CoinUtils.md @@ -18,5 +18,6 @@ version | toolchain ``2.11.6`` | ``GCC/11.2.0`` ``2.11.9`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ColabFold.md b/docs/version-specific/supported-software/c/ColabFold.md index 15830db56..3724017a6 100644 --- a/docs/version-specific/supported-software/c/ColabFold.md +++ b/docs/version-specific/supported-software/c/ColabFold.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.5.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Commet.md b/docs/version-specific/supported-software/c/Commet.md index aa5e36fec..a0e172866 100644 --- a/docs/version-specific/supported-software/c/Commet.md +++ b/docs/version-specific/supported-software/c/Commet.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20150415`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CompareM.md b/docs/version-specific/supported-software/c/CompareM.md index ab08cd5ca..e46a47ffd 100644 --- a/docs/version-specific/supported-software/c/CompareM.md +++ b/docs/version-specific/supported-software/c/CompareM.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.0.23`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.1.2`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Compass.md b/docs/version-specific/supported-software/c/Compass.md index c33014c1a..b760ba94f 100644 --- a/docs/version-specific/supported-software/c/Compass.md +++ b/docs/version-specific/supported-software/c/Compass.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2024.04`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 296ad61bb..84ccb4bfd 100644 --- a/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md +++ b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md @@ -13,5 +13,6 @@ version | toolchain ``2.202`` | ``GCCcore/11.3.0`` ``2.202`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Con3F.md b/docs/version-specific/supported-software/c/Con3F.md index 8b153ed10..52055e6ab 100644 --- a/docs/version-specific/supported-software/c/Con3F.md +++ b/docs/version-specific/supported-software/c/Con3F.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20190329`` | ``-Python-3.7.2`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Concorde.md b/docs/version-specific/supported-software/c/Concorde.md index a92b99ff0..8501e6482 100644 --- a/docs/version-specific/supported-software/c/Concorde.md +++ b/docs/version-specific/supported-software/c/Concorde.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20031219`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md index 438c8f8b7..bfd283786 100644 --- a/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md +++ b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md @@ -15,5 +15,6 @@ version | toolchain ``1.11.23`` | ``GCCcore/4.9.3`` ``1.11.23`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ConnectomeWorkbench.md b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md index a06b5882f..d51410b38 100644 --- a/docs/version-specific/supported-software/c/ConnectomeWorkbench.md +++ b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.4.2`` | ``-rh_linux64`` | ``system`` ``1.5.0`` | | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 104cd5356..a20dfaf1c 100644 --- a/docs/version-specific/supported-software/c/Control-FREEC.md +++ b/docs/version-specific/supported-software/c/Control-FREEC.md @@ -14,5 +14,6 @@ version | toolchain ``11.5`` | ``GCC/8.2.0-2.31.1`` ``11.6`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CoordgenLibs.md b/docs/version-specific/supported-software/c/CoordgenLibs.md index 6e25ee203..d40ee8d32 100644 --- a/docs/version-specific/supported-software/c/CoordgenLibs.md +++ b/docs/version-specific/supported-software/c/CoordgenLibs.md @@ -18,5 +18,6 @@ version | toolchain ``3.0.1`` | ``iimpi/2020a`` ``3.0.2`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Coot.md b/docs/version-specific/supported-software/c/Coot.md index 213512159..aadb83952 100644 --- a/docs/version-specific/supported-software/c/Coot.md +++ b/docs/version-specific/supported-software/c/Coot.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CopyKAT.md b/docs/version-specific/supported-software/c/CopyKAT.md index 38289801e..00c62c241 100644 --- a/docs/version-specific/supported-software/c/CopyKAT.md +++ b/docs/version-specific/supported-software/c/CopyKAT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.1.0`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Coreutils.md b/docs/version-specific/supported-software/c/Coreutils.md index f63db0fbb..39e9803ec 100644 --- a/docs/version-specific/supported-software/c/Coreutils.md +++ b/docs/version-specific/supported-software/c/Coreutils.md @@ -19,5 +19,6 @@ version | toolchain ``9.1`` | ``GCCcore/11.3.0`` ``9.1`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CppHeaderParser.md b/docs/version-specific/supported-software/c/CppHeaderParser.md index ea7886ff1..c85db1f6c 100644 --- a/docs/version-specific/supported-software/c/CppHeaderParser.md +++ b/docs/version-specific/supported-software/c/CppHeaderParser.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.7.4`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CppUnit.md b/docs/version-specific/supported-software/c/CppUnit.md index bf4d1e49a..22f279498 100644 --- a/docs/version-specific/supported-software/c/CppUnit.md +++ b/docs/version-specific/supported-software/c/CppUnit.md @@ -21,5 +21,6 @@ version | toolchain ``1.15.1`` | ``GCCcore/8.3.0`` ``1.15.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrayCCE.md b/docs/version-specific/supported-software/c/CrayCCE.md index 476c0516a..08b6e8e4e 100644 --- a/docs/version-specific/supported-software/c/CrayCCE.md +++ b/docs/version-specific/supported-software/c/CrayCCE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrayGNU.md b/docs/version-specific/supported-software/c/CrayGNU.md index 4a20ea709..da87f867c 100644 --- a/docs/version-specific/supported-software/c/CrayGNU.md +++ b/docs/version-specific/supported-software/c/CrayGNU.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrayIntel.md b/docs/version-specific/supported-software/c/CrayIntel.md index bfb293a52..8d2d6b927 100644 --- a/docs/version-specific/supported-software/c/CrayIntel.md +++ b/docs/version-specific/supported-software/c/CrayIntel.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrayPGI.md b/docs/version-specific/supported-software/c/CrayPGI.md index 96b1ab061..0166150df 100644 --- a/docs/version-specific/supported-software/c/CrayPGI.md +++ b/docs/version-specific/supported-software/c/CrayPGI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``19.06`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrossMap.md b/docs/version-specific/supported-software/c/CrossMap.md index 05092e377..286c62950 100644 --- a/docs/version-specific/supported-software/c/CrossMap.md +++ b/docs/version-specific/supported-software/c/CrossMap.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.9`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrossTalkZ.md b/docs/version-specific/supported-software/c/CrossTalkZ.md index ffc82228c..ea6b01b0b 100644 --- a/docs/version-specific/supported-software/c/CrossTalkZ.md +++ b/docs/version-specific/supported-software/c/CrossTalkZ.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Crumble.md b/docs/version-specific/supported-software/c/Crumble.md index fb806fbb1..7d5ddff6a 100644 --- a/docs/version-specific/supported-software/c/Crumble.md +++ b/docs/version-specific/supported-software/c/Crumble.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.3`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CryptoMiniSat.md b/docs/version-specific/supported-software/c/CryptoMiniSat.md index a397dce85..735f4a042 100644 --- a/docs/version-specific/supported-software/c/CryptoMiniSat.md +++ b/docs/version-specific/supported-software/c/CryptoMiniSat.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CrystFEL.md b/docs/version-specific/supported-software/c/CrystFEL.md index 4a39faed5..73dab904a 100644 --- a/docs/version-specific/supported-software/c/CrystFEL.md +++ b/docs/version-specific/supported-software/c/CrystFEL.md @@ -13,5 +13,6 @@ version | toolchain ``0.8.0`` | ``foss/2019a`` ``0.8.0`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CuCLARK.md b/docs/version-specific/supported-software/c/CuCLARK.md index 015c9d76c..c413dc22d 100644 --- a/docs/version-specific/supported-software/c/CuCLARK.md +++ b/docs/version-specific/supported-software/c/CuCLARK.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CuPy.md b/docs/version-specific/supported-software/c/CuPy.md index 0f7cc379f..64bb84619 100644 --- a/docs/version-specific/supported-software/c/CuPy.md +++ b/docs/version-specific/supported-software/c/CuPy.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``8.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``8.5.0`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cube.md b/docs/version-specific/supported-software/c/Cube.md index bf0cdb401..4a0067d98 100644 --- a/docs/version-specific/supported-software/c/Cube.md +++ b/docs/version-specific/supported-software/c/Cube.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3.4`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CubeGUI.md b/docs/version-specific/supported-software/c/CubeGUI.md index f9aedb2aa..a96fd4fb7 100644 --- a/docs/version-specific/supported-software/c/CubeGUI.md +++ b/docs/version-specific/supported-software/c/CubeGUI.md @@ -16,5 +16,6 @@ version | toolchain ``4.6`` | ``GCCcore/10.3.0`` ``4.8`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CubeLib.md b/docs/version-specific/supported-software/c/CubeLib.md index 3ae34269c..2d7f17f48 100644 --- a/docs/version-specific/supported-software/c/CubeLib.md +++ b/docs/version-specific/supported-software/c/CubeLib.md @@ -22,5 +22,6 @@ version | toolchain ``4.8.2`` | ``GCCcore/12.2.0`` ``4.8.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/CubeWriter.md b/docs/version-specific/supported-software/c/CubeWriter.md index 505a5aefb..347a6097e 100644 --- a/docs/version-specific/supported-software/c/CubeWriter.md +++ b/docs/version-specific/supported-software/c/CubeWriter.md @@ -23,5 +23,6 @@ version | toolchain ``4.8.2`` | ``GCCcore/12.2.0`` ``4.8.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cufflinks.md b/docs/version-specific/supported-software/c/Cufflinks.md index f0ceb2741..4180c91ce 100644 --- a/docs/version-specific/supported-software/c/Cufflinks.md +++ b/docs/version-specific/supported-software/c/Cufflinks.md @@ -20,5 +20,6 @@ version | toolchain ``20190706`` | ``GCC/11.2.0`` ``20190706`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cython.md b/docs/version-specific/supported-software/c/Cython.md index 1504e00e9..820a9cccc 100644 --- a/docs/version-specific/supported-software/c/Cython.md +++ b/docs/version-specific/supported-software/c/Cython.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``3.0.8`` | | ``GCCcore/12.3.0`` ``3.0a5`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/Cytoscape.md b/docs/version-specific/supported-software/c/Cytoscape.md index 3e33f80ac..09e1953c5 100644 --- a/docs/version-specific/supported-software/c/Cytoscape.md +++ b/docs/version-specific/supported-software/c/Cytoscape.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.9.1`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e7e452459..b27e584ec 100644 --- a/docs/version-specific/supported-software/c/c-ares.md +++ b/docs/version-specific/supported-software/c/c-ares.md @@ -17,5 +17,6 @@ version | toolchain ``1.19.1`` | ``GCCcore/12.3.0`` ``1.27.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8da09876c..1440b285c 100644 --- a/docs/version-specific/supported-software/c/cDNA_Cupcake.md +++ b/docs/version-specific/supported-software/c/cDNA_Cupcake.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``26.0.0`` | | ``foss/2021a`` ``5.8`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cURL.md b/docs/version-specific/supported-software/c/cURL.md index 5c6d2c384..b7a35daf2 100644 --- a/docs/version-specific/supported-software/c/cURL.md +++ b/docs/version-specific/supported-software/c/cURL.md @@ -48,5 +48,6 @@ version | toolchain ``8.3.0`` | ``GCCcore/13.2.0`` ``8.7.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cadaver.md b/docs/version-specific/supported-software/c/cadaver.md index c1458a8f9..f03d32a3f 100644 --- a/docs/version-specific/supported-software/c/cadaver.md +++ b/docs/version-specific/supported-software/c/cadaver.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.23.3`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cairo.md b/docs/version-specific/supported-software/c/cairo.md index 2908e097c..6d810f4ba 100644 --- a/docs/version-specific/supported-software/c/cairo.md +++ b/docs/version-specific/supported-software/c/cairo.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``1.17.8`` | | ``GCCcore/12.3.0`` ``1.18.0`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cairomm.md b/docs/version-specific/supported-software/c/cairomm.md index aa4902867..9d899f114 100644 --- a/docs/version-specific/supported-software/c/cairomm.md +++ b/docs/version-specific/supported-software/c/cairomm.md @@ -14,5 +14,6 @@ version | toolchain ``1.12.2`` | ``GCCcore/7.3.0`` ``1.16.2`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/canu.md b/docs/version-specific/supported-software/c/canu.md index a00d8e87d..8adea8eec 100644 --- a/docs/version-specific/supported-software/c/canu.md +++ b/docs/version-specific/supported-software/c/canu.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``2.2`` | | ``GCCcore/11.2.0`` ``2.2`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/captum.md b/docs/version-specific/supported-software/c/captum.md index f33b91f7d..9387fffaf 100644 --- a/docs/version-specific/supported-software/c/captum.md +++ b/docs/version-specific/supported-software/c/captum.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.5.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/carputils.md b/docs/version-specific/supported-software/c/carputils.md index 07d8ded9e..3e48586e6 100644 --- a/docs/version-specific/supported-software/c/carputils.md +++ b/docs/version-specific/supported-software/c/carputils.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20200915`` | ``-Python-3.8.2`` | ``foss/2020a`` ``20210513`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/casacore.md b/docs/version-specific/supported-software/c/casacore.md index a82ae0b29..bca2a635b 100644 --- a/docs/version-specific/supported-software/c/casacore.md +++ b/docs/version-specific/supported-software/c/casacore.md @@ -14,5 +14,6 @@ version | toolchain ``3.5.0`` | ``foss/2022a`` ``3.5.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/castor.md b/docs/version-specific/supported-software/c/castor.md index 0cb2e6b37..c57508bfa 100644 --- a/docs/version-specific/supported-software/c/castor.md +++ b/docs/version-specific/supported-software/c/castor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.11`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3b3d2d945..599b3b9f0 100644 --- a/docs/version-specific/supported-software/c/category_encoders.md +++ b/docs/version-specific/supported-software/c/category_encoders.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/causallift.md b/docs/version-specific/supported-software/c/causallift.md index e07c34a1b..ba9f56c9c 100644 --- a/docs/version-specific/supported-software/c/causallift.md +++ b/docs/version-specific/supported-software/c/causallift.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/causalml.md b/docs/version-specific/supported-software/c/causalml.md index 310d82d25..f0350ff6e 100644 --- a/docs/version-specific/supported-software/c/causalml.md +++ b/docs/version-specific/supported-software/c/causalml.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.0-20180610`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.8.0-20200909`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ccache.md b/docs/version-specific/supported-software/c/ccache.md index 088343894..41d13a5b3 100644 --- a/docs/version-specific/supported-software/c/ccache.md +++ b/docs/version-specific/supported-software/c/ccache.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``4.9`` | | ``GCCcore/12.3.0`` ``4.9`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cclib.md b/docs/version-specific/supported-software/c/cclib.md index c98a27cf4..108dea75c 100644 --- a/docs/version-specific/supported-software/c/cclib.md +++ b/docs/version-specific/supported-software/c/cclib.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.7.2`` | | ``foss/2021b`` ``1.8`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cb41c0db0..e6195a0ef 100644 --- a/docs/version-specific/supported-software/c/cctbx-base.md +++ b/docs/version-specific/supported-software/c/cctbx-base.md @@ -13,5 +13,6 @@ version | toolchain ``2020.8`` | ``foss/2020b`` ``2020.8`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cctools.md b/docs/version-specific/supported-software/c/cctools.md index 6011bc537..1ec0c39a9 100644 --- a/docs/version-specific/supported-software/c/cctools.md +++ b/docs/version-specific/supported-software/c/cctools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.0.22`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cdbfasta.md b/docs/version-specific/supported-software/c/cdbfasta.md index 7f66f6d84..5e66ab893 100644 --- a/docs/version-specific/supported-software/c/cdbfasta.md +++ b/docs/version-specific/supported-software/c/cdbfasta.md @@ -14,5 +14,6 @@ version | toolchain ``0.99`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``0.99`` | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cddlib.md b/docs/version-specific/supported-software/c/cddlib.md index 7b3237a13..463bd2e5a 100644 --- a/docs/version-specific/supported-software/c/cddlib.md +++ b/docs/version-specific/supported-software/c/cddlib.md @@ -15,5 +15,6 @@ version | toolchain ``0.94m`` | ``GCCcore/11.3.0`` ``0.94m`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 27965a99d..dbd6b8445 100644 --- a/docs/version-specific/supported-software/c/cdo-bindings.md +++ b/docs/version-specific/supported-software/c/cdo-bindings.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.7`` | ``foss/2021b`` ``1.6.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cdsapi.md b/docs/version-specific/supported-software/c/cdsapi.md index a928509ed..71b7be54a 100644 --- a/docs/version-specific/supported-software/c/cdsapi.md +++ b/docs/version-specific/supported-software/c/cdsapi.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.3.0`` | | ``GCCcore/9.3.0`` ``0.5.1`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cell2location.md b/docs/version-specific/supported-software/c/cell2location.md index 50b33349d..a1fc552da 100644 --- a/docs/version-specific/supported-software/c/cell2location.md +++ b/docs/version-specific/supported-software/c/cell2location.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.05-alpha`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/centerline.md b/docs/version-specific/supported-software/c/centerline.md index e797e3ae0..fc0f76651 100644 --- a/docs/version-specific/supported-software/c/centerline.md +++ b/docs/version-specific/supported-software/c/centerline.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cffi.md b/docs/version-specific/supported-software/c/cffi.md index a8601eba1..d0ea78c46 100644 --- a/docs/version-specific/supported-software/c/cffi.md +++ b/docs/version-specific/supported-software/c/cffi.md @@ -15,5 +15,6 @@ version | toolchain ``1.15.1`` | ``GCCcore/13.2.0`` ``1.16.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cftime.md b/docs/version-specific/supported-software/c/cftime.md index 7d8b36f69..1f479d5d1 100644 --- a/docs/version-specific/supported-software/c/cftime.md +++ b/docs/version-specific/supported-software/c/cftime.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``1.0.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cget.md b/docs/version-specific/supported-software/c/cget.md index 2d6bb4dc6..b89a3563e 100644 --- a/docs/version-specific/supported-software/c/cget.md +++ b/docs/version-specific/supported-software/c/cget.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c98fb18bd..63cdded45 100644 --- a/docs/version-specific/supported-software/c/charm-gems.md +++ b/docs/version-specific/supported-software/c/charm-gems.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.3`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/chemprop.md b/docs/version-specific/supported-software/c/chemprop.md index e1bd81b6e..ccc83fea3 100644 --- a/docs/version-specific/supported-software/c/chemprop.md +++ b/docs/version-specific/supported-software/c/chemprop.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.5.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/chewBBACA.md b/docs/version-specific/supported-software/c/chewBBACA.md index f073864e2..c1bee4d93 100644 --- a/docs/version-specific/supported-software/c/chewBBACA.md +++ b/docs/version-specific/supported-software/c/chewBBACA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.5`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/chi2comb.md b/docs/version-specific/supported-software/c/chi2comb.md index 990916325..94207b302 100644 --- a/docs/version-specific/supported-software/c/chi2comb.md +++ b/docs/version-specific/supported-software/c/chi2comb.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.3`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/chromVARmotifs.md b/docs/version-specific/supported-software/c/chromVARmotifs.md index 670f2120a..cd4a2d919 100644 --- a/docs/version-specific/supported-software/c/chromVARmotifs.md +++ b/docs/version-specific/supported-software/c/chromVARmotifs.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cicero.md b/docs/version-specific/supported-software/c/cicero.md index abaa4548c..db30d5741 100644 --- a/docs/version-specific/supported-software/c/cicero.md +++ b/docs/version-specific/supported-software/c/cicero.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.3.4.11`` | ``-R-4.0.3-Monocle3`` | ``foss/2020b`` ``1.3.8`` | ``-R-4.2.1-Monocle3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cimfomfa.md b/docs/version-specific/supported-software/c/cimfomfa.md index 53fe46a6a..b27a57e92 100644 --- a/docs/version-specific/supported-software/c/cimfomfa.md +++ b/docs/version-specific/supported-software/c/cimfomfa.md @@ -14,5 +14,6 @@ version | toolchain ``22.273`` | ``GCCcore/11.3.0`` ``22.273`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cisTEM.md b/docs/version-specific/supported-software/c/cisTEM.md index 3c5e16839..fdab14cbb 100644 --- a/docs/version-specific/supported-software/c/cisTEM.md +++ b/docs/version-specific/supported-software/c/cisTEM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0-beta`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cliquer.md b/docs/version-specific/supported-software/c/cliquer.md index c89a92fce..27cd583e9 100644 --- a/docs/version-specific/supported-software/c/cliquer.md +++ b/docs/version-specific/supported-software/c/cliquer.md @@ -13,5 +13,6 @@ version | toolchain ``1.21`` | ``GCCcore/11.3.0`` ``1.21`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cmocean.md b/docs/version-specific/supported-software/c/cmocean.md index a14c85e70..bcf097bc2 100644 --- a/docs/version-specific/supported-software/c/cmocean.md +++ b/docs/version-specific/supported-software/c/cmocean.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cmph.md b/docs/version-specific/supported-software/c/cmph.md index 8f164d29b..fee0e65f5 100644 --- a/docs/version-specific/supported-software/c/cmph.md +++ b/docs/version-specific/supported-software/c/cmph.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b90d71a68..f4d48cfef 100644 --- a/docs/version-specific/supported-software/c/code-cli.md +++ b/docs/version-specific/supported-software/c/code-cli.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.85.1`` | ``-x64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ce623c3a2..41aef0160 100644 --- a/docs/version-specific/supported-software/c/code-server.md +++ b/docs/version-specific/supported-software/c/code-server.md @@ -17,5 +17,6 @@ version | toolchain ``4.89.1`` | ``system`` ``4.9.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/colossalai.md b/docs/version-specific/supported-software/c/colossalai.md index 25b7d3e11..057c3fea7 100644 --- a/docs/version-specific/supported-software/c/colossalai.md +++ b/docs/version-specific/supported-software/c/colossalai.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.8`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/conan.md b/docs/version-specific/supported-software/c/conan.md index 83ea29df1..012073ef3 100644 --- a/docs/version-specific/supported-software/c/conan.md +++ b/docs/version-specific/supported-software/c/conan.md @@ -13,5 +13,6 @@ version | toolchain ``1.58.0`` | ``GCCcore/11.3.0`` ``1.60.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/configparser.md b/docs/version-specific/supported-software/c/configparser.md index 99899a5bd..5f38d76f1 100644 --- a/docs/version-specific/supported-software/c/configparser.md +++ b/docs/version-specific/supported-software/c/configparser.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``3.5.0`` | ``-Python-3.5.2`` | ``intel/2016b`` ``3.5.0`` | ``-Python-3.6.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a2f4a574a..8cc8128ae 100644 --- a/docs/version-specific/supported-software/c/configurable-http-proxy.md +++ b/docs/version-specific/supported-software/c/configurable-http-proxy.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``4.5.6`` | | ``GCCcore/12.3.0`` ``4.6.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 556781710..89db19cc3 100644 --- a/docs/version-specific/supported-software/c/connected-components-3d.md +++ b/docs/version-specific/supported-software/c/connected-components-3d.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.12.1`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/contextily.md b/docs/version-specific/supported-software/c/contextily.md index 906dd3ad3..0c3bf4bbb 100644 --- a/docs/version-specific/supported-software/c/contextily.md +++ b/docs/version-specific/supported-software/c/contextily.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cooler.md b/docs/version-specific/supported-software/c/cooler.md index 0e4438fc2..9f30ab8f8 100644 --- a/docs/version-specific/supported-software/c/cooler.md +++ b/docs/version-specific/supported-software/c/cooler.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 877c86e7f..b53627b10 100644 --- a/docs/version-specific/supported-software/c/core-counter.md +++ b/docs/version-specific/supported-software/c/core-counter.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/corner.md b/docs/version-specific/supported-software/c/corner.md index eb0d0e919..2bb61b255 100644 --- a/docs/version-specific/supported-software/c/corner.md +++ b/docs/version-specific/supported-software/c/corner.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``2.2.2`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/coverage.md b/docs/version-specific/supported-software/c/coverage.md index 7a9c4967f..33cb9b15e 100644 --- a/docs/version-specific/supported-software/c/coverage.md +++ b/docs/version-specific/supported-software/c/coverage.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``7.2.7`` | | ``GCCcore/11.3.0`` ``7.4.4`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cowsay.md b/docs/version-specific/supported-software/c/cowsay.md index 754f494ec..1358f0886 100644 --- a/docs/version-specific/supported-software/c/cowsay.md +++ b/docs/version-specific/supported-software/c/cowsay.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.04`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cpio.md b/docs/version-specific/supported-software/c/cpio.md index 568e4ecf4..c1e32ea0a 100644 --- a/docs/version-specific/supported-software/c/cpio.md +++ b/docs/version-specific/supported-software/c/cpio.md @@ -16,5 +16,6 @@ version | toolchain ``2.15`` | ``GCCcore/13.2.0`` ``2.15`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cppy.md b/docs/version-specific/supported-software/c/cppy.md index 4947b8e4d..cb786a3b6 100644 --- a/docs/version-specific/supported-software/c/cppy.md +++ b/docs/version-specific/supported-software/c/cppy.md @@ -17,5 +17,6 @@ version | toolchain ``1.2.1`` | ``GCCcore/12.3.0`` ``1.2.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cppyy.md b/docs/version-specific/supported-software/c/cppyy.md index 9c7bbae9a..c518cecbc 100644 --- a/docs/version-specific/supported-software/c/cppyy.md +++ b/docs/version-specific/supported-software/c/cppyy.md @@ -13,5 +13,6 @@ version | toolchain ``3.0.0`` | ``GCCcore/11.3.0`` ``3.1.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cppzmq.md b/docs/version-specific/supported-software/c/cppzmq.md index edc2a8fbf..bb269d2da 100644 --- a/docs/version-specific/supported-software/c/cppzmq.md +++ b/docs/version-specific/supported-software/c/cppzmq.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.9.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0e16d54af..dc98dbe1e 100644 --- a/docs/version-specific/supported-software/c/cpu_features.md +++ b/docs/version-specific/supported-software/c/cpu_features.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.0`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cram.md b/docs/version-specific/supported-software/c/cram.md index 3d1339ddf..2539fa5e3 100644 --- a/docs/version-specific/supported-software/c/cram.md +++ b/docs/version-specific/supported-software/c/cram.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cramtools.md b/docs/version-specific/supported-software/c/cramtools.md index 9e04c826b..c71fc4fa8 100644 --- a/docs/version-specific/supported-software/c/cramtools.md +++ b/docs/version-specific/supported-software/c/cramtools.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0`` | ``-Java-1.7.0_80`` | ``system`` ``3.0`` | ``-Java-1.7.0_80`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 292b6162b..270ab7da7 100644 --- a/docs/version-specific/supported-software/c/crb-blast.md +++ b/docs/version-specific/supported-software/c/crb-blast.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.6.9`` | | ``gompi/2021b`` ``0.6.9`` | | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cromwell.md b/docs/version-specific/supported-software/c/cromwell.md index 471890dd1..fdcfcd6a1 100644 --- a/docs/version-specific/supported-software/c/cromwell.md +++ b/docs/version-specific/supported-software/c/cromwell.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``56`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/crossguid.md b/docs/version-specific/supported-software/c/crossguid.md index 20e32b92a..0fc7c7796 100644 --- a/docs/version-specific/supported-software/c/crossguid.md +++ b/docs/version-specific/supported-software/c/crossguid.md @@ -13,5 +13,6 @@ version | toolchain ``20190529`` | ``GCCcore/11.2.0`` ``20190529`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cryoCARE.md b/docs/version-specific/supported-software/c/cryoCARE.md index c622b20aa..b0b2ab010 100644 --- a/docs/version-specific/supported-software/c/cryoCARE.md +++ b/docs/version-specific/supported-software/c/cryoCARE.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.2.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cryoDRGN.md b/docs/version-specific/supported-software/c/cryoDRGN.md index 1738032d3..fbbf1f298 100644 --- a/docs/version-specific/supported-software/c/cryoDRGN.md +++ b/docs/version-specific/supported-software/c/cryoDRGN.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.3.5`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.0-beta`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cryptography.md b/docs/version-specific/supported-software/c/cryptography.md index be93766aa..a04e1b542 100644 --- a/docs/version-specific/supported-software/c/cryptography.md +++ b/docs/version-specific/supported-software/c/cryptography.md @@ -13,5 +13,6 @@ version | toolchain ``41.0.1`` | ``GCCcore/12.3.0`` ``41.0.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cscope.md b/docs/version-specific/supported-software/c/cscope.md index 71cc52ae8..49653f011 100644 --- a/docs/version-specific/supported-software/c/cscope.md +++ b/docs/version-specific/supported-software/c/cscope.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``15.9`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/csvkit.md b/docs/version-specific/supported-software/c/csvkit.md index 1f98a7f87..2034503c7 100644 --- a/docs/version-specific/supported-software/c/csvkit.md +++ b/docs/version-specific/supported-software/c/csvkit.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.5`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.1.0`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ctags.md b/docs/version-specific/supported-software/c/ctags.md index 0aea2549a..dbb6f4b1a 100644 --- a/docs/version-specific/supported-software/c/ctags.md +++ b/docs/version-specific/supported-software/c/ctags.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ctffind.md b/docs/version-specific/supported-software/c/ctffind.md index 62594abcb..a1f2896f5 100644 --- a/docs/version-specific/supported-software/c/ctffind.md +++ b/docs/version-specific/supported-software/c/ctffind.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``4.1.14`` | | ``fosscuda/2019b`` ``4.1.14`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/ctffind5.md b/docs/version-specific/supported-software/c/ctffind5.md index 2252f25af..3b44b11bf 100644 --- a/docs/version-specific/supported-software/c/ctffind5.md +++ b/docs/version-specific/supported-software/c/ctffind5.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cuDNN.md b/docs/version-specific/supported-software/c/cuDNN.md index ad7803ef7..ad4f6461f 100644 --- a/docs/version-specific/supported-software/c/cuDNN.md +++ b/docs/version-specific/supported-software/c/cuDNN.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``8.9.2.26`` | ``-CUDA-12.2.0`` | ``system`` ``8.9.7.29`` | ``-CUDA-12.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cuSPARSELt.md b/docs/version-specific/supported-software/c/cuSPARSELt.md index 1b5d3f937..faec479fe 100644 --- a/docs/version-specific/supported-software/c/cuSPARSELt.md +++ b/docs/version-specific/supported-software/c/cuSPARSELt.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.0.3`` | ``-CUDA-11.4.1`` | ``system`` ``0.6.0.6`` | ``-CUDA-12.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cuTENSOR.md b/docs/version-specific/supported-software/c/cuTENSOR.md index b00c5bafe..8533d7b09 100644 --- a/docs/version-specific/supported-software/c/cuTENSOR.md +++ b/docs/version-specific/supported-software/c/cuTENSOR.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``2.0.1.2`` | ``-CUDA-12.1.1`` | ``system`` ``2.0.1.2`` | ``-CUDA-12.2.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/currentNe.md b/docs/version-specific/supported-software/c/currentNe.md index d7dac5660..4f3505be0 100644 --- a/docs/version-specific/supported-software/c/currentNe.md +++ b/docs/version-specific/supported-software/c/currentNe.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/custodian.md b/docs/version-specific/supported-software/c/custodian.md index 5f5bf8590..dfda95a5b 100644 --- a/docs/version-specific/supported-software/c/custodian.md +++ b/docs/version-specific/supported-software/c/custodian.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cutadapt.md b/docs/version-specific/supported-software/c/cutadapt.md index da3689d18..5b32f22de 100644 --- a/docs/version-specific/supported-software/c/cutadapt.md +++ b/docs/version-specific/supported-software/c/cutadapt.md @@ -40,5 +40,6 @@ version | versionsuffix | toolchain ``4.2`` | | ``GCCcore/11.3.0`` ``4.4`` | | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cuteSV.md b/docs/version-specific/supported-software/c/cuteSV.md index 253bc8f6b..872d4ed8c 100644 --- a/docs/version-specific/supported-software/c/cuteSV.md +++ b/docs/version-specific/supported-software/c/cuteSV.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cwltool.md b/docs/version-specific/supported-software/c/cwltool.md index 0045e067e..b1b11743a 100644 --- a/docs/version-specific/supported-software/c/cwltool.md +++ b/docs/version-specific/supported-software/c/cwltool.md @@ -13,5 +13,6 @@ version | toolchain ``3.1.20221008225030`` | ``foss/2021a`` ``3.1.20221018083734`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cxxopts.md b/docs/version-specific/supported-software/c/cxxopts.md index 78c6c66d8..240d2ffe9 100644 --- a/docs/version-specific/supported-software/c/cxxopts.md +++ b/docs/version-specific/supported-software/c/cxxopts.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cysignals.md b/docs/version-specific/supported-software/c/cysignals.md index 4da105040..caabc1a91 100644 --- a/docs/version-specific/supported-software/c/cysignals.md +++ b/docs/version-specific/supported-software/c/cysignals.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.11.2`` | | ``GCCcore/11.3.0`` ``1.11.4`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8da964be3..c65a18222 100644 --- a/docs/version-specific/supported-software/c/cython-blis.md +++ b/docs/version-specific/supported-software/c/cython-blis.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cytoolz.md b/docs/version-specific/supported-software/c/cytoolz.md index f9ca5225a..fa338521a 100644 --- a/docs/version-specific/supported-software/c/cytoolz.md +++ b/docs/version-specific/supported-software/c/cytoolz.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.10.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``0.10.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cytosim.md b/docs/version-specific/supported-software/c/cytosim.md index 540069405..a70b49378 100644 --- a/docs/version-specific/supported-software/c/cytosim.md +++ b/docs/version-specific/supported-software/c/cytosim.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190117`` | ``-mkl`` | ``gomkl/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/cyvcf2.md b/docs/version-specific/supported-software/c/cyvcf2.md index 32b279ad6..c80627b4c 100644 --- a/docs/version-specific/supported-software/c/cyvcf2.md +++ b/docs/version-specific/supported-software/c/cyvcf2.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.11.5`` | | ``foss/2019a`` ``0.11.5`` | | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/c/index.md b/docs/version-specific/supported-software/c/index.md index 8b527b4d2..e442d705d 100644 --- a/docs/version-specific/supported-software/c/index.md +++ b/docs/version-specific/supported-software/c/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (c) -[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) +*(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) @@ -275,3 +277,7 @@ search: * [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 index 7cc39a95e..9c76ea9ef 100644 --- a/docs/version-specific/supported-software/d/DALI.md +++ b/docs/version-specific/supported-software/d/DALI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DANPOS2.md b/docs/version-specific/supported-software/d/DANPOS2.md index f8106ce59..71e5ed0de 100644 --- a/docs/version-specific/supported-software/d/DANPOS2.md +++ b/docs/version-specific/supported-software/d/DANPOS2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 53e714fa7..c343a9d7d 100644 --- a/docs/version-specific/supported-software/d/DAS_Tool.md +++ b/docs/version-specific/supported-software/d/DAS_Tool.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-R-4.1.2`` | ``foss/2021b`` ``1.1.3`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DB.md b/docs/version-specific/supported-software/d/DB.md index cc4170dde..70535d433 100644 --- a/docs/version-specific/supported-software/d/DB.md +++ b/docs/version-specific/supported-software/d/DB.md @@ -29,5 +29,6 @@ version | toolchain ``6.2.32`` | ``GCCcore/6.4.0`` ``6.2.32`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DBCSR.md b/docs/version-specific/supported-software/d/DBCSR.md index e7d8f3313..906caa870 100644 --- a/docs/version-specific/supported-software/d/DBCSR.md +++ b/docs/version-specific/supported-software/d/DBCSR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8d9920630..2ed013148 100644 --- a/docs/version-specific/supported-software/d/DBD-mysql.md +++ b/docs/version-specific/supported-software/d/DBD-mysql.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``4.050`` | | ``GCC/12.2.0`` ``4.050`` | ``-Perl-5.28.1`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DBG2OLC.md b/docs/version-specific/supported-software/d/DBG2OLC.md index 249bfc034..52d32e654 100644 --- a/docs/version-specific/supported-software/d/DBG2OLC.md +++ b/docs/version-specific/supported-software/d/DBG2OLC.md @@ -16,5 +16,6 @@ version | toolchain ``20180221`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``20200724`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cdfd1813e..9b1335729 100644 --- a/docs/version-specific/supported-software/d/DB_File.md +++ b/docs/version-specific/supported-software/d/DB_File.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``1.858`` | | ``GCCcore/11.3.0`` ``1.859`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DBus.md b/docs/version-specific/supported-software/d/DBus.md index 433611744..5cbda6803 100644 --- a/docs/version-specific/supported-software/d/DBus.md +++ b/docs/version-specific/supported-software/d/DBus.md @@ -29,5 +29,6 @@ version | toolchain ``1.15.4`` | ``GCCcore/12.3.0`` ``1.15.8`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DCMTK.md b/docs/version-specific/supported-software/d/DCMTK.md index b8cfb33e4..199d17e84 100644 --- a/docs/version-specific/supported-software/d/DCMTK.md +++ b/docs/version-specific/supported-software/d/DCMTK.md @@ -17,5 +17,6 @@ version | toolchain ``3.6.6`` | ``GCCcore/11.2.0`` ``3.6.7`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DEICODE.md b/docs/version-specific/supported-software/d/DEICODE.md index 0f3bb1b8f..62ff9fc63 100644 --- a/docs/version-specific/supported-software/d/DEICODE.md +++ b/docs/version-specific/supported-software/d/DEICODE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DETONATE.md b/docs/version-specific/supported-software/d/DETONATE.md index b2fbf5f1d..88217b6a8 100644 --- a/docs/version-specific/supported-software/d/DETONATE.md +++ b/docs/version-specific/supported-software/d/DETONATE.md @@ -13,5 +13,6 @@ version | toolchain ``1.11`` | ``GCC/12.3.0`` ``1.11`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DFA.md b/docs/version-specific/supported-software/d/DFA.md index bcf19a7ec..46743836a 100644 --- a/docs/version-specific/supported-software/d/DFA.md +++ b/docs/version-specific/supported-software/d/DFA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.4`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``2.1.2`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2ffa53573..2d99c7694 100644 --- a/docs/version-specific/supported-software/d/DFT-D3.md +++ b/docs/version-specific/supported-software/d/DFT-D3.md @@ -17,5 +17,6 @@ version | toolchain ``3.2.0`` | ``intel-compilers/2021.4.0`` ``3.2.0`` | ``intel-compilers/2022.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 24bff39fd..ba7fda236 100644 --- a/docs/version-specific/supported-software/d/DFT-D4.md +++ b/docs/version-specific/supported-software/d/DFT-D4.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``3.6.0`` | | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DFTB+.md b/docs/version-specific/supported-software/d/DFTB+.md index d9e93fec0..f402a4347 100644 --- a/docs/version-specific/supported-software/d/DFTB+.md +++ b/docs/version-specific/supported-software/d/DFTB+.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``19.1`` | ``-Python-2.7.16`` | ``foss/2019b`` ``21.1`` | | ``intel/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DGL.md b/docs/version-specific/supported-software/d/DGL.md index 0bd1d494b..38b8109c7 100644 --- a/docs/version-specific/supported-software/d/DGL.md +++ b/docs/version-specific/supported-software/d/DGL.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4c9957d0f..5094bf1ca 100644 --- a/docs/version-specific/supported-software/d/DIA-NN.md +++ b/docs/version-specific/supported-software/d/DIA-NN.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DIAL.md b/docs/version-specific/supported-software/d/DIAL.md index 1f756a2ae..6abe81171 100644 --- a/docs/version-specific/supported-software/d/DIAL.md +++ b/docs/version-specific/supported-software/d/DIAL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2011.06.06`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DIALOGUE.md b/docs/version-specific/supported-software/d/DIALOGUE.md index 9ff756881..93496bd7d 100644 --- a/docs/version-specific/supported-software/d/DIALOGUE.md +++ b/docs/version-specific/supported-software/d/DIALOGUE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20230228`` | ``-R-4.2.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DIAMOND.md b/docs/version-specific/supported-software/d/DIAMOND.md index fa3542a97..1174a1ca0 100644 --- a/docs/version-specific/supported-software/d/DIAMOND.md +++ b/docs/version-specific/supported-software/d/DIAMOND.md @@ -30,5 +30,6 @@ version | toolchain ``2.1.8`` | ``GCC/12.3.0`` ``2.1.9`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DIRAC.md b/docs/version-specific/supported-software/d/DIRAC.md index cfb229eb9..c02528d83 100644 --- a/docs/version-specific/supported-software/d/DIRAC.md +++ b/docs/version-specific/supported-software/d/DIRAC.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``23.0`` | ``-int64`` | ``intel/2023a`` ``23.0`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DLPack.md b/docs/version-specific/supported-software/d/DLPack.md index d8a616de4..456ef65b9 100644 --- a/docs/version-specific/supported-software/d/DLPack.md +++ b/docs/version-specific/supported-software/d/DLPack.md @@ -13,5 +13,6 @@ version | toolchain ``0.3`` | ``GCC/10.3.0`` ``0.8`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index eae418029..02664124c 100644 --- a/docs/version-specific/supported-software/d/DL_POLY_4.md +++ b/docs/version-specific/supported-software/d/DL_POLY_4.md @@ -15,5 +15,6 @@ version | toolchain ``5.1.0`` | ``foss/2022b`` ``5.1.0`` | ``intel/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ac205352c..90d817ee5 100644 --- a/docs/version-specific/supported-software/d/DL_POLY_Classic.md +++ b/docs/version-specific/supported-software/d/DL_POLY_Classic.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.9`` | ``-PLUMED-2.2.3`` | ``intel/2016b`` ``1.9`` | | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DMCfun.md b/docs/version-specific/supported-software/d/DMCfun.md index ab7a238df..996c5797e 100644 --- a/docs/version-specific/supported-software/d/DMCfun.md +++ b/docs/version-specific/supported-software/d/DMCfun.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.0`` | ``-R-3.6.2`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 430595f0c..2d063e858 100644 --- a/docs/version-specific/supported-software/d/DMLC-Core.md +++ b/docs/version-specific/supported-software/d/DMLC-Core.md @@ -13,5 +13,6 @@ version | toolchain ``0.5`` | ``GCC/10.3.0`` ``0.5`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DMTCP.md b/docs/version-specific/supported-software/d/DMTCP.md index 65fefe03b..4f822af79 100644 --- a/docs/version-specific/supported-software/d/DMTCP.md +++ b/docs/version-specific/supported-software/d/DMTCP.md @@ -20,5 +20,6 @@ version | toolchain ``2.6.0`` | ``GCCcore/9.3.0`` ``3.0.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DOLFIN.md b/docs/version-specific/supported-software/d/DOLFIN.md index 3cfa39152..038b422c5 100644 --- a/docs/version-specific/supported-software/d/DOLFIN.md +++ b/docs/version-specific/supported-software/d/DOLFIN.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2018.1.0.post1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DP3.md b/docs/version-specific/supported-software/d/DP3.md index ab2fc9ccc..d7610ddd7 100644 --- a/docs/version-specific/supported-software/d/DP3.md +++ b/docs/version-specific/supported-software/d/DP3.md @@ -13,5 +13,6 @@ version | toolchain ``6.0`` | ``foss/2022a`` ``6.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DRAGMAP.md b/docs/version-specific/supported-software/d/DRAGMAP.md index 881ffdb88..574efdc4d 100644 --- a/docs/version-specific/supported-software/d/DRAGMAP.md +++ b/docs/version-specific/supported-software/d/DRAGMAP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DROP.md b/docs/version-specific/supported-software/d/DROP.md index 47f338583..163712334 100644 --- a/docs/version-specific/supported-software/d/DROP.md +++ b/docs/version-specific/supported-software/d/DROP.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.1.1`` | ``-R-4.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DSA.md b/docs/version-specific/supported-software/d/DSA.md index 7ede02ba7..be77ca250 100644 --- a/docs/version-specific/supported-software/d/DSA.md +++ b/docs/version-specific/supported-software/d/DSA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DSRC.md b/docs/version-specific/supported-software/d/DSRC.md index 75cf214b5..55b8dcf2b 100644 --- a/docs/version-specific/supported-software/d/DSRC.md +++ b/docs/version-specific/supported-software/d/DSRC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0rc`` | ``-linux-64-bit`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DUBStepR.md b/docs/version-specific/supported-software/d/DUBStepR.md index 183fe4a97..f8b1784f1 100644 --- a/docs/version-specific/supported-software/d/DUBStepR.md +++ b/docs/version-specific/supported-software/d/DUBStepR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-R-4.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Dakota.md b/docs/version-specific/supported-software/d/Dakota.md index a34fb241d..701433fe4 100644 --- a/docs/version-specific/supported-software/d/Dakota.md +++ b/docs/version-specific/supported-software/d/Dakota.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.16.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DaliLite.md b/docs/version-specific/supported-software/d/DaliLite.md index 44aee6288..36a87cd38 100644 --- a/docs/version-specific/supported-software/d/DaliLite.md +++ b/docs/version-specific/supported-software/d/DaliLite.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.1`` | ``gompi/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Dalton.md b/docs/version-specific/supported-software/d/Dalton.md index 73593ac83..a15f9e98c 100644 --- a/docs/version-specific/supported-software/d/Dalton.md +++ b/docs/version-specific/supported-software/d/Dalton.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2020.0`` | | ``foss/2021a`` ``2020.1`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeMixT.md b/docs/version-specific/supported-software/d/DeMixT.md index 7fbebb83a..8b3c8cc09 100644 --- a/docs/version-specific/supported-software/d/DeMixT.md +++ b/docs/version-specific/supported-software/d/DeMixT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeconICA.md b/docs/version-specific/supported-software/d/DeconICA.md index b8de23497..e8f0b8705 100644 --- a/docs/version-specific/supported-software/d/DeconICA.md +++ b/docs/version-specific/supported-software/d/DeconICA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeepLabCut.md b/docs/version-specific/supported-software/d/DeepLabCut.md index 68732a1a1..4ba826ec8 100644 --- a/docs/version-specific/supported-software/d/DeepLabCut.md +++ b/docs/version-specific/supported-software/d/DeepLabCut.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.2.0.6`` | | ``foss/2021a`` ``2.3.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeepLoc.md b/docs/version-specific/supported-software/d/DeepLoc.md index afbd4b909..d9aa4dbbd 100644 --- a/docs/version-specific/supported-software/d/DeepLoc.md +++ b/docs/version-specific/supported-software/d/DeepLoc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeepMod2.md b/docs/version-specific/supported-software/d/DeepMod2.md index 4b6d91c6f..833f8ef01 100644 --- a/docs/version-specific/supported-software/d/DeepMod2.md +++ b/docs/version-specific/supported-software/d/DeepMod2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeepSurv.md b/docs/version-specific/supported-software/d/DeepSurv.md index 93f14adba..5095bfd1d 100644 --- a/docs/version-specific/supported-software/d/DeepSurv.md +++ b/docs/version-specific/supported-software/d/DeepSurv.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0-20180922`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Delft3D.md b/docs/version-specific/supported-software/d/Delft3D.md index 27ae2e832..3905f32f5 100644 --- a/docs/version-specific/supported-software/d/Delft3D.md +++ b/docs/version-specific/supported-software/d/Delft3D.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.04.01`` | ``-FLOW`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Delly.md b/docs/version-specific/supported-software/d/Delly.md index 8d2cb2331..97a69d8ca 100644 --- a/docs/version-specific/supported-software/d/Delly.md +++ b/docs/version-specific/supported-software/d/Delly.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.1.5`` | | ``GCC/11.3.0`` ``1.1.6`` | | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DeltaLake.md b/docs/version-specific/supported-software/d/DeltaLake.md index 242331bc5..1549dd4a9 100644 --- a/docs/version-specific/supported-software/d/DeltaLake.md +++ b/docs/version-specific/supported-software/d/DeltaLake.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.15.1`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Demystify.md b/docs/version-specific/supported-software/d/Demystify.md index a2108e237..8d4c54055 100644 --- a/docs/version-specific/supported-software/d/Demystify.md +++ b/docs/version-specific/supported-software/d/Demystify.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.17`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DendroPy.md b/docs/version-specific/supported-software/d/DendroPy.md index 1fa750339..2ff8797cf 100644 --- a/docs/version-specific/supported-software/d/DendroPy.md +++ b/docs/version-specific/supported-software/d/DendroPy.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``4.5.2`` | | ``GCCcore/12.2.0`` ``4.6.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DensPart.md b/docs/version-specific/supported-software/d/DensPart.md index 510c6f1a5..636e950ca 100644 --- a/docs/version-specific/supported-software/d/DensPart.md +++ b/docs/version-specific/supported-software/d/DensPart.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220603`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Deprecated.md b/docs/version-specific/supported-software/d/Deprecated.md index d0bc0435a..19f8ca27e 100644 --- a/docs/version-specific/supported-software/d/Deprecated.md +++ b/docs/version-specific/supported-software/d/Deprecated.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.13`` | ``foss/2022a`` ``1.2.14`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Detectron2.md b/docs/version-specific/supported-software/d/Detectron2.md index 73a1e2cf7..61cde4b36 100644 --- a/docs/version-specific/supported-software/d/Detectron2.md +++ b/docs/version-specific/supported-software/d/Detectron2.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.6`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Devito.md b/docs/version-specific/supported-software/d/Devito.md index 9d2a4b629..dd35b0d66 100644 --- a/docs/version-specific/supported-software/d/Devito.md +++ b/docs/version-specific/supported-software/d/Devito.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.6.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 87d449698..23ca7d430 100644 --- a/docs/version-specific/supported-software/d/DiCE-ML.md +++ b/docs/version-specific/supported-software/d/DiCE-ML.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Dice.md b/docs/version-specific/supported-software/d/Dice.md index 048b09dc5..2b1b586f5 100644 --- a/docs/version-specific/supported-software/d/Dice.md +++ b/docs/version-specific/supported-software/d/Dice.md @@ -13,5 +13,6 @@ version | toolchain ``20221025`` | ``foss/2022a`` ``20240101`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DicomBrowser.md b/docs/version-specific/supported-software/d/DicomBrowser.md index a1296bfc9..490b4a3be 100644 --- a/docs/version-specific/supported-software/d/DicomBrowser.md +++ b/docs/version-specific/supported-software/d/DicomBrowser.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.0b5`` | ``-Java-1.7.0_80`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DiffBind.md b/docs/version-specific/supported-software/d/DiffBind.md index 058a22338..08b6fb7be 100644 --- a/docs/version-specific/supported-software/d/DiffBind.md +++ b/docs/version-specific/supported-software/d/DiffBind.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.6.5`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Diffutils.md b/docs/version-specific/supported-software/d/Diffutils.md index 4b1780a42..5f6fc2059 100644 --- a/docs/version-specific/supported-software/d/Diffutils.md +++ b/docs/version-specific/supported-software/d/Diffutils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DistributedStream.md b/docs/version-specific/supported-software/d/DistributedStream.md index da35c8fca..88113aea1 100644 --- a/docs/version-specific/supported-software/d/DistributedStream.md +++ b/docs/version-specific/supported-software/d/DistributedStream.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``gompi/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DjVuLibre.md b/docs/version-specific/supported-software/d/DjVuLibre.md index 34634be6d..2703755c2 100644 --- a/docs/version-specific/supported-software/d/DjVuLibre.md +++ b/docs/version-specific/supported-software/d/DjVuLibre.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.5.28`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Doris.md b/docs/version-specific/supported-software/d/Doris.md index 9501a2450..e7218359c 100644 --- a/docs/version-specific/supported-software/d/Doris.md +++ b/docs/version-specific/supported-software/d/Doris.md @@ -15,5 +15,6 @@ version | toolchain ``4.04beta4`` | ``intel/2017a`` ``4.06beta2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DosageConvertor.md b/docs/version-specific/supported-software/d/DosageConvertor.md index d8f2ab05e..f344a4278 100644 --- a/docs/version-specific/supported-software/d/DosageConvertor.md +++ b/docs/version-specific/supported-software/d/DosageConvertor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DoubletFinder.md b/docs/version-specific/supported-software/d/DoubletFinder.md index 737df0b44..2c66a40c1 100644 --- a/docs/version-specific/supported-software/d/DoubletFinder.md +++ b/docs/version-specific/supported-software/d/DoubletFinder.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.0.3-20230819`` | ``-R-4.2.2`` | ``foss/2022b`` ``2.0.3`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Doxygen.md b/docs/version-specific/supported-software/d/Doxygen.md index c6fe7af6f..3379d3902 100644 --- a/docs/version-specific/supported-software/d/Doxygen.md +++ b/docs/version-specific/supported-software/d/Doxygen.md @@ -39,5 +39,6 @@ version | toolchain ``1.9.7`` | ``GCCcore/12.3.0`` ``1.9.8`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Drake.md b/docs/version-specific/supported-software/d/Drake.md index a5842743f..5d24bfea0 100644 --- a/docs/version-specific/supported-software/d/Drake.md +++ b/docs/version-specific/supported-software/d/Drake.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/Dsuite.md b/docs/version-specific/supported-software/d/Dsuite.md index 8123b2760..52724404b 100644 --- a/docs/version-specific/supported-software/d/Dsuite.md +++ b/docs/version-specific/supported-software/d/Dsuite.md @@ -14,5 +14,6 @@ version | toolchain ``20210718`` | ``GCC/10.3.0`` ``20210718`` | ``intel-compilers/2021.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DualSPHysics.md b/docs/version-specific/supported-software/d/DualSPHysics.md index 49d572189..81a60d16e 100644 --- a/docs/version-specific/supported-software/d/DualSPHysics.md +++ b/docs/version-specific/supported-software/d/DualSPHysics.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.0.175`` | ``-CUDA-%(cudaver)s`` | ``GCC/11.2.0`` ``5.0.175`` | | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/DyMat.md b/docs/version-specific/supported-software/d/DyMat.md index 11534931b..b133baca2 100644 --- a/docs/version-specific/supported-software/d/DyMat.md +++ b/docs/version-specific/supported-software/d/DyMat.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-2020-12-12`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dRep.md b/docs/version-specific/supported-software/d/dRep.md index 5a1269589..964e32f9d 100644 --- a/docs/version-specific/supported-software/d/dRep.md +++ b/docs/version-specific/supported-software/d/dRep.md @@ -13,5 +13,6 @@ version | toolchain ``3.0.0`` | ``foss/2021a`` ``3.4.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dSFMT.md b/docs/version-specific/supported-software/d/dSFMT.md index d5bfa98ce..0ebc7de07 100644 --- a/docs/version-specific/supported-software/d/dSFMT.md +++ b/docs/version-specific/supported-software/d/dSFMT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.5`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dadi.md b/docs/version-specific/supported-software/d/dadi.md index 83227fe57..4f8de69e2 100644 --- a/docs/version-specific/supported-software/d/dadi.md +++ b/docs/version-specific/supported-software/d/dadi.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.0`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dagitty.md b/docs/version-specific/supported-software/d/dagitty.md index f7939d542..4881f6383 100644 --- a/docs/version-specific/supported-software/d/dagitty.md +++ b/docs/version-specific/supported-software/d/dagitty.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2-2`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/damageproto.md b/docs/version-specific/supported-software/d/damageproto.md index 7785a868c..13330c71a 100644 --- a/docs/version-specific/supported-software/d/damageproto.md +++ b/docs/version-specific/supported-software/d/damageproto.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.1`` | ``foss/2016a`` ``1.2.1`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dammit.md b/docs/version-specific/supported-software/d/dammit.md index 99a484335..b8fd17eb5 100644 --- a/docs/version-specific/supported-software/d/dammit.md +++ b/docs/version-specific/supported-software/d/dammit.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.2`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 67698b235..d59afc7d7 100644 --- a/docs/version-specific/supported-software/d/dask-labextension.md +++ b/docs/version-specific/supported-software/d/dask-labextension.md @@ -14,5 +14,6 @@ version | toolchain ``7.0.0`` | ``foss/2023a`` ``7.0.0`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dask.md b/docs/version-specific/supported-software/d/dask.md index 36341c075..729e376e0 100644 --- a/docs/version-specific/supported-software/d/dask.md +++ b/docs/version-specific/supported-software/d/dask.md @@ -51,5 +51,6 @@ version | versionsuffix | toolchain ``2023.9.2`` | | ``foss/2023a`` ``2024.5.1`` | | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/datalad.md b/docs/version-specific/supported-software/d/datalad.md index 0f8345689..6ece7b30b 100644 --- a/docs/version-specific/supported-software/d/datalad.md +++ b/docs/version-specific/supported-software/d/datalad.md @@ -13,5 +13,6 @@ version | toolchain ``0.18.4`` | ``GCCcore/12.2.0`` ``0.19.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/datamash.md b/docs/version-specific/supported-software/d/datamash.md index 6478129b2..4c6ef594f 100644 --- a/docs/version-specific/supported-software/d/datamash.md +++ b/docs/version-specific/supported-software/d/datamash.md @@ -16,5 +16,6 @@ version | toolchain ``1.5`` | ``GCCcore/8.3.0`` ``1.8`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/davix.md b/docs/version-specific/supported-software/d/davix.md index 675c46c5a..ba298a1f6 100644 --- a/docs/version-specific/supported-software/d/davix.md +++ b/docs/version-specific/supported-software/d/davix.md @@ -13,5 +13,6 @@ version | toolchain ``0.6.6`` | ``intel/2017a`` ``0.7.5`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 341e97a3c..13d75c84f 100644 --- a/docs/version-specific/supported-software/d/dbus-glib.md +++ b/docs/version-specific/supported-software/d/dbus-glib.md @@ -22,5 +22,6 @@ version | toolchain ``0.112`` | ``GCCcore/11.2.0`` ``0.112`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dclone.md b/docs/version-specific/supported-software/d/dclone.md index ba5a9136b..39ed9674d 100644 --- a/docs/version-specific/supported-software/d/dclone.md +++ b/docs/version-specific/supported-software/d/dclone.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3-0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dcm2niix.md b/docs/version-specific/supported-software/d/dcm2niix.md index 4aa3145ae..2ab2dfdad 100644 --- a/docs/version-specific/supported-software/d/dcm2niix.md +++ b/docs/version-specific/supported-software/d/dcm2niix.md @@ -20,5 +20,6 @@ version | toolchain ``1.0.20220720`` | ``GCCcore/11.3.0`` ``1.0.20230411`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dd.md b/docs/version-specific/supported-software/d/dd.md index 8e6cce0d1..b3a3723b3 100644 --- a/docs/version-specific/supported-software/d/dd.md +++ b/docs/version-specific/supported-software/d/dd.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 241f9a231..f8660de85 100644 --- a/docs/version-specific/supported-software/d/deal.II.md +++ b/docs/version-specific/supported-software/d/deal.II.md @@ -15,5 +15,6 @@ version | toolchain ``9.3.3`` | ``foss/2021a`` ``9.5.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/deap.md b/docs/version-specific/supported-software/d/deap.md index 63fbb4b11..60c5d52b0 100644 --- a/docs/version-specific/supported-software/d/deap.md +++ b/docs/version-specific/supported-software/d/deap.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/decona.md b/docs/version-specific/supported-software/d/decona.md index c340d01c8..2bb1792da 100644 --- a/docs/version-specific/supported-software/d/decona.md +++ b/docs/version-specific/supported-software/d/decona.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/deconf.md b/docs/version-specific/supported-software/d/deconf.md index 054c38682..54a094eed 100644 --- a/docs/version-specific/supported-software/d/deconf.md +++ b/docs/version-specific/supported-software/d/deconf.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/deepTools.md b/docs/version-specific/supported-software/d/deepTools.md index 5d67784b2..632b314b9 100644 --- a/docs/version-specific/supported-software/d/deepTools.md +++ b/docs/version-specific/supported-software/d/deepTools.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``3.5.1`` | | ``foss/2021b`` ``3.5.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/deepdiff.md b/docs/version-specific/supported-software/d/deepdiff.md index c4bb708ac..17415efe8 100644 --- a/docs/version-specific/supported-software/d/deepdiff.md +++ b/docs/version-specific/supported-software/d/deepdiff.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``6.7.1`` | | ``GCCcore/12.2.0`` ``6.7.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/deepfold.md b/docs/version-specific/supported-software/d/deepfold.md index 90578c8e9..5fe0ef097 100644 --- a/docs/version-specific/supported-software/d/deepfold.md +++ b/docs/version-specific/supported-software/d/deepfold.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20240308`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/deepmedic.md b/docs/version-specific/supported-software/d/deepmedic.md index 63cc65128..56305c133 100644 --- a/docs/version-specific/supported-software/d/deepmedic.md +++ b/docs/version-specific/supported-software/d/deepmedic.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.8.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.8.2`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/denseweight.md b/docs/version-specific/supported-software/d/denseweight.md index f3a8fc242..1298ef6cd 100644 --- a/docs/version-specific/supported-software/d/denseweight.md +++ b/docs/version-specific/supported-software/d/denseweight.md @@ -13,5 +13,6 @@ version | toolchain ``0.1.2`` | ``foss/2022a`` ``0.1.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ac0d53a5b..4f0aa5d32 100644 --- a/docs/version-specific/supported-software/d/desktop-file-utils.md +++ b/docs/version-specific/supported-software/d/desktop-file-utils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.27`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/destiny.md b/docs/version-specific/supported-software/d/destiny.md index 5336ea8af..7075b60aa 100644 --- a/docs/version-specific/supported-software/d/destiny.md +++ b/docs/version-specific/supported-software/d/destiny.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.6`` | ``-R-3.4.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1508ec202..5d6015a34 100644 --- a/docs/version-specific/supported-software/d/devbio-napari.md +++ b/docs/version-specific/supported-software/d/devbio-napari.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.10.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.10.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bc29e0de9..792cf4390 100644 --- a/docs/version-specific/supported-software/d/dftd3-lib.md +++ b/docs/version-specific/supported-software/d/dftd3-lib.md @@ -13,5 +13,6 @@ version | toolchain ``0.9`` | ``GCC/8.3.0`` ``0.9`` | ``intel-compilers/2021.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dftd4.md b/docs/version-specific/supported-software/d/dftd4.md index 9cce18745..d5b0fbcb5 100644 --- a/docs/version-specific/supported-software/d/dftd4.md +++ b/docs/version-specific/supported-software/d/dftd4.md @@ -13,5 +13,6 @@ version | toolchain ``3.4.0`` | ``gfbf/2022b`` ``3.4.0`` | ``iimkl/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dialog.md b/docs/version-specific/supported-software/d/dialog.md index 61df0fb27..874e5d8eb 100644 --- a/docs/version-specific/supported-software/d/dialog.md +++ b/docs/version-specific/supported-software/d/dialog.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3-20231002`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dicom2nifti.md b/docs/version-specific/supported-software/d/dicom2nifti.md index cd67019e5..c99a5632e 100644 --- a/docs/version-specific/supported-software/d/dicom2nifti.md +++ b/docs/version-specific/supported-software/d/dicom2nifti.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``foss/2020b`` ``2.3.0`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dijitso.md b/docs/version-specific/supported-software/d/dijitso.md index adf6683a2..f427e1c16 100644 --- a/docs/version-specific/supported-software/d/dijitso.md +++ b/docs/version-specific/supported-software/d/dijitso.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dill.md b/docs/version-specific/supported-software/d/dill.md index 9b7efacf1..e339da528 100644 --- a/docs/version-specific/supported-software/d/dill.md +++ b/docs/version-specific/supported-software/d/dill.md @@ -19,5 +19,6 @@ version | toolchain ``0.3.7`` | ``GCCcore/12.2.0`` ``0.3.7`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/distributed.md b/docs/version-specific/supported-software/d/distributed.md index ef870c0a3..1cdf73a37 100644 --- a/docs/version-specific/supported-software/d/distributed.md +++ b/docs/version-specific/supported-software/d/distributed.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.14.3`` | ``-Python-3.5.2`` | ``intel/2016b`` ``1.21.6`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dlb.md b/docs/version-specific/supported-software/d/dlb.md index 3205ef63e..2c14567b9 100644 --- a/docs/version-specific/supported-software/d/dlb.md +++ b/docs/version-specific/supported-software/d/dlb.md @@ -17,5 +17,6 @@ version | toolchain ``3.4`` | ``gompi/2023b`` ``3.4`` | ``iimpi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dlib.md b/docs/version-specific/supported-software/d/dlib.md index 70bfba6ee..c27f9108f 100644 --- a/docs/version-specific/supported-software/d/dlib.md +++ b/docs/version-specific/supported-software/d/dlib.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``19.22`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``19.22`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index eabea009d..e5eb23a69 100644 --- a/docs/version-specific/supported-software/d/dm-haiku.md +++ b/docs/version-specific/supported-software/d/dm-haiku.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.0.9`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.0.9`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 97f29a783..4b419a0cb 100644 --- a/docs/version-specific/supported-software/d/dm-reverb.md +++ b/docs/version-specific/supported-software/d/dm-reverb.md @@ -13,5 +13,6 @@ version | toolchain ``0.2.0`` | ``foss/2020b`` ``0.7.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index eb285919c..15f25baa5 100644 --- a/docs/version-specific/supported-software/d/dm-tree.md +++ b/docs/version-specific/supported-software/d/dm-tree.md @@ -17,5 +17,6 @@ version | toolchain ``0.1.8`` | ``GCCcore/11.3.0`` ``0.1.8`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dominate.md b/docs/version-specific/supported-software/d/dominate.md index f0aa6bbaa..5679a3d20 100644 --- a/docs/version-specific/supported-software/d/dominate.md +++ b/docs/version-specific/supported-software/d/dominate.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dorado.md b/docs/version-specific/supported-software/d/dorado.md index bb623f024..f3d3d8093 100644 --- a/docs/version-specific/supported-software/d/dorado.md +++ b/docs/version-specific/supported-software/d/dorado.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.5.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ab9de91b6..4701e063a 100644 --- a/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md +++ b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md @@ -14,5 +14,6 @@ version | toolchain ``5.0.17`` | ``GCCcore/10.3.0`` ``6.0.1`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e4016b78a..9c7a7de01 100644 --- a/docs/version-specific/supported-software/d/dotNET-Core.md +++ b/docs/version-specific/supported-software/d/dotNET-Core.md @@ -15,5 +15,6 @@ version | toolchain ``8.0.203`` | ``system`` ``8.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 94016780b..a3eb92bba 100644 --- a/docs/version-specific/supported-software/d/dotNET-SDK.md +++ b/docs/version-specific/supported-software/d/dotNET-SDK.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.1.300`` | ``-linux-x64`` | ``system`` ``6.0.101`` | ``-linux-x64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1efc4a8c8..0b53524f1 100644 --- a/docs/version-specific/supported-software/d/double-conversion.md +++ b/docs/version-specific/supported-software/d/double-conversion.md @@ -22,5 +22,6 @@ version | toolchain ``3.3.0`` | ``GCCcore/12.3.0`` ``3.3.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f4fe1d71f..2fa8d7b9b 100644 --- a/docs/version-specific/supported-software/d/drmaa-python.md +++ b/docs/version-specific/supported-software/d/drmaa-python.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.9`` | ``-slurm`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dropEst.md b/docs/version-specific/supported-software/d/dropEst.md index 0c6903426..a8ecb6778 100644 --- a/docs/version-specific/supported-software/d/dropEst.md +++ b/docs/version-specific/supported-software/d/dropEst.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.1`` | ``-R-3.4.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dtcmp.md b/docs/version-specific/supported-software/d/dtcmp.md index 78aea203d..06439934c 100644 --- a/docs/version-specific/supported-software/d/dtcmp.md +++ b/docs/version-specific/supported-software/d/dtcmp.md @@ -18,5 +18,6 @@ version | toolchain ``1.1.4`` | ``gompi/2022a`` ``1.1.4`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dtcwt.md b/docs/version-specific/supported-software/d/dtcwt.md index e7612e28f..b2eae35ce 100644 --- a/docs/version-specific/supported-software/d/dtcwt.md +++ b/docs/version-specific/supported-software/d/dtcwt.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.12.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.12.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a3bcdfb0c..a642290c6 100644 --- a/docs/version-specific/supported-software/d/dune-core.md +++ b/docs/version-specific/supported-software/d/dune-core.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.0.post1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 14f522cfc..055a54ae4 100644 --- a/docs/version-specific/supported-software/d/dune-fem.md +++ b/docs/version-specific/supported-software/d/dune-fem.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.0.6`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4106b6cd5..e3083eee9 100644 --- a/docs/version-specific/supported-software/d/duplex-tools.md +++ b/docs/version-specific/supported-software/d/duplex-tools.md @@ -13,5 +13,6 @@ version | toolchain ``0.3.1`` | ``foss/2022a`` ``0.3.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5588d5d43..948429c36 100644 --- a/docs/version-specific/supported-software/d/dx-toolkit.md +++ b/docs/version-specific/supported-software/d/dx-toolkit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.350.1`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dxpy.md b/docs/version-specific/supported-software/d/dxpy.md index 2a289dc72..63488287f 100644 --- a/docs/version-specific/supported-software/d/dxpy.md +++ b/docs/version-specific/supported-software/d/dxpy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.266.1`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.345.0`` | | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/dynesty.md b/docs/version-specific/supported-software/d/dynesty.md index 9333dbd45..86b42c6d0 100644 --- a/docs/version-specific/supported-software/d/dynesty.md +++ b/docs/version-specific/supported-software/d/dynesty.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.3`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/d/index.md b/docs/version-specific/supported-software/d/index.md index de7f54e68..2131aaeeb 100644 --- a/docs/version-specific/supported-software/d/index.md +++ b/docs/version-specific/supported-software/d/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (d) -[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) +*(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) @@ -129,3 +131,7 @@ search: * [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 index 67e9d0b8d..beaaf5526 100644 --- a/docs/version-specific/supported-software/e/E-ANTIC.md +++ b/docs/version-specific/supported-software/e/E-ANTIC.md @@ -15,5 +15,6 @@ version | toolchain ``1.3.0`` | ``gfbf/2022a`` ``2.0.2`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ECL.md b/docs/version-specific/supported-software/e/ECL.md index 737463353..7c48a9ae9 100644 --- a/docs/version-specific/supported-software/e/ECL.md +++ b/docs/version-specific/supported-software/e/ECL.md @@ -13,5 +13,6 @@ version | toolchain ``23.9.9`` | ``GCCcore/11.3.0`` ``24.5.10`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ED2.md b/docs/version-specific/supported-software/e/ED2.md index e9381076a..2af91262c 100644 --- a/docs/version-specific/supported-software/e/ED2.md +++ b/docs/version-specific/supported-software/e/ED2.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20170201`` | ``-serial`` | ``intel/2017a`` ``20170201`` | | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EDirect.md b/docs/version-specific/supported-software/e/EDirect.md index 0c71577a5..a7465ca5c 100644 --- a/docs/version-specific/supported-software/e/EDirect.md +++ b/docs/version-specific/supported-software/e/EDirect.md @@ -14,5 +14,6 @@ version | toolchain ``20.5.20231006`` | ``GCCcore/12.2.0`` ``20.5.20231006`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EGTtools.md b/docs/version-specific/supported-software/e/EGTtools.md index f90082315..e4a9877bf 100644 --- a/docs/version-specific/supported-software/e/EGTtools.md +++ b/docs/version-specific/supported-software/e/EGTtools.md @@ -13,5 +13,6 @@ version | toolchain ``0.1.10.dev2`` | ``foss/2021b`` ``0.1.11`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EIGENSOFT.md b/docs/version-specific/supported-software/e/EIGENSOFT.md index 6e44eb276..9da97474d 100644 --- a/docs/version-specific/supported-software/e/EIGENSOFT.md +++ b/docs/version-specific/supported-software/e/EIGENSOFT.md @@ -20,5 +20,6 @@ version | toolchain ``7.2.1`` | ``foss/2021a`` ``7.2.1`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ELFIO.md b/docs/version-specific/supported-software/e/ELFIO.md index 227657efd..e4129f864 100644 --- a/docs/version-specific/supported-software/e/ELFIO.md +++ b/docs/version-specific/supported-software/e/ELFIO.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.9`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ELPA.md b/docs/version-specific/supported-software/e/ELPA.md index c395bb0fb..f71f8873d 100644 --- a/docs/version-specific/supported-software/e/ELPA.md +++ b/docs/version-specific/supported-software/e/ELPA.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``2023.11.001`` | | ``foss/2023b`` ``2023.11.001`` | | ``intel/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ELPH.md b/docs/version-specific/supported-software/e/ELPH.md index f91e0c684..f57ca7678 100644 --- a/docs/version-specific/supported-software/e/ELPH.md +++ b/docs/version-specific/supported-software/e/ELPH.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 616e088f5..c279a9f44 100644 --- a/docs/version-specific/supported-software/e/ELSI-RCI.md +++ b/docs/version-specific/supported-software/e/ELSI-RCI.md @@ -17,5 +17,6 @@ version | toolchain ``0.1.0`` | ``intel-compilers/2021.2.0`` ``0.1.0`` | ``intel-compilers/2021.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ELSI.md b/docs/version-specific/supported-software/e/ELSI.md index 03d9da44f..2617778d9 100644 --- a/docs/version-specific/supported-software/e/ELSI.md +++ b/docs/version-specific/supported-software/e/ELSI.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``2.7.1`` | ``-PEXSI`` | ``foss/2021a`` ``2.7.1`` | ``-PEXSI`` | ``intel/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EMAN2.md b/docs/version-specific/supported-software/e/EMAN2.md index f24985f81..14a51e840 100644 --- a/docs/version-specific/supported-software/e/EMAN2.md +++ b/docs/version-specific/supported-software/e/EMAN2.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` ``2.3`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EMBOSS.md b/docs/version-specific/supported-software/e/EMBOSS.md index 4ad26584a..1e8990731 100644 --- a/docs/version-specific/supported-software/e/EMBOSS.md +++ b/docs/version-specific/supported-software/e/EMBOSS.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``6.6.0`` | | ``intel/2017a`` ``6.6.0`` | | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EMU.md b/docs/version-specific/supported-software/e/EMU.md index 59355966f..6ef38ee01 100644 --- a/docs/version-specific/supported-software/e/EMU.md +++ b/docs/version-specific/supported-software/e/EMU.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.66`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EPD.md b/docs/version-specific/supported-software/e/EPD.md index 7c4c5ad71..8c6c09401 100644 --- a/docs/version-specific/supported-software/e/EPD.md +++ b/docs/version-specific/supported-software/e/EPD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.3-2-rh5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EPIC.md b/docs/version-specific/supported-software/e/EPIC.md index 3713b8ca7..c8a40cb62 100644 --- a/docs/version-specific/supported-software/e/EPIC.md +++ b/docs/version-specific/supported-software/e/EPIC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5643ff467..d5d28a798 100644 --- a/docs/version-specific/supported-software/e/ESL-Bundle.md +++ b/docs/version-specific/supported-software/e/ESL-Bundle.md @@ -13,5 +13,6 @@ version | toolchain ``0.6.1`` | ``foss/2020b`` ``0.6.1`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 985f66bf6..ba4568d02 100644 --- a/docs/version-specific/supported-software/e/ESM-2.md +++ b/docs/version-specific/supported-software/e/ESM-2.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.0.0`` | | ``foss/2022b`` ``2.0.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ESMF.md b/docs/version-specific/supported-software/e/ESMF.md index fbe5320c9..70648616d 100644 --- a/docs/version-specific/supported-software/e/ESMF.md +++ b/docs/version-specific/supported-software/e/ESMF.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``8.3.0`` | | ``intel/2022a`` ``8.4.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ESMPy.md b/docs/version-specific/supported-software/e/ESMPy.md index 7c76d05db..9fa58c3b7 100644 --- a/docs/version-specific/supported-software/e/ESMPy.md +++ b/docs/version-specific/supported-software/e/ESMPy.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``8.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``8.0.1`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ESMValTool.md b/docs/version-specific/supported-software/e/ESMValTool.md index afd43d792..268383fe7 100644 --- a/docs/version-specific/supported-software/e/ESMValTool.md +++ b/docs/version-specific/supported-software/e/ESMValTool.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ESPResSo.md b/docs/version-specific/supported-software/e/ESPResSo.md index e99ee0750..e4c7d0ace 100644 --- a/docs/version-specific/supported-software/e/ESPResSo.md +++ b/docs/version-specific/supported-software/e/ESPResSo.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``4.2.1`` | | ``foss/2023a`` ``4.2.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ETE.md b/docs/version-specific/supported-software/e/ETE.md index ad4e09f10..cb9eca8c5 100644 --- a/docs/version-specific/supported-software/e/ETE.md +++ b/docs/version-specific/supported-software/e/ETE.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``3.1.3`` | | ``foss/2022b`` ``3.1.3`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 67051fd0c..217f43cc9 100644 --- a/docs/version-specific/supported-software/e/ETSF_IO.md +++ b/docs/version-specific/supported-software/e/ETSF_IO.md @@ -17,5 +17,6 @@ version | toolchain ``1.0.4`` | ``intel/2018a`` ``1.0.4`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EUKulele.md b/docs/version-specific/supported-software/e/EUKulele.md index a441d9443..2634b444f 100644 --- a/docs/version-specific/supported-software/e/EUKulele.md +++ b/docs/version-specific/supported-software/e/EUKulele.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.6`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EVcouplings.md b/docs/version-specific/supported-software/e/EVcouplings.md index 982bd1851..171c48ab4 100644 --- a/docs/version-specific/supported-software/e/EVcouplings.md +++ b/docs/version-specific/supported-software/e/EVcouplings.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EZC3D.md b/docs/version-specific/supported-software/e/EZC3D.md index 1e69f351e..65de0ebac 100644 --- a/docs/version-specific/supported-software/e/EZC3D.md +++ b/docs/version-specific/supported-software/e/EZC3D.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EasyBuild.md b/docs/version-specific/supported-software/e/EasyBuild.md index e1d868900..e71ff68c3 100644 --- a/docs/version-specific/supported-software/e/EasyBuild.md +++ b/docs/version-specific/supported-software/e/EasyBuild.md @@ -112,5 +112,6 @@ version | toolchain ``4.9.0`` | ``system`` ``4.9.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EasyMocap.md b/docs/version-specific/supported-software/e/EasyMocap.md index ae62d51b6..3264b699e 100644 --- a/docs/version-specific/supported-software/e/EasyMocap.md +++ b/docs/version-specific/supported-software/e/EasyMocap.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EasyQC.md b/docs/version-specific/supported-software/e/EasyQC.md index 03f821a6d..f6d16c1a4 100644 --- a/docs/version-specific/supported-software/e/EasyQC.md +++ b/docs/version-specific/supported-software/e/EasyQC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.2`` | ``-R-3.3.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EggLib.md b/docs/version-specific/supported-software/e/EggLib.md index 424ea6b50..d91c3429e 100644 --- a/docs/version-specific/supported-software/e/EggLib.md +++ b/docs/version-specific/supported-software/e/EggLib.md @@ -13,5 +13,6 @@ version | toolchain ``2.1.10`` | ``intel/2016a`` ``3.3.0`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Eigen.md b/docs/version-specific/supported-software/e/Eigen.md index b0cfd4caf..24733066e 100644 --- a/docs/version-specific/supported-software/e/Eigen.md +++ b/docs/version-specific/supported-software/e/Eigen.md @@ -42,5 +42,6 @@ version | toolchain ``3.4.0`` | ``GCCcore/13.2.0`` ``3.4.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EigenExa.md b/docs/version-specific/supported-software/e/EigenExa.md index 1ff02838c..b87956d11 100644 --- a/docs/version-specific/supported-software/e/EigenExa.md +++ b/docs/version-specific/supported-software/e/EigenExa.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.11`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Elk.md b/docs/version-specific/supported-software/e/Elk.md index d82335cec..f38abab39 100644 --- a/docs/version-specific/supported-software/e/Elk.md +++ b/docs/version-specific/supported-software/e/Elk.md @@ -17,5 +17,6 @@ version | toolchain ``7.2.42`` | ``foss/2021a`` ``8.5.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Elmer.md b/docs/version-specific/supported-software/e/Elmer.md index 7080494d6..fafdc166c 100644 --- a/docs/version-specific/supported-software/e/Elmer.md +++ b/docs/version-specific/supported-software/e/Elmer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``9.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Emacs.md b/docs/version-specific/supported-software/e/Emacs.md index 2ef98fb8a..9629f3213 100644 --- a/docs/version-specific/supported-software/e/Emacs.md +++ b/docs/version-specific/supported-software/e/Emacs.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``28.1`` | | ``GCCcore/10.2.0`` ``28.2`` | | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Embree.md b/docs/version-specific/supported-software/e/Embree.md index e6e0034bc..bf5293d87 100644 --- a/docs/version-specific/supported-software/e/Embree.md +++ b/docs/version-specific/supported-software/e/Embree.md @@ -13,5 +13,6 @@ version | toolchain ``3.13.4`` | ``system`` ``3.4.0`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EnergyPlus.md b/docs/version-specific/supported-software/e/EnergyPlus.md index 987042096..f8d221a7e 100644 --- a/docs/version-specific/supported-software/e/EnergyPlus.md +++ b/docs/version-specific/supported-software/e/EnergyPlus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``23.2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md index 301d02e9a..ffc788491 100644 --- a/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md +++ b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``96.0-r20190601`` | ``-Perl-5.28.1`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EpiSCORE.md b/docs/version-specific/supported-software/e/EpiSCORE.md index 31410e1c0..b597ee723 100644 --- a/docs/version-specific/supported-software/e/EpiSCORE.md +++ b/docs/version-specific/supported-software/e/EpiSCORE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.5-20220621`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EricScript.md b/docs/version-specific/supported-software/e/EricScript.md index 9c0ee394d..f2e666499 100644 --- a/docs/version-specific/supported-software/e/EricScript.md +++ b/docs/version-specific/supported-software/e/EricScript.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.5`` | ``-R-3.4.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Essentia.md b/docs/version-specific/supported-software/e/Essentia.md index b1e48a3d9..432c31f59 100644 --- a/docs/version-specific/supported-software/e/Essentia.md +++ b/docs/version-specific/supported-software/e/Essentia.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1_beta5`` | ``-Python-2.7.15`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 055137064..51e05e311 100644 --- a/docs/version-specific/supported-software/e/Evcxr-REPL.md +++ b/docs/version-specific/supported-software/e/Evcxr-REPL.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.14.2`` | ``-Rust-1.65.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EveryBeam.md b/docs/version-specific/supported-software/e/EveryBeam.md index 609a7f04f..ce9594b68 100644 --- a/docs/version-specific/supported-software/e/EveryBeam.md +++ b/docs/version-specific/supported-software/e/EveryBeam.md @@ -13,5 +13,6 @@ version | toolchain ``0.5.2`` | ``foss/2022a`` ``0.5.2`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/EvidentialGene.md b/docs/version-specific/supported-software/e/EvidentialGene.md index 45d40f7a4..896109a16 100644 --- a/docs/version-specific/supported-software/e/EvidentialGene.md +++ b/docs/version-specific/supported-software/e/EvidentialGene.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2018.01.01`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``2022.01.14`` | | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ExaBayes.md b/docs/version-specific/supported-software/e/ExaBayes.md index 17ec6fd7e..987a9719d 100644 --- a/docs/version-specific/supported-software/e/ExaBayes.md +++ b/docs/version-specific/supported-software/e/ExaBayes.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ExaML.md b/docs/version-specific/supported-software/e/ExaML.md index f548580a9..07cc2232a 100644 --- a/docs/version-specific/supported-software/e/ExaML.md +++ b/docs/version-specific/supported-software/e/ExaML.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.22`` | ``-hybrid-avx`` | ``gompi/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 898f9a961..c1f75f38b 100644 --- a/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md +++ b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.09`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ExifTool.md b/docs/version-specific/supported-software/e/ExifTool.md index 86e585415..b2e08dbfa 100644 --- a/docs/version-specific/supported-software/e/ExifTool.md +++ b/docs/version-specific/supported-software/e/ExifTool.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``12.00`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Exonerate.md b/docs/version-specific/supported-software/e/Exonerate.md index 5eb57c850..379d4ba98 100644 --- a/docs/version-specific/supported-software/e/Exonerate.md +++ b/docs/version-specific/supported-software/e/Exonerate.md @@ -24,5 +24,6 @@ version | toolchain ``2.4.0`` | ``iccifort/2019.5.281`` ``2.4.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ExpressBetaDiversity.md b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md index 6d16301c2..27c799356 100644 --- a/docs/version-specific/supported-software/e/ExpressBetaDiversity.md +++ b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.10`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/Extrae.md b/docs/version-specific/supported-software/e/Extrae.md index 2fd2119cd..dc3c75ba5 100644 --- a/docs/version-specific/supported-software/e/Extrae.md +++ b/docs/version-specific/supported-software/e/Extrae.md @@ -16,5 +16,6 @@ version | toolchain ``3.8.3`` | ``gompi/2021a`` ``4.0.4`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ExtremeLy.md b/docs/version-specific/supported-software/e/ExtremeLy.md index a8bb5f74b..33d91c6a9 100644 --- a/docs/version-specific/supported-software/e/ExtremeLy.md +++ b/docs/version-specific/supported-software/e/ExtremeLy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/e3nn.md b/docs/version-specific/supported-software/e/e3nn.md index dd3433391..1bbff2321 100644 --- a/docs/version-specific/supported-software/e/e3nn.md +++ b/docs/version-specific/supported-software/e/e3nn.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.3.3`` | | ``foss/2022a`` ``0.3.3`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/eQuilibrator.md b/docs/version-specific/supported-software/e/eQuilibrator.md index 50958953b..0cf05611d 100644 --- a/docs/version-specific/supported-software/e/eQuilibrator.md +++ b/docs/version-specific/supported-software/e/eQuilibrator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.7`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8c4057226..06ca1ce55 100644 --- a/docs/version-specific/supported-software/e/eSpeak-NG.md +++ b/docs/version-specific/supported-software/e/eSpeak-NG.md @@ -13,5 +13,6 @@ version | toolchain ``1.50`` | ``gompi/2020a`` ``1.51`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/eXpress.md b/docs/version-specific/supported-software/e/eXpress.md index 725f98b87..a704749af 100644 --- a/docs/version-specific/supported-software/e/eXpress.md +++ b/docs/version-specific/supported-software/e/eXpress.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.1`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d8a5816ea..6fbe1a214 100644 --- a/docs/version-specific/supported-software/e/ea-utils.md +++ b/docs/version-specific/supported-software/e/ea-utils.md @@ -14,5 +14,6 @@ version | toolchain ``1.04.807`` | ``foss/2016b`` ``1.04.807`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7b5259690..d4ea6916b 100644 --- a/docs/version-specific/supported-software/e/earthengine-api.md +++ b/docs/version-specific/supported-software/e/earthengine-api.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.143`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/easel.md b/docs/version-specific/supported-software/e/easel.md index 974be2dea..f4dc6fe2c 100644 --- a/docs/version-specific/supported-software/e/easel.md +++ b/docs/version-specific/supported-software/e/easel.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.48`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ebGSEA.md b/docs/version-specific/supported-software/e/ebGSEA.md index ed720c49d..42369f428 100644 --- a/docs/version-specific/supported-software/e/ebGSEA.md +++ b/docs/version-specific/supported-software/e/ebGSEA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ecBuild.md b/docs/version-specific/supported-software/e/ecBuild.md index 0082984bd..82b395e16 100644 --- a/docs/version-specific/supported-software/e/ecBuild.md +++ b/docs/version-specific/supported-software/e/ecBuild.md @@ -13,5 +13,6 @@ version | toolchain ``3.7.0`` | ``system`` ``3.8.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ecCodes.md b/docs/version-specific/supported-software/e/ecCodes.md index ed77b1f7a..f8f91897a 100644 --- a/docs/version-specific/supported-software/e/ecCodes.md +++ b/docs/version-specific/supported-software/e/ecCodes.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``2.9.2`` | | ``intel/2018b`` ``2.9.2`` | | ``iomkl/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ecFlow.md b/docs/version-specific/supported-software/e/ecFlow.md index 2742f2150..07719f697 100644 --- a/docs/version-specific/supported-software/e/ecFlow.md +++ b/docs/version-specific/supported-software/e/ecFlow.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.7.0`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1e517407f..ae4bc0565 100644 --- a/docs/version-specific/supported-software/e/eccodes-python.md +++ b/docs/version-specific/supported-software/e/eccodes-python.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.0`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/eclib.md b/docs/version-specific/supported-software/e/eclib.md index b5af91137..4f5dd8e1c 100644 --- a/docs/version-specific/supported-software/e/eclib.md +++ b/docs/version-specific/supported-software/e/eclib.md @@ -13,5 +13,6 @@ version | toolchain ``20230424`` | ``GCC/11.3.0`` ``20240408`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/edlib.md b/docs/version-specific/supported-software/e/edlib.md index 12f856d18..752e7f38e 100644 --- a/docs/version-specific/supported-software/e/edlib.md +++ b/docs/version-specific/supported-software/e/edlib.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``1.3.9`` | | ``GCC/12.2.0`` ``1.3.9`` | | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 910175172..e60a2e438 100644 --- a/docs/version-specific/supported-software/e/eggnog-mapper.md +++ b/docs/version-specific/supported-software/e/eggnog-mapper.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.1.7`` | | ``foss/2021b`` ``2.1.9`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a4b0b630a..5e787e168 100644 --- a/docs/version-specific/supported-software/e/eht-imaging.md +++ b/docs/version-specific/supported-software/e/eht-imaging.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/einops.md b/docs/version-specific/supported-software/e/einops.md index c82e2b524..53258e847 100644 --- a/docs/version-specific/supported-software/e/einops.md +++ b/docs/version-specific/supported-software/e/einops.md @@ -15,5 +15,6 @@ version | toolchain ``0.4.1`` | ``GCCcore/11.3.0`` ``0.7.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/elastix.md b/docs/version-specific/supported-software/e/elastix.md index 5506fd796..d917ce852 100644 --- a/docs/version-specific/supported-software/e/elastix.md +++ b/docs/version-specific/supported-software/e/elastix.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.9.0`` | | ``foss/2018a`` ``5.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/elbencho.md b/docs/version-specific/supported-software/e/elbencho.md index 2ab2414df..42f51a447 100644 --- a/docs/version-specific/supported-software/e/elbencho.md +++ b/docs/version-specific/supported-software/e/elbencho.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0-3`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/elfutils.md b/docs/version-specific/supported-software/e/elfutils.md index 3e5b8845f..0435c357d 100644 --- a/docs/version-specific/supported-software/e/elfutils.md +++ b/docs/version-specific/supported-software/e/elfutils.md @@ -21,5 +21,6 @@ version | toolchain ``0.189`` | ``GCCcore/12.3.0`` ``0.190`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/elprep.md b/docs/version-specific/supported-software/e/elprep.md index bd2606bca..3227b35f9 100644 --- a/docs/version-specific/supported-software/e/elprep.md +++ b/docs/version-specific/supported-software/e/elprep.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/emcee.md b/docs/version-specific/supported-software/e/emcee.md index c6a31b4f2..4ba69425b 100644 --- a/docs/version-specific/supported-software/e/emcee.md +++ b/docs/version-specific/supported-software/e/emcee.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``3.1.4`` | | ``foss/2021b`` ``3.1.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/enaBrowserTool.md b/docs/version-specific/supported-software/e/enaBrowserTool.md index 269267bad..6469361ea 100644 --- a/docs/version-specific/supported-software/e/enaBrowserTool.md +++ b/docs/version-specific/supported-software/e/enaBrowserTool.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5.4`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``1.6`` | | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fa9dd51cd..ac1c83fae 100644 --- a/docs/version-specific/supported-software/e/enchant-2.md +++ b/docs/version-specific/supported-software/e/enchant-2.md @@ -14,5 +14,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/11.3.0`` ``2.6.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/enchant.md b/docs/version-specific/supported-software/e/enchant.md index 9729a0fc4..94865d15c 100644 --- a/docs/version-specific/supported-software/e/enchant.md +++ b/docs/version-specific/supported-software/e/enchant.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/ensmallen.md b/docs/version-specific/supported-software/e/ensmallen.md index 297f9b8cd..f9c9b80bb 100644 --- a/docs/version-specific/supported-software/e/ensmallen.md +++ b/docs/version-specific/supported-software/e/ensmallen.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.21.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/entrypoints.md b/docs/version-specific/supported-software/e/entrypoints.md index 587015dfb..ff7db3182 100644 --- a/docs/version-specific/supported-software/e/entrypoints.md +++ b/docs/version-specific/supported-software/e/entrypoints.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.2.2`` | ``-Python-3.5.2`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/epct.md b/docs/version-specific/supported-software/e/epct.md index c96f073b2..3571d4ae5 100644 --- a/docs/version-specific/supported-software/e/epct.md +++ b/docs/version-specific/supported-software/e/epct.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/epiScanpy.md b/docs/version-specific/supported-software/e/epiScanpy.md index edb557fc4..01c3a47bd 100644 --- a/docs/version-specific/supported-software/e/epiScanpy.md +++ b/docs/version-specific/supported-software/e/epiScanpy.md @@ -14,5 +14,6 @@ version | toolchain ``0.4.0`` | ``foss/2022a`` ``0.4.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/eudev.md b/docs/version-specific/supported-software/e/eudev.md index dd50c145c..7df1c9e7c 100644 --- a/docs/version-specific/supported-software/e/eudev.md +++ b/docs/version-specific/supported-software/e/eudev.md @@ -16,5 +16,6 @@ version | toolchain ``3.2`` | ``GCCcore/4.9.3`` ``3.2.2`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/evince.md b/docs/version-specific/supported-software/e/evince.md index 2bfba2205..c81a7da51 100644 --- a/docs/version-specific/supported-software/e/evince.md +++ b/docs/version-specific/supported-software/e/evince.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``45.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/evmix.md b/docs/version-specific/supported-software/e/evmix.md index f5fa33f9b..5815d4dd5 100644 --- a/docs/version-specific/supported-software/e/evmix.md +++ b/docs/version-specific/supported-software/e/evmix.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.6`` | ``-R-3.3.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/exiv2.md b/docs/version-specific/supported-software/e/exiv2.md index b2f03b810..3a3418cbe 100644 --- a/docs/version-specific/supported-software/e/exiv2.md +++ b/docs/version-specific/supported-software/e/exiv2.md @@ -14,5 +14,6 @@ version | toolchain ``0.27.5`` | ``GCCcore/11.2.0`` ``0.28.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/expat.md b/docs/version-specific/supported-software/e/expat.md index 59be46fbb..653e0bf63 100644 --- a/docs/version-specific/supported-software/e/expat.md +++ b/docs/version-specific/supported-software/e/expat.md @@ -39,5 +39,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/13.2.0`` ``2.6.2`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/expect.md b/docs/version-specific/supported-software/e/expect.md index d969cc5f3..5a8d26cf6 100644 --- a/docs/version-specific/supported-software/e/expect.md +++ b/docs/version-specific/supported-software/e/expect.md @@ -13,5 +13,6 @@ version | toolchain ``5.45.4`` | ``GCCcore/7.3.0`` ``5.45.4`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/expecttest.md b/docs/version-specific/supported-software/e/expecttest.md index 050134611..6a8439b38 100644 --- a/docs/version-specific/supported-software/e/expecttest.md +++ b/docs/version-specific/supported-software/e/expecttest.md @@ -18,5 +18,6 @@ version | toolchain ``0.1.5`` | ``GCCcore/12.3.0`` ``0.2.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/e/index.md b/docs/version-specific/supported-software/e/index.md index 3beac93d1..447f1c36c 100644 --- a/docs/version-specific/supported-software/e/index.md +++ b/docs/version-specific/supported-software/e/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (e) -[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) +*(quick links: [(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) @@ -95,3 +97,7 @@ search: * [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 index 96ac9332e..cd1b17426 100644 --- a/docs/version-specific/supported-software/f/FACE.md +++ b/docs/version-specific/supported-software/f/FACE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FALCON.md b/docs/version-specific/supported-software/f/FALCON.md index 58c7c2222..6fa1c26ff 100644 --- a/docs/version-specific/supported-software/f/FALCON.md +++ b/docs/version-specific/supported-software/f/FALCON.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.8.8`` | | ``intel/2017b`` ``1.8.8`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FANN.md b/docs/version-specific/supported-software/f/FANN.md index c9d31b4df..e17e0b7cf 100644 --- a/docs/version-specific/supported-software/f/FANN.md +++ b/docs/version-specific/supported-software/f/FANN.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.0`` | ``GCCcore/6.4.0`` ``2.2.0`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FASTA.md b/docs/version-specific/supported-software/f/FASTA.md index 236e45640..a2406f68a 100644 --- a/docs/version-specific/supported-software/f/FASTA.md +++ b/docs/version-specific/supported-software/f/FASTA.md @@ -14,5 +14,6 @@ version | toolchain ``36.3.8i`` | ``GCC/11.2.0`` ``36.3.8i`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index efe2e0635..a70eb9156 100644 --- a/docs/version-specific/supported-software/f/FASTX-Toolkit.md +++ b/docs/version-specific/supported-software/f/FASTX-Toolkit.md @@ -19,5 +19,6 @@ version | toolchain ``0.0.14`` | ``foss/2016b`` ``0.0.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FBPIC.md b/docs/version-specific/supported-software/f/FBPIC.md index 77dc55508..d452b07fd 100644 --- a/docs/version-specific/supported-software/f/FBPIC.md +++ b/docs/version-specific/supported-software/f/FBPIC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.20.3`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FCC.md b/docs/version-specific/supported-software/f/FCC.md index 2c79aaa3c..5f93dd5d7 100644 --- a/docs/version-specific/supported-software/f/FCC.md +++ b/docs/version-specific/supported-software/f/FCC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FCM.md b/docs/version-specific/supported-software/f/FCM.md index 7c07049e4..9891554eb 100644 --- a/docs/version-specific/supported-software/f/FCM.md +++ b/docs/version-specific/supported-software/f/FCM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FDMNES.md b/docs/version-specific/supported-software/f/FDMNES.md index 09e1d71b1..f66996e44 100644 --- a/docs/version-specific/supported-software/f/FDMNES.md +++ b/docs/version-specific/supported-software/f/FDMNES.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2024-02-29`` | ``gomkl/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FDS.md b/docs/version-specific/supported-software/f/FDS.md index 8210bcf61..27e5dab3b 100644 --- a/docs/version-specific/supported-software/f/FDS.md +++ b/docs/version-specific/supported-software/f/FDS.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``6.7.9`` | | ``intel/2022a`` ``6.8.0`` | | ``intel/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c271e2380..daaa76a4b 100644 --- a/docs/version-specific/supported-software/f/FDTD_Solutions.md +++ b/docs/version-specific/supported-software/f/FDTD_Solutions.md @@ -15,5 +15,6 @@ version | toolchain ``8.20.1731`` | ``system`` ``8.6.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FEniCS.md b/docs/version-specific/supported-software/f/FEniCS.md index 2b560b94d..f5fe8440a 100644 --- a/docs/version-specific/supported-software/f/FEniCS.md +++ b/docs/version-specific/supported-software/f/FEniCS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FFAVES.md b/docs/version-specific/supported-software/f/FFAVES.md index 345d08094..51e25b26b 100644 --- a/docs/version-specific/supported-software/f/FFAVES.md +++ b/docs/version-specific/supported-software/f/FFAVES.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2022.11.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FFC.md b/docs/version-specific/supported-software/f/FFC.md index 724828b64..60cf4e91d 100644 --- a/docs/version-specific/supported-software/f/FFC.md +++ b/docs/version-specific/supported-software/f/FFC.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b19ef3fe9..c4f6afafc 100644 --- a/docs/version-specific/supported-software/f/FFLAS-FFPACK.md +++ b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md @@ -14,5 +14,6 @@ version | toolchain ``2.5.0`` | ``gfbf/2022a`` ``2.5.0`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 746a3f945..b4f754c75 100644 --- a/docs/version-specific/supported-software/f/FFTW.MPI.md +++ b/docs/version-specific/supported-software/f/FFTW.MPI.md @@ -20,5 +20,6 @@ version | toolchain ``3.3.10`` | ``gompi/2024.05`` ``3.3.10`` | ``nvompi/2022.07`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FFTW.md b/docs/version-specific/supported-software/f/FFTW.md index 513a92103..a2f787810 100644 --- a/docs/version-specific/supported-software/f/FFTW.md +++ b/docs/version-specific/supported-software/f/FFTW.md @@ -83,5 +83,6 @@ version | versionsuffix | toolchain ``3.3.9`` | | ``gompi/2021a`` ``3.3.9`` | | ``intel/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FFmpeg.md b/docs/version-specific/supported-software/f/FFmpeg.md index c028822a5..7d32bf76e 100644 --- a/docs/version-specific/supported-software/f/FFmpeg.md +++ b/docs/version-specific/supported-software/f/FFmpeg.md @@ -46,5 +46,6 @@ version | toolchain ``6.0`` | ``GCCcore/12.3.0`` ``6.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FGSL.md b/docs/version-specific/supported-software/f/FGSL.md index c8434d1a9..d412ac175 100644 --- a/docs/version-specific/supported-software/f/FGSL.md +++ b/docs/version-specific/supported-software/f/FGSL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 628da9e9c..490038284 100644 --- a/docs/version-specific/supported-software/f/FHI-aims.md +++ b/docs/version-specific/supported-software/f/FHI-aims.md @@ -13,5 +13,6 @@ version | toolchain ``200112_2`` | ``intel/2019b`` ``221103`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FIAT.md b/docs/version-specific/supported-software/f/FIAT.md index fd8422168..3cd11c19a 100644 --- a/docs/version-specific/supported-software/f/FIAT.md +++ b/docs/version-specific/supported-software/f/FIAT.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FIGARO.md b/docs/version-specific/supported-software/f/FIGARO.md index be36cd7e0..b1dac5ba4 100644 --- a/docs/version-specific/supported-software/f/FIGARO.md +++ b/docs/version-specific/supported-software/f/FIGARO.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.2`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FIRESTARTER.md b/docs/version-specific/supported-software/f/FIRESTARTER.md index b9fbcb61d..dab1c4b05 100644 --- a/docs/version-specific/supported-software/f/FIRESTARTER.md +++ b/docs/version-specific/supported-software/f/FIRESTARTER.md @@ -13,5 +13,6 @@ version | toolchain ``2.0`` | ``gcccuda/2020a`` ``2.0`` | ``gcccuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FIX.md b/docs/version-specific/supported-software/f/FIX.md index 39c1ad57e..fa5e45373 100644 --- a/docs/version-specific/supported-software/f/FIX.md +++ b/docs/version-specific/supported-software/f/FIX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.06.12`` | ``-Octave-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index adbabd2e5..6a7fcaa90 100644 --- a/docs/version-specific/supported-software/f/FIt-SNE.md +++ b/docs/version-specific/supported-software/f/FIt-SNE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``gompi/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLAC.md b/docs/version-specific/supported-software/f/FLAC.md index c0fca3924..00e397549 100644 --- a/docs/version-specific/supported-software/f/FLAC.md +++ b/docs/version-specific/supported-software/f/FLAC.md @@ -17,5 +17,6 @@ version | toolchain ``1.4.2`` | ``GCCcore/12.2.0`` ``1.4.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLAIR.md b/docs/version-specific/supported-software/f/FLAIR.md index 1195bbcea..97826d511 100644 --- a/docs/version-specific/supported-software/f/FLAIR.md +++ b/docs/version-specific/supported-software/f/FLAIR.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.5.1-20200630`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLANN.md b/docs/version-specific/supported-software/f/FLANN.md index 2f58be1bc..5008b5142 100644 --- a/docs/version-specific/supported-software/f/FLANN.md +++ b/docs/version-specific/supported-software/f/FLANN.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.8.4`` | ``-Python-2.7.14`` | ``intel/2017b`` ``1.9.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLASH.md b/docs/version-specific/supported-software/f/FLASH.md index 1781ebc64..224477a1c 100644 --- a/docs/version-specific/supported-software/f/FLASH.md +++ b/docs/version-specific/supported-software/f/FLASH.md @@ -19,5 +19,6 @@ version | toolchain ``2.2.00`` | ``foss/2018b`` ``2.2.00`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLEUR.md b/docs/version-specific/supported-software/f/FLEUR.md index d71b6316b..20bf606db 100644 --- a/docs/version-specific/supported-software/f/FLEUR.md +++ b/docs/version-specific/supported-software/f/FLEUR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.26e`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLINT.md b/docs/version-specific/supported-software/f/FLINT.md index 3fa8c52d3..e5417b4ab 100644 --- a/docs/version-specific/supported-software/f/FLINT.md +++ b/docs/version-specific/supported-software/f/FLINT.md @@ -20,5 +20,6 @@ version | toolchain ``2.9.0`` | ``gfbf/2022b`` ``3.1.1`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLTK.md b/docs/version-specific/supported-software/f/FLTK.md index 53c1277f9..b6a2a9fa1 100644 --- a/docs/version-specific/supported-software/f/FLTK.md +++ b/docs/version-specific/supported-software/f/FLTK.md @@ -36,5 +36,6 @@ version | toolchain ``1.3.8`` | ``GCCcore/12.3.0`` ``1.3.9`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FLUENT.md b/docs/version-specific/supported-software/f/FLUENT.md index b5e3930b6..ffa288702 100644 --- a/docs/version-specific/supported-software/f/FLUENT.md +++ b/docs/version-specific/supported-software/f/FLUENT.md @@ -21,5 +21,6 @@ version | toolchain ``2021R1`` | ``system`` ``2021R2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FMILibrary.md b/docs/version-specific/supported-software/f/FMILibrary.md index fd7e2557c..7bc8c115d 100644 --- a/docs/version-specific/supported-software/f/FMILibrary.md +++ b/docs/version-specific/supported-software/f/FMILibrary.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.3`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FMM3D.md b/docs/version-specific/supported-software/f/FMM3D.md index 57ccf9618..49d141b50 100644 --- a/docs/version-specific/supported-software/f/FMM3D.md +++ b/docs/version-specific/supported-software/f/FMM3D.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.4`` | ``foss/2023a`` ``20211018`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FMPy.md b/docs/version-specific/supported-software/f/FMPy.md index ee7da10f1..1e58fa24e 100644 --- a/docs/version-specific/supported-software/f/FMPy.md +++ b/docs/version-specific/supported-software/f/FMPy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FMRIprep.md b/docs/version-specific/supported-software/f/FMRIprep.md index 894bbae25..6a8ecc31f 100644 --- a/docs/version-specific/supported-software/f/FMRIprep.md +++ b/docs/version-specific/supported-software/f/FMRIprep.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.8`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.4.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FMS.md b/docs/version-specific/supported-software/f/FMS.md index 0495c8116..ff4b95791 100644 --- a/docs/version-specific/supported-software/f/FMS.md +++ b/docs/version-specific/supported-software/f/FMS.md @@ -13,5 +13,6 @@ version | toolchain ``2022.02`` | ``gompi/2022a`` ``2022.02`` | ``iimpi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FORD.md b/docs/version-specific/supported-software/f/FORD.md index 4886e2724..88a810712 100644 --- a/docs/version-specific/supported-software/f/FORD.md +++ b/docs/version-specific/supported-software/f/FORD.md @@ -14,5 +14,6 @@ version | toolchain ``6.1.15`` | ``GCCcore/11.3.0`` ``6.1.6`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 93340d7c6..0318a8a90 100644 --- a/docs/version-specific/supported-software/f/FOX-Toolkit.md +++ b/docs/version-specific/supported-software/f/FOX-Toolkit.md @@ -13,5 +13,6 @@ version | toolchain ``1.6.57`` | ``GCCcore/11.2.0`` ``1.6.57`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FPM.md b/docs/version-specific/supported-software/f/FPM.md index 7258e4ba0..b34408a29 100644 --- a/docs/version-specific/supported-software/f/FPM.md +++ b/docs/version-specific/supported-software/f/FPM.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.15.1`` | | ``GCCcore/12.2.0`` ``1.3.3`` | ``-Ruby-2.1.6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FRANz.md b/docs/version-specific/supported-software/f/FRANz.md index 18b580149..4917c7c08 100644 --- a/docs/version-specific/supported-software/f/FRANz.md +++ b/docs/version-specific/supported-software/f/FRANz.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FRUIT.md b/docs/version-specific/supported-software/f/FRUIT.md index 85f19fa0a..908b114eb 100644 --- a/docs/version-specific/supported-software/f/FRUIT.md +++ b/docs/version-specific/supported-software/f/FRUIT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d38229ac5..05610339f 100644 --- a/docs/version-specific/supported-software/f/FRUIT_processor.md +++ b/docs/version-specific/supported-software/f/FRUIT_processor.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FSL.md b/docs/version-specific/supported-software/f/FSL.md index 834a260ff..e9d5d8c65 100644 --- a/docs/version-specific/supported-software/f/FSL.md +++ b/docs/version-specific/supported-software/f/FSL.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``6.0.4`` | ``-Python-3.7.4`` | ``foss/2019b`` ``6.0.5.1`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FSLeyes.md b/docs/version-specific/supported-software/f/FSLeyes.md index 2832dff97..558123448 100644 --- a/docs/version-specific/supported-software/f/FSLeyes.md +++ b/docs/version-specific/supported-software/f/FSLeyes.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.15.0`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FSON.md b/docs/version-specific/supported-software/f/FSON.md index 7f62eb942..e7c08ca53 100644 --- a/docs/version-specific/supported-software/f/FSON.md +++ b/docs/version-specific/supported-software/f/FSON.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.5`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FTGL.md b/docs/version-specific/supported-software/f/FTGL.md index 1fb7014a2..53057946c 100644 --- a/docs/version-specific/supported-software/f/FTGL.md +++ b/docs/version-specific/supported-software/f/FTGL.md @@ -18,5 +18,6 @@ version | toolchain ``2.1.3-rc5`` | ``intel/2017b`` ``2.4.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 58a40a1e9..92be7f3d3 100644 --- a/docs/version-specific/supported-software/f/FUNWAVE-TVD.md +++ b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.1-20170525`` | ``-no-storm`` | ``intel/2017a`` ``3.1-20170525`` | | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FUSE.md b/docs/version-specific/supported-software/f/FUSE.md index d10bb1998..cf4f49905 100644 --- a/docs/version-specific/supported-software/f/FUSE.md +++ b/docs/version-specific/supported-software/f/FUSE.md @@ -15,5 +15,6 @@ version | toolchain ``3.2.6`` | ``intel/2018a`` ``3.4.1`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FabIO.md b/docs/version-specific/supported-software/f/FabIO.md index b0a87a53b..7617be2c2 100644 --- a/docs/version-specific/supported-software/f/FabIO.md +++ b/docs/version-specific/supported-software/f/FabIO.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.11.0`` | | ``fosscuda/2020b`` ``0.14.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Faber.md b/docs/version-specific/supported-software/f/Faber.md index 500360848..ed3c6b827 100644 --- a/docs/version-specific/supported-software/f/Faber.md +++ b/docs/version-specific/supported-software/f/Faber.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Faiss.md b/docs/version-specific/supported-software/f/Faiss.md index ae7cc1016..eea9aa2d5 100644 --- a/docs/version-specific/supported-software/f/Faiss.md +++ b/docs/version-specific/supported-software/f/Faiss.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastANI.md b/docs/version-specific/supported-software/f/FastANI.md index fe69b4a01..c345e0b8e 100644 --- a/docs/version-specific/supported-software/f/FastANI.md +++ b/docs/version-specific/supported-software/f/FastANI.md @@ -24,5 +24,6 @@ version | toolchain ``1.33`` | ``intel-compilers/2021.4.0`` ``1.34`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastFold.md b/docs/version-specific/supported-software/f/FastFold.md index 51d65b7b5..d6ae03dc9 100644 --- a/docs/version-specific/supported-software/f/FastFold.md +++ b/docs/version-specific/supported-software/f/FastFold.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220729`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastME.md b/docs/version-specific/supported-software/f/FastME.md index e6e208715..d1260a1cd 100644 --- a/docs/version-specific/supported-software/f/FastME.md +++ b/docs/version-specific/supported-software/f/FastME.md @@ -18,5 +18,6 @@ version | toolchain ``2.1.6.1`` | ``intel/2018b`` ``2.1.6.3`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastQC.md b/docs/version-specific/supported-software/f/FastQC.md index 36388ba7b..f3a2bcd4a 100644 --- a/docs/version-specific/supported-software/f/FastQC.md +++ b/docs/version-specific/supported-software/f/FastQC.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``0.11.9`` | ``-Java-11`` | ``system`` ``0.12.1`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastQTL.md b/docs/version-specific/supported-software/f/FastQTL.md index 0ce5f176b..3506af94b 100644 --- a/docs/version-specific/supported-software/f/FastQTL.md +++ b/docs/version-specific/supported-software/f/FastQTL.md @@ -13,5 +13,6 @@ version | toolchain ``2.184`` | ``GCC/11.2.0`` ``2.184`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f6b484e4c..d11cc08f2 100644 --- a/docs/version-specific/supported-software/f/FastQ_Screen.md +++ b/docs/version-specific/supported-software/f/FastQ_Screen.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.13.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``0.14.0`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastRFS.md b/docs/version-specific/supported-software/f/FastRFS.md index 027dfad4b..a270bc507 100644 --- a/docs/version-specific/supported-software/f/FastRFS.md +++ b/docs/version-specific/supported-software/f/FastRFS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0-20190613`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastTree.md b/docs/version-specific/supported-software/f/FastTree.md index 953d7eb89..d77c72bbe 100644 --- a/docs/version-specific/supported-software/f/FastTree.md +++ b/docs/version-specific/supported-software/f/FastTree.md @@ -23,5 +23,6 @@ version | toolchain ``2.1.11`` | ``GCCcore/8.3.0`` ``2.1.11`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastViromeExplorer.md b/docs/version-specific/supported-software/f/FastViromeExplorer.md index c2a4c8334..b92df8290 100644 --- a/docs/version-specific/supported-software/f/FastViromeExplorer.md +++ b/docs/version-specific/supported-software/f/FastViromeExplorer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20180422`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FastaIndex.md b/docs/version-specific/supported-software/f/FastaIndex.md index 51e2013fa..6bd9f62f0 100644 --- a/docs/version-specific/supported-software/f/FastaIndex.md +++ b/docs/version-specific/supported-software/f/FastaIndex.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.11rc7`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Fastaq.md b/docs/version-specific/supported-software/f/Fastaq.md index 85175cded..743e93dca 100644 --- a/docs/version-specific/supported-software/f/Fastaq.md +++ b/docs/version-specific/supported-software/f/Fastaq.md @@ -13,5 +13,6 @@ version | toolchain ``3.17.0`` | ``GCC/10.3.0`` ``3.17.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Ferret.md b/docs/version-specific/supported-software/f/Ferret.md index dcd983b84..dd3ecdf97 100644 --- a/docs/version-specific/supported-software/f/Ferret.md +++ b/docs/version-specific/supported-software/f/Ferret.md @@ -14,5 +14,6 @@ version | toolchain ``7.5.0`` | ``foss/2019b`` ``7.6.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FigureGen.md b/docs/version-specific/supported-software/f/FigureGen.md index 458f69065..5a8f44b8c 100644 --- a/docs/version-specific/supported-software/f/FigureGen.md +++ b/docs/version-specific/supported-software/f/FigureGen.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``51-20190516`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Fiji.md b/docs/version-specific/supported-software/f/Fiji.md index 4e76386ec..4f8c9b482 100644 --- a/docs/version-specific/supported-software/f/Fiji.md +++ b/docs/version-specific/supported-software/f/Fiji.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``20191119-2057`` | | ``system`` ``20201104-1356`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Filtlong.md b/docs/version-specific/supported-software/f/Filtlong.md index 998aad8a8..e428bacca 100644 --- a/docs/version-specific/supported-software/f/Filtlong.md +++ b/docs/version-specific/supported-software/f/Filtlong.md @@ -14,5 +14,6 @@ version | toolchain ``0.2.0`` | ``foss/2016b`` ``0.2.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Fiona.md b/docs/version-specific/supported-software/f/Fiona.md index b2fc1d780..a2af9ff23 100644 --- a/docs/version-specific/supported-software/f/Fiona.md +++ b/docs/version-specific/supported-software/f/Fiona.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``1.9.2`` | | ``foss/2022b`` ``1.9.5`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FireWorks.md b/docs/version-specific/supported-software/f/FireWorks.md index e50c06ccf..822e622eb 100644 --- a/docs/version-specific/supported-software/f/FireWorks.md +++ b/docs/version-specific/supported-software/f/FireWorks.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Firefox.md b/docs/version-specific/supported-software/f/Firefox.md index 9d90d11b8..542ddc6f1 100644 --- a/docs/version-specific/supported-software/f/Firefox.md +++ b/docs/version-specific/supported-software/f/Firefox.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``44.0.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Flask.md b/docs/version-specific/supported-software/f/Flask.md index 9b76a3f19..c49b05b59 100644 --- a/docs/version-specific/supported-software/f/Flask.md +++ b/docs/version-specific/supported-software/f/Flask.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2.3.3`` | | ``GCCcore/12.3.0`` ``3.0.0`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Flexbar.md b/docs/version-specific/supported-software/f/Flexbar.md index 46c0be63f..db9833843 100644 --- a/docs/version-specific/supported-software/f/Flexbar.md +++ b/docs/version-specific/supported-software/f/Flexbar.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.5.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FlexiBLAS.md b/docs/version-specific/supported-software/f/FlexiBLAS.md index 448c5d2f4..3be564f96 100644 --- a/docs/version-specific/supported-software/f/FlexiBLAS.md +++ b/docs/version-specific/supported-software/f/FlexiBLAS.md @@ -20,5 +20,6 @@ version | toolchain ``3.3.1`` | ``GCC/13.2.0`` ``3.4.4`` | ``GCC/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FlexiDot.md b/docs/version-specific/supported-software/f/FlexiDot.md index b8274e277..1fc3385cc 100644 --- a/docs/version-specific/supported-software/f/FlexiDot.md +++ b/docs/version-specific/supported-software/f/FlexiDot.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.06`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Flink.md b/docs/version-specific/supported-software/f/Flink.md index 6f02362d0..b32594c6b 100644 --- a/docs/version-specific/supported-software/f/Flink.md +++ b/docs/version-specific/supported-software/f/Flink.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.11.2`` | ``-bin-scala_2.11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Flye.md b/docs/version-specific/supported-software/f/Flye.md index 7acee30d4..a50961677 100644 --- a/docs/version-specific/supported-software/f/Flye.md +++ b/docs/version-specific/supported-software/f/Flye.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``2.9.3`` | | ``GCC/10.3.0`` ``2.9.3`` | | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FoBiS.md b/docs/version-specific/supported-software/f/FoBiS.md index 2e2cba771..85e82b669 100644 --- a/docs/version-specific/supported-software/f/FoBiS.md +++ b/docs/version-specific/supported-software/f/FoBiS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FoX.md b/docs/version-specific/supported-software/f/FoX.md index 4063eaaeb..2374ad37f 100644 --- a/docs/version-specific/supported-software/f/FoX.md +++ b/docs/version-specific/supported-software/f/FoX.md @@ -15,5 +15,6 @@ version | toolchain ``4.1.2`` | ``intel/2017b`` ``4.1.2`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FoldX.md b/docs/version-specific/supported-software/f/FoldX.md index 11ac1d8c0..dc90f570d 100644 --- a/docs/version-specific/supported-software/f/FoldX.md +++ b/docs/version-specific/supported-software/f/FoldX.md @@ -15,5 +15,6 @@ version | toolchain ``3.0-beta6.1`` | ``system`` ``3.0-beta6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FragGeneScan.md b/docs/version-specific/supported-software/f/FragGeneScan.md index 6682c831e..ac07a25d1 100644 --- a/docs/version-specific/supported-software/f/FragGeneScan.md +++ b/docs/version-specific/supported-software/f/FragGeneScan.md @@ -17,5 +17,6 @@ version | toolchain ``1.31`` | ``GCCcore/8.2.0`` ``1.31`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FragPipe.md b/docs/version-specific/supported-software/f/FragPipe.md index 0bf0c682d..5c125210f 100644 --- a/docs/version-specific/supported-software/f/FragPipe.md +++ b/docs/version-specific/supported-software/f/FragPipe.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20.0`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeBarcodes.md b/docs/version-specific/supported-software/f/FreeBarcodes.md index d365b07ad..46228214e 100644 --- a/docs/version-specific/supported-software/f/FreeBarcodes.md +++ b/docs/version-specific/supported-software/f/FreeBarcodes.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.a5`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeFEM.md b/docs/version-specific/supported-software/f/FreeFEM.md index b30cf6756..7c04879c9 100644 --- a/docs/version-specific/supported-software/f/FreeFEM.md +++ b/docs/version-specific/supported-software/f/FreeFEM.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.5`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeFem++.md b/docs/version-specific/supported-software/f/FreeFem++.md index 68decb188..148bbfdb9 100644 --- a/docs/version-specific/supported-software/f/FreeFem++.md +++ b/docs/version-specific/supported-software/f/FreeFem++.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.60`` | ``-downloaded-deps`` | ``intel/2018a`` ``3.61-1`` | ``-downloaded-deps`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeImage.md b/docs/version-specific/supported-software/f/FreeImage.md index 125600c2f..dd9280111 100644 --- a/docs/version-specific/supported-software/f/FreeImage.md +++ b/docs/version-specific/supported-software/f/FreeImage.md @@ -20,5 +20,6 @@ version | toolchain ``3.18.0`` | ``GCCcore/8.3.0`` ``3.18.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeSASA.md b/docs/version-specific/supported-software/f/FreeSASA.md index 8318593c5..529d49037 100644 --- a/docs/version-specific/supported-software/f/FreeSASA.md +++ b/docs/version-specific/supported-software/f/FreeSASA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.3`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeSurfer.md b/docs/version-specific/supported-software/f/FreeSurfer.md index c5b8844a4..cc5ff1cc3 100644 --- a/docs/version-specific/supported-software/f/FreeSurfer.md +++ b/docs/version-specific/supported-software/f/FreeSurfer.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``7.4.1`` | ``-ubuntu20_amd64`` | ``system`` ``7.4.1`` | ``-ubuntu22_amd64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeTDS.md b/docs/version-specific/supported-software/f/FreeTDS.md index 9a6b40560..d5b1364ec 100644 --- a/docs/version-specific/supported-software/f/FreeTDS.md +++ b/docs/version-specific/supported-software/f/FreeTDS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.3`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FreeXL.md b/docs/version-specific/supported-software/f/FreeXL.md index 654258c65..9a40777b8 100644 --- a/docs/version-specific/supported-software/f/FreeXL.md +++ b/docs/version-specific/supported-software/f/FreeXL.md @@ -18,5 +18,6 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.3.0`` ``1.0.6`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FriBidi.md b/docs/version-specific/supported-software/f/FriBidi.md index 98f181c04..c6ff68c92 100644 --- a/docs/version-specific/supported-software/f/FriBidi.md +++ b/docs/version-specific/supported-software/f/FriBidi.md @@ -25,5 +25,6 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.3.0`` ``1.0.9`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FuSeq.md b/docs/version-specific/supported-software/f/FuSeq.md index b1d98fc11..1598e7c76 100644 --- a/docs/version-specific/supported-software/f/FuSeq.md +++ b/docs/version-specific/supported-software/f/FuSeq.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.2`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/Fujitsu.md b/docs/version-specific/supported-software/f/Fujitsu.md index 83e1420a6..c116b5bf0 100644 --- a/docs/version-specific/supported-software/f/Fujitsu.md +++ b/docs/version-specific/supported-software/f/Fujitsu.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``21.05`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FunGAP.md b/docs/version-specific/supported-software/f/FunGAP.md index 0c0a6d4f9..20b925d5b 100644 --- a/docs/version-specific/supported-software/f/FunGAP.md +++ b/docs/version-specific/supported-software/f/FunGAP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/FusionCatcher.md b/docs/version-specific/supported-software/f/FusionCatcher.md index 0c800bd29..28af17f02 100644 --- a/docs/version-specific/supported-software/f/FusionCatcher.md +++ b/docs/version-specific/supported-software/f/FusionCatcher.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.20`` | ``-Python-2.7.16`` | ``foss/2019b`` ``1.30`` | ``-Python-2.7.16`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/f90cache.md b/docs/version-specific/supported-software/f/f90cache.md index dea799025..381ac457a 100644 --- a/docs/version-specific/supported-software/f/f90cache.md +++ b/docs/version-specific/supported-software/f/f90cache.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.96`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/f90nml.md b/docs/version-specific/supported-software/f/f90nml.md index 4281f527e..eb6741260 100644 --- a/docs/version-specific/supported-software/f/f90nml.md +++ b/docs/version-specific/supported-software/f/f90nml.md @@ -13,5 +13,6 @@ version | toolchain ``1.4.4`` | ``GCCcore/12.2.0`` ``1.4.4`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/f90wrap.md b/docs/version-specific/supported-software/f/f90wrap.md index d992ff28b..bd9fafb85 100644 --- a/docs/version-specific/supported-software/f/f90wrap.md +++ b/docs/version-specific/supported-software/f/f90wrap.md @@ -14,5 +14,6 @@ version | toolchain ``0.2.13`` | ``foss/2023a`` ``0.2.8`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/faceswap.md b/docs/version-specific/supported-software/f/faceswap.md index 7dbdc9026..b1e8d60e0 100644 --- a/docs/version-specific/supported-software/f/faceswap.md +++ b/docs/version-specific/supported-software/f/faceswap.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180212`` | ``-Python-3.6.3`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fast5.md b/docs/version-specific/supported-software/f/fast5.md index 5a3d7d334..801c49247 100644 --- a/docs/version-specific/supported-software/f/fast5.md +++ b/docs/version-specific/supported-software/f/fast5.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastPHASE.md b/docs/version-specific/supported-software/f/fastPHASE.md index a0e87c19e..8a554d4e6 100644 --- a/docs/version-specific/supported-software/f/fastPHASE.md +++ b/docs/version-specific/supported-software/f/fastPHASE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastStructure.md b/docs/version-specific/supported-software/f/fastStructure.md index db9955167..9778959f4 100644 --- a/docs/version-specific/supported-software/f/fastStructure.md +++ b/docs/version-specific/supported-software/f/fastStructure.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` ``1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b30e9821c..92c6fcd60 100644 --- a/docs/version-specific/supported-software/f/fasta-reader.md +++ b/docs/version-specific/supported-software/f/fasta-reader.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.2`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastahack.md b/docs/version-specific/supported-software/f/fastahack.md index e39c2af6a..c9d78413e 100644 --- a/docs/version-specific/supported-software/f/fastahack.md +++ b/docs/version-specific/supported-software/f/fastahack.md @@ -17,5 +17,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastai.md b/docs/version-specific/supported-software/f/fastai.md index 29400dcb7..263a77ee6 100644 --- a/docs/version-specific/supported-software/f/fastai.md +++ b/docs/version-specific/supported-software/f/fastai.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.7.10`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.7.10`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 849ae9d6b..63d48a087 100644 --- a/docs/version-specific/supported-software/f/fastjet-contrib.md +++ b/docs/version-specific/supported-software/f/fastjet-contrib.md @@ -13,5 +13,6 @@ version | toolchain ``1.049`` | ``gompi/2022a`` ``1.053`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastjet.md b/docs/version-specific/supported-software/f/fastjet.md index a5d9dbc2b..c3639e993 100644 --- a/docs/version-specific/supported-software/f/fastjet.md +++ b/docs/version-specific/supported-software/f/fastjet.md @@ -13,5 +13,6 @@ version | toolchain ``3.4.0`` | ``gompi/2022a`` ``3.4.2`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastml.md b/docs/version-specific/supported-software/f/fastml.md index 66b0fd99c..cde62ea00 100644 --- a/docs/version-specific/supported-software/f/fastml.md +++ b/docs/version-specific/supported-software/f/fastml.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastp.md b/docs/version-specific/supported-software/f/fastp.md index 222d0fe94..c1217d55e 100644 --- a/docs/version-specific/supported-software/f/fastp.md +++ b/docs/version-specific/supported-software/f/fastp.md @@ -21,5 +21,6 @@ version | toolchain ``0.23.4`` | ``GCC/12.2.0`` ``0.23.4`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastparquet.md b/docs/version-specific/supported-software/f/fastparquet.md index 34909b1f5..1e9a71055 100644 --- a/docs/version-specific/supported-software/f/fastparquet.md +++ b/docs/version-specific/supported-software/f/fastparquet.md @@ -14,5 +14,6 @@ version | toolchain ``0.8.0`` | ``foss/2021b`` ``2023.4.0`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1605bfce1..660e9fab8 100644 --- a/docs/version-specific/supported-software/f/fastq-pair.md +++ b/docs/version-specific/supported-software/f/fastq-pair.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3e01f831e..8c3ddccc0 100644 --- a/docs/version-specific/supported-software/f/fastq-tools.md +++ b/docs/version-specific/supported-software/f/fastq-tools.md @@ -15,5 +15,6 @@ version | toolchain ``0.8.3`` | ``GCC/10.3.0`` ``0.8.3`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastqsplitter.md b/docs/version-specific/supported-software/f/fastqsplitter.md index 085fee9bf..3ec87044b 100644 --- a/docs/version-specific/supported-software/f/fastqsplitter.md +++ b/docs/version-specific/supported-software/f/fastqsplitter.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fastqz.md b/docs/version-specific/supported-software/f/fastqz.md index 4b00b54d8..25db813e5 100644 --- a/docs/version-specific/supported-software/f/fastqz.md +++ b/docs/version-specific/supported-software/f/fastqz.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fatslim.md b/docs/version-specific/supported-software/f/fatslim.md index da4babbe5..c374d1a68 100644 --- a/docs/version-specific/supported-software/f/fatslim.md +++ b/docs/version-specific/supported-software/f/fatslim.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fbm.md b/docs/version-specific/supported-software/f/fbm.md index 8f5649fbf..bc4a0407f 100644 --- a/docs/version-specific/supported-software/f/fbm.md +++ b/docs/version-specific/supported-software/f/fbm.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fdict.md b/docs/version-specific/supported-software/f/fdict.md index 839a8f140..bb46c3ee5 100644 --- a/docs/version-specific/supported-software/f/fdict.md +++ b/docs/version-specific/supported-software/f/fdict.md @@ -17,5 +17,6 @@ version | toolchain ``0.8.0`` | ``intel-compilers/2021.2.0`` ``0.8.0`` | ``intel-compilers/2021.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fdstools.md b/docs/version-specific/supported-software/f/fdstools.md index 261de4eb9..8ceb54502 100644 --- a/docs/version-specific/supported-software/f/fdstools.md +++ b/docs/version-specific/supported-software/f/fdstools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160322`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/feh.md b/docs/version-specific/supported-software/f/feh.md index 840256d08..0fb19f159 100644 --- a/docs/version-specific/supported-software/f/feh.md +++ b/docs/version-specific/supported-software/f/feh.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.26`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 31a9b88cf..53e9b6177 100644 --- a/docs/version-specific/supported-software/f/fermi-lite.md +++ b/docs/version-specific/supported-software/f/fermi-lite.md @@ -16,5 +16,6 @@ version | toolchain ``20190320`` | ``GCCcore/12.3.0`` ``20190320`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/festival.md b/docs/version-specific/supported-software/f/festival.md index 70df14b3b..1a89be38a 100644 --- a/docs/version-specific/supported-software/f/festival.md +++ b/docs/version-specific/supported-software/f/festival.md @@ -13,5 +13,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fetchMG.md b/docs/version-specific/supported-software/f/fetchMG.md index 76abe8aba..00a73b6e8 100644 --- a/docs/version-specific/supported-software/f/fetchMG.md +++ b/docs/version-specific/supported-software/f/fetchMG.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``GCCcore/8.3.0`` ``1.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/ffmpi.md b/docs/version-specific/supported-software/f/ffmpi.md index 9f330e9d3..e584c1fdd 100644 --- a/docs/version-specific/supported-software/f/ffmpi.md +++ b/docs/version-specific/supported-software/f/ffmpi.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/ffnet.md b/docs/version-specific/supported-software/f/ffnet.md index 438482f78..2906fa56f 100644 --- a/docs/version-specific/supported-software/f/ffnet.md +++ b/docs/version-specific/supported-software/f/ffnet.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.3`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/ffnvcodec.md b/docs/version-specific/supported-software/f/ffnvcodec.md index 8f6a70741..3acdd2b9b 100644 --- a/docs/version-specific/supported-software/f/ffnvcodec.md +++ b/docs/version-specific/supported-software/f/ffnvcodec.md @@ -14,5 +14,6 @@ version | toolchain ``12.0.16.0`` | ``system`` ``12.1.14.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fftlib.md b/docs/version-specific/supported-software/f/fftlib.md index 781d1e570..b2eb03068 100644 --- a/docs/version-specific/supported-software/f/fftlib.md +++ b/docs/version-specific/supported-software/f/fftlib.md @@ -13,5 +13,6 @@ version | toolchain ``20170628`` | ``gompi/2020b`` ``20170628`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fgbio.md b/docs/version-specific/supported-software/f/fgbio.md index d5f2c3a31..d2c4c5fcc 100644 --- a/docs/version-specific/supported-software/f/fgbio.md +++ b/docs/version-specific/supported-software/f/fgbio.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``system`` ``2.2.1`` | ``-Java-8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/file.md b/docs/version-specific/supported-software/f/file.md index a4a0c923c..42a7b7139 100644 --- a/docs/version-specific/supported-software/f/file.md +++ b/docs/version-specific/supported-software/f/file.md @@ -25,5 +25,6 @@ version | toolchain ``5.43`` | ``GCCcore/12.2.0`` ``5.43`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/filevercmp.md b/docs/version-specific/supported-software/f/filevercmp.md index 6b641eb9b..6bb959431 100644 --- a/docs/version-specific/supported-software/f/filevercmp.md +++ b/docs/version-specific/supported-software/f/filevercmp.md @@ -17,5 +17,6 @@ version | toolchain ``20191210`` | ``GCCcore/11.3.0`` ``20191210`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 573e4f29c..c7c52a663 100644 --- a/docs/version-specific/supported-software/f/find_circ.md +++ b/docs/version-specific/supported-software/f/find_circ.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2-20170228`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/finder.md b/docs/version-specific/supported-software/f/finder.md index 56f8e4f69..9dd27f529 100644 --- a/docs/version-specific/supported-software/f/finder.md +++ b/docs/version-specific/supported-software/f/finder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/findhap.md b/docs/version-specific/supported-software/f/findhap.md index cd41d85db..800305fc7 100644 --- a/docs/version-specific/supported-software/f/findhap.md +++ b/docs/version-specific/supported-software/f/findhap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/findutils.md b/docs/version-specific/supported-software/f/findutils.md index ebf6fcb3b..accff7545 100644 --- a/docs/version-specific/supported-software/f/findutils.md +++ b/docs/version-specific/supported-software/f/findutils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.4.2`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fineRADstructure.md b/docs/version-specific/supported-software/f/fineRADstructure.md index 292502015..2644bd1d5 100644 --- a/docs/version-specific/supported-software/f/fineRADstructure.md +++ b/docs/version-specific/supported-software/f/fineRADstructure.md @@ -13,5 +13,6 @@ version | toolchain ``20180709`` | ``intel/2018a`` ``20210514`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fineSTRUCTURE.md b/docs/version-specific/supported-software/f/fineSTRUCTURE.md index b560742a6..28910a16a 100644 --- a/docs/version-specific/supported-software/f/fineSTRUCTURE.md +++ b/docs/version-specific/supported-software/f/fineSTRUCTURE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fio.md b/docs/version-specific/supported-software/f/fio.md index 1ef4d3528..2707e7907 100644 --- a/docs/version-specific/supported-software/f/fio.md +++ b/docs/version-specific/supported-software/f/fio.md @@ -15,5 +15,6 @@ version | toolchain ``3.34`` | ``GCCcore/12.2.0`` ``3.36`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fixesproto.md b/docs/version-specific/supported-software/f/fixesproto.md index 7ee6e652a..a1f52af03 100644 --- a/docs/version-specific/supported-software/f/fixesproto.md +++ b/docs/version-specific/supported-software/f/fixesproto.md @@ -14,5 +14,6 @@ version | toolchain ``5.0`` | ``gimkl/2.11.5`` ``5.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5721f0b0b..635ced49b 100644 --- a/docs/version-specific/supported-software/f/flair-NLP.md +++ b/docs/version-specific/supported-software/f/flair-NLP.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.11.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.11.3`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 090c560d3..55e6fe35c 100644 --- a/docs/version-specific/supported-software/f/flatbuffers-python.md +++ b/docs/version-specific/supported-software/f/flatbuffers-python.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``23.1.4`` | | ``GCCcore/12.2.0`` ``23.5.26`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/flatbuffers.md b/docs/version-specific/supported-software/f/flatbuffers.md index fc5d64432..1c5a02296 100644 --- a/docs/version-specific/supported-software/f/flatbuffers.md +++ b/docs/version-specific/supported-software/f/flatbuffers.md @@ -21,5 +21,6 @@ version | toolchain ``23.5.26`` | ``GCCcore/12.3.0`` ``23.5.26`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/flex.md b/docs/version-specific/supported-software/f/flex.md index ea05b5b90..98e97819e 100644 --- a/docs/version-specific/supported-software/f/flex.md +++ b/docs/version-specific/supported-software/f/flex.md @@ -85,5 +85,6 @@ version | toolchain ``2.6.4`` | ``GCCcore/system`` ``2.6.4`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/flit.md b/docs/version-specific/supported-software/f/flit.md index 9fde6edf4..442e3276e 100644 --- a/docs/version-specific/supported-software/f/flit.md +++ b/docs/version-specific/supported-software/f/flit.md @@ -13,5 +13,6 @@ version | toolchain ``3.9.0`` | ``GCCcore/12.3.0`` ``3.9.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/flook.md b/docs/version-specific/supported-software/f/flook.md index a1c93e675..4de209085 100644 --- a/docs/version-specific/supported-software/f/flook.md +++ b/docs/version-specific/supported-software/f/flook.md @@ -18,5 +18,6 @@ version | toolchain ``0.8.1`` | ``intel-compilers/2021.2.0`` ``0.8.1`` | ``intel-compilers/2021.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/flowFDA.md b/docs/version-specific/supported-software/f/flowFDA.md index fe6c20d8e..34b516455 100644 --- a/docs/version-specific/supported-software/f/flowFDA.md +++ b/docs/version-specific/supported-software/f/flowFDA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.99-20220602`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fmt.md b/docs/version-specific/supported-software/f/fmt.md index d7624ed0e..05904c1fc 100644 --- a/docs/version-specific/supported-software/f/fmt.md +++ b/docs/version-specific/supported-software/f/fmt.md @@ -26,5 +26,6 @@ version | toolchain ``9.1.0`` | ``GCCcore/11.3.0`` ``9.1.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fontconfig.md b/docs/version-specific/supported-software/f/fontconfig.md index a233ce3a6..b9a7f2ec8 100644 --- a/docs/version-specific/supported-software/f/fontconfig.md +++ b/docs/version-specific/supported-software/f/fontconfig.md @@ -36,5 +36,6 @@ version | versionsuffix | toolchain ``2.14.2`` | | ``GCCcore/13.2.0`` ``2.15.0`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fontsproto.md b/docs/version-specific/supported-software/f/fontsproto.md index 4e18f1d26..8f174611c 100644 --- a/docs/version-specific/supported-software/f/fontsproto.md +++ b/docs/version-specific/supported-software/f/fontsproto.md @@ -14,5 +14,6 @@ version | toolchain ``2.1.3`` | ``gimkl/2.11.5`` ``2.1.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/forbear.md b/docs/version-specific/supported-software/f/forbear.md index dfc4dd934..84ee7a925 100644 --- a/docs/version-specific/supported-software/f/forbear.md +++ b/docs/version-specific/supported-software/f/forbear.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.0`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/foss.md b/docs/version-specific/supported-software/f/foss.md index ceb84a788..bb16faf3f 100644 --- a/docs/version-specific/supported-software/f/foss.md +++ b/docs/version-specific/supported-software/f/foss.md @@ -36,5 +36,6 @@ version | toolchain ``2023b`` | ``system`` ``2024.05`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fosscuda.md b/docs/version-specific/supported-software/f/fosscuda.md index b39d5fd5a..646d1c336 100644 --- a/docs/version-specific/supported-software/f/fosscuda.md +++ b/docs/version-specific/supported-software/f/fosscuda.md @@ -18,5 +18,6 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fplll.md b/docs/version-specific/supported-software/f/fplll.md index 89aa79ff0..7063d9079 100644 --- a/docs/version-specific/supported-software/f/fplll.md +++ b/docs/version-specific/supported-software/f/fplll.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.4.5`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fpocket.md b/docs/version-specific/supported-software/f/fpocket.md index ca881647d..f396b9d19 100644 --- a/docs/version-specific/supported-software/f/fpocket.md +++ b/docs/version-specific/supported-software/f/fpocket.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1.4.2`` | ``gompi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fpylll.md b/docs/version-specific/supported-software/f/fpylll.md index 18b241598..874b181e7 100644 --- a/docs/version-specific/supported-software/f/fpylll.md +++ b/docs/version-specific/supported-software/f/fpylll.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.9`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fqtrim.md b/docs/version-specific/supported-software/f/fqtrim.md index 1d16c29b5..66b87e0f7 100644 --- a/docs/version-specific/supported-software/f/fqtrim.md +++ b/docs/version-specific/supported-software/f/fqtrim.md @@ -13,5 +13,6 @@ version | toolchain ``0.9.4`` | ``intel/2016b`` ``0.9.5`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fqzcomp.md b/docs/version-specific/supported-software/f/fqzcomp.md index eb1ed3e30..19068bd33 100644 --- a/docs/version-specific/supported-software/f/fqzcomp.md +++ b/docs/version-specific/supported-software/f/fqzcomp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.6`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/freebayes.md b/docs/version-specific/supported-software/f/freebayes.md index 01bab13be..457796c18 100644 --- a/docs/version-specific/supported-software/f/freebayes.md +++ b/docs/version-specific/supported-software/f/freebayes.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.3.6`` | ``-R-4.1.2`` | ``foss/2021b`` ``1.3.7`` | ``-R-4.3.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/freeglut.md b/docs/version-specific/supported-software/f/freeglut.md index 74aba83e8..9126af39b 100644 --- a/docs/version-specific/supported-software/f/freeglut.md +++ b/docs/version-specific/supported-software/f/freeglut.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``3.4.0`` | | ``GCCcore/12.2.0`` ``3.4.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index aed7e4cdb..f43adffe4 100644 --- a/docs/version-specific/supported-software/f/freetype-py.md +++ b/docs/version-specific/supported-software/f/freetype-py.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``2.4.0`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/freetype.md b/docs/version-specific/supported-software/f/freetype.md index d851e4154..fbb4799f3 100644 --- a/docs/version-specific/supported-software/f/freetype.md +++ b/docs/version-specific/supported-software/f/freetype.md @@ -42,5 +42,6 @@ version | versionsuffix | toolchain ``2.9.1`` | | ``GCCcore/7.3.0`` ``2.9.1`` | | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 55c89d337..70d3dbaa8 100644 --- a/docs/version-specific/supported-software/f/freud-analysis.md +++ b/docs/version-specific/supported-software/f/freud-analysis.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.6.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fsom.md b/docs/version-specific/supported-software/f/fsom.md index 8d5772da8..dad950c0d 100644 --- a/docs/version-specific/supported-software/f/fsom.md +++ b/docs/version-specific/supported-software/f/fsom.md @@ -17,5 +17,6 @@ version | toolchain ``20151117`` | ``GCCcore/11.3.0`` ``20151117`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/ftfy.md b/docs/version-specific/supported-software/f/ftfy.md index 04c7f09dd..a03384c50 100644 --- a/docs/version-specific/supported-software/f/ftfy.md +++ b/docs/version-specific/supported-software/f/ftfy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.1.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fugue.md b/docs/version-specific/supported-software/f/fugue.md index 547ffc698..dfb46523b 100644 --- a/docs/version-specific/supported-software/f/fugue.md +++ b/docs/version-specific/supported-software/f/fugue.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.7`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fullrmc.md b/docs/version-specific/supported-software/f/fullrmc.md index 0fb097158..37f0b4f52 100644 --- a/docs/version-specific/supported-software/f/fullrmc.md +++ b/docs/version-specific/supported-software/f/fullrmc.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 35a67da31..9f5eae100 100644 --- a/docs/version-specific/supported-software/f/fumi_tools.md +++ b/docs/version-specific/supported-software/f/fumi_tools.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.18.2`` | | ``GCC/11.2.0`` ``0.18.2`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/funannotate.md b/docs/version-specific/supported-software/f/funannotate.md index ddcb2a8bf..6f4ea1ed8 100644 --- a/docs/version-specific/supported-software/f/funannotate.md +++ b/docs/version-specific/supported-software/f/funannotate.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.13`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/futhark.md b/docs/version-specific/supported-software/f/futhark.md index 8c819a8b1..4d28a57d2 100644 --- a/docs/version-specific/supported-software/f/futhark.md +++ b/docs/version-specific/supported-software/f/futhark.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.19.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/futile.md b/docs/version-specific/supported-software/f/futile.md index 3c9bdaecc..588a95e8b 100644 --- a/docs/version-specific/supported-software/f/futile.md +++ b/docs/version-specific/supported-software/f/futile.md @@ -18,5 +18,6 @@ version | toolchain ``1.8.3`` | ``intel/2021a`` ``1.8.3`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/future.md b/docs/version-specific/supported-software/f/future.md index aaa46941a..bb5bab247 100644 --- a/docs/version-specific/supported-software/f/future.md +++ b/docs/version-specific/supported-software/f/future.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.16.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.16.0`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/fxtract.md b/docs/version-specific/supported-software/f/fxtract.md index 0a89c1da6..cdb993757 100644 --- a/docs/version-specific/supported-software/f/fxtract.md +++ b/docs/version-specific/supported-software/f/fxtract.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/f/index.md b/docs/version-specific/supported-software/f/index.md index 8d5380316..33c7bcd9d 100644 --- a/docs/version-specific/supported-software/f/index.md +++ b/docs/version-specific/supported-software/f/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (f) -[0](../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) +*(quick links: [(all)](../index.md) - [0](../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) @@ -176,3 +178,7 @@ search: * [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 index 3c25c3f8b..95c994a5e 100644 --- a/docs/version-specific/supported-software/g/G-PhoCS.md +++ b/docs/version-specific/supported-software/g/G-PhoCS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.3`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 543c4070a..d82f4b3d3 100644 --- a/docs/version-specific/supported-software/g/GAMESS-US.md +++ b/docs/version-specific/supported-software/g/GAMESS-US.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``20230930-R2`` | | ``gompi/2022a`` ``20230930-R2`` | | ``intel-compilers/2022.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GAPPadder.md b/docs/version-specific/supported-software/g/GAPPadder.md index 046dd6dbd..50cc3ef1a 100644 --- a/docs/version-specific/supported-software/g/GAPPadder.md +++ b/docs/version-specific/supported-software/g/GAPPadder.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170601`` | ``-Python-2.7.18`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GARLI.md b/docs/version-specific/supported-software/g/GARLI.md index 309301912..540a0a888 100644 --- a/docs/version-specific/supported-software/g/GARLI.md +++ b/docs/version-specific/supported-software/g/GARLI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.01`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GAT.md b/docs/version-specific/supported-software/g/GAT.md index d8974295b..486d07706 100644 --- a/docs/version-specific/supported-software/g/GAT.md +++ b/docs/version-specific/supported-software/g/GAT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.2`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 670231164..99f1953d9 100644 --- a/docs/version-specific/supported-software/g/GATB-Core.md +++ b/docs/version-specific/supported-software/g/GATB-Core.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.2`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GATE.md b/docs/version-specific/supported-software/g/GATE.md index 4dc7810d2..5d066577a 100644 --- a/docs/version-specific/supported-software/g/GATE.md +++ b/docs/version-specific/supported-software/g/GATE.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``9.2`` | | ``foss/2021b`` ``9.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GATK.md b/docs/version-specific/supported-software/g/GATK.md index 6a8a7af34..c64c57bdd 100644 --- a/docs/version-specific/supported-software/g/GATK.md +++ b/docs/version-specific/supported-software/g/GATK.md @@ -54,5 +54,6 @@ version | versionsuffix | toolchain ``4.4.0.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` ``4.5.0.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GBprocesS.md b/docs/version-specific/supported-software/g/GBprocesS.md index fb7d545ea..c89a6206a 100644 --- a/docs/version-specific/supported-software/g/GBprocesS.md +++ b/docs/version-specific/supported-software/g/GBprocesS.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-3.8.2`` | ``intel/2020a`` ``4.0.0.post1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GC3Pie.md b/docs/version-specific/supported-software/g/GC3Pie.md index 9f5ba4c06..c8ea60aa8 100644 --- a/docs/version-specific/supported-software/g/GC3Pie.md +++ b/docs/version-specific/supported-software/g/GC3Pie.md @@ -14,5 +14,6 @@ version | toolchain ``2.5.0`` | ``system`` ``2.5.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GCC.md b/docs/version-specific/supported-software/g/GCC.md index a33199c20..556bf1d68 100644 --- a/docs/version-specific/supported-software/g/GCC.md +++ b/docs/version-specific/supported-software/g/GCC.md @@ -80,5 +80,6 @@ version | versionsuffix | toolchain ``system`` | ``-2.29`` | ``system`` ``system`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GCCcore.md b/docs/version-specific/supported-software/g/GCCcore.md index 791a1a27f..162355f55 100644 --- a/docs/version-specific/supported-software/g/GCCcore.md +++ b/docs/version-specific/supported-software/g/GCCcore.md @@ -50,5 +50,6 @@ version | toolchain ``9.5.0`` | ``system`` ``system`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GCTA.md b/docs/version-specific/supported-software/g/GCTA.md index 21a085992..2b0b8ba0b 100644 --- a/docs/version-specific/supported-software/g/GCTA.md +++ b/docs/version-specific/supported-software/g/GCTA.md @@ -15,5 +15,6 @@ version | toolchain ``1.94.1`` | ``gfbf/2022a`` ``1.94.1`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GConf.md b/docs/version-specific/supported-software/g/GConf.md index bc53cf66e..db4217642 100644 --- a/docs/version-specific/supported-software/g/GConf.md +++ b/docs/version-specific/supported-software/g/GConf.md @@ -22,5 +22,6 @@ version | toolchain ``3.2.6`` | ``intel/2017a`` ``3.2.6`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GD.md b/docs/version-specific/supported-software/g/GD.md index f07aeb98c..136822030 100644 --- a/docs/version-specific/supported-software/g/GD.md +++ b/docs/version-specific/supported-software/g/GD.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.73`` | | ``GCCcore/10.3.0`` ``2.75`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GDAL.md b/docs/version-specific/supported-software/g/GDAL.md index db4e5cc5c..4e0e75271 100644 --- a/docs/version-specific/supported-software/g/GDAL.md +++ b/docs/version-specific/supported-software/g/GDAL.md @@ -58,5 +58,6 @@ version | versionsuffix | toolchain ``3.6.2`` | | ``foss/2022b`` ``3.7.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GDB.md b/docs/version-specific/supported-software/g/GDB.md index e479e9ed9..625a8e761 100644 --- a/docs/version-specific/supported-software/g/GDB.md +++ b/docs/version-specific/supported-software/g/GDB.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``8.3`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``9.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GDCHART.md b/docs/version-specific/supported-software/g/GDCHART.md index b918f7b93..c4945d98e 100644 --- a/docs/version-specific/supported-software/g/GDCHART.md +++ b/docs/version-specific/supported-software/g/GDCHART.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.11.5dev`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GDCM.md b/docs/version-specific/supported-software/g/GDCM.md index fc513f13e..eb92bbe8a 100644 --- a/docs/version-specific/supported-software/g/GDCM.md +++ b/docs/version-specific/supported-software/g/GDCM.md @@ -19,5 +19,6 @@ version | toolchain ``3.0.8`` | ``GCCcore/10.2.0`` ``3.0.8`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GDGraph.md b/docs/version-specific/supported-software/g/GDGraph.md index d57f666be..b1e61f021 100644 --- a/docs/version-specific/supported-software/g/GDGraph.md +++ b/docs/version-specific/supported-software/g/GDGraph.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.54`` | ``-Perl-5.26.1`` | ``intel/2018a`` ``1.56`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GDRCopy.md b/docs/version-specific/supported-software/g/GDRCopy.md index 757d92a8b..840835ac4 100644 --- a/docs/version-specific/supported-software/g/GDRCopy.md +++ b/docs/version-specific/supported-software/g/GDRCopy.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``2.4`` | | ``GCCcore/13.2.0`` ``2.4.1`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GEGL.md b/docs/version-specific/supported-software/g/GEGL.md index a7457debe..cf0ad09b2 100644 --- a/docs/version-specific/supported-software/g/GEGL.md +++ b/docs/version-specific/supported-software/g/GEGL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.30`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4da8615e2..6fafc3de9 100644 --- a/docs/version-specific/supported-software/g/GEM-library.md +++ b/docs/version-specific/supported-software/g/GEM-library.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20130406-045632`` | ``_pre-release-3_Linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GEM.md b/docs/version-specific/supported-software/g/GEM.md index 5b62669ee..ad95f6a19 100644 --- a/docs/version-specific/supported-software/g/GEM.md +++ b/docs/version-specific/supported-software/g/GEM.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.1`` | ``foss/2022a`` ``1.5.1`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GEMMA.md b/docs/version-specific/supported-software/g/GEMMA.md index 454fa05b3..2fecdc64f 100644 --- a/docs/version-specific/supported-software/g/GEMMA.md +++ b/docs/version-specific/supported-software/g/GEMMA.md @@ -17,5 +17,6 @@ version | toolchain ``0.98.5`` | ``foss/2021b`` ``0.98.5`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GEOS.md b/docs/version-specific/supported-software/g/GEOS.md index a6264b1d6..d3a96d63f 100644 --- a/docs/version-specific/supported-software/g/GEOS.md +++ b/docs/version-specific/supported-software/g/GEOS.md @@ -48,5 +48,6 @@ version | versionsuffix | toolchain ``3.9.1`` | | ``iccifort/2020.4.304`` ``3.9.1`` | | ``intel-compilers/2021.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GETORB.md b/docs/version-specific/supported-software/g/GETORB.md index 6b98c3db8..c161e8d41 100644 --- a/docs/version-specific/supported-software/g/GETORB.md +++ b/docs/version-specific/supported-software/g/GETORB.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 023849c83..1cf6621a2 100644 --- a/docs/version-specific/supported-software/g/GFF3-toolkit.md +++ b/docs/version-specific/supported-software/g/GFF3-toolkit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GFOLD.md b/docs/version-specific/supported-software/g/GFOLD.md index 21928a630..1e8a336b7 100644 --- a/docs/version-specific/supported-software/g/GFOLD.md +++ b/docs/version-specific/supported-software/g/GFOLD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.4`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GHC.md b/docs/version-specific/supported-software/g/GHC.md index a6ddf4531..494468562 100644 --- a/docs/version-specific/supported-software/g/GHC.md +++ b/docs/version-specific/supported-software/g/GHC.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``9.2.2`` | ``-x86_64`` | ``system`` ``9.4.6`` | ``-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 70c947aa7..17af978b2 100644 --- a/docs/version-specific/supported-software/g/GI-DocGen.md +++ b/docs/version-specific/supported-software/g/GI-DocGen.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2023.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GIMIC.md b/docs/version-specific/supported-software/g/GIMIC.md index 4a4caf760..f0037d480 100644 --- a/docs/version-specific/supported-software/g/GIMIC.md +++ b/docs/version-specific/supported-software/g/GIMIC.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.2.1`` | | ``foss/2022a`` ``2018.04.20`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GIMP.md b/docs/version-specific/supported-software/g/GIMP.md index 555248186..96472945c 100644 --- a/docs/version-specific/supported-software/g/GIMP.md +++ b/docs/version-specific/supported-software/g/GIMP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.10.24`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GIMPS.md b/docs/version-specific/supported-software/g/GIMPS.md index e7fa17bce..df3472bd3 100644 --- a/docs/version-specific/supported-software/g/GIMPS.md +++ b/docs/version-specific/supported-software/g/GIMPS.md @@ -13,5 +13,6 @@ version | toolchain ``p95v279`` | ``GCC/4.8.2`` ``p95v279.linux64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GKeyll.md b/docs/version-specific/supported-software/g/GKeyll.md index f81e63e12..5b66e5446 100644 --- a/docs/version-specific/supported-software/g/GKeyll.md +++ b/docs/version-specific/supported-software/g/GKeyll.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220803`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c1a8ac87a..c15eb6231 100644 --- a/docs/version-specific/supported-software/g/GKlib-METIS.md +++ b/docs/version-specific/supported-software/g/GKlib-METIS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.1.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GL2PS.md b/docs/version-specific/supported-software/g/GL2PS.md index 0c78a8ce2..7e4919832 100644 --- a/docs/version-specific/supported-software/g/GL2PS.md +++ b/docs/version-specific/supported-software/g/GL2PS.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``1.4.2`` | | ``GCCcore/12.3.0`` ``1.4.2`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLFW.md b/docs/version-specific/supported-software/g/GLFW.md index 2d71a3633..1ee9d6417 100644 --- a/docs/version-specific/supported-software/g/GLFW.md +++ b/docs/version-specific/supported-software/g/GLFW.md @@ -19,5 +19,6 @@ version | toolchain ``3.4`` | ``GCCcore/12.2.0`` ``3.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLI.md b/docs/version-specific/supported-software/g/GLI.md index f1f22298c..8de418c1a 100644 --- a/docs/version-specific/supported-software/g/GLI.md +++ b/docs/version-specific/supported-software/g/GLI.md @@ -13,5 +13,6 @@ version | toolchain ``4.5.31`` | ``GCCcore/10.2.0`` ``4.5.31`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLIMMER.md b/docs/version-specific/supported-software/g/GLIMMER.md index e455ee2c4..7eb01c696 100644 --- a/docs/version-specific/supported-software/g/GLIMMER.md +++ b/docs/version-specific/supported-software/g/GLIMMER.md @@ -13,5 +13,6 @@ version | toolchain ``3.02b`` | ``foss/2016b`` ``3.02b`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLIMPSE.md b/docs/version-specific/supported-software/g/GLIMPSE.md index 8976de7bf..90ece5205 100644 --- a/docs/version-specific/supported-software/g/GLIMPSE.md +++ b/docs/version-specific/supported-software/g/GLIMPSE.md @@ -14,5 +14,6 @@ version | toolchain ``2.0.0`` | ``GCC/11.3.0`` ``2.0.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8d7b79d9e..52bd04a65 100644 --- a/docs/version-specific/supported-software/g/GLM-AED.md +++ b/docs/version-specific/supported-software/g/GLM-AED.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3.0a5`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLM.md b/docs/version-specific/supported-software/g/GLM.md index c0809a31d..3e1ca7c43 100644 --- a/docs/version-specific/supported-software/g/GLM.md +++ b/docs/version-specific/supported-software/g/GLM.md @@ -22,5 +22,6 @@ version | toolchain ``0.9.9.8`` | ``GCCcore/12.3.0`` ``0.9.9.8`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLPK.md b/docs/version-specific/supported-software/g/GLPK.md index a2230a830..3c8346b6c 100644 --- a/docs/version-specific/supported-software/g/GLPK.md +++ b/docs/version-specific/supported-software/g/GLPK.md @@ -28,5 +28,6 @@ version | toolchain ``5.0`` | ``GCCcore/12.3.0`` ``5.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLib.md b/docs/version-specific/supported-software/g/GLib.md index 81d238135..06361d03a 100644 --- a/docs/version-specific/supported-software/g/GLib.md +++ b/docs/version-specific/supported-software/g/GLib.md @@ -37,5 +37,6 @@ version | toolchain ``2.77.1`` | ``GCCcore/12.3.0`` ``2.78.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GLibmm.md b/docs/version-specific/supported-software/g/GLibmm.md index 3d5d25e87..0d2ee25f9 100644 --- a/docs/version-specific/supported-software/g/GLibmm.md +++ b/docs/version-specific/supported-software/g/GLibmm.md @@ -15,5 +15,6 @@ version | toolchain ``2.49.7`` | ``GCCcore/8.3.0`` ``2.66.4`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3c38bd53f..bd5e3650c 100644 --- a/docs/version-specific/supported-software/g/GMAP-GSNAP.md +++ b/docs/version-specific/supported-software/g/GMAP-GSNAP.md @@ -22,5 +22,6 @@ version | toolchain ``2023-04-20`` | ``GCC/10.3.0`` ``2023-04-20`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fe3500925..80447bf31 100644 --- a/docs/version-specific/supported-software/g/GMP-ECM.md +++ b/docs/version-specific/supported-software/g/GMP-ECM.md @@ -13,5 +13,6 @@ version | toolchain ``7.0.5`` | ``GCCcore/11.3.0`` ``7.0.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GMP.md b/docs/version-specific/supported-software/g/GMP.md index f8c5271d1..b02359126 100644 --- a/docs/version-specific/supported-software/g/GMP.md +++ b/docs/version-specific/supported-software/g/GMP.md @@ -46,5 +46,6 @@ version | toolchain ``6.3.0`` | ``GCCcore/13.2.0`` ``6.3.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GMT.md b/docs/version-specific/supported-software/g/GMT.md index 4b5270c5a..61c25ee0b 100644 --- a/docs/version-specific/supported-software/g/GMT.md +++ b/docs/version-specific/supported-software/g/GMT.md @@ -18,5 +18,6 @@ version | toolchain ``6.2.0`` | ``foss/2019b`` ``6.2.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GNU.md b/docs/version-specific/supported-software/g/GNU.md index c0ee03152..46df0eb90 100644 --- a/docs/version-specific/supported-software/g/GNU.md +++ b/docs/version-specific/supported-software/g/GNU.md @@ -14,5 +14,6 @@ version | toolchain ``4.9.3-2.25`` | ``system`` ``5.1.0-2.25`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GOATOOLS.md b/docs/version-specific/supported-software/g/GOATOOLS.md index f8285bae3..49539f594 100644 --- a/docs/version-specific/supported-software/g/GOATOOLS.md +++ b/docs/version-specific/supported-software/g/GOATOOLS.md @@ -15,5 +15,6 @@ version | toolchain ``1.3.1`` | ``foss/2022a`` ``1.4.5`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GOBNILP.md b/docs/version-specific/supported-software/g/GOBNILP.md index da4c71440..0757e81e7 100644 --- a/docs/version-specific/supported-software/g/GOBNILP.md +++ b/docs/version-specific/supported-software/g/GOBNILP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.3`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 19ba66a9a..6a35274ff 100644 --- a/docs/version-specific/supported-software/g/GObject-Introspection.md +++ b/docs/version-specific/supported-software/g/GObject-Introspection.md @@ -38,5 +38,6 @@ version | versionsuffix | toolchain ``1.76.1`` | | ``GCCcore/12.3.0`` ``1.78.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GP2C.md b/docs/version-specific/supported-software/g/GP2C.md index f9edaada1..fc9556809 100644 --- a/docs/version-specific/supported-software/g/GP2C.md +++ b/docs/version-specific/supported-software/g/GP2C.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.9pl5`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2ef7375d8..f258811c4 100644 --- a/docs/version-specific/supported-software/g/GPAW-setups.md +++ b/docs/version-specific/supported-software/g/GPAW-setups.md @@ -16,5 +16,6 @@ version | toolchain ``0.9.9672`` | ``system`` ``24.1.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GPAW.md b/docs/version-specific/supported-software/g/GPAW.md index db4b95e42..e8464f1e0 100644 --- a/docs/version-specific/supported-software/g/GPAW.md +++ b/docs/version-specific/supported-software/g/GPAW.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``24.1.0`` | | ``intel/2022a`` ``24.1.0`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GPy.md b/docs/version-specific/supported-software/g/GPy.md index bca4cbc70..80fdf9b75 100644 --- a/docs/version-specific/supported-software/g/GPy.md +++ b/docs/version-specific/supported-software/g/GPy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.10.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GPyOpt.md b/docs/version-specific/supported-software/g/GPyOpt.md index 25f4963a0..2d4c9cc9c 100644 --- a/docs/version-specific/supported-software/g/GPyOpt.md +++ b/docs/version-specific/supported-software/g/GPyOpt.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.6`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GPyTorch.md b/docs/version-specific/supported-software/g/GPyTorch.md index ef06bfa36..8adb31f0c 100644 --- a/docs/version-specific/supported-software/g/GPyTorch.md +++ b/docs/version-specific/supported-software/g/GPyTorch.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``foss/2020b`` ``1.9.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f033524a6..67cba6d76 100644 --- a/docs/version-specific/supported-software/g/GRASP-suite.md +++ b/docs/version-specific/supported-software/g/GRASP-suite.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2023-05-09`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GRASP.md b/docs/version-specific/supported-software/g/GRASP.md index 556e5210f..d51db9e9b 100644 --- a/docs/version-specific/supported-software/g/GRASP.md +++ b/docs/version-specific/supported-software/g/GRASP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2018`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GRASS.md b/docs/version-specific/supported-software/g/GRASS.md index e967a7d02..7db9a18bb 100644 --- a/docs/version-specific/supported-software/g/GRASS.md +++ b/docs/version-specific/supported-software/g/GRASS.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``7.8.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``8.2.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GRIDSS.md b/docs/version-specific/supported-software/g/GRIDSS.md index b55e3cfc1..3c33240bd 100644 --- a/docs/version-specific/supported-software/g/GRIDSS.md +++ b/docs/version-specific/supported-software/g/GRIDSS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.13.2`` | ``-Java-11`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GRIT.md b/docs/version-specific/supported-software/g/GRIT.md index 50c026c94..bfcac6444 100644 --- a/docs/version-specific/supported-software/g/GRIT.md +++ b/docs/version-specific/supported-software/g/GRIT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.5`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GRNBoost.md b/docs/version-specific/supported-software/g/GRNBoost.md index 93ff7e4aa..7fff914df 100644 --- a/docs/version-specific/supported-software/g/GRNBoost.md +++ b/docs/version-specific/supported-software/g/GRNBoost.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20171009`` | ``-Java-1.8.0_152`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GROMACS.md b/docs/version-specific/supported-software/g/GROMACS.md index 244d75457..77ab6c7c9 100644 --- a/docs/version-specific/supported-software/g/GROMACS.md +++ b/docs/version-specific/supported-software/g/GROMACS.md @@ -79,5 +79,6 @@ version | versionsuffix | toolchain ``5.1.4`` | ``-hybrid`` | ``foss/2016b`` ``5.1.4`` | ``-mt`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GSD.md b/docs/version-specific/supported-software/g/GSD.md index 92c6025bc..d5e2824f0 100644 --- a/docs/version-specific/supported-software/g/GSD.md +++ b/docs/version-specific/supported-software/g/GSD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GSEA.md b/docs/version-specific/supported-software/g/GSEA.md index 55e1db1ad..a887166ad 100644 --- a/docs/version-specific/supported-software/g/GSEA.md +++ b/docs/version-specific/supported-software/g/GSEA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GSL.md b/docs/version-specific/supported-software/g/GSL.md index 6e52c6a84..647743f79 100644 --- a/docs/version-specific/supported-software/g/GSL.md +++ b/docs/version-specific/supported-software/g/GSL.md @@ -45,5 +45,6 @@ version | toolchain ``2.7`` | ``intel-compilers/2021.4.0`` ``2.7`` | ``intel-compilers/2022.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b1190e9e7..04e60fba3 100644 --- a/docs/version-specific/supported-software/g/GST-plugins-bad.md +++ b/docs/version-specific/supported-software/g/GST-plugins-bad.md @@ -14,5 +14,6 @@ version | toolchain ``1.22.5`` | ``GCC/12.2.0`` ``1.22.5`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6314f3346..3763b7988 100644 --- a/docs/version-specific/supported-software/g/GST-plugins-base.md +++ b/docs/version-specific/supported-software/g/GST-plugins-base.md @@ -28,5 +28,6 @@ version | toolchain ``1.6.4`` | ``foss/2016a`` ``1.8.3`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GStreamer.md b/docs/version-specific/supported-software/g/GStreamer.md index 1566b22e4..b1abb8af1 100644 --- a/docs/version-specific/supported-software/g/GStreamer.md +++ b/docs/version-specific/supported-software/g/GStreamer.md @@ -29,5 +29,6 @@ version | toolchain ``1.6.4`` | ``foss/2016a`` ``1.8.3`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 697628e9d..7e1a9694e 100644 --- a/docs/version-specific/supported-software/g/GTDB-Tk.md +++ b/docs/version-specific/supported-software/g/GTDB-Tk.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``2.3.2`` | | ``foss/2023a`` ``2.4.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GTK+.md b/docs/version-specific/supported-software/g/GTK+.md index 573fff53b..d89c8e846 100644 --- a/docs/version-specific/supported-software/g/GTK+.md +++ b/docs/version-specific/supported-software/g/GTK+.md @@ -28,5 +28,6 @@ version | toolchain ``3.24.23`` | ``GCCcore/10.2.0`` ``3.24.8`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GTK2.md b/docs/version-specific/supported-software/g/GTK2.md index 68399b5fa..219eac80e 100644 --- a/docs/version-specific/supported-software/g/GTK2.md +++ b/docs/version-specific/supported-software/g/GTK2.md @@ -13,5 +13,6 @@ version | toolchain ``2.24.33`` | ``GCCcore/10.3.0`` ``2.24.33`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GTK3.md b/docs/version-specific/supported-software/g/GTK3.md index 9f4be0089..3367e1b07 100644 --- a/docs/version-specific/supported-software/g/GTK3.md +++ b/docs/version-specific/supported-software/g/GTK3.md @@ -17,5 +17,6 @@ version | toolchain ``3.24.37`` | ``GCCcore/12.3.0`` ``3.24.39`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GTK4.md b/docs/version-specific/supported-software/g/GTK4.md index 7d50bbccb..f31a2b23f 100644 --- a/docs/version-specific/supported-software/g/GTK4.md +++ b/docs/version-specific/supported-software/g/GTK4.md @@ -14,5 +14,6 @@ version | toolchain ``4.13.1`` | ``GCC/12.3.0`` ``4.7.0`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GTOOL.md b/docs/version-specific/supported-software/g/GTOOL.md index e3f4dc260..bc735e0a8 100644 --- a/docs/version-specific/supported-software/g/GTOOL.md +++ b/docs/version-specific/supported-software/g/GTOOL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GTS.md b/docs/version-specific/supported-software/g/GTS.md index 6059763ef..bb7b99bc0 100644 --- a/docs/version-specific/supported-software/g/GTS.md +++ b/docs/version-specific/supported-software/g/GTS.md @@ -28,5 +28,6 @@ version | toolchain ``0.7.6`` | ``intel/2018a`` ``20121130`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GUIDANCE.md b/docs/version-specific/supported-software/g/GUIDANCE.md index d5f6ab67b..0d97626f5 100644 --- a/docs/version-specific/supported-software/g/GUIDANCE.md +++ b/docs/version-specific/supported-software/g/GUIDANCE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.02`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GULP.md b/docs/version-specific/supported-software/g/GULP.md index 4365d6966..9f9f04222 100644 --- a/docs/version-specific/supported-software/g/GULP.md +++ b/docs/version-specific/supported-software/g/GULP.md @@ -13,5 +13,6 @@ version | toolchain ``5.1`` | ``intel/2019a`` ``6.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GUSHR.md b/docs/version-specific/supported-software/g/GUSHR.md index 11e2e6c97..a2c9c42c6 100644 --- a/docs/version-specific/supported-software/g/GUSHR.md +++ b/docs/version-specific/supported-software/g/GUSHR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2020-09-28`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gaia.md b/docs/version-specific/supported-software/g/Gaia.md index a02e204b3..a9ad04e82 100644 --- a/docs/version-specific/supported-software/g/Gaia.md +++ b/docs/version-specific/supported-software/g/Gaia.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.5`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GapCloser.md b/docs/version-specific/supported-software/g/GapCloser.md index 6f199c9d0..f677fbd7b 100644 --- a/docs/version-specific/supported-software/g/GapCloser.md +++ b/docs/version-specific/supported-software/g/GapCloser.md @@ -13,5 +13,6 @@ version | toolchain ``1.12-r6`` | ``foss/2018a`` ``1.12-r6`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GapFiller.md b/docs/version-specific/supported-software/g/GapFiller.md index 6304ccfd5..237afc049 100644 --- a/docs/version-specific/supported-software/g/GapFiller.md +++ b/docs/version-specific/supported-software/g/GapFiller.md @@ -13,5 +13,6 @@ version | toolchain ``2.1.1`` | ``intel/2017a`` ``2.1.2`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gaussian.md b/docs/version-specific/supported-software/g/Gaussian.md index be55623a5..9646655e3 100644 --- a/docs/version-specific/supported-software/g/Gaussian.md +++ b/docs/version-specific/supported-software/g/Gaussian.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``09.e.01`` | ``-AVX`` | ``system`` ``16.A.03`` | ``-AVX2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gblocks.md b/docs/version-specific/supported-software/g/Gblocks.md index c9bd9f0d6..fe35107e5 100644 --- a/docs/version-specific/supported-software/g/Gblocks.md +++ b/docs/version-specific/supported-software/g/Gblocks.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.91b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gctf.md b/docs/version-specific/supported-software/g/Gctf.md index b2c8441a5..db567c964 100644 --- a/docs/version-specific/supported-software/g/Gctf.md +++ b/docs/version-specific/supported-software/g/Gctf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.06`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 45de4142f..51c1f094d 100644 --- a/docs/version-specific/supported-software/g/Gdk-Pixbuf.md +++ b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md @@ -35,5 +35,6 @@ version | toolchain ``2.42.6`` | ``GCCcore/11.2.0`` ``2.42.8`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gdspy.md b/docs/version-specific/supported-software/g/Gdspy.md index f56c6fa42..95461dae7 100644 --- a/docs/version-specific/supported-software/g/Gdspy.md +++ b/docs/version-specific/supported-software/g/Gdspy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.13`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 38f555aca..d93869827 100644 --- a/docs/version-specific/supported-software/g/Geant4-data.md +++ b/docs/version-specific/supported-software/g/Geant4-data.md @@ -14,5 +14,6 @@ version | toolchain ``20201103`` | ``system`` ``20210510`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Geant4.md b/docs/version-specific/supported-software/g/Geant4.md index 3423dd190..b324369c0 100644 --- a/docs/version-specific/supported-software/g/Geant4.md +++ b/docs/version-specific/supported-software/g/Geant4.md @@ -31,5 +31,6 @@ version | toolchain ``9.5.p02`` | ``intel/2016a`` ``9.6.p04`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenMap.md b/docs/version-specific/supported-software/g/GenMap.md index 64bf747fb..b546a4f9d 100644 --- a/docs/version-specific/supported-software/g/GenMap.md +++ b/docs/version-specific/supported-software/g/GenMap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 365dd5b37..05254a2b2 100644 --- a/docs/version-specific/supported-software/g/GeneMark-ET.md +++ b/docs/version-specific/supported-software/g/GeneMark-ET.md @@ -16,5 +16,6 @@ version | toolchain ``4.71`` | ``GCCcore/11.2.0`` ``4.71`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenerativeModels.md b/docs/version-specific/supported-software/g/GenerativeModels.md index 21bfa6a6e..d925d92bd 100644 --- a/docs/version-specific/supported-software/g/GenerativeModels.md +++ b/docs/version-specific/supported-software/g/GenerativeModels.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenomeComb.md b/docs/version-specific/supported-software/g/GenomeComb.md index 46aa2e7c3..698914d91 100644 --- a/docs/version-specific/supported-software/g/GenomeComb.md +++ b/docs/version-specific/supported-software/g/GenomeComb.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.106.0`` | ``-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenomeMapper.md b/docs/version-specific/supported-software/g/GenomeMapper.md index dff740f10..980922a0e 100644 --- a/docs/version-specific/supported-software/g/GenomeMapper.md +++ b/docs/version-specific/supported-software/g/GenomeMapper.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.4`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenomeTester4.md b/docs/version-specific/supported-software/g/GenomeTester4.md index 0c46acdad..50a10594e 100644 --- a/docs/version-specific/supported-software/g/GenomeTester4.md +++ b/docs/version-specific/supported-software/g/GenomeTester4.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenomeThreader.md b/docs/version-specific/supported-software/g/GenomeThreader.md index 7e3508e7a..d4d064de0 100644 --- a/docs/version-specific/supported-software/g/GenomeThreader.md +++ b/docs/version-specific/supported-software/g/GenomeThreader.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.7.1`` | ``-Linux_x86_64-64bit`` | ``system`` ``1.7.3`` | ``-Linux_x86_64-64bit`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenomeTools.md b/docs/version-specific/supported-software/g/GenomeTools.md index 157e84083..7408b7944 100644 --- a/docs/version-specific/supported-software/g/GenomeTools.md +++ b/docs/version-specific/supported-software/g/GenomeTools.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``1.6.2`` | | ``GCC/11.3.0`` ``1.6.2`` | | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenomeWorks.md b/docs/version-specific/supported-software/g/GenomeWorks.md index 7f6f81588..8d840240a 100644 --- a/docs/version-specific/supported-software/g/GenomeWorks.md +++ b/docs/version-specific/supported-software/g/GenomeWorks.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2021.02.2`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 02557c6cc..3948b62e6 100644 --- a/docs/version-specific/supported-software/g/Genome_Profiler.md +++ b/docs/version-specific/supported-software/g/Genome_Profiler.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1`` | ``-Perl-5.24.0`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GenotypeHarmonizer.md b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md index c9b3a1ab9..ca5615ee5 100644 --- a/docs/version-specific/supported-software/g/GenotypeHarmonizer.md +++ b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.14`` | ``-Java-1.7.0_80`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gerris.md b/docs/version-specific/supported-software/g/Gerris.md index 4c1febdd6..e1896c14c 100644 --- a/docs/version-specific/supported-software/g/Gerris.md +++ b/docs/version-specific/supported-software/g/Gerris.md @@ -13,5 +13,6 @@ version | toolchain ``20131206`` | ``foss/2017b`` ``20131206`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GetOrganelle.md b/docs/version-specific/supported-software/g/GetOrganelle.md index bee2daaf2..e8668b477 100644 --- a/docs/version-specific/supported-software/g/GetOrganelle.md +++ b/docs/version-specific/supported-software/g/GetOrganelle.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.7.6.1`` | | ``foss/2021b`` ``1.7.7.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GffCompare.md b/docs/version-specific/supported-software/g/GffCompare.md index ad5275e43..95c2a630f 100644 --- a/docs/version-specific/supported-software/g/GffCompare.md +++ b/docs/version-specific/supported-software/g/GffCompare.md @@ -17,5 +17,6 @@ version | toolchain ``0.12.2`` | ``GCC/10.3.0`` ``0.12.6`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Ghostscript.md b/docs/version-specific/supported-software/g/Ghostscript.md index 801c9a7db..a57cc094f 100644 --- a/docs/version-specific/supported-software/g/Ghostscript.md +++ b/docs/version-specific/supported-software/g/Ghostscript.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``9.54.0`` | | ``GCCcore/11.2.0`` ``9.56.1`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gibbs2.md b/docs/version-specific/supported-software/g/Gibbs2.md index 21546425a..9d20df8eb 100644 --- a/docs/version-specific/supported-software/g/Gibbs2.md +++ b/docs/version-specific/supported-software/g/Gibbs2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GimmeMotifs.md b/docs/version-specific/supported-software/g/GimmeMotifs.md index d3904a9a3..5e2e0dff4 100644 --- a/docs/version-specific/supported-software/g/GimmeMotifs.md +++ b/docs/version-specific/supported-software/g/GimmeMotifs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.17.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 59f946cda..e8b9e7f7d 100644 --- a/docs/version-specific/supported-software/g/Giotto-Suite.md +++ b/docs/version-specific/supported-software/g/Giotto-Suite.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GitPython.md b/docs/version-specific/supported-software/g/GitPython.md index 52cc1b33e..fcefc9d6c 100644 --- a/docs/version-specific/supported-software/g/GitPython.md +++ b/docs/version-specific/supported-software/g/GitPython.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``3.1.42`` | | ``GCCcore/13.2.0`` ``3.1.9`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Givaro.md b/docs/version-specific/supported-software/g/Givaro.md index 6f5836d07..151283232 100644 --- a/docs/version-specific/supported-software/g/Givaro.md +++ b/docs/version-specific/supported-software/g/Givaro.md @@ -14,5 +14,6 @@ version | toolchain ``4.2.0`` | ``GCCcore/11.3.0`` ``4.2.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Giza.md b/docs/version-specific/supported-software/g/Giza.md index 2bc0567b1..c18ae24e9 100644 --- a/docs/version-specific/supported-software/g/Giza.md +++ b/docs/version-specific/supported-software/g/Giza.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.0`` | ``foss/2018b`` ``1.4.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Glade.md b/docs/version-specific/supported-software/g/Glade.md index f28c02e1a..6f6bd7c63 100644 --- a/docs/version-specific/supported-software/g/Glade.md +++ b/docs/version-specific/supported-software/g/Glade.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.8.6`` | ``-Python-2.7.15`` | ``foss/2018b`` ``3.8.6`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GlimmerHMM.md b/docs/version-specific/supported-software/g/GlimmerHMM.md index 728e40304..6963ef3ca 100644 --- a/docs/version-specific/supported-software/g/GlimmerHMM.md +++ b/docs/version-specific/supported-software/g/GlimmerHMM.md @@ -16,5 +16,6 @@ version | toolchain ``3.0.4c`` | ``GCC/11.2.0`` ``3.0.4c`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GlobalArrays.md b/docs/version-specific/supported-software/g/GlobalArrays.md index 9db14d7c9..b47867e6c 100644 --- a/docs/version-specific/supported-software/g/GlobalArrays.md +++ b/docs/version-specific/supported-software/g/GlobalArrays.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``5.8.2`` | | ``intel/2022a`` ``5.8.2`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a82333a9b..f55a91cd0 100644 --- a/docs/version-specific/supported-software/g/Globus-CLI.md +++ b/docs/version-specific/supported-software/g/Globus-CLI.md @@ -15,5 +15,6 @@ version | toolchain ``3.2.0`` | ``GCCcore/10.3.0`` ``3.6.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GlobusConnectPersonal.md b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md index 55e7b69ec..f192980c2 100644 --- a/docs/version-specific/supported-software/g/GlobusConnectPersonal.md +++ b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Glucose.md b/docs/version-specific/supported-software/g/Glucose.md index a42199821..f41eb5e28 100644 --- a/docs/version-specific/supported-software/g/Glucose.md +++ b/docs/version-specific/supported-software/g/Glucose.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.1`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GnuTLS.md b/docs/version-specific/supported-software/g/GnuTLS.md index 334065ac2..3114e8e7f 100644 --- a/docs/version-specific/supported-software/g/GnuTLS.md +++ b/docs/version-specific/supported-software/g/GnuTLS.md @@ -18,5 +18,6 @@ version | toolchain ``3.7.8`` | ``GCCcore/11.3.0`` ``3.7.8`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Go.md b/docs/version-specific/supported-software/g/Go.md index 70e114910..30b1420e0 100644 --- a/docs/version-specific/supported-software/g/Go.md +++ b/docs/version-specific/supported-software/g/Go.md @@ -33,5 +33,6 @@ version | toolchain ``1.5`` | ``GCC/4.8.4`` ``1.8.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Godon.md b/docs/version-specific/supported-software/g/Godon.md index f098d5a62..c8f7ca9ed 100644 --- a/docs/version-specific/supported-software/g/Godon.md +++ b/docs/version-specific/supported-software/g/Godon.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210913`` | ``-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GraPhlAn.md b/docs/version-specific/supported-software/g/GraPhlAn.md index 0d43fa495..20d678306 100644 --- a/docs/version-specific/supported-software/g/GraPhlAn.md +++ b/docs/version-specific/supported-software/g/GraPhlAn.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-2.7.16`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Grace.md b/docs/version-specific/supported-software/g/Grace.md index acfa8f464..4dbaff9b1 100644 --- a/docs/version-specific/supported-software/g/Grace.md +++ b/docs/version-specific/supported-software/g/Grace.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``5.1.25`` | ``-5build1`` | ``intel/2019a`` ``5.1.25`` | ``-5build1`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gradle.md b/docs/version-specific/supported-software/g/Gradle.md index 279bbf4eb..fd491d005 100644 --- a/docs/version-specific/supported-software/g/Gradle.md +++ b/docs/version-specific/supported-software/g/Gradle.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``6.9.1`` | | ``system`` ``8.6`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GraphDB.md b/docs/version-specific/supported-software/g/GraphDB.md index 8c263c7f1..5e82b6590 100644 --- a/docs/version-specific/supported-software/g/GraphDB.md +++ b/docs/version-specific/supported-software/g/GraphDB.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``10.1.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GraphMap.md b/docs/version-specific/supported-software/g/GraphMap.md index 5d5d7060f..0967100a9 100644 --- a/docs/version-specific/supported-software/g/GraphMap.md +++ b/docs/version-specific/supported-software/g/GraphMap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GraphMap2.md b/docs/version-specific/supported-software/g/GraphMap2.md index 06766695a..181de0193 100644 --- a/docs/version-specific/supported-software/g/GraphMap2.md +++ b/docs/version-specific/supported-software/g/GraphMap2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Graphene.md b/docs/version-specific/supported-software/g/Graphene.md index 7dec6ed10..c0906a044 100644 --- a/docs/version-specific/supported-software/g/Graphene.md +++ b/docs/version-specific/supported-software/g/Graphene.md @@ -16,5 +16,6 @@ version | toolchain ``1.10.8`` | ``GCCcore/13.2.0`` ``1.6.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GraphicsMagick.md b/docs/version-specific/supported-software/g/GraphicsMagick.md index 35175f195..4f99a467d 100644 --- a/docs/version-specific/supported-software/g/GraphicsMagick.md +++ b/docs/version-specific/supported-software/g/GraphicsMagick.md @@ -21,5 +21,6 @@ version | toolchain ``1.3.36`` | ``GCCcore/11.2.0`` ``1.3.36`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Graphviz.md b/docs/version-specific/supported-software/g/Graphviz.md index f9cee07ea..3715cb881 100644 --- a/docs/version-specific/supported-software/g/Graphviz.md +++ b/docs/version-specific/supported-software/g/Graphviz.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``8.1.0`` | | ``GCCcore/12.2.0`` ``8.1.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Greenlet.md b/docs/version-specific/supported-software/g/Greenlet.md index 8eb06950c..5fecf5ea3 100644 --- a/docs/version-specific/supported-software/g/Greenlet.md +++ b/docs/version-specific/supported-software/g/Greenlet.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``3.0.2`` | | ``GCCcore/12.3.0`` ``3.0.3`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Grep.md b/docs/version-specific/supported-software/g/Grep.md index 8774ca204..ef7dc8285 100644 --- a/docs/version-specific/supported-software/g/Grep.md +++ b/docs/version-specific/supported-software/g/Grep.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.21`` | ``GCC/4.9.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GroIMP.md b/docs/version-specific/supported-software/g/GroIMP.md index 5d795b725..68096d4b2 100644 --- a/docs/version-specific/supported-software/g/GroIMP.md +++ b/docs/version-specific/supported-software/g/GroIMP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GromacsWrapper.md b/docs/version-specific/supported-software/g/GromacsWrapper.md index 9fca1a625..675544d88 100644 --- a/docs/version-specific/supported-software/g/GromacsWrapper.md +++ b/docs/version-specific/supported-software/g/GromacsWrapper.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Groovy.md b/docs/version-specific/supported-software/g/Groovy.md index c469c3526..ce381aa92 100644 --- a/docs/version-specific/supported-software/g/Groovy.md +++ b/docs/version-specific/supported-software/g/Groovy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.5.9`` | ``-Java-11`` | ``system`` ``4.0.3`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/GtkSourceView.md b/docs/version-specific/supported-software/g/GtkSourceView.md index 89bba1d47..0714096b1 100644 --- a/docs/version-specific/supported-software/g/GtkSourceView.md +++ b/docs/version-specific/supported-software/g/GtkSourceView.md @@ -14,5 +14,6 @@ version | toolchain ``3.24.11`` | ``GCCcore/8.2.0`` ``4.4.0`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Guile.md b/docs/version-specific/supported-software/g/Guile.md index 02141df39..0515398a6 100644 --- a/docs/version-specific/supported-software/g/Guile.md +++ b/docs/version-specific/supported-software/g/Guile.md @@ -33,5 +33,6 @@ version | toolchain ``3.0.9`` | ``GCCcore/10.2.0`` ``3.0.9`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/Gurobi.md b/docs/version-specific/supported-software/g/Gurobi.md index ebdcab400..90701614e 100644 --- a/docs/version-specific/supported-software/g/Gurobi.md +++ b/docs/version-specific/supported-software/g/Gurobi.md @@ -36,5 +36,6 @@ version | versionsuffix | toolchain ``9.5.0`` | | ``GCCcore/11.2.0`` ``9.5.2`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/g2clib.md b/docs/version-specific/supported-software/g/g2clib.md index 828f76295..ad8f065d6 100644 --- a/docs/version-specific/supported-software/g/g2clib.md +++ b/docs/version-specific/supported-software/g/g2clib.md @@ -22,5 +22,6 @@ version | toolchain ``1.6.3`` | ``GCCcore/11.2.0`` ``1.7.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/g2lib.md b/docs/version-specific/supported-software/g/g2lib.md index 30424bbbb..164d02ec2 100644 --- a/docs/version-specific/supported-software/g/g2lib.md +++ b/docs/version-specific/supported-software/g/g2lib.md @@ -20,5 +20,6 @@ version | toolchain ``3.2.0`` | ``GCCcore/10.2.0`` ``3.2.0`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/g2log.md b/docs/version-specific/supported-software/g/g2log.md index fcf4a0606..323f864c4 100644 --- a/docs/version-specific/supported-software/g/g2log.md +++ b/docs/version-specific/supported-software/g/g2log.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``GCCcore/8.3.0`` ``1.0`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gRPC.md b/docs/version-specific/supported-software/g/gRPC.md index f3489b957..86ab0b080 100644 --- a/docs/version-specific/supported-software/g/gRPC.md +++ b/docs/version-specific/supported-software/g/gRPC.md @@ -14,5 +14,6 @@ version | toolchain ``1.57.0`` | ``GCCcore/12.3.0`` ``1.62.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gSOAP.md b/docs/version-specific/supported-software/g/gSOAP.md index c915c969f..d0e65017f 100644 --- a/docs/version-specific/supported-software/g/gSOAP.md +++ b/docs/version-specific/supported-software/g/gSOAP.md @@ -13,5 +13,6 @@ version | toolchain ``2.8.100`` | ``GCCcore/8.3.0`` ``2.8.48`` | ``GCCcore/6.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gap.md b/docs/version-specific/supported-software/g/gap.md index 3585572b0..18e1dc58f 100644 --- a/docs/version-specific/supported-software/g/gap.md +++ b/docs/version-specific/supported-software/g/gap.md @@ -14,5 +14,6 @@ version | toolchain ``4.12.2`` | ``foss/2022a`` ``4.9.3`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gappa.md b/docs/version-specific/supported-software/g/gappa.md index 35956f6d8..4df36e29d 100644 --- a/docs/version-specific/supported-software/g/gappa.md +++ b/docs/version-specific/supported-software/g/gappa.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/garnett.md b/docs/version-specific/supported-software/g/garnett.md index 1885ea61c..0da2c73bd 100644 --- a/docs/version-specific/supported-software/g/garnett.md +++ b/docs/version-specific/supported-software/g/garnett.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.20`` | ``-R-4.0.3`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gawk.md b/docs/version-specific/supported-software/g/gawk.md index e65d57eef..ac50b5e19 100644 --- a/docs/version-specific/supported-software/g/gawk.md +++ b/docs/version-specific/supported-software/g/gawk.md @@ -17,5 +17,6 @@ version | toolchain ``5.3.0`` | ``GCC/12.2.0`` ``5.3.0`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gbasis.md b/docs/version-specific/supported-software/g/gbasis.md index cbe372b03..0723b5172 100644 --- a/docs/version-specific/supported-software/g/gbasis.md +++ b/docs/version-specific/supported-software/g/gbasis.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20210904`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gbs2ploidy.md b/docs/version-specific/supported-software/g/gbs2ploidy.md index e83c0e18b..60abd5d51 100644 --- a/docs/version-specific/supported-software/g/gbs2ploidy.md +++ b/docs/version-specific/supported-software/g/gbs2ploidy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-R-3.4.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gc.md b/docs/version-specific/supported-software/g/gc.md index 7e12068ea..523a19180 100644 --- a/docs/version-specific/supported-software/g/gc.md +++ b/docs/version-specific/supported-software/g/gc.md @@ -24,5 +24,6 @@ version | toolchain ``8.2.4`` | ``GCCcore/12.3.0`` ``8.2.6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gcccuda.md b/docs/version-specific/supported-software/g/gcccuda.md index bda1ed496..51ed14f37 100644 --- a/docs/version-specific/supported-software/g/gcccuda.md +++ b/docs/version-specific/supported-software/g/gcccuda.md @@ -19,5 +19,6 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gcloud.md b/docs/version-specific/supported-software/g/gcloud.md index fe1109a42..788b86203 100644 --- a/docs/version-specific/supported-software/g/gcloud.md +++ b/docs/version-specific/supported-software/g/gcloud.md @@ -13,5 +13,6 @@ version | toolchain ``382.0.0`` | ``system`` ``472.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gcsfs.md b/docs/version-specific/supported-software/g/gcsfs.md index 855deea59..ce8bf16f2 100644 --- a/docs/version-specific/supported-software/g/gcsfs.md +++ b/docs/version-specific/supported-software/g/gcsfs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2023.12.2.post1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gdbgui.md b/docs/version-specific/supported-software/g/gdbgui.md index 4f866ca27..cf76e3a8c 100644 --- a/docs/version-specific/supported-software/g/gdbgui.md +++ b/docs/version-specific/supported-software/g/gdbgui.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.13.1.2`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gdbm.md b/docs/version-specific/supported-software/g/gdbm.md index 21c3412d0..8635b2fce 100644 --- a/docs/version-specific/supported-software/g/gdbm.md +++ b/docs/version-specific/supported-software/g/gdbm.md @@ -13,5 +13,6 @@ version | toolchain ``1.18.1`` | ``foss/2020a`` ``1.21`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ac08ff10b..62b8e75c9 100644 --- a/docs/version-specific/supported-software/g/gdc-client.md +++ b/docs/version-specific/supported-software/g/gdc-client.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``1.6.0`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gdist.md b/docs/version-specific/supported-software/g/gdist.md index 531cbe73b..02d0ce963 100644 --- a/docs/version-specific/supported-software/g/gdist.md +++ b/docs/version-specific/supported-software/g/gdist.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gearshifft.md b/docs/version-specific/supported-software/g/gearshifft.md index e2f7c007a..3a9cb53ec 100644 --- a/docs/version-specific/supported-software/g/gearshifft.md +++ b/docs/version-specific/supported-software/g/gearshifft.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gemelli.md b/docs/version-specific/supported-software/g/gemelli.md index 444c785dc..253a9ffa7 100644 --- a/docs/version-specific/supported-software/g/gemelli.md +++ b/docs/version-specific/supported-software/g/gemelli.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.9`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gemmi.md b/docs/version-specific/supported-software/g/gemmi.md index 94a6039a8..e4c5314d1 100644 --- a/docs/version-specific/supported-software/g/gemmi.md +++ b/docs/version-specific/supported-software/g/gemmi.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.5`` | ``GCCcore/10.2.0`` ``0.6.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4425f41ae..f8f999a55 100644 --- a/docs/version-specific/supported-software/g/gencore_variant_detection.md +++ b/docs/version-specific/supported-software/g/gencore_variant_detection.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gengetopt.md b/docs/version-specific/supported-software/g/gengetopt.md index d46b89407..0f6b7cd76 100644 --- a/docs/version-specific/supported-software/g/gengetopt.md +++ b/docs/version-specific/supported-software/g/gengetopt.md @@ -16,5 +16,6 @@ version | toolchain ``2.23`` | ``GCCcore/13.2.0`` ``2.23`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/genomepy.md b/docs/version-specific/supported-software/g/genomepy.md index 2f639e905..0f4cec0ee 100644 --- a/docs/version-specific/supported-software/g/genomepy.md +++ b/docs/version-specific/supported-software/g/genomepy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.15.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/genozip.md b/docs/version-specific/supported-software/g/genozip.md index 43db5a99d..a1b06a0b7 100644 --- a/docs/version-specific/supported-software/g/genozip.md +++ b/docs/version-specific/supported-software/g/genozip.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``13.0.5`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gensim.md b/docs/version-specific/supported-software/g/gensim.md index 39260488d..04fdd7818 100644 --- a/docs/version-specific/supported-software/g/gensim.md +++ b/docs/version-specific/supported-software/g/gensim.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.8.3`` | | ``intel/2020b`` ``4.2.0`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/geocube.md b/docs/version-specific/supported-software/g/geocube.md index f4771d7fa..37233c57b 100644 --- a/docs/version-specific/supported-software/g/geocube.md +++ b/docs/version-specific/supported-software/g/geocube.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.0.14`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.4.3`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/geopandas.md b/docs/version-specific/supported-software/g/geopandas.md index 27a263b33..990522c8d 100644 --- a/docs/version-specific/supported-software/g/geopandas.md +++ b/docs/version-specific/supported-software/g/geopandas.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.8.1`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/geopy.md b/docs/version-specific/supported-software/g/geopy.md index 627d37606..797c5e456 100644 --- a/docs/version-specific/supported-software/g/geopy.md +++ b/docs/version-specific/supported-software/g/geopy.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.1.0`` | | ``GCCcore/10.2.0`` ``2.4.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/georges.md b/docs/version-specific/supported-software/g/georges.md index d0faeea75..a3fc2bb3a 100644 --- a/docs/version-specific/supported-software/g/georges.md +++ b/docs/version-specific/supported-software/g/georges.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2019.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2019.2`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/geosphere.md b/docs/version-specific/supported-software/g/geosphere.md index ffd9b2097..453f90438 100644 --- a/docs/version-specific/supported-software/g/geosphere.md +++ b/docs/version-specific/supported-software/g/geosphere.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5-18`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gettext.md b/docs/version-specific/supported-software/g/gettext.md index 766b5f7a6..00e38514a 100644 --- a/docs/version-specific/supported-software/g/gettext.md +++ b/docs/version-specific/supported-software/g/gettext.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``0.22.5`` | | ``system`` ``0.22`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gexiv2.md b/docs/version-specific/supported-software/g/gexiv2.md index c7262f9e6..9295eac4c 100644 --- a/docs/version-specific/supported-software/g/gexiv2.md +++ b/docs/version-specific/supported-software/g/gexiv2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.12.2`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gfbf.md b/docs/version-specific/supported-software/g/gfbf.md index ca8c83d96..78f20d818 100644 --- a/docs/version-specific/supported-software/g/gfbf.md +++ b/docs/version-specific/supported-software/g/gfbf.md @@ -17,5 +17,6 @@ version | toolchain ``2023b`` | ``system`` ``2024.05`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gffread.md b/docs/version-specific/supported-software/g/gffread.md index f82897f19..d1b59a60c 100644 --- a/docs/version-specific/supported-software/g/gffread.md +++ b/docs/version-specific/supported-software/g/gffread.md @@ -18,5 +18,6 @@ version | toolchain ``0.12.7`` | ``GCCcore/12.2.0`` ``0.9.12`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gffutils.md b/docs/version-specific/supported-software/g/gffutils.md index a915c1dc1..c68e98e0f 100644 --- a/docs/version-specific/supported-software/g/gffutils.md +++ b/docs/version-specific/supported-software/g/gffutils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.12`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gflags.md b/docs/version-specific/supported-software/g/gflags.md index a6a3144e4..79766c137 100644 --- a/docs/version-specific/supported-software/g/gflags.md +++ b/docs/version-specific/supported-software/g/gflags.md @@ -23,5 +23,6 @@ version | toolchain ``2.2.2`` | ``GCCcore/8.3.0`` ``2.2.2`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gh.md b/docs/version-specific/supported-software/g/gh.md index 932eeb697..25965960f 100644 --- a/docs/version-specific/supported-software/g/gh.md +++ b/docs/version-specific/supported-software/g/gh.md @@ -13,5 +13,6 @@ version | toolchain ``1.3.1`` | ``system`` ``2.20.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/giac.md b/docs/version-specific/supported-software/g/giac.md index 9e43d5312..fae85e794 100644 --- a/docs/version-specific/supported-software/g/giac.md +++ b/docs/version-specific/supported-software/g/giac.md @@ -13,5 +13,6 @@ version | toolchain ``1.9.0-69`` | ``gfbf/2022a`` ``1.9.0-99`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/giflib.md b/docs/version-specific/supported-software/g/giflib.md index 935ce0a65..6a3cc0fac 100644 --- a/docs/version-specific/supported-software/g/giflib.md +++ b/docs/version-specific/supported-software/g/giflib.md @@ -22,5 +22,6 @@ version | toolchain ``5.2.1`` | ``GCCcore/8.3.0`` ``5.2.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gifsicle.md b/docs/version-specific/supported-software/g/gifsicle.md index 069916da4..2c21cb3d9 100644 --- a/docs/version-specific/supported-software/g/gifsicle.md +++ b/docs/version-specific/supported-software/g/gifsicle.md @@ -13,5 +13,6 @@ version | toolchain ``1.92`` | ``GCCcore/8.2.0`` ``1.93`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gimkl.md b/docs/version-specific/supported-software/g/gimkl.md index 814eceda5..62475eea1 100644 --- a/docs/version-specific/supported-software/g/gimkl.md +++ b/docs/version-specific/supported-software/g/gimkl.md @@ -14,5 +14,6 @@ version | toolchain ``2017a`` | ``system`` ``2018b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gimpi.md b/docs/version-specific/supported-software/g/gimpi.md index f0020b34a..b23d32feb 100644 --- a/docs/version-specific/supported-software/g/gimpi.md +++ b/docs/version-specific/supported-software/g/gimpi.md @@ -16,5 +16,6 @@ version | toolchain ``2018a`` | ``system`` ``2018b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gimpic.md b/docs/version-specific/supported-software/g/gimpic.md index 4206d36f6..4d8f5dcad 100644 --- a/docs/version-specific/supported-software/g/gimpic.md +++ b/docs/version-specific/supported-software/g/gimpic.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2017b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/giolf.md b/docs/version-specific/supported-software/g/giolf.md index 710626a9a..a4d4c1f35 100644 --- a/docs/version-specific/supported-software/g/giolf.md +++ b/docs/version-specific/supported-software/g/giolf.md @@ -13,5 +13,6 @@ version | toolchain ``2017b`` | ``system`` ``2018a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/giolfc.md b/docs/version-specific/supported-software/g/giolfc.md index 54f69a149..8107c117b 100644 --- a/docs/version-specific/supported-software/g/giolfc.md +++ b/docs/version-specific/supported-software/g/giolfc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2017b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6987fa7c2..d5bf6f6f9 100644 --- a/docs/version-specific/supported-software/g/git-annex.md +++ b/docs/version-specific/supported-software/g/git-annex.md @@ -13,5 +13,6 @@ version | toolchain ``10.20230802`` | ``GCCcore/12.2.0`` ``10.20230802`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 40ba0ffa2..23079340e 100644 --- a/docs/version-specific/supported-software/g/git-extras.md +++ b/docs/version-specific/supported-software/g/git-extras.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.1.0`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6909ce5a4..1ce4b5a61 100644 --- a/docs/version-specific/supported-software/g/git-lfs.md +++ b/docs/version-specific/supported-software/g/git-lfs.md @@ -18,5 +18,6 @@ version | toolchain ``3.4.1`` | ``system`` ``3.5.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/git.md b/docs/version-specific/supported-software/g/git.md index e69aa260d..e2e5e1c79 100644 --- a/docs/version-specific/supported-software/g/git.md +++ b/docs/version-specific/supported-software/g/git.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``2.45.1`` | | ``GCCcore/13.3.0`` ``2.8.0`` | | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gkmSVM.md b/docs/version-specific/supported-software/g/gkmSVM.md index c1d2cefd5..43e5ef73f 100644 --- a/docs/version-specific/supported-software/g/gkmSVM.md +++ b/docs/version-specific/supported-software/g/gkmSVM.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.82.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/glew.md b/docs/version-specific/supported-software/g/glew.md index 88bc18c02..76d6a6c51 100644 --- a/docs/version-specific/supported-software/g/glew.md +++ b/docs/version-specific/supported-software/g/glew.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-egl`` | ``GCCcore/12.3.0`` ``2.2.0`` | ``-osmesa`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f1c318c10..8fa9d1269 100644 --- a/docs/version-specific/supported-software/g/glib-networking.md +++ b/docs/version-specific/supported-software/g/glib-networking.md @@ -14,5 +14,6 @@ version | toolchain ``2.72.1`` | ``GCCcore/11.2.0`` ``2.72.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/glibc.md b/docs/version-specific/supported-software/g/glibc.md index b7c48e81a..42ca16bb8 100644 --- a/docs/version-specific/supported-software/g/glibc.md +++ b/docs/version-specific/supported-software/g/glibc.md @@ -14,5 +14,6 @@ version | toolchain ``2.26`` | ``GCCcore/6.4.0`` ``2.30`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/glog.md b/docs/version-specific/supported-software/g/glog.md index 0d877fdc4..f21adc03d 100644 --- a/docs/version-specific/supported-software/g/glog.md +++ b/docs/version-specific/supported-software/g/glog.md @@ -20,5 +20,6 @@ version | toolchain ``0.5.0`` | ``GCCcore/10.2.0`` ``0.6.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/glproto.md b/docs/version-specific/supported-software/g/glproto.md index 48e31b792..6959ee726 100644 --- a/docs/version-specific/supported-software/g/glproto.md +++ b/docs/version-specific/supported-software/g/glproto.md @@ -14,5 +14,6 @@ version | toolchain ``1.4.17`` | ``gimkl/2.11.5`` ``1.4.17`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gmpich.md b/docs/version-specific/supported-software/g/gmpich.md index fafcbc72c..4e9cad37e 100644 --- a/docs/version-specific/supported-software/g/gmpich.md +++ b/docs/version-specific/supported-software/g/gmpich.md @@ -13,5 +13,6 @@ version | toolchain ``2016a`` | ``system`` ``2017.08`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gmpolf.md b/docs/version-specific/supported-software/g/gmpolf.md index 459049318..f9d33dca9 100644 --- a/docs/version-specific/supported-software/g/gmpolf.md +++ b/docs/version-specific/supported-software/g/gmpolf.md @@ -13,5 +13,6 @@ version | toolchain ``2016a`` | ``system`` ``2017.10`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gmpy2.md b/docs/version-specific/supported-software/g/gmpy2.md index 987123008..8f256352e 100644 --- a/docs/version-specific/supported-software/g/gmpy2.md +++ b/docs/version-specific/supported-software/g/gmpy2.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``2.1.5`` | | ``GCC/12.3.0`` ``2.1.5`` | | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gmsh.md b/docs/version-specific/supported-software/g/gmsh.md index fe272f6a7..21f8d1aba 100644 --- a/docs/version-specific/supported-software/g/gmsh.md +++ b/docs/version-specific/supported-software/g/gmsh.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``4.8.4`` | ``-Python-3.6.4`` | ``foss/2018a`` ``4.9.0`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gmvapich2.md b/docs/version-specific/supported-software/g/gmvapich2.md index e57ad2e36..73aa47493 100644 --- a/docs/version-specific/supported-software/g/gmvapich2.md +++ b/docs/version-specific/supported-software/g/gmvapich2.md @@ -13,5 +13,6 @@ version | toolchain ``1.7.20`` | ``system`` ``2016a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gmvolf.md b/docs/version-specific/supported-software/g/gmvolf.md index 948a42179..e2f960309 100644 --- a/docs/version-specific/supported-software/g/gmvolf.md +++ b/docs/version-specific/supported-software/g/gmvolf.md @@ -13,5 +13,6 @@ version | toolchain ``1.7.20`` | ``system`` ``2016a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bc4b8d485..c79179ef3 100644 --- a/docs/version-specific/supported-software/g/gnupg-bundle.md +++ b/docs/version-specific/supported-software/g/gnupg-bundle.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20240306`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gnuplot.md b/docs/version-specific/supported-software/g/gnuplot.md index 1d771c537..52508cab0 100644 --- a/docs/version-specific/supported-software/g/gnuplot.md +++ b/docs/version-specific/supported-software/g/gnuplot.md @@ -32,5 +32,6 @@ version | toolchain ``5.4.6`` | ``GCCcore/12.2.0`` ``5.4.8`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/goalign.md b/docs/version-specific/supported-software/g/goalign.md index 558c9c383..ee1a6ab78 100644 --- a/docs/version-specific/supported-software/g/goalign.md +++ b/docs/version-specific/supported-software/g/goalign.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gobff.md b/docs/version-specific/supported-software/g/gobff.md index 875e336d9..23afd6f51 100644 --- a/docs/version-specific/supported-software/g/gobff.md +++ b/docs/version-specific/supported-software/g/gobff.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2020b`` | | ``system`` ``2021a`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/goblf.md b/docs/version-specific/supported-software/g/goblf.md index d42c58075..2d686f982 100644 --- a/docs/version-specific/supported-software/g/goblf.md +++ b/docs/version-specific/supported-software/g/goblf.md @@ -13,5 +13,6 @@ version | toolchain ``2018b`` | ``system`` ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gofasta.md b/docs/version-specific/supported-software/g/gofasta.md index 635755731..ad59645e8 100644 --- a/docs/version-specific/supported-software/g/gofasta.md +++ b/docs/version-specific/supported-software/g/gofasta.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/golf.md b/docs/version-specific/supported-software/g/golf.md index 6638c44cc..3af05d2e3 100644 --- a/docs/version-specific/supported-software/g/golf.md +++ b/docs/version-specific/supported-software/g/golf.md @@ -13,5 +13,6 @@ version | toolchain ``2018a`` | ``system`` ``2020a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gomkl.md b/docs/version-specific/supported-software/g/gomkl.md index 77bb6ff19..44ad3e36c 100644 --- a/docs/version-specific/supported-software/g/gomkl.md +++ b/docs/version-specific/supported-software/g/gomkl.md @@ -19,5 +19,6 @@ version | toolchain ``2022a`` | ``system`` ``2023a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gompi.md b/docs/version-specific/supported-software/g/gompi.md index b6698c54a..61cac0fa2 100644 --- a/docs/version-specific/supported-software/g/gompi.md +++ b/docs/version-specific/supported-software/g/gompi.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``2024.05`` | | ``system`` ``system`` | ``-2.29`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gompic.md b/docs/version-specific/supported-software/g/gompic.md index ff29f5eb4..c76dda251 100644 --- a/docs/version-specific/supported-software/g/gompic.md +++ b/docs/version-specific/supported-software/g/gompic.md @@ -18,5 +18,6 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 56e867fdc..4b10480a6 100644 --- a/docs/version-specific/supported-software/g/google-java-format.md +++ b/docs/version-specific/supported-software/g/google-java-format.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.7`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/googletest.md b/docs/version-specific/supported-software/g/googletest.md index fd3b0db0e..cbb798ebf 100644 --- a/docs/version-specific/supported-software/g/googletest.md +++ b/docs/version-specific/supported-software/g/googletest.md @@ -25,5 +25,6 @@ version | toolchain ``1.8.0`` | ``intel/2016b`` ``1.8.1`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gotree.md b/docs/version-specific/supported-software/g/gotree.md index 9d4a2b853..bd5fee62d 100644 --- a/docs/version-specific/supported-software/g/gotree.md +++ b/docs/version-specific/supported-software/g/gotree.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gperf.md b/docs/version-specific/supported-software/g/gperf.md index 430e8a2b2..000319ce2 100644 --- a/docs/version-specific/supported-software/g/gperf.md +++ b/docs/version-specific/supported-software/g/gperf.md @@ -31,5 +31,6 @@ version | toolchain ``3.1`` | ``GCCcore/8.3.0`` ``3.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gperftools.md b/docs/version-specific/supported-software/g/gperftools.md index 2ec87084e..a1bda8586 100644 --- a/docs/version-specific/supported-software/g/gperftools.md +++ b/docs/version-specific/supported-software/g/gperftools.md @@ -24,5 +24,6 @@ version | toolchain ``2.9.1`` | ``GCCcore/10.3.0`` ``2.9.1`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gpustat.md b/docs/version-specific/supported-software/g/gpustat.md index aa0f70e06..89fe8e0e3 100644 --- a/docs/version-specific/supported-software/g/gpustat.md +++ b/docs/version-specific/supported-software/g/gpustat.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.0.0b1`` | | ``GCCcore/11.2.0`` ``1.1`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gradunwarp.md b/docs/version-specific/supported-software/g/gradunwarp.md index 7688cf303..1e53a197e 100644 --- a/docs/version-specific/supported-software/g/gradunwarp.md +++ b/docs/version-specific/supported-software/g/gradunwarp.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.2.0`` | ``-HCP-Python-2.7.15`` | ``foss/2019a`` ``1.2.0`` | ``-HCP-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3d213b320..6604801d7 100644 --- a/docs/version-specific/supported-software/g/graph-tool.md +++ b/docs/version-specific/supported-software/g/graph-tool.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.27`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.55`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/graphite2.md b/docs/version-specific/supported-software/g/graphite2.md index ceea948ba..fc4bded4d 100644 --- a/docs/version-specific/supported-software/g/graphite2.md +++ b/docs/version-specific/supported-software/g/graphite2.md @@ -19,5 +19,6 @@ version | toolchain ``1.3.14`` | ``GCCcore/13.2.0`` ``1.3.14`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8b4f5ccf1..c06399ca9 100644 --- a/docs/version-specific/supported-software/g/graphviz-python.md +++ b/docs/version-specific/supported-software/g/graphviz-python.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.5.1`` | ``-Python-3.5.2`` | ``intel/2016b`` ``0.8.2`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gretl.md b/docs/version-specific/supported-software/g/gretl.md index a59df02da..c86c7f6ad 100644 --- a/docs/version-specific/supported-software/g/gretl.md +++ b/docs/version-specific/supported-software/g/gretl.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2020a`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3f80a8c9c..790085c70 100644 --- a/docs/version-specific/supported-software/g/grib_api.md +++ b/docs/version-specific/supported-software/g/grib_api.md @@ -16,5 +16,6 @@ version | toolchain ``1.24.0`` | ``intel/2017a`` ``1.24.0`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/grid.md b/docs/version-specific/supported-software/g/grid.md index b5fb09db3..d8debf3e7 100644 --- a/docs/version-specific/supported-software/g/grid.md +++ b/docs/version-specific/supported-software/g/grid.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220610`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/groff.md b/docs/version-specific/supported-software/g/groff.md index 0f5930cca..8608c5666 100644 --- a/docs/version-specific/supported-software/g/groff.md +++ b/docs/version-specific/supported-software/g/groff.md @@ -22,5 +22,6 @@ version | toolchain ``1.22.4`` | ``GCCcore/9.3.0`` ``1.23.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/grpcio.md b/docs/version-specific/supported-software/g/grpcio.md index e810f3129..8f8837a63 100644 --- a/docs/version-specific/supported-software/g/grpcio.md +++ b/docs/version-specific/supported-software/g/grpcio.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.57.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 768635100..d57f16e1e 100644 --- a/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md +++ b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.34.0`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gspell.md b/docs/version-specific/supported-software/g/gspell.md index 6ce8e7767..59a89b5df 100644 --- a/docs/version-specific/supported-software/g/gspell.md +++ b/docs/version-specific/supported-software/g/gspell.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.12.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gsport.md b/docs/version-specific/supported-software/g/gsport.md index 320cd9d7d..53375d7eb 100644 --- a/docs/version-specific/supported-software/g/gsport.md +++ b/docs/version-specific/supported-software/g/gsport.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gsutil.md b/docs/version-specific/supported-software/g/gsutil.md index c78d3f9e8..b3976799f 100644 --- a/docs/version-specific/supported-software/g/gsutil.md +++ b/docs/version-specific/supported-software/g/gsutil.md @@ -13,5 +13,6 @@ version | toolchain ``5.10`` | ``GCCcore/11.2.0`` ``5.29`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gsw.md b/docs/version-specific/supported-software/g/gsw.md index 8552a3b70..711544508 100644 --- a/docs/version-specific/supported-software/g/gsw.md +++ b/docs/version-specific/supported-software/g/gsw.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.6.16`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gubbins.md b/docs/version-specific/supported-software/g/gubbins.md index 0c3f4c1f9..7bb810ecb 100644 --- a/docs/version-specific/supported-software/g/gubbins.md +++ b/docs/version-specific/supported-software/g/gubbins.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/guenomu.md b/docs/version-specific/supported-software/g/guenomu.md index 65676cb15..a85e9d78f 100644 --- a/docs/version-specific/supported-software/g/guenomu.md +++ b/docs/version-specific/supported-software/g/guenomu.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2019.07.05`` | ``-mpi`` | ``iimpi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/gzip.md b/docs/version-specific/supported-software/g/gzip.md index 6eb83da1c..45aff5349 100644 --- a/docs/version-specific/supported-software/g/gzip.md +++ b/docs/version-specific/supported-software/g/gzip.md @@ -26,5 +26,6 @@ version | toolchain ``1.8`` | ``GCCcore/6.4.0`` ``1.9`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/g/index.md b/docs/version-specific/supported-software/g/index.md index 349d78d14..fecca6604 100644 --- a/docs/version-specific/supported-software/g/index.md +++ b/docs/version-specific/supported-software/g/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (g) -[0](../0/index.md) - [a](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../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) @@ -242,3 +244,7 @@ search: * [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 index df5a3ece5..d96cd9ce6 100644 --- a/docs/version-specific/supported-software/h/H5hut.md +++ b/docs/version-specific/supported-software/h/H5hut.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.99.13`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HAL.md b/docs/version-specific/supported-software/h/HAL.md index 418274c94..450c89ea7 100644 --- a/docs/version-specific/supported-software/h/HAL.md +++ b/docs/version-specific/supported-software/h/HAL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HAPGEN2.md b/docs/version-specific/supported-software/h/HAPGEN2.md index a1418307e..680b51124 100644 --- a/docs/version-specific/supported-software/h/HAPGEN2.md +++ b/docs/version-specific/supported-software/h/HAPGEN2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HBase.md b/docs/version-specific/supported-software/h/HBase.md index e8f2b946c..454f4fbc9 100644 --- a/docs/version-specific/supported-software/h/HBase.md +++ b/docs/version-specific/supported-software/h/HBase.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f4cbc4c78..895c2c993 100644 --- a/docs/version-specific/supported-software/h/HD-BET.md +++ b/docs/version-specific/supported-software/h/HD-BET.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20220318`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``20220318`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HDBSCAN.md b/docs/version-specific/supported-software/h/HDBSCAN.md index 732729d7b..e8bd6a2a3 100644 --- a/docs/version-specific/supported-software/h/HDBSCAN.md +++ b/docs/version-specific/supported-software/h/HDBSCAN.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.8.27`` | | ``foss/2021a`` ``0.8.29`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HDDM.md b/docs/version-specific/supported-software/h/HDDM.md index ef31239c4..8f456b81e 100644 --- a/docs/version-specific/supported-software/h/HDDM.md +++ b/docs/version-specific/supported-software/h/HDDM.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.9.9`` | | ``foss/2021b`` ``0.9.9`` | | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3f8637688..a8ae3217d 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS.md +++ b/docs/version-specific/supported-software/h/HDF-EOS.md @@ -14,5 +14,6 @@ version | toolchain ``2.20`` | ``GCCcore/7.3.0`` ``2.20`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8b88a1d88..7ed70a356 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS2.md +++ b/docs/version-specific/supported-software/h/HDF-EOS2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cfe77b3c1..64a66d094 100644 --- a/docs/version-specific/supported-software/h/HDF-EOS5.md +++ b/docs/version-specific/supported-software/h/HDF-EOS5.md @@ -14,5 +14,6 @@ version | toolchain ``1.16`` | ``gompi/2019b`` ``1.16`` | ``gompi/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HDF.md b/docs/version-specific/supported-software/h/HDF.md index c8c5f8cc1..ac28def39 100644 --- a/docs/version-specific/supported-software/h/HDF.md +++ b/docs/version-specific/supported-software/h/HDF.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``4.2.16-2`` | | ``GCCcore/13.2.0`` ``4.2.16`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HDF5.md b/docs/version-specific/supported-software/h/HDF5.md index b2ef02247..b8352d0ca 100644 --- a/docs/version-specific/supported-software/h/HDF5.md +++ b/docs/version-specific/supported-software/h/HDF5.md @@ -110,5 +110,6 @@ version | versionsuffix | toolchain ``1.8.20`` | | ``intel/2017b`` ``1.8.20`` | | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HDFView.md b/docs/version-specific/supported-software/h/HDFView.md index 69b0b8349..8aa39ab3f 100644 --- a/docs/version-specific/supported-software/h/HDFView.md +++ b/docs/version-specific/supported-software/h/HDFView.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.14`` | ``-Java-1.8.0_152-centos6`` | ``system`` ``2.14`` | ``-Java-1.8.0_152-centos7`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HEALPix.md b/docs/version-specific/supported-software/h/HEALPix.md index 6b704c5d3..749a29795 100644 --- a/docs/version-specific/supported-software/h/HEALPix.md +++ b/docs/version-specific/supported-software/h/HEALPix.md @@ -13,5 +13,6 @@ version | toolchain ``3.50`` | ``GCCcore/7.3.0`` ``3.50`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dd467db32..a6a1d0f13 100644 --- a/docs/version-specific/supported-software/h/HF-Datasets.md +++ b/docs/version-specific/supported-software/h/HF-Datasets.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.18.0`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4f36a5f45..6f41450a5 100644 --- a/docs/version-specific/supported-software/h/HH-suite.md +++ b/docs/version-specific/supported-software/h/HH-suite.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``3.3.0`` | ``-Python-3.7.4`` | ``gompic/2019b`` ``3.3.0`` | | ``gompic/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HIP.md b/docs/version-specific/supported-software/h/HIP.md index f1b227300..2f3d273ce 100644 --- a/docs/version-specific/supported-software/h/HIP.md +++ b/docs/version-specific/supported-software/h/HIP.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.5.0`` | ``-amd`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HIPS.md b/docs/version-specific/supported-software/h/HIPS.md index c8d49220c..a09bb499e 100644 --- a/docs/version-specific/supported-software/h/HIPS.md +++ b/docs/version-specific/supported-software/h/HIPS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2b-rc5`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HISAT2.md b/docs/version-specific/supported-software/h/HISAT2.md index 6db22e5a0..648c78243 100644 --- a/docs/version-specific/supported-software/h/HISAT2.md +++ b/docs/version-specific/supported-software/h/HISAT2.md @@ -27,5 +27,6 @@ version | toolchain ``2.2.1`` | ``gompi/2022a`` ``2.2.1`` | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HLAminer.md b/docs/version-specific/supported-software/h/HLAminer.md index ca4994358..ff1e5879c 100644 --- a/docs/version-specific/supported-software/h/HLAminer.md +++ b/docs/version-specific/supported-software/h/HLAminer.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4`` | ``-Perl-5.28.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HMMER.md b/docs/version-specific/supported-software/h/HMMER.md index f079af7c6..190454e8d 100644 --- a/docs/version-specific/supported-software/h/HMMER.md +++ b/docs/version-specific/supported-software/h/HMMER.md @@ -37,5 +37,6 @@ version | toolchain ``3.3.2`` | ``iimpi/2021b`` ``3.4`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HMMER2.md b/docs/version-specific/supported-software/h/HMMER2.md index 89e85283b..a0780c236 100644 --- a/docs/version-specific/supported-software/h/HMMER2.md +++ b/docs/version-specific/supported-software/h/HMMER2.md @@ -14,5 +14,6 @@ version | toolchain ``2.3.2`` | ``GCC/10.3.0`` ``2.3.2`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HOME.md b/docs/version-specific/supported-software/h/HOME.md index d92a2e2a9..6fefd1c6e 100644 --- a/docs/version-specific/supported-software/h/HOME.md +++ b/docs/version-specific/supported-software/h/HOME.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9`` | ``-Python-2.7.13`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HOMER.md b/docs/version-specific/supported-software/h/HOMER.md index 026f87d31..c41293a03 100644 --- a/docs/version-specific/supported-software/h/HOMER.md +++ b/docs/version-specific/supported-software/h/HOMER.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.11`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 897d9f42b..e29fb4c2e 100644 --- a/docs/version-specific/supported-software/h/HOOMD-blue.md +++ b/docs/version-specific/supported-software/h/HOOMD-blue.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``4.0.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HPCC.md b/docs/version-specific/supported-software/h/HPCC.md index 29875093a..30bb6fa88 100644 --- a/docs/version-specific/supported-software/h/HPCC.md +++ b/docs/version-specific/supported-software/h/HPCC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HPCG.md b/docs/version-specific/supported-software/h/HPCG.md index 00fd1da43..2e262aeb8 100644 --- a/docs/version-specific/supported-software/h/HPCG.md +++ b/docs/version-specific/supported-software/h/HPCG.md @@ -26,5 +26,6 @@ version | toolchain ``3.1`` | ``intel/2022b`` ``3.1`` | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HPCX.md b/docs/version-specific/supported-software/h/HPCX.md index b7954f3ab..589a59fdc 100644 --- a/docs/version-specific/supported-software/h/HPCX.md +++ b/docs/version-specific/supported-software/h/HPCX.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.0`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HPDBSCAN.md b/docs/version-specific/supported-software/h/HPDBSCAN.md index 60085fe8f..660531e88 100644 --- a/docs/version-specific/supported-software/h/HPDBSCAN.md +++ b/docs/version-specific/supported-software/h/HPDBSCAN.md @@ -13,5 +13,6 @@ version | toolchain ``20171110`` | ``foss/2017b`` ``20210826`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HPL.md b/docs/version-specific/supported-software/h/HPL.md index 32d1203f4..68dd2c0a7 100644 --- a/docs/version-specific/supported-software/h/HPL.md +++ b/docs/version-specific/supported-software/h/HPL.md @@ -131,5 +131,6 @@ version | versionsuffix | toolchain ``2.3`` | | ``iomkl/2021a`` ``2.3`` | | ``iomkl/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HTSeq.md b/docs/version-specific/supported-software/h/HTSeq.md index b62682ea9..3897da2e2 100644 --- a/docs/version-specific/supported-software/h/HTSeq.md +++ b/docs/version-specific/supported-software/h/HTSeq.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.0.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HTSlib.md b/docs/version-specific/supported-software/h/HTSlib.md index 9d26e23a1..b1dbd8369 100644 --- a/docs/version-specific/supported-software/h/HTSlib.md +++ b/docs/version-specific/supported-software/h/HTSlib.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``1.9`` | | ``intel/2018b`` ``20160107`` | ``-PacBio`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HTSplotter.md b/docs/version-specific/supported-software/h/HTSplotter.md index e23aed6ec..399fe2d42 100644 --- a/docs/version-specific/supported-software/h/HTSplotter.md +++ b/docs/version-specific/supported-software/h/HTSplotter.md @@ -13,5 +13,6 @@ version | toolchain ``0.15`` | ``foss/2022a`` ``2.11`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Hadoop.md b/docs/version-specific/supported-software/h/Hadoop.md index 9a211aff0..6bee59b63 100644 --- a/docs/version-specific/supported-software/h/Hadoop.md +++ b/docs/version-specific/supported-software/h/Hadoop.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2.6.0-cdh5.8.0`` | ``-native`` | ``system`` ``2.9.2`` | ``-native`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HarfBuzz.md b/docs/version-specific/supported-software/h/HarfBuzz.md index f533fa897..5ab196eaa 100644 --- a/docs/version-specific/supported-software/h/HarfBuzz.md +++ b/docs/version-specific/supported-software/h/HarfBuzz.md @@ -36,5 +36,6 @@ version | toolchain ``5.3.1`` | ``GCCcore/12.3.0`` ``8.2.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Harminv.md b/docs/version-specific/supported-software/h/Harminv.md index 3c7e7f8e6..4bffe27fa 100644 --- a/docs/version-specific/supported-software/h/Harminv.md +++ b/docs/version-specific/supported-software/h/Harminv.md @@ -17,5 +17,6 @@ version | toolchain ``1.4.1`` | ``intel/2020a`` ``1.4.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HeFFTe.md b/docs/version-specific/supported-software/h/HeFFTe.md index 0993d2991..53472cf16 100644 --- a/docs/version-specific/supported-software/h/HeFFTe.md +++ b/docs/version-specific/supported-software/h/HeFFTe.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``foss/2020a`` ``2.4.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7083280a2..bc26adb35 100644 --- a/docs/version-specific/supported-software/h/Health-GPS.md +++ b/docs/version-specific/supported-software/h/Health-GPS.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.3.0`` | ``GCCcore/11.3.0`` ``1.2.2.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Hello.md b/docs/version-specific/supported-software/h/Hello.md index ad1901cef..d249f38e3 100644 --- a/docs/version-specific/supported-software/h/Hello.md +++ b/docs/version-specific/supported-software/h/Hello.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.10`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HepMC.md b/docs/version-specific/supported-software/h/HepMC.md index 2960a1139..ae6454c51 100644 --- a/docs/version-specific/supported-software/h/HepMC.md +++ b/docs/version-specific/supported-software/h/HepMC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.06.11`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HepMC3.md b/docs/version-specific/supported-software/h/HepMC3.md index 682900550..287ecd8bf 100644 --- a/docs/version-specific/supported-software/h/HepMC3.md +++ b/docs/version-specific/supported-software/h/HepMC3.md @@ -13,5 +13,6 @@ version | toolchain ``3.2.5`` | ``GCC/11.3.0`` ``3.2.6`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a5e8ff34b..4e18690be 100644 --- a/docs/version-specific/supported-software/h/HiC-Pro.md +++ b/docs/version-specific/supported-software/h/HiC-Pro.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.9.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``3.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HiCExplorer.md b/docs/version-specific/supported-software/h/HiCExplorer.md index 99dc01df5..541e826a5 100644 --- a/docs/version-specific/supported-software/h/HiCExplorer.md +++ b/docs/version-specific/supported-software/h/HiCExplorer.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``3.7.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HiCMatrix.md b/docs/version-specific/supported-software/h/HiCMatrix.md index a5968fdc8..492e0f9b3 100644 --- a/docs/version-specific/supported-software/h/HiCMatrix.md +++ b/docs/version-specific/supported-software/h/HiCMatrix.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``17`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HiGHS.md b/docs/version-specific/supported-software/h/HiGHS.md index ed64c929e..bccfbceee 100644 --- a/docs/version-specific/supported-software/h/HiGHS.md +++ b/docs/version-specific/supported-software/h/HiGHS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.0`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HighFive.md b/docs/version-specific/supported-software/h/HighFive.md index 13a2ed38d..74b942015 100644 --- a/docs/version-specific/supported-software/h/HighFive.md +++ b/docs/version-specific/supported-software/h/HighFive.md @@ -14,5 +14,6 @@ version | toolchain ``2.6.2`` | ``gompi/2022a`` ``2.7.1`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Highway.md b/docs/version-specific/supported-software/h/Highway.md index 0d3430d6b..32426bf3c 100644 --- a/docs/version-specific/supported-software/h/Highway.md +++ b/docs/version-specific/supported-software/h/Highway.md @@ -18,5 +18,6 @@ version | toolchain ``1.0.4`` | ``GCCcore/12.3.0`` ``1.0.7`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Horovod.md b/docs/version-specific/supported-software/h/Horovod.md index d882101f5..7946451b0 100644 --- a/docs/version-specific/supported-software/h/Horovod.md +++ b/docs/version-specific/supported-software/h/Horovod.md @@ -45,5 +45,6 @@ version | versionsuffix | toolchain ``0.28.1`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` ``0.9.10`` | ``-Python-3.6.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HyPhy.md b/docs/version-specific/supported-software/h/HyPhy.md index 6c40a9faf..091910085 100644 --- a/docs/version-specific/supported-software/h/HyPhy.md +++ b/docs/version-specific/supported-software/h/HyPhy.md @@ -15,5 +15,6 @@ version | toolchain ``2.5.33`` | ``gompi/2021a`` ``2.5.60`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HyPo.md b/docs/version-specific/supported-software/h/HyPo.md index 8dc7640d5..425540d83 100644 --- a/docs/version-specific/supported-software/h/HyPo.md +++ b/docs/version-specific/supported-software/h/HyPo.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Hybpiper.md b/docs/version-specific/supported-software/h/Hybpiper.md index 57605e17d..ddf3b42e5 100644 --- a/docs/version-specific/supported-software/h/Hybpiper.md +++ b/docs/version-specific/supported-software/h/Hybpiper.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.6`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Hydra.md b/docs/version-specific/supported-software/h/Hydra.md index 80a9cfc67..91703b182 100644 --- a/docs/version-specific/supported-software/h/Hydra.md +++ b/docs/version-specific/supported-software/h/Hydra.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.2`` | ``GCCcore/11.3.0`` ``1.3.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/HyperQueue.md b/docs/version-specific/supported-software/h/HyperQueue.md index 9621d5e40..e88ea93a0 100644 --- a/docs/version-specific/supported-software/h/HyperQueue.md +++ b/docs/version-specific/supported-software/h/HyperQueue.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Hyperopt.md b/docs/version-specific/supported-software/h/Hyperopt.md index 9d06c8a42..586f9450d 100644 --- a/docs/version-specific/supported-software/h/Hyperopt.md +++ b/docs/version-specific/supported-software/h/Hyperopt.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.2.7`` | | ``foss/2021a`` ``0.2.7`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/Hypre.md b/docs/version-specific/supported-software/h/Hypre.md index 22e10afdf..51c5c2ede 100644 --- a/docs/version-specific/supported-software/h/Hypre.md +++ b/docs/version-specific/supported-software/h/Hypre.md @@ -30,5 +30,6 @@ version | toolchain ``2.27.0`` | ``foss/2022b`` ``2.29.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/h4toh5.md b/docs/version-specific/supported-software/h/h4toh5.md index bfb1cd66c..a8019614d 100644 --- a/docs/version-specific/supported-software/h/h4toh5.md +++ b/docs/version-specific/supported-software/h/h4toh5.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.2.3`` | | ``gompi/2020b`` ``2.2.5`` | | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/h5netcdf.md b/docs/version-specific/supported-software/h/h5netcdf.md index c524e5ef7..ff95cc607 100644 --- a/docs/version-specific/supported-software/h/h5netcdf.md +++ b/docs/version-specific/supported-software/h/h5netcdf.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.0`` | ``foss/2022a`` ``1.2.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/h5py.md b/docs/version-specific/supported-software/h/h5py.md index 1eec4d467..77e427678 100644 --- a/docs/version-specific/supported-software/h/h5py.md +++ b/docs/version-specific/supported-software/h/h5py.md @@ -83,5 +83,6 @@ version | versionsuffix | toolchain ``3.8.0`` | | ``foss/2022b`` ``3.9.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hampel.md b/docs/version-specific/supported-software/h/hampel.md index dfffe050f..9fbbf11de 100644 --- a/docs/version-specific/supported-software/h/hampel.md +++ b/docs/version-specific/supported-software/h/hampel.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hanythingondemand.md b/docs/version-specific/supported-software/h/hanythingondemand.md index d1974a033..ac1b0c96b 100644 --- a/docs/version-specific/supported-software/h/hanythingondemand.md +++ b/docs/version-specific/supported-software/h/hanythingondemand.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``3.2.2`` | ``-cli`` | ``system`` ``3.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/harmony.md b/docs/version-specific/supported-software/h/harmony.md index 3ebc061c9..3f7050d6d 100644 --- a/docs/version-specific/supported-software/h/harmony.md +++ b/docs/version-specific/supported-software/h/harmony.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.0-20210528`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.0.0-20200224`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 278833d48..14cd4f581 100644 --- a/docs/version-specific/supported-software/h/hatch-jupyter-builder.md +++ b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hatchling.md b/docs/version-specific/supported-software/h/hatchling.md index c771c39b4..dd5bdfce5 100644 --- a/docs/version-specific/supported-software/h/hatchling.md +++ b/docs/version-specific/supported-software/h/hatchling.md @@ -13,5 +13,6 @@ version | toolchain ``1.18.0`` | ``GCCcore/12.3.0`` ``1.18.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hdWGCNA.md b/docs/version-specific/supported-software/h/hdWGCNA.md index 020d4b3d3..bfee63908 100644 --- a/docs/version-specific/supported-software/h/hdWGCNA.md +++ b/docs/version-specific/supported-software/h/hdWGCNA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.00`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hdf5storage.md b/docs/version-specific/supported-software/h/hdf5storage.md index 8393c9720..e4750f4c9 100644 --- a/docs/version-specific/supported-software/h/hdf5storage.md +++ b/docs/version-specific/supported-software/h/hdf5storage.md @@ -13,5 +13,6 @@ version | toolchain ``0.1.15`` | ``foss/2019a`` ``0.1.15`` | ``fosscuda/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/heaptrack.md b/docs/version-specific/supported-software/h/heaptrack.md index 3acfc79b4..191e97c52 100644 --- a/docs/version-specific/supported-software/h/heaptrack.md +++ b/docs/version-specific/supported-software/h/heaptrack.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hector.md b/docs/version-specific/supported-software/h/hector.md index d69101e39..98a9569e9 100644 --- a/docs/version-specific/supported-software/h/hector.md +++ b/docs/version-specific/supported-software/h/hector.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/help2man.md b/docs/version-specific/supported-software/h/help2man.md index cf6f82cbd..a25608b23 100644 --- a/docs/version-specific/supported-software/h/help2man.md +++ b/docs/version-specific/supported-software/h/help2man.md @@ -47,5 +47,6 @@ version | toolchain ``1.49.3`` | ``GCCcore/13.3.0`` ``1.49.3`` | ``GCCcore/14.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hevea.md b/docs/version-specific/supported-software/h/hevea.md index ab1f2c1a1..00abf41bf 100644 --- a/docs/version-specific/supported-software/h/hevea.md +++ b/docs/version-specific/supported-software/h/hevea.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.36`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 030196430..d111391e8 100644 --- a/docs/version-specific/supported-software/h/hic-straw.md +++ b/docs/version-specific/supported-software/h/hic-straw.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hierfstat.md b/docs/version-specific/supported-software/h/hierfstat.md index aa97ae54f..dde0a0674 100644 --- a/docs/version-specific/supported-software/h/hierfstat.md +++ b/docs/version-specific/supported-software/h/hierfstat.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5-7`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hifiasm.md b/docs/version-specific/supported-software/h/hifiasm.md index e01910081..4773809fb 100644 --- a/docs/version-specific/supported-software/h/hifiasm.md +++ b/docs/version-specific/supported-software/h/hifiasm.md @@ -16,5 +16,6 @@ version | toolchain ``0.19.5`` | ``GCCcore/11.2.0`` ``0.19.7`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hipSYCL.md b/docs/version-specific/supported-software/h/hipSYCL.md index 379e7c27b..a5ce32dc9 100644 --- a/docs/version-specific/supported-software/h/hipSYCL.md +++ b/docs/version-specific/supported-software/h/hipSYCL.md @@ -13,5 +13,6 @@ version | toolchain ``0.9.1`` | ``GCC/10.2.0`` ``0.9.1`` | ``gcccuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7e3d9cb5f..9f7791fe3 100644 --- a/docs/version-specific/supported-software/h/hipify-clang.md +++ b/docs/version-specific/supported-software/h/hipify-clang.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.2.0`` | ``gcccuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hiredis.md b/docs/version-specific/supported-software/h/hiredis.md index dc5b5bfd0..addc111e4 100644 --- a/docs/version-specific/supported-software/h/hiredis.md +++ b/docs/version-specific/supported-software/h/hiredis.md @@ -16,5 +16,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.3.0`` ``1.2.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/histolab.md b/docs/version-specific/supported-software/h/histolab.md index bace92724..d085733df 100644 --- a/docs/version-specific/supported-software/h/histolab.md +++ b/docs/version-specific/supported-software/h/histolab.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.1`` | ``foss/2021a`` ``0.4.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hivtrace.md b/docs/version-specific/supported-software/h/hivtrace.md index 8cb0b0d44..8ae264ef7 100644 --- a/docs/version-specific/supported-software/h/hivtrace.md +++ b/docs/version-specific/supported-software/h/hivtrace.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hl7apy.md b/docs/version-specific/supported-software/h/hl7apy.md index 766b25bcc..0af17e213 100644 --- a/docs/version-specific/supported-software/h/hl7apy.md +++ b/docs/version-specific/supported-software/h/hl7apy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 63c923b4c..9e5fda2d0 100644 --- a/docs/version-specific/supported-software/h/hmmcopy_utils.md +++ b/docs/version-specific/supported-software/h/hmmcopy_utils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20210728`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hmmlearn.md b/docs/version-specific/supported-software/h/hmmlearn.md index 4ddb2e22f..94a8a032c 100644 --- a/docs/version-specific/supported-software/h/hmmlearn.md +++ b/docs/version-specific/supported-software/h/hmmlearn.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.3.0`` | | ``foss/2022b`` ``0.3.0`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/horton.md b/docs/version-specific/supported-software/h/horton.md index e7b2cb481..7c68ba115 100644 --- a/docs/version-specific/supported-software/h/horton.md +++ b/docs/version-specific/supported-software/h/horton.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``2.1.1`` | ``-Python-2.7.18`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5b3547998..16920c66b 100644 --- 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 @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/htop.md b/docs/version-specific/supported-software/h/htop.md index ca85974e9..094719a3f 100644 --- a/docs/version-specific/supported-software/h/htop.md +++ b/docs/version-specific/supported-software/h/htop.md @@ -15,5 +15,6 @@ version | toolchain ``3.2.1`` | ``system`` ``3.2.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hub.md b/docs/version-specific/supported-software/h/hub.md index c6a3c8ed0..90f4f6ee0 100644 --- a/docs/version-specific/supported-software/h/hub.md +++ b/docs/version-specific/supported-software/h/hub.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.2`` | ``-linux-amd64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/humann.md b/docs/version-specific/supported-software/h/humann.md index 2803907dc..2e919245f 100644 --- a/docs/version-specific/supported-software/h/humann.md +++ b/docs/version-specific/supported-software/h/humann.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.6`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hunspell.md b/docs/version-specific/supported-software/h/hunspell.md index 25dbb6acc..24af79747 100644 --- a/docs/version-specific/supported-software/h/hunspell.md +++ b/docs/version-specific/supported-software/h/hunspell.md @@ -16,5 +16,6 @@ version | toolchain ``1.7.1`` | ``GCCcore/11.3.0`` ``1.7.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hwloc.md b/docs/version-specific/supported-software/h/hwloc.md index 183c2410c..f6b01bfed 100644 --- a/docs/version-specific/supported-software/h/hwloc.md +++ b/docs/version-specific/supported-software/h/hwloc.md @@ -59,5 +59,6 @@ version | toolchain ``2.9.1`` | ``GCCcore/12.3.0`` ``2.9.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hyperspy.md b/docs/version-specific/supported-software/h/hyperspy.md index c415f595f..e7f8345da 100644 --- a/docs/version-specific/supported-software/h/hyperspy.md +++ b/docs/version-specific/supported-software/h/hyperspy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.5.2`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/hypothesis.md b/docs/version-specific/supported-software/h/hypothesis.md index dace43c3f..9bcda71a8 100644 --- a/docs/version-specific/supported-software/h/hypothesis.md +++ b/docs/version-specific/supported-software/h/hypothesis.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``6.82.0`` | | ``GCCcore/12.3.0`` ``6.90.0`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/h/index.md b/docs/version-specific/supported-software/h/index.md index fcc804330..a27c4c816 100644 --- a/docs/version-specific/supported-software/h/index.md +++ b/docs/version-specific/supported-software/h/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (h) -[0](../0/index.md) - [a](../a/index.md) - [b](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../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) @@ -95,3 +97,7 @@ search: * [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 index be9523735..bd278bdea 100644 --- a/docs/version-specific/supported-software/i/I-TASSER.md +++ b/docs/version-specific/supported-software/i/I-TASSER.md @@ -14,5 +14,6 @@ version | toolchain ``4.2`` | ``system`` ``5.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dd4545e67..e97b69bc3 100644 --- a/docs/version-specific/supported-software/i/ICA-AROMA.md +++ b/docs/version-specific/supported-software/i/ICA-AROMA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.4-beta`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ICON.md b/docs/version-specific/supported-software/i/ICON.md index 24ebd6454..e2b1db515 100644 --- a/docs/version-specific/supported-software/i/ICON.md +++ b/docs/version-specific/supported-software/i/ICON.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2024.01`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ICU.md b/docs/version-specific/supported-software/i/ICU.md index 1a670fc13..9636e2cbb 100644 --- a/docs/version-specific/supported-software/i/ICU.md +++ b/docs/version-specific/supported-software/i/ICU.md @@ -25,5 +25,6 @@ version | toolchain ``74.1`` | ``GCCcore/13.2.0`` ``75.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5424e6e66..85eeb9c67 100644 --- a/docs/version-specific/supported-software/i/IDBA-UD.md +++ b/docs/version-specific/supported-software/i/IDBA-UD.md @@ -19,5 +19,6 @@ version | toolchain ``1.1.3`` | ``foss/2018a`` ``1.1.3`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IDG.md b/docs/version-specific/supported-software/i/IDG.md index f8c2e8fe5..d300463f1 100644 --- a/docs/version-specific/supported-software/i/IDG.md +++ b/docs/version-specific/supported-software/i/IDG.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IGMPlot.md b/docs/version-specific/supported-software/i/IGMPlot.md index 053080c87..6841da0d7 100644 --- a/docs/version-specific/supported-software/i/IGMPlot.md +++ b/docs/version-specific/supported-software/i/IGMPlot.md @@ -14,5 +14,6 @@ version | toolchain ``2.4.2`` | ``iccifort/2019.5.281`` ``2.6.9b`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IGV.md b/docs/version-specific/supported-software/i/IGV.md index 42be4bd67..338237db6 100644 --- a/docs/version-specific/supported-software/i/IGV.md +++ b/docs/version-specific/supported-software/i/IGV.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.8.0`` | ``-Java-11`` | ``system`` ``2.9.4`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IGVTools.md b/docs/version-specific/supported-software/i/IGVTools.md index 25dc1eb43..7832ac05b 100644 --- a/docs/version-specific/supported-software/i/IGVTools.md +++ b/docs/version-specific/supported-software/i/IGVTools.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3.75`` | ``-Java-1.7.0_80`` | ``system`` ``2.4.18`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IJulia.md b/docs/version-specific/supported-software/i/IJulia.md index 68b5ac180..7281853cf 100644 --- a/docs/version-specific/supported-software/i/IJulia.md +++ b/docs/version-specific/supported-software/i/IJulia.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.23.3`` | ``-Julia-1.6.7`` | ``system`` ``1.24.0`` | ``-Julia-1.8.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ILAMB.md b/docs/version-specific/supported-software/i/ILAMB.md index 9ae1efa8f..07123c135 100644 --- a/docs/version-specific/supported-software/i/ILAMB.md +++ b/docs/version-specific/supported-software/i/ILAMB.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IMB.md b/docs/version-specific/supported-software/i/IMB.md index d0db3a846..07a9f3726 100644 --- a/docs/version-specific/supported-software/i/IMB.md +++ b/docs/version-specific/supported-software/i/IMB.md @@ -24,5 +24,6 @@ version | toolchain ``4.1`` | ``intel/2017.02`` ``4.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IML.md b/docs/version-specific/supported-software/i/IML.md index dccf43fa8..6ccc02457 100644 --- a/docs/version-specific/supported-software/i/IML.md +++ b/docs/version-specific/supported-software/i/IML.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.5`` | ``gfbf/2022a`` ``1.0.5`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IMOD.md b/docs/version-specific/supported-software/i/IMOD.md index 6d4415c3f..9878655f9 100644 --- a/docs/version-specific/supported-software/i/IMOD.md +++ b/docs/version-specific/supported-software/i/IMOD.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``4.11.5`` | | ``fosscuda/2020b`` ``4.7.15`` | ``_RHEL6-64_CUDA6.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IMPUTE2.md b/docs/version-specific/supported-software/i/IMPUTE2.md index be9abeb1e..4d83bdb74 100644 --- a/docs/version-specific/supported-software/i/IMPUTE2.md +++ b/docs/version-specific/supported-software/i/IMPUTE2.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3.2`` | ``_x86_64_dynamic`` | ``system`` ``2.3.2`` | ``_x86_64_static`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IMa2.md b/docs/version-specific/supported-software/i/IMa2.md index 87078a653..7dca38f62 100644 --- a/docs/version-specific/supported-software/i/IMa2.md +++ b/docs/version-specific/supported-software/i/IMa2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``8.27.12`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IMa2p.md b/docs/version-specific/supported-software/i/IMa2p.md index efe0128fb..cd4c34e89 100644 --- a/docs/version-specific/supported-software/i/IMa2p.md +++ b/docs/version-specific/supported-software/i/IMa2p.md @@ -13,5 +13,6 @@ version | toolchain ``20151123`` | ``foss/2016a`` ``20160804`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cc593a6c5..d0c8b153d 100644 --- a/docs/version-specific/supported-software/i/INTEGRATE-Neo.md +++ b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/INTEGRATE.md b/docs/version-specific/supported-software/i/INTEGRATE.md index 7ecde78c9..7bab9c3b8 100644 --- a/docs/version-specific/supported-software/i/INTEGRATE.md +++ b/docs/version-specific/supported-software/i/INTEGRATE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.6`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IOR.md b/docs/version-specific/supported-software/i/IOR.md index ac26a4eec..84438f954 100644 --- a/docs/version-specific/supported-software/i/IOR.md +++ b/docs/version-specific/supported-software/i/IOR.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``3.3.0`` | | ``gompi/2022a`` ``4.0.0`` | | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IOzone.md b/docs/version-specific/supported-software/i/IOzone.md index 5c88a55f2..b428b97e2 100644 --- a/docs/version-specific/supported-software/i/IOzone.md +++ b/docs/version-specific/supported-software/i/IOzone.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.434`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IPM.md b/docs/version-specific/supported-software/i/IPM.md index 4baf8dd21..407c1fa26 100644 --- a/docs/version-specific/supported-software/i/IPM.md +++ b/docs/version-specific/supported-software/i/IPM.md @@ -16,5 +16,6 @@ version | toolchain ``2.0.6`` | ``iimpi/2020a`` ``2.0.6`` | ``iompi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IPy.md b/docs/version-specific/supported-software/i/IPy.md index fd808b3bf..26679c008 100644 --- a/docs/version-specific/supported-software/i/IPy.md +++ b/docs/version-specific/supported-software/i/IPy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.83`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IPython.md b/docs/version-specific/supported-software/i/IPython.md index 24db93857..5fce971f2 100644 --- a/docs/version-specific/supported-software/i/IPython.md +++ b/docs/version-specific/supported-software/i/IPython.md @@ -60,5 +60,6 @@ version | versionsuffix | toolchain ``8.17.2`` | | ``GCCcore/13.2.0`` ``8.5.0`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 87d260f45..b6be6b17a 100644 --- a/docs/version-specific/supported-software/i/IQ-TREE.md +++ b/docs/version-specific/supported-software/i/IQ-TREE.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``2.2.2.6`` | | ``gompi/2022b`` ``2.2.2.7`` | | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IRkernel.md b/docs/version-specific/supported-software/i/IRkernel.md index 239384872..32e595cb6 100644 --- a/docs/version-specific/supported-software/i/IRkernel.md +++ b/docs/version-specific/supported-software/i/IRkernel.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.3.2`` | ``-R-4.3.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a1f2aafb0..2feeaa5b1 100644 --- a/docs/version-specific/supported-software/i/ISA-L.md +++ b/docs/version-specific/supported-software/i/ISA-L.md @@ -18,5 +18,6 @@ version | toolchain ``2.30.0`` | ``GCCcore/12.3.0`` ``2.31.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ISL.md b/docs/version-specific/supported-software/i/ISL.md index 126dae6ef..8f62a7642 100644 --- a/docs/version-specific/supported-software/i/ISL.md +++ b/docs/version-specific/supported-software/i/ISL.md @@ -26,5 +26,6 @@ version | toolchain ``0.26`` | ``GCCcore/13.2.0`` ``0.26`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ITK.md b/docs/version-specific/supported-software/i/ITK.md index e199267c4..2dfbf7ada 100644 --- a/docs/version-specific/supported-software/i/ITK.md +++ b/docs/version-specific/supported-software/i/ITK.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``5.2.1`` | | ``fosscuda/2020b`` ``5.3.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ITSTool.md b/docs/version-specific/supported-software/i/ITSTool.md index 1f3259c0e..b0dc4fe16 100644 --- a/docs/version-specific/supported-software/i/ITSTool.md +++ b/docs/version-specific/supported-software/i/ITSTool.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.0.7`` | | ``GCCcore/11.3.0`` ``2.0.7`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ITSx.md b/docs/version-specific/supported-software/i/ITSx.md index 143f2e64c..b2e71be96 100644 --- a/docs/version-specific/supported-software/i/ITSx.md +++ b/docs/version-specific/supported-software/i/ITSx.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.3`` | ``GCCcore/10.3.0`` ``1.1.3`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IgBLAST.md b/docs/version-specific/supported-software/i/IgBLAST.md index c2ef3eec9..ed69fb2e9 100644 --- a/docs/version-specific/supported-software/i/IgBLAST.md +++ b/docs/version-specific/supported-software/i/IgBLAST.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.18.0`` | ``-x64-linux`` | ``system`` ``1.21.0`` | ``-x64-linux`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ImageJ.md b/docs/version-specific/supported-software/i/ImageJ.md index 75ade087d..c5b2b9a5d 100644 --- a/docs/version-specific/supported-software/i/ImageJ.md +++ b/docs/version-specific/supported-software/i/ImageJ.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.51k`` | | ``system`` ``1.52q`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ImageMagick.md b/docs/version-specific/supported-software/i/ImageMagick.md index aca655f72..5eb38a6d5 100644 --- a/docs/version-specific/supported-software/i/ImageMagick.md +++ b/docs/version-specific/supported-software/i/ImageMagick.md @@ -36,5 +36,6 @@ version | versionsuffix | toolchain ``7.1.0-53`` | | ``GCCcore/12.2.0`` ``7.1.1-15`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Imath.md b/docs/version-specific/supported-software/i/Imath.md index 60e5d73b6..9d84e9629 100644 --- a/docs/version-specific/supported-software/i/Imath.md +++ b/docs/version-specific/supported-software/i/Imath.md @@ -15,5 +15,6 @@ version | toolchain ``3.1.7`` | ``GCCcore/12.3.0`` ``3.1.9`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Imlib2.md b/docs/version-specific/supported-software/i/Imlib2.md index 5913f61e0..f6604dedb 100644 --- a/docs/version-specific/supported-software/i/Imlib2.md +++ b/docs/version-specific/supported-software/i/Imlib2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.1`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/InChI.md b/docs/version-specific/supported-software/i/InChI.md index a02e03ebe..1a60d619b 100644 --- a/docs/version-specific/supported-software/i/InChI.md +++ b/docs/version-specific/supported-software/i/InChI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.06`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/InParanoid.md b/docs/version-specific/supported-software/i/InParanoid.md index 85849e57f..2a5020906 100644 --- a/docs/version-specific/supported-software/i/InParanoid.md +++ b/docs/version-specific/supported-software/i/InParanoid.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0-20220607`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Inelastica.md b/docs/version-specific/supported-software/i/Inelastica.md index 14bd56f54..13bf81f94 100644 --- a/docs/version-specific/supported-software/i/Inelastica.md +++ b/docs/version-specific/supported-software/i/Inelastica.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Inferelator.md b/docs/version-specific/supported-software/i/Inferelator.md index 359bcc3a2..8a8af2551 100644 --- a/docs/version-specific/supported-software/i/Inferelator.md +++ b/docs/version-specific/supported-software/i/Inferelator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Infernal.md b/docs/version-specific/supported-software/i/Infernal.md index ce3a1d50f..c62cca0df 100644 --- a/docs/version-specific/supported-software/i/Infernal.md +++ b/docs/version-specific/supported-software/i/Infernal.md @@ -20,5 +20,6 @@ version | toolchain ``1.1.4`` | ``foss/2022a`` ``1.1.4`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Infomap.md b/docs/version-specific/supported-software/i/Infomap.md index 6667309a0..7c1f5fe5c 100644 --- a/docs/version-specific/supported-software/i/Infomap.md +++ b/docs/version-specific/supported-software/i/Infomap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20190308`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Inspector.md b/docs/version-specific/supported-software/i/Inspector.md index b8ee5e685..fb00f2aab 100644 --- a/docs/version-specific/supported-software/i/Inspector.md +++ b/docs/version-specific/supported-software/i/Inspector.md @@ -25,5 +25,6 @@ version | toolchain ``2022.1.0`` | ``system`` ``2023.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IntaRNA.md b/docs/version-specific/supported-software/i/IntaRNA.md index b1424b24e..2ff389f07 100644 --- a/docs/version-specific/supported-software/i/IntaRNA.md +++ b/docs/version-specific/supported-software/i/IntaRNA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IntelClusterChecker.md b/docs/version-specific/supported-software/i/IntelClusterChecker.md index 8004de32b..4f33ccabc 100644 --- a/docs/version-specific/supported-software/i/IntelClusterChecker.md +++ b/docs/version-specific/supported-software/i/IntelClusterChecker.md @@ -13,5 +13,6 @@ version | toolchain ``2017.1.016`` | ``system`` ``2021.5.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IntelDAAL.md b/docs/version-specific/supported-software/i/IntelDAAL.md index d5ed456e4..409589a06 100644 --- a/docs/version-specific/supported-software/i/IntelDAAL.md +++ b/docs/version-specific/supported-software/i/IntelDAAL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2019.4.007`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IntelPython.md b/docs/version-specific/supported-software/i/IntelPython.md index f7deca597..1c533fe46 100644 --- a/docs/version-specific/supported-software/i/IntelPython.md +++ b/docs/version-specific/supported-software/i/IntelPython.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.7.15`` | ``-2019.2.066`` | ``system`` ``3.6.8`` | ``-2019.2.066`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/InterOp.md b/docs/version-specific/supported-software/i/InterOp.md index e4204a81e..dd8b5bc98 100644 --- a/docs/version-specific/supported-software/i/InterOp.md +++ b/docs/version-specific/supported-software/i/InterOp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.4`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/InterProScan.md b/docs/version-specific/supported-software/i/InterProScan.md index 0b279620c..ca34cbaba 100644 --- a/docs/version-specific/supported-software/i/InterProScan.md +++ b/docs/version-specific/supported-software/i/InterProScan.md @@ -17,5 +17,6 @@ version | toolchain ``5.55-88.0`` | ``foss/2021a`` ``5.62-94.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3db0d53d5..fd040ae3e 100644 --- a/docs/version-specific/supported-software/i/InterProScan_data.md +++ b/docs/version-specific/supported-software/i/InterProScan_data.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.55-88.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IonQuant.md b/docs/version-specific/supported-software/i/IonQuant.md index 06588d946..a669afc10 100644 --- a/docs/version-specific/supported-software/i/IonQuant.md +++ b/docs/version-specific/supported-software/i/IonQuant.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.10.12`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Ipopt.md b/docs/version-specific/supported-software/i/Ipopt.md index f799269d4..c95cfc247 100644 --- a/docs/version-specific/supported-software/i/Ipopt.md +++ b/docs/version-specific/supported-software/i/Ipopt.md @@ -13,5 +13,6 @@ version | toolchain ``3.12.13`` | ``intel/2019a`` ``3.12.9`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/Iris.md b/docs/version-specific/supported-software/i/Iris.md index 513cd5363..de6e558c2 100644 --- a/docs/version-specific/supported-software/i/Iris.md +++ b/docs/version-specific/supported-software/i/Iris.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.5`` | ``-Java-15`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IronPython.md b/docs/version-specific/supported-software/i/IronPython.md index 181f7b11e..4ef84207b 100644 --- a/docs/version-specific/supported-software/i/IronPython.md +++ b/docs/version-specific/supported-software/i/IronPython.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.7`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IsoNet.md b/docs/version-specific/supported-software/i/IsoNet.md index 3e53bf453..0923c9374 100644 --- a/docs/version-specific/supported-software/i/IsoNet.md +++ b/docs/version-specific/supported-software/i/IsoNet.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1_20210822_04_674f67f`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IsoQuant.md b/docs/version-specific/supported-software/i/IsoQuant.md index 08144aaf5..1032eb156 100644 --- a/docs/version-specific/supported-software/i/IsoQuant.md +++ b/docs/version-specific/supported-software/i/IsoQuant.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IsoSeq.md b/docs/version-specific/supported-software/i/IsoSeq.md index 50c7c3834..fc6708ca6 100644 --- a/docs/version-specific/supported-software/i/IsoSeq.md +++ b/docs/version-specific/supported-software/i/IsoSeq.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.8.2`` | ``-linux-x86_64`` | ``system`` ``4.0.0`` | ``-linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md index 5765365eb..bccd32661 100644 --- a/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md +++ b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.18.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d83cd0fab..b126e1fde 100644 --- a/docs/version-specific/supported-software/i/i-PI.md +++ b/docs/version-specific/supported-software/i/i-PI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0-20160213`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7ffc09a29..dfb562c7f 100644 --- a/docs/version-specific/supported-software/i/i-cisTarget.md +++ b/docs/version-specific/supported-software/i/i-cisTarget.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160602`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/i7z.md b/docs/version-specific/supported-software/i/i7z.md index 1121797e7..7cb03284d 100644 --- a/docs/version-specific/supported-software/i/i7z.md +++ b/docs/version-specific/supported-software/i/i7z.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20131012`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iCount.md b/docs/version-specific/supported-software/i/iCount.md index 7584a7544..02d379d63 100644 --- a/docs/version-specific/supported-software/i/iCount.md +++ b/docs/version-specific/supported-software/i/iCount.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180820`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iVar.md b/docs/version-specific/supported-software/i/iVar.md index 7053378dc..847c55aa7 100644 --- a/docs/version-specific/supported-software/i/iVar.md +++ b/docs/version-specific/supported-software/i/iVar.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.1`` | ``GCC/10.2.0`` ``1.3.1`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/icc.md b/docs/version-specific/supported-software/i/icc.md index f7387080c..b1ff5965d 100644 --- a/docs/version-specific/supported-software/i/icc.md +++ b/docs/version-specific/supported-software/i/icc.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iccifort.md b/docs/version-specific/supported-software/i/iccifort.md index d87f268cd..98b7e5c69 100644 --- a/docs/version-specific/supported-software/i/iccifort.md +++ b/docs/version-specific/supported-software/i/iccifort.md @@ -41,5 +41,6 @@ version | versionsuffix | toolchain ``2020.4.304`` | | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iccifortcuda.md b/docs/version-specific/supported-software/i/iccifortcuda.md index c3dacb21c..c484ddf44 100644 --- a/docs/version-specific/supported-software/i/iccifortcuda.md +++ b/docs/version-specific/supported-software/i/iccifortcuda.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2020a`` | | ``system`` ``2020b`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iced.md b/docs/version-specific/supported-software/i/iced.md index 4aa20afc3..b18655c98 100644 --- a/docs/version-specific/supported-software/i/iced.md +++ b/docs/version-specific/supported-software/i/iced.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.10`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ichorCNA.md b/docs/version-specific/supported-software/i/ichorCNA.md index 45f12fdea..7e51c939f 100644 --- a/docs/version-specific/supported-software/i/ichorCNA.md +++ b/docs/version-specific/supported-software/i/ichorCNA.md @@ -13,5 +13,6 @@ version | toolchain ``0.2.0`` | ``foss/2019b`` ``0.3.2-20191219`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/icmake.md b/docs/version-specific/supported-software/i/icmake.md index 679c157b0..a044fc7e6 100644 --- a/docs/version-specific/supported-software/i/icmake.md +++ b/docs/version-specific/supported-software/i/icmake.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.23.02`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/idemux.md b/docs/version-specific/supported-software/i/idemux.md index 92bdf762c..530362176 100644 --- a/docs/version-specific/supported-software/i/idemux.md +++ b/docs/version-specific/supported-software/i/idemux.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.6`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0202bd4e7..1ec33c275 100644 --- a/docs/version-specific/supported-software/i/ieeg-cli.md +++ b/docs/version-specific/supported-software/i/ieeg-cli.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.14.56`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ifort.md b/docs/version-specific/supported-software/i/ifort.md index 14268ce5a..bf54d8272 100644 --- a/docs/version-specific/supported-software/i/ifort.md +++ b/docs/version-specific/supported-software/i/ifort.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/igraph.md b/docs/version-specific/supported-software/i/igraph.md index a12df4772..00d665e4d 100644 --- a/docs/version-specific/supported-software/i/igraph.md +++ b/docs/version-specific/supported-software/i/igraph.md @@ -24,5 +24,6 @@ version | toolchain ``0.9.4`` | ``foss/2021a`` ``0.9.5`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f7441a794..99ba60e9d 100644 --- a/docs/version-specific/supported-software/i/igv-reports.md +++ b/docs/version-specific/supported-software/i/igv-reports.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.8`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/igvShiny.md b/docs/version-specific/supported-software/i/igvShiny.md index fac46af7e..4ab60c02c 100644 --- a/docs/version-specific/supported-software/i/igvShiny.md +++ b/docs/version-specific/supported-software/i/igvShiny.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20240112`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iibff.md b/docs/version-specific/supported-software/i/iibff.md index 581061283..0d432409b 100644 --- a/docs/version-specific/supported-software/i/iibff.md +++ b/docs/version-specific/supported-software/i/iibff.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iimkl.md b/docs/version-specific/supported-software/i/iimkl.md index 70b51f51c..64a108a91 100644 --- a/docs/version-specific/supported-software/i/iimkl.md +++ b/docs/version-specific/supported-software/i/iimkl.md @@ -16,5 +16,6 @@ version | toolchain ``2023a`` | ``system`` ``2023b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iimpi.md b/docs/version-specific/supported-software/i/iimpi.md index 268a2c5ca..cbad95f47 100644 --- a/docs/version-specific/supported-software/i/iimpi.md +++ b/docs/version-specific/supported-software/i/iimpi.md @@ -58,5 +58,6 @@ version | versionsuffix | toolchain ``8.1.5`` | ``-GCC-4.9.3-2.25`` | ``system`` ``system`` | ``-GCC-system-2.29`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iimpic.md b/docs/version-specific/supported-software/i/iimpic.md index b205b542e..199a7df75 100644 --- a/docs/version-specific/supported-software/i/iimpic.md +++ b/docs/version-specific/supported-software/i/iimpic.md @@ -17,5 +17,6 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/imagecodecs.md b/docs/version-specific/supported-software/i/imagecodecs.md index e08b774c4..699b8d0a8 100644 --- a/docs/version-specific/supported-software/i/imagecodecs.md +++ b/docs/version-specific/supported-software/i/imagecodecs.md @@ -15,5 +15,6 @@ version | toolchain ``2022.9.26`` | ``foss/2022a`` ``2024.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/imageio.md b/docs/version-specific/supported-software/i/imageio.md index f7cb4266c..140cea17f 100644 --- a/docs/version-specific/supported-software/i/imageio.md +++ b/docs/version-specific/supported-software/i/imageio.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``fosscuda/2020b`` ``2.9.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/imake.md b/docs/version-specific/supported-software/i/imake.md index 4b38618d0..eadd07bd1 100644 --- a/docs/version-specific/supported-software/i/imake.md +++ b/docs/version-specific/supported-software/i/imake.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.8`` | ``GCCcore/10.3.0`` ``1.0.8`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 300c152e7..260953a7e 100644 --- a/docs/version-specific/supported-software/i/imbalanced-learn.md +++ b/docs/version-specific/supported-software/i/imbalanced-learn.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.7.0`` | | ``foss/2020b`` ``0.9.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/imgaug.md b/docs/version-specific/supported-software/i/imgaug.md index daf3099e9..f7759303a 100644 --- a/docs/version-specific/supported-software/i/imgaug.md +++ b/docs/version-specific/supported-software/i/imgaug.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``foss/2022a`` ``0.4.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b6512aff4..9bc465fbf 100644 --- a/docs/version-specific/supported-software/i/imkl-FFTW.md +++ b/docs/version-specific/supported-software/i/imkl-FFTW.md @@ -25,5 +25,6 @@ version | toolchain ``2023.2.0`` | ``iimpi/2023b`` ``2024.0.0`` | ``iimpi/2023.11`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/imkl.md b/docs/version-specific/supported-software/i/imkl.md index 3df7b0015..ea4deda7f 100644 --- a/docs/version-specific/supported-software/i/imkl.md +++ b/docs/version-specific/supported-software/i/imkl.md @@ -94,5 +94,6 @@ version | versionsuffix | toolchain ``2023.2.0`` | | ``system`` ``2024.0.0`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/immunedeconv.md b/docs/version-specific/supported-software/i/immunedeconv.md index 46f6c4607..1e9654adf 100644 --- a/docs/version-specific/supported-software/i/immunedeconv.md +++ b/docs/version-specific/supported-software/i/immunedeconv.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/impi.md b/docs/version-specific/supported-software/i/impi.md index e09fdc920..caa9cb15b 100644 --- a/docs/version-specific/supported-software/i/impi.md +++ b/docs/version-specific/supported-software/i/impi.md @@ -76,5 +76,6 @@ version | versionsuffix | toolchain ``5.1.3.181`` | | ``iccifortcuda/2016.10`` ``system`` | | ``iccifort/system-GCC-system-2.29`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/imutils.md b/docs/version-specific/supported-software/i/imutils.md index 57157fa9e..0f8afbef2 100644 --- a/docs/version-specific/supported-software/i/imutils.md +++ b/docs/version-specific/supported-software/i/imutils.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.5.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.5.4`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/index.md b/docs/version-specific/supported-software/i/index.md index c1e66d95b..81df5bdb0 100644 --- a/docs/version-specific/supported-software/i/index.md +++ b/docs/version-specific/supported-software/i/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (i) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../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) @@ -123,3 +125,7 @@ search: * [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 index 791518167..c483610dc 100644 --- a/docs/version-specific/supported-software/i/indicators.md +++ b/docs/version-specific/supported-software/i/indicators.md @@ -13,5 +13,6 @@ version | toolchain ``2.2`` | ``GCCcore/11.2.0`` ``2.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/inferCNV.md b/docs/version-specific/supported-software/i/inferCNV.md index cc408a066..1a07b1285 100644 --- a/docs/version-specific/supported-software/i/inferCNV.md +++ b/docs/version-specific/supported-software/i/inferCNV.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``1.3.3`` | | ``foss/2020b`` ``1.3.3`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/infercnvpy.md b/docs/version-specific/supported-software/i/infercnvpy.md index 9e2a51390..db842f3ff 100644 --- a/docs/version-specific/supported-software/i/infercnvpy.md +++ b/docs/version-specific/supported-software/i/infercnvpy.md @@ -14,5 +14,6 @@ version | toolchain ``0.4.2`` | ``foss/2022a`` ``0.4.3`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/inflection.md b/docs/version-specific/supported-software/i/inflection.md index 0b0c66733..5fef0e817 100644 --- a/docs/version-specific/supported-software/i/inflection.md +++ b/docs/version-specific/supported-software/i/inflection.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.5`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/inih.md b/docs/version-specific/supported-software/i/inih.md index 862277fdf..017fdd587 100644 --- a/docs/version-specific/supported-software/i/inih.md +++ b/docs/version-specific/supported-software/i/inih.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``57`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/inline.md b/docs/version-specific/supported-software/i/inline.md index 8d2076a74..6d458296d 100644 --- a/docs/version-specific/supported-software/i/inline.md +++ b/docs/version-specific/supported-software/i/inline.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.19`` | ``-R-4.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/inputproto.md b/docs/version-specific/supported-software/i/inputproto.md index 24f926bb2..bac79f017 100644 --- a/docs/version-specific/supported-software/i/inputproto.md +++ b/docs/version-specific/supported-software/i/inputproto.md @@ -15,5 +15,6 @@ version | toolchain ``2.3.1`` | ``intel/2016a`` ``2.3.2`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cf544d9a3..2435eda7d 100644 --- a/docs/version-specific/supported-software/i/intel-compilers.md +++ b/docs/version-specific/supported-software/i/intel-compilers.md @@ -24,5 +24,6 @@ version | toolchain ``2023.2.1`` | ``system`` ``2024.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/intel.md b/docs/version-specific/supported-software/i/intel.md index 0f7ebe7a8..49dd42902 100644 --- a/docs/version-specific/supported-software/i/intel.md +++ b/docs/version-specific/supported-software/i/intel.md @@ -57,5 +57,6 @@ version | versionsuffix | toolchain ``2023a`` | | ``system`` ``2023b`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/intelcuda.md b/docs/version-specific/supported-software/i/intelcuda.md index 664a20cc1..38e7f7edf 100644 --- a/docs/version-specific/supported-software/i/intelcuda.md +++ b/docs/version-specific/supported-software/i/intelcuda.md @@ -17,5 +17,6 @@ version | toolchain ``2020a`` | ``system`` ``2020b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f0505a165..035699236 100644 --- a/docs/version-specific/supported-software/i/intervaltree-python.md +++ b/docs/version-specific/supported-software/i/intervaltree-python.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``GCCcore/12.2.0`` ``3.1.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/intervaltree.md b/docs/version-specific/supported-software/i/intervaltree.md index 56070d6b4..c5404b0e0 100644 --- a/docs/version-specific/supported-software/i/intervaltree.md +++ b/docs/version-specific/supported-software/i/intervaltree.md @@ -17,5 +17,6 @@ version | toolchain ``0.1`` | ``GCCcore/12.3.0`` ``0.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/intltool.md b/docs/version-specific/supported-software/i/intltool.md index f82b01551..f698eb8a0 100644 --- a/docs/version-specific/supported-software/i/intltool.md +++ b/docs/version-specific/supported-software/i/intltool.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``0.51.0`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``0.51.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 91923858b..dbd9177a3 100644 --- a/docs/version-specific/supported-software/i/io_lib.md +++ b/docs/version-specific/supported-software/i/io_lib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.14.8`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ioapi.md b/docs/version-specific/supported-software/i/ioapi.md index 3a4fd87ef..08ff9696f 100644 --- a/docs/version-specific/supported-software/i/ioapi.md +++ b/docs/version-specific/supported-software/i/ioapi.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2-2020111`` | ``-nocpl`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iodata.md b/docs/version-specific/supported-software/i/iodata.md index b98faacd5..302969877 100644 --- a/docs/version-specific/supported-software/i/iodata.md +++ b/docs/version-specific/supported-software/i/iodata.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0a2`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iomkl.md b/docs/version-specific/supported-software/i/iomkl.md index 6a62636eb..9c1a95da9 100644 --- a/docs/version-specific/supported-software/i/iomkl.md +++ b/docs/version-specific/supported-software/i/iomkl.md @@ -26,5 +26,6 @@ version | toolchain ``2021a`` | ``system`` ``2021b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iompi.md b/docs/version-specific/supported-software/i/iompi.md index 708314e1f..d2a22b165 100644 --- a/docs/version-specific/supported-software/i/iompi.md +++ b/docs/version-specific/supported-software/i/iompi.md @@ -26,5 +26,6 @@ version | toolchain ``2021a`` | ``system`` ``2021b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/iperf.md b/docs/version-specific/supported-software/i/iperf.md index 013543b7a..943f03549 100644 --- a/docs/version-specific/supported-software/i/iperf.md +++ b/docs/version-specific/supported-software/i/iperf.md @@ -14,5 +14,6 @@ version | toolchain ``3.15`` | ``system`` ``3.16`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ipp.md b/docs/version-specific/supported-software/i/ipp.md index 5d4c022b8..f15a7bdf3 100644 --- a/docs/version-specific/supported-software/i/ipp.md +++ b/docs/version-specific/supported-software/i/ipp.md @@ -15,5 +15,6 @@ version | toolchain ``8.1.0.144`` | ``system`` ``9.0.1.150`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ipympl.md b/docs/version-specific/supported-software/i/ipympl.md index 646960553..3fd8160dc 100644 --- a/docs/version-specific/supported-software/i/ipympl.md +++ b/docs/version-specific/supported-software/i/ipympl.md @@ -14,5 +14,6 @@ version | toolchain ``0.9.3`` | ``gfbf/2023a`` ``0.9.4`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ipyparallel.md b/docs/version-specific/supported-software/i/ipyparallel.md index 54cd340f2..2d90e56dc 100644 --- a/docs/version-specific/supported-software/i/ipyparallel.md +++ b/docs/version-specific/supported-software/i/ipyparallel.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``6.2.2`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ipyrad.md b/docs/version-specific/supported-software/i/ipyrad.md index c31131250..9e5f6dad8 100644 --- a/docs/version-specific/supported-software/i/ipyrad.md +++ b/docs/version-specific/supported-software/i/ipyrad.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.15`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/irodsfs.md b/docs/version-specific/supported-software/i/irodsfs.md index 8d9be112f..b300fb634 100644 --- a/docs/version-specific/supported-software/i/irodsfs.md +++ b/docs/version-specific/supported-software/i/irodsfs.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.8.12`` | ``-linux-amd64`` | ``system`` ``0.8.9`` | ``-linux-amd64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/isoCirc.md b/docs/version-specific/supported-software/i/isoCirc.md index 732931d0f..c5ebb46aa 100644 --- a/docs/version-specific/supported-software/i/isoCirc.md +++ b/docs/version-specific/supported-software/i/isoCirc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/ispc.md b/docs/version-specific/supported-software/i/ispc.md index 3fed8bb11..6925be137 100644 --- a/docs/version-specific/supported-software/i/ispc.md +++ b/docs/version-specific/supported-software/i/ispc.md @@ -15,5 +15,6 @@ version | toolchain ``1.16.0`` | ``system`` ``1.6.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/itac.md b/docs/version-specific/supported-software/i/itac.md index 7f05427f9..4ececa7c7 100644 --- a/docs/version-specific/supported-software/i/itac.md +++ b/docs/version-specific/supported-software/i/itac.md @@ -23,5 +23,6 @@ version | toolchain ``8.1.4.045`` | ``system`` ``9.0.3.051`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/i/itpp.md b/docs/version-specific/supported-software/i/itpp.md index 79445a222..94c73966d 100644 --- a/docs/version-specific/supported-software/i/itpp.md +++ b/docs/version-specific/supported-software/i/itpp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3.1`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/index.md b/docs/version-specific/supported-software/index.md index 9bdfd0e0b..2faa7d997 100644 --- a/docs/version-specific/supported-software/index.md +++ b/docs/version-specific/supported-software/index.md @@ -4,6 +4,8 @@ search: --- # 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) @@ -3585,3 +3587,7 @@ EasyBuild supports 3552 different software packages (incl. toolchains, bundles): * [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 index 4d93aa709..437c9c13a 100644 --- a/docs/version-specific/supported-software/j/JAGS.md +++ b/docs/version-specific/supported-software/j/JAGS.md @@ -27,5 +27,6 @@ version | toolchain ``4.3.2`` | ``foss/2022b`` ``4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JAXFrontCE.md b/docs/version-specific/supported-software/j/JAXFrontCE.md index 1eca7c769..668640995 100644 --- a/docs/version-specific/supported-software/j/JAXFrontCE.md +++ b/docs/version-specific/supported-software/j/JAXFrontCE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.75`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d9303cbde..b7811c89b 100644 --- a/docs/version-specific/supported-software/j/JSON-GLib.md +++ b/docs/version-specific/supported-software/j/JSON-GLib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.2`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JUBE.md b/docs/version-specific/supported-software/j/JUBE.md index 9e094b486..a3895c7f6 100644 --- a/docs/version-specific/supported-software/j/JUBE.md +++ b/docs/version-specific/supported-software/j/JUBE.md @@ -17,5 +17,6 @@ version | toolchain ``2.4.1`` | ``system`` ``2.4.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JUnit.md b/docs/version-specific/supported-software/j/JUnit.md index e062ece95..1d0557d20 100644 --- a/docs/version-specific/supported-software/j/JUnit.md +++ b/docs/version-specific/supported-software/j/JUnit.md @@ -29,5 +29,6 @@ version | versionsuffix | toolchain ``4.12`` | ``-Java-1.8.0_92`` | ``system`` ``4.12`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JWM.md b/docs/version-specific/supported-software/j/JWM.md index f05f17d3d..1b6a712cf 100644 --- a/docs/version-specific/supported-software/j/JWM.md +++ b/docs/version-specific/supported-software/j/JWM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.5`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Jansson.md b/docs/version-specific/supported-software/j/Jansson.md index a58f2cac2..e2ecf09e0 100644 --- a/docs/version-specific/supported-software/j/Jansson.md +++ b/docs/version-specific/supported-software/j/Jansson.md @@ -16,5 +16,6 @@ version | toolchain ``2.14`` | ``GCC/12.3.0`` ``2.6`` | ``GCC/4.8.3`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JasPer.md b/docs/version-specific/supported-software/j/JasPer.md index 2194622d4..9497843cb 100644 --- a/docs/version-specific/supported-software/j/JasPer.md +++ b/docs/version-specific/supported-software/j/JasPer.md @@ -37,5 +37,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.3.0`` ``4.0.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Jasmine.md b/docs/version-specific/supported-software/j/Jasmine.md index 7b36d29e5..ab9d80fd5 100644 --- a/docs/version-specific/supported-software/j/Jasmine.md +++ b/docs/version-specific/supported-software/j/Jasmine.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-Java-15`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Java.md b/docs/version-specific/supported-software/j/Java.md index b79c9c0df..d690cf32a 100644 --- a/docs/version-specific/supported-software/j/Java.md +++ b/docs/version-specific/supported-software/j/Java.md @@ -83,5 +83,6 @@ version | versionsuffix | toolchain ``8.402`` | | ``system`` ``8`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JavaFX.md b/docs/version-specific/supported-software/j/JavaFX.md index 28d00dd84..d63000486 100644 --- a/docs/version-specific/supported-software/j/JavaFX.md +++ b/docs/version-specific/supported-software/j/JavaFX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``11.0.2`` | ``_linux-x64_bin-sdk`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Jblob.md b/docs/version-specific/supported-software/j/Jblob.md index a4764b378..6fd83bd8b 100644 --- a/docs/version-specific/supported-software/j/Jblob.md +++ b/docs/version-specific/supported-software/j/Jblob.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Jellyfish.md b/docs/version-specific/supported-software/j/Jellyfish.md index fbbf41b36..29a54e247 100644 --- a/docs/version-specific/supported-software/j/Jellyfish.md +++ b/docs/version-specific/supported-software/j/Jellyfish.md @@ -26,5 +26,6 @@ version | toolchain ``2.3.0`` | ``GCC/8.2.0-2.31.1`` ``2.3.0`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JiTCODE.md b/docs/version-specific/supported-software/j/JiTCODE.md index c3fbb9cd3..0db352887 100644 --- a/docs/version-specific/supported-software/j/JiTCODE.md +++ b/docs/version-specific/supported-software/j/JiTCODE.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-3.6.4`` | ``intel/2018a`` ``1.4.0`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Jmol.md b/docs/version-specific/supported-software/j/Jmol.md index 0f6dbab16..ce6fc2927 100644 --- a/docs/version-specific/supported-software/j/Jmol.md +++ b/docs/version-specific/supported-software/j/Jmol.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``16.1.41`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Jorg.md b/docs/version-specific/supported-software/j/Jorg.md index 6afcecc87..a502a211c 100644 --- a/docs/version-specific/supported-software/j/Jorg.md +++ b/docs/version-specific/supported-software/j/Jorg.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JsonCpp.md b/docs/version-specific/supported-software/j/JsonCpp.md index a65ab074a..0731c0ba5 100644 --- a/docs/version-specific/supported-software/j/JsonCpp.md +++ b/docs/version-specific/supported-software/j/JsonCpp.md @@ -20,5 +20,6 @@ version | toolchain ``1.9.5`` | ``GCCcore/12.2.0`` ``1.9.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Judy.md b/docs/version-specific/supported-software/j/Judy.md index 57c2315bd..59e2731ce 100644 --- a/docs/version-specific/supported-software/j/Judy.md +++ b/docs/version-specific/supported-software/j/Judy.md @@ -18,5 +18,6 @@ version | toolchain ``1.0.5`` | ``GCCcore/8.2.0`` ``1.0.5`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/Julia.md b/docs/version-specific/supported-software/j/Julia.md index c07d93fb2..02a3a0449 100644 --- a/docs/version-specific/supported-software/j/Julia.md +++ b/docs/version-specific/supported-software/j/Julia.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``1.9.2`` | ``-linux-x86_64`` | ``system`` ``1.9.3`` | ``-linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 65b1b538d..6de9d1477 100644 --- a/docs/version-specific/supported-software/j/Jupyter-bundle.md +++ b/docs/version-specific/supported-software/j/Jupyter-bundle.md @@ -13,5 +13,6 @@ version | toolchain ``20230823`` | ``GCCcore/12.3.0`` ``20240522`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JupyterHub.md b/docs/version-specific/supported-software/j/JupyterHub.md index 16e32a7de..90e8b91fc 100644 --- a/docs/version-specific/supported-software/j/JupyterHub.md +++ b/docs/version-specific/supported-software/j/JupyterHub.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``4.0.2`` | | ``GCCcore/12.3.0`` ``4.1.5`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JupyterLab.md b/docs/version-specific/supported-software/j/JupyterLab.md index ab8c32a15..5bb349765 100644 --- a/docs/version-specific/supported-software/j/JupyterLab.md +++ b/docs/version-specific/supported-software/j/JupyterLab.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``4.0.5`` | | ``GCCcore/12.3.0`` ``4.2.0`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/JupyterNotebook.md b/docs/version-specific/supported-software/j/JupyterNotebook.md index cfd7f5491..e78b747b3 100644 --- a/docs/version-specific/supported-software/j/JupyterNotebook.md +++ b/docs/version-specific/supported-software/j/JupyterNotebook.md @@ -14,5 +14,6 @@ version | toolchain ``7.0.3`` | ``GCCcore/12.2.0`` ``7.2.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/index.md b/docs/version-specific/supported-software/j/index.md index 45772ec1a..27a2e1a44 100644 --- a/docs/version-specific/supported-software/j/index.md +++ b/docs/version-specific/supported-software/j/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (j) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../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) @@ -50,3 +52,7 @@ search: * [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 index 9f600f646..3f4dd6eeb 100644 --- a/docs/version-specific/supported-software/j/jModelTest.md +++ b/docs/version-specific/supported-software/j/jModelTest.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.10r20160303`` | ``-Java-1.8.0_92`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jax.md b/docs/version-specific/supported-software/j/jax.md index 164553b37..287b98779 100644 --- a/docs/version-specific/supported-software/j/jax.md +++ b/docs/version-specific/supported-software/j/jax.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jbigkit.md b/docs/version-specific/supported-software/j/jbigkit.md index ef3db054d..a38c5d673 100644 --- a/docs/version-specific/supported-software/j/jbigkit.md +++ b/docs/version-specific/supported-software/j/jbigkit.md @@ -23,5 +23,6 @@ version | toolchain ``2.1`` | ``GCCcore/8.3.0`` ``2.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f2d0dc6ff..c99d3b4f1 100644 --- a/docs/version-specific/supported-software/j/jedi-language-server.md +++ b/docs/version-specific/supported-software/j/jedi-language-server.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.39.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jedi.md b/docs/version-specific/supported-software/j/jedi.md index d6098f985..6487a53f6 100644 --- a/docs/version-specific/supported-software/j/jedi.md +++ b/docs/version-specific/supported-software/j/jedi.md @@ -13,5 +13,6 @@ version | toolchain ``0.18.1`` | ``GCCcore/11.3.0`` ``0.19.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jemalloc.md b/docs/version-specific/supported-software/j/jemalloc.md index 5072a8d5a..45b4ab412 100644 --- a/docs/version-specific/supported-software/j/jemalloc.md +++ b/docs/version-specific/supported-software/j/jemalloc.md @@ -28,5 +28,6 @@ version | toolchain ``5.3.0`` | ``GCCcore/12.2.0`` ``5.3.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jhbuild.md b/docs/version-specific/supported-software/j/jhbuild.md index 88187d854..73afda29c 100644 --- a/docs/version-specific/supported-software/j/jhbuild.md +++ b/docs/version-specific/supported-software/j/jhbuild.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.15.92`` | ``GCCcore/4.9.3`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jiter.md b/docs/version-specific/supported-software/j/jiter.md index 37a3552c2..b01d4a7a2 100644 --- a/docs/version-specific/supported-software/j/jiter.md +++ b/docs/version-specific/supported-software/j/jiter.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/joypy.md b/docs/version-specific/supported-software/j/joypy.md index bc8987311..b946aa011 100644 --- a/docs/version-specific/supported-software/j/joypy.md +++ b/docs/version-specific/supported-software/j/joypy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.2.4`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jq.md b/docs/version-specific/supported-software/j/jq.md index 150e07c4c..4796d0a98 100644 --- a/docs/version-specific/supported-software/j/jq.md +++ b/docs/version-specific/supported-software/j/jq.md @@ -17,5 +17,6 @@ version | toolchain ``1.6`` | ``GCCcore/12.2.0`` ``1.6`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 55c625acd..a96ae5f5f 100644 --- a/docs/version-specific/supported-software/j/json-c.md +++ b/docs/version-specific/supported-software/j/json-c.md @@ -18,5 +18,6 @@ version | toolchain ``0.16`` | ``GCCcore/12.3.0`` ``0.17`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ec75a76a0..afa9672e7 100644 --- a/docs/version-specific/supported-software/j/json-fortran.md +++ b/docs/version-specific/supported-software/j/json-fortran.md @@ -20,5 +20,6 @@ version | toolchain ``8.3.0`` | ``intel-compilers/2022.1.0`` ``8.3.0`` | ``intel-compilers/2022.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5cbd23b52..10e0727c8 100644 --- a/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md +++ b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md @@ -13,5 +13,6 @@ version | toolchain ``0.7.0`` | ``GCCcore/11.3.0`` ``0.7.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 59b803d33..1d03ba0b6 100644 --- a/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md @@ -14,5 +14,6 @@ version | toolchain ``0.3.4`` | ``GCCcore/10.3.0`` ``0.5.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index df79f6304..24d93c120 100644 --- a/docs/version-specific/supported-software/j/jupyter-resource-usage.md +++ b/docs/version-specific/supported-software/j/jupyter-resource-usage.md @@ -16,5 +16,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cbd2ec9d6..926194c27 100644 --- a/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md @@ -13,5 +13,6 @@ version | toolchain ``2.1.0`` | ``GCCcore/11.3.0`` ``2.2.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b2b3900f7..2f2cf6f62 100644 --- a/docs/version-specific/supported-software/j/jupyter-server-proxy.md +++ b/docs/version-specific/supported-software/j/jupyter-server-proxy.md @@ -16,5 +16,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.3.0`` ``4.1.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 95489151f..8aa0d96c4 100644 --- a/docs/version-specific/supported-software/j/jupyter-server.md +++ b/docs/version-specific/supported-software/j/jupyter-server.md @@ -15,5 +15,6 @@ version | toolchain ``2.7.0`` | ``GCCcore/12.2.0`` ``2.7.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 679095e7d..babf26643 100644 --- a/docs/version-specific/supported-software/j/jupyterlab-lmod.md +++ b/docs/version-specific/supported-software/j/jupyterlab-lmod.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jupyterlmod.md b/docs/version-specific/supported-software/j/jupyterlmod.md index 22a703711..a234dbd4b 100644 --- a/docs/version-specific/supported-software/j/jupyterlmod.md +++ b/docs/version-specific/supported-software/j/jupyterlmod.md @@ -14,5 +14,6 @@ version | toolchain ``4.0.3`` | ``GCCcore/11.3.0`` ``4.0.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/j/jxrlib.md b/docs/version-specific/supported-software/j/jxrlib.md index c7842f434..298f8ef62 100644 --- a/docs/version-specific/supported-software/j/jxrlib.md +++ b/docs/version-specific/supported-software/j/jxrlib.md @@ -15,5 +15,6 @@ version | toolchain ``1.1`` | ``GCCcore/11.3.0`` ``1.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KAT.md b/docs/version-specific/supported-software/k/KAT.md index d0ea2c38b..1da18f749 100644 --- a/docs/version-specific/supported-software/k/KAT.md +++ b/docs/version-specific/supported-software/k/KAT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.4.2`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.4.2`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KITE.md b/docs/version-specific/supported-software/k/KITE.md index 821d4087f..277586496 100644 --- a/docs/version-specific/supported-software/k/KITE.md +++ b/docs/version-specific/supported-software/k/KITE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KMC.md b/docs/version-specific/supported-software/k/KMC.md index 0f9c35ee8..dca96cdd4 100644 --- a/docs/version-specific/supported-software/k/KMC.md +++ b/docs/version-specific/supported-software/k/KMC.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``3.2.1`` | | ``GCC/11.2.0`` ``3.2.2`` | | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KMCP.md b/docs/version-specific/supported-software/k/KMCP.md index f8bb92449..06166eab6 100644 --- a/docs/version-specific/supported-software/k/KMCP.md +++ b/docs/version-specific/supported-software/k/KMCP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KNIME.md b/docs/version-specific/supported-software/k/KNIME.md index d1c25d06e..25bfd5946 100644 --- a/docs/version-specific/supported-software/k/KNIME.md +++ b/docs/version-specific/supported-software/k/KNIME.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.6.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KWIML.md b/docs/version-specific/supported-software/k/KWIML.md index 3d8e0f170..d969b9ab9 100644 --- a/docs/version-specific/supported-software/k/KWIML.md +++ b/docs/version-specific/supported-software/k/KWIML.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20180201`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KaHIP.md b/docs/version-specific/supported-software/k/KaHIP.md index 2dc7a74bb..c045c47f8 100644 --- a/docs/version-specific/supported-software/k/KaHIP.md +++ b/docs/version-specific/supported-software/k/KaHIP.md @@ -14,5 +14,6 @@ version | toolchain ``3.14`` | ``gompi/2022b`` ``3.16`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Kaiju.md b/docs/version-specific/supported-software/k/Kaiju.md index 1d270db87..dbcd739a4 100644 --- a/docs/version-specific/supported-software/k/Kaiju.md +++ b/docs/version-specific/supported-software/k/Kaiju.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.7.2`` | ``-Python-3.7.2`` | ``iimpi/2019a`` ``1.7.3`` | ``-Python-3.7.4`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Kaleido.md b/docs/version-specific/supported-software/k/Kaleido.md index ac0b4162f..7c66e4f5c 100644 --- a/docs/version-specific/supported-software/k/Kaleido.md +++ b/docs/version-specific/supported-software/k/Kaleido.md @@ -16,5 +16,6 @@ version | toolchain ``0.2.1`` | ``GCCcore/12.2.0`` ``0.2.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Kalign.md b/docs/version-specific/supported-software/k/Kalign.md index 6ca15bf93..fa35833f5 100644 --- a/docs/version-specific/supported-software/k/Kalign.md +++ b/docs/version-specific/supported-software/k/Kalign.md @@ -17,5 +17,6 @@ version | toolchain ``3.3.5`` | ``GCCcore/11.3.0`` ``3.4.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 50041856c..53d9b5311 100644 --- a/docs/version-specific/supported-software/k/Kent_tools.md +++ b/docs/version-specific/supported-software/k/Kent_tools.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``442`` | | ``GCC/11.3.0`` ``457`` | | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Keras.md b/docs/version-specific/supported-software/k/Keras.md index aa9493f2a..721a3fb02 100644 --- a/docs/version-specific/supported-software/k/Keras.md +++ b/docs/version-specific/supported-software/k/Keras.md @@ -38,5 +38,6 @@ version | versionsuffix | toolchain ``2.4.3`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` ``2.4.3`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KerasTuner.md b/docs/version-specific/supported-software/k/KerasTuner.md index cfeb58dea..0665c494d 100644 --- a/docs/version-specific/supported-software/k/KerasTuner.md +++ b/docs/version-specific/supported-software/k/KerasTuner.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KmerGenie.md b/docs/version-specific/supported-software/k/KmerGenie.md index cacb935db..1bd8ff7ea 100644 --- a/docs/version-specific/supported-software/k/KmerGenie.md +++ b/docs/version-specific/supported-software/k/KmerGenie.md @@ -13,5 +13,6 @@ version | toolchain ``1.7044`` | ``intel/2017a`` ``1.7048`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Kraken.md b/docs/version-specific/supported-software/k/Kraken.md index ab971f854..06c1412a5 100644 --- a/docs/version-specific/supported-software/k/Kraken.md +++ b/docs/version-specific/supported-software/k/Kraken.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` ``1.1.1`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Kraken2.md b/docs/version-specific/supported-software/k/Kraken2.md index c1975c110..403d980a4 100644 --- a/docs/version-specific/supported-software/k/Kraken2.md +++ b/docs/version-specific/supported-software/k/Kraken2.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``gompi/2021b`` ``2.1.2`` | | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KrakenUniq.md b/docs/version-specific/supported-software/k/KrakenUniq.md index 73d8a9b4e..a5e409520 100644 --- a/docs/version-specific/supported-software/k/KrakenUniq.md +++ b/docs/version-specific/supported-software/k/KrakenUniq.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.3`` | ``GCC/11.3.0`` ``1.0.4`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/Kratos.md b/docs/version-specific/supported-software/k/Kratos.md index da6a12235..048f52fca 100644 --- a/docs/version-specific/supported-software/k/Kratos.md +++ b/docs/version-specific/supported-software/k/Kratos.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``6.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``6.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KronaTools.md b/docs/version-specific/supported-software/k/KronaTools.md index 70e0e688c..3045de3ae 100644 --- a/docs/version-specific/supported-software/k/KronaTools.md +++ b/docs/version-specific/supported-software/k/KronaTools.md @@ -19,5 +19,6 @@ version | toolchain ``2.8.1`` | ``GCCcore/12.2.0`` ``2.8.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/KyotoCabinet.md b/docs/version-specific/supported-software/k/KyotoCabinet.md index 1b8ad0a86..99fa5dea2 100644 --- a/docs/version-specific/supported-software/k/KyotoCabinet.md +++ b/docs/version-specific/supported-software/k/KyotoCabinet.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.77`` | ``GCCcore/8.2.0`` ``1.2.80`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/index.md b/docs/version-specific/supported-software/k/index.md index 53349bb0c..2bb4cb153 100644 --- a/docs/version-specific/supported-software/k/index.md +++ b/docs/version-specific/supported-software/k/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (k) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../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) @@ -40,3 +42,7 @@ search: * [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 index c579ddf45..2240b79ac 100644 --- a/docs/version-specific/supported-software/k/kWIP.md +++ b/docs/version-specific/supported-software/k/kWIP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.0`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kallisto.md b/docs/version-specific/supported-software/k/kallisto.md index bc5be9034..ce6dad34a 100644 --- a/docs/version-specific/supported-software/k/kallisto.md +++ b/docs/version-specific/supported-software/k/kallisto.md @@ -29,5 +29,6 @@ version | toolchain ``0.48.0`` | ``gompi/2022a`` ``0.50.1`` | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 14f5be5fa..987f76988 100644 --- a/docs/version-specific/supported-software/k/kb-python.md +++ b/docs/version-specific/supported-software/k/kb-python.md @@ -13,5 +13,6 @@ version | toolchain ``0.27.3`` | ``foss/2021b`` ``0.27.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kbproto.md b/docs/version-specific/supported-software/k/kbproto.md index 0f1231d01..35c45f093 100644 --- a/docs/version-specific/supported-software/k/kbproto.md +++ b/docs/version-specific/supported-software/k/kbproto.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.7`` | ``intel/2016a`` ``1.0.7`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kedro.md b/docs/version-specific/supported-software/k/kedro.md index 06038e029..b96f1c574 100644 --- a/docs/version-specific/supported-software/k/kedro.md +++ b/docs/version-specific/supported-software/k/kedro.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.16.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/khmer.md b/docs/version-specific/supported-software/k/khmer.md index 86612a0f2..b33c02e93 100644 --- a/docs/version-specific/supported-software/k/khmer.md +++ b/docs/version-specific/supported-software/k/khmer.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 440aaea1c..038f45552 100644 --- a/docs/version-specific/supported-software/k/kim-api.md +++ b/docs/version-specific/supported-software/k/kim-api.md @@ -25,5 +25,6 @@ version | toolchain ``2.3.0`` | ``GCC/12.3.0`` ``2.3.0`` | ``intel-compilers/2023.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kineto.md b/docs/version-specific/supported-software/k/kineto.md index 40588eebd..1f84c1919 100644 --- a/docs/version-specific/supported-software/k/kineto.md +++ b/docs/version-specific/supported-software/k/kineto.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/king.md b/docs/version-specific/supported-software/k/king.md index 2eda0f421..2fe0bffa0 100644 --- a/docs/version-specific/supported-software/k/king.md +++ b/docs/version-specific/supported-software/k/king.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.4`` | ``system`` ``2.2.7`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kma.md b/docs/version-specific/supported-software/k/kma.md index 213b86985..226f33409 100644 --- a/docs/version-specific/supported-software/k/kma.md +++ b/docs/version-specific/supported-software/k/kma.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.22`` | ``intel/2019b`` ``1.4.12a`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kneaddata.md b/docs/version-specific/supported-software/k/kneaddata.md index a548d5841..0dd9b7e28 100644 --- a/docs/version-specific/supported-software/k/kneaddata.md +++ b/docs/version-specific/supported-software/k/kneaddata.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.12.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kpcalg.md b/docs/version-specific/supported-software/k/kpcalg.md index 227d360a9..05d45a32f 100644 --- a/docs/version-specific/supported-software/k/kpcalg.md +++ b/docs/version-specific/supported-software/k/kpcalg.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/krbalancing.md b/docs/version-specific/supported-software/k/krbalancing.md index 1c072df5c..0b1cab698 100644 --- a/docs/version-specific/supported-software/k/krbalancing.md +++ b/docs/version-specific/supported-software/k/krbalancing.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.0b0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/k/kwant.md b/docs/version-specific/supported-software/k/kwant.md index 3cf662974..7360763f3 100644 --- a/docs/version-specific/supported-software/k/kwant.md +++ b/docs/version-specific/supported-software/k/kwant.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.4.1`` | ``-Python-3.7.2`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LADR.md b/docs/version-specific/supported-software/l/LADR.md index 2833205b3..0db86e9d4 100644 --- a/docs/version-specific/supported-software/l/LADR.md +++ b/docs/version-specific/supported-software/l/LADR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2009-11A`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LAME.md b/docs/version-specific/supported-software/l/LAME.md index 0483a57cf..d32227f0c 100644 --- a/docs/version-specific/supported-software/l/LAME.md +++ b/docs/version-specific/supported-software/l/LAME.md @@ -26,5 +26,6 @@ version | toolchain ``3.99.5`` | ``foss/2016b`` ``3.99.5`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LAMMPS.md b/docs/version-specific/supported-software/l/LAMMPS.md index 844742d86..15499e1b8 100644 --- a/docs/version-specific/supported-software/l/LAMMPS.md +++ b/docs/version-specific/supported-software/l/LAMMPS.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``7Aug2019`` | ``-Python-3.7.4-kokkos-OCTP`` | ``intel/2019b`` ``7Aug2019`` | ``-Python-3.7.4-kokkos`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LAPACK.md b/docs/version-specific/supported-software/l/LAPACK.md index f60f69f58..24e171534 100644 --- a/docs/version-specific/supported-software/l/LAPACK.md +++ b/docs/version-specific/supported-software/l/LAPACK.md @@ -17,5 +17,6 @@ version | toolchain ``3.8.0`` | ``GCC/7.3.0-2.30`` ``3.9.1`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0372ff360..5f9bbd74a 100644 --- a/docs/version-specific/supported-software/l/LASSO-Python.md +++ b/docs/version-specific/supported-software/l/LASSO-Python.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LAST.md b/docs/version-specific/supported-software/l/LAST.md index f494e8699..77472dd11 100644 --- a/docs/version-specific/supported-software/l/LAST.md +++ b/docs/version-specific/supported-software/l/LAST.md @@ -15,5 +15,6 @@ version | toolchain ``869`` | ``intel/2017a`` ``914`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LASTZ.md b/docs/version-specific/supported-software/l/LASTZ.md index a26cc8146..843a2b05d 100644 --- a/docs/version-specific/supported-software/l/LASTZ.md +++ b/docs/version-specific/supported-software/l/LASTZ.md @@ -15,5 +15,6 @@ version | toolchain ``1.04.03`` | ``foss/2019b`` ``1.04.22`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LBFGS++.md b/docs/version-specific/supported-software/l/LBFGS++.md index 5647cf6af..f11aea8b9 100644 --- a/docs/version-specific/supported-software/l/LBFGS++.md +++ b/docs/version-specific/supported-software/l/LBFGS++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LCov.md b/docs/version-specific/supported-software/l/LCov.md index 334fd82d3..e5f694570 100644 --- a/docs/version-specific/supported-software/l/LCov.md +++ b/docs/version-specific/supported-software/l/LCov.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.13`` | ``GCCcore/7.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LDC.md b/docs/version-specific/supported-software/l/LDC.md index c9278f751..1e0a1d099 100644 --- a/docs/version-specific/supported-software/l/LDC.md +++ b/docs/version-specific/supported-software/l/LDC.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.30.0`` | | ``GCCcore/11.3.0`` ``1.36.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LEMON.md b/docs/version-specific/supported-software/l/LEMON.md index e45587272..5344a140f 100644 --- a/docs/version-specific/supported-software/l/LEMON.md +++ b/docs/version-specific/supported-software/l/LEMON.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LERC.md b/docs/version-specific/supported-software/l/LERC.md index 793eec268..aacd7a339 100644 --- a/docs/version-specific/supported-software/l/LERC.md +++ b/docs/version-specific/supported-software/l/LERC.md @@ -17,5 +17,6 @@ version | toolchain ``4.0.0`` | ``GCCcore/12.3.0`` ``4.0.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LHAPDF.md b/docs/version-specific/supported-software/l/LHAPDF.md index 280e4d894..7f29aa153 100644 --- a/docs/version-specific/supported-software/l/LHAPDF.md +++ b/docs/version-specific/supported-software/l/LHAPDF.md @@ -13,5 +13,6 @@ version | toolchain ``6.5.3`` | ``GCC/11.3.0`` ``6.5.4`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LIANA.md b/docs/version-specific/supported-software/l/LIANA.md index b2a1c8398..a2edeab0a 100644 --- a/docs/version-specific/supported-software/l/LIANA.md +++ b/docs/version-specific/supported-software/l/LIANA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.11`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 44b9deb53..be5e88fd0 100644 --- a/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md +++ b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.30`` | ``-MATLAB-2022b-r5`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 54d855b22..9b6f6509b 100644 --- a/docs/version-specific/supported-software/l/LIBSVM-Python.md +++ b/docs/version-specific/supported-software/l/LIBSVM-Python.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.30`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LIBSVM.md b/docs/version-specific/supported-software/l/LIBSVM.md index b78b6a77b..112645657 100644 --- a/docs/version-specific/supported-software/l/LIBSVM.md +++ b/docs/version-specific/supported-software/l/LIBSVM.md @@ -20,5 +20,6 @@ version | toolchain ``3.25`` | ``GCCcore/11.2.0`` ``3.30`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2f14a7489..b2db80f31 100644 --- a/docs/version-specific/supported-software/l/LISFLOOD-FP.md +++ b/docs/version-specific/supported-software/l/LISFLOOD-FP.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``8.1`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` ``8.1`` | | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LLDB.md b/docs/version-specific/supported-software/l/LLDB.md index 45ab63e73..968e1caa8 100644 --- a/docs/version-specific/supported-software/l/LLDB.md +++ b/docs/version-specific/supported-software/l/LLDB.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``11.0.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LLVM.md b/docs/version-specific/supported-software/l/LLVM.md index 478f089aa..e2e260792 100644 --- a/docs/version-specific/supported-software/l/LLVM.md +++ b/docs/version-specific/supported-software/l/LLVM.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``9.0.1`` | | ``GCCcore/8.3.0`` ``9.0.1`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LMDB.md b/docs/version-specific/supported-software/l/LMDB.md index 8ddd6dc90..380a7a473 100644 --- a/docs/version-specific/supported-software/l/LMDB.md +++ b/docs/version-specific/supported-software/l/LMDB.md @@ -24,5 +24,6 @@ version | toolchain ``0.9.29`` | ``GCCcore/12.2.0`` ``0.9.31`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LMfit.md b/docs/version-specific/supported-software/l/LMfit.md index 37703cbcb..cec811978 100644 --- a/docs/version-specific/supported-software/l/LMfit.md +++ b/docs/version-specific/supported-software/l/LMfit.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``1.0.3`` | | ``intel/2022a`` ``1.2.1`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LOHHLA.md b/docs/version-specific/supported-software/l/LOHHLA.md index 0036f566e..d9730ad3e 100644 --- a/docs/version-specific/supported-software/l/LOHHLA.md +++ b/docs/version-specific/supported-software/l/LOHHLA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.11.05`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LPJmL.md b/docs/version-specific/supported-software/l/LPJmL.md index 69128917c..dbc8c6210 100644 --- a/docs/version-specific/supported-software/l/LPJmL.md +++ b/docs/version-specific/supported-software/l/LPJmL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0.003`` | ``iimpi/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LPeg.md b/docs/version-specific/supported-software/l/LPeg.md index e0310e1f0..a069c84b4 100644 --- a/docs/version-specific/supported-software/l/LPeg.md +++ b/docs/version-specific/supported-software/l/LPeg.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 26105190c..240f0c212 100644 --- a/docs/version-specific/supported-software/l/LS-PrePost.md +++ b/docs/version-specific/supported-software/l/LS-PrePost.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``4.7.15`` | | ``system`` ``4.7.8`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LSD2.md b/docs/version-specific/supported-software/l/LSD2.md index 1697b8a9c..d4552d043 100644 --- a/docs/version-specific/supported-software/l/LSD2.md +++ b/docs/version-specific/supported-software/l/LSD2.md @@ -18,5 +18,6 @@ version | toolchain ``2.4.1`` | ``GCCcore/12.2.0`` ``2.4.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LSMS.md b/docs/version-specific/supported-software/l/LSMS.md index ed19f4333..3e458916b 100644 --- a/docs/version-specific/supported-software/l/LSMS.md +++ b/docs/version-specific/supported-software/l/LSMS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3_rev237`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f9b866c11..fb4b29097 100644 --- a/docs/version-specific/supported-software/l/LTR_retriever.md +++ b/docs/version-specific/supported-software/l/LTR_retriever.md @@ -13,5 +13,6 @@ version | toolchain ``2.9.0`` | ``foss/2020b`` ``2.9.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LUMPY.md b/docs/version-specific/supported-software/l/LUMPY.md index e7047dbca..78a9888fd 100644 --- a/docs/version-specific/supported-software/l/LUMPY.md +++ b/docs/version-specific/supported-software/l/LUMPY.md @@ -13,5 +13,6 @@ version | toolchain ``0.2.13`` | ``foss/2016b`` ``0.3.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LUSCUS.md b/docs/version-specific/supported-software/l/LUSCUS.md index a85675f85..f19f21943 100644 --- a/docs/version-specific/supported-software/l/LUSCUS.md +++ b/docs/version-specific/supported-software/l/LUSCUS.md @@ -13,5 +13,6 @@ version | toolchain ``0.8.6`` | ``foss/2018b`` ``0.8.6`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LZO.md b/docs/version-specific/supported-software/l/LZO.md index 0b4c742b7..fcf542f46 100644 --- a/docs/version-specific/supported-software/l/LZO.md +++ b/docs/version-specific/supported-software/l/LZO.md @@ -32,5 +32,6 @@ version | toolchain ``2.10`` | ``fosscuda/2018b`` ``2.10`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8b373ee62..e7a1c97b7 100644 --- a/docs/version-specific/supported-software/l/L_RNA_scaffolder.md +++ b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20141124`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``20190530`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bd9c54476..5ba3a3412 100644 --- a/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md +++ b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.16.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Lace.md b/docs/version-specific/supported-software/l/Lace.md index 845e021bd..1b716e5cd 100644 --- a/docs/version-specific/supported-software/l/Lace.md +++ b/docs/version-specific/supported-software/l/Lace.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.14.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LangChain.md b/docs/version-specific/supported-software/l/LangChain.md index 9c116e5f4..5e12a886b 100644 --- a/docs/version-specific/supported-software/l/LangChain.md +++ b/docs/version-specific/supported-software/l/LangChain.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LayoutParser.md b/docs/version-specific/supported-software/l/LayoutParser.md index e63c503fb..e01e291c9 100644 --- a/docs/version-specific/supported-software/l/LayoutParser.md +++ b/docs/version-specific/supported-software/l/LayoutParser.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LeadIT.md b/docs/version-specific/supported-software/l/LeadIT.md index c69a0e1b1..bac444c32 100644 --- a/docs/version-specific/supported-software/l/LeadIT.md +++ b/docs/version-specific/supported-software/l/LeadIT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.9`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Leptonica.md b/docs/version-specific/supported-software/l/Leptonica.md index 4ce63076b..d09b4b4db 100644 --- a/docs/version-specific/supported-software/l/Leptonica.md +++ b/docs/version-specific/supported-software/l/Leptonica.md @@ -15,5 +15,6 @@ version | toolchain ``1.82.0`` | ``GCCcore/10.3.0`` ``1.83.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LevelDB.md b/docs/version-specific/supported-software/l/LevelDB.md index 0c80e51d9..6b81a4ca1 100644 --- a/docs/version-specific/supported-software/l/LevelDB.md +++ b/docs/version-specific/supported-software/l/LevelDB.md @@ -18,5 +18,6 @@ version | toolchain ``1.22`` | ``GCCcore/8.2.0`` ``1.22`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Levenshtein.md b/docs/version-specific/supported-software/l/Levenshtein.md index 8fc38af52..da5af2cfd 100644 --- a/docs/version-specific/supported-software/l/Levenshtein.md +++ b/docs/version-specific/supported-software/l/Levenshtein.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.24.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LiBis.md b/docs/version-specific/supported-software/l/LiBis.md index c06b43851..20cb208f1 100644 --- a/docs/version-specific/supported-software/l/LiBis.md +++ b/docs/version-specific/supported-software/l/LiBis.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200428`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LibLZF.md b/docs/version-specific/supported-software/l/LibLZF.md index ccdbddf2c..39122f776 100644 --- a/docs/version-specific/supported-software/l/LibLZF.md +++ b/docs/version-specific/supported-software/l/LibLZF.md @@ -15,5 +15,6 @@ version | toolchain ``3.6`` | ``GCCcore/11.3.0`` ``3.6`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LibSoup.md b/docs/version-specific/supported-software/l/LibSoup.md index 48d87737d..21c616b17 100644 --- a/docs/version-specific/supported-software/l/LibSoup.md +++ b/docs/version-specific/supported-software/l/LibSoup.md @@ -17,5 +17,6 @@ version | toolchain ``3.0.7`` | ``GCC/11.2.0`` ``3.0.8`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LibTIFF.md b/docs/version-specific/supported-software/l/LibTIFF.md index 1dca64256..7b5daa692 100644 --- a/docs/version-specific/supported-software/l/LibTIFF.md +++ b/docs/version-specific/supported-software/l/LibTIFF.md @@ -38,5 +38,6 @@ version | toolchain ``4.6.0`` | ``GCCcore/13.2.0`` ``4.6.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LibUUID.md b/docs/version-specific/supported-software/l/LibUUID.md index a2ca2f276..fc8ee4523 100644 --- a/docs/version-specific/supported-software/l/LibUUID.md +++ b/docs/version-specific/supported-software/l/LibUUID.md @@ -18,5 +18,6 @@ version | toolchain ``1.0.3`` | ``intel/2017a`` ``1.0.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Libint.md b/docs/version-specific/supported-software/l/Libint.md index f6092b48e..090812e37 100644 --- a/docs/version-specific/supported-software/l/Libint.md +++ b/docs/version-specific/supported-software/l/Libint.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/12.2.0`` ``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Lighter.md b/docs/version-specific/supported-software/l/Lighter.md index aba4d4fdb..080e82b2f 100644 --- a/docs/version-specific/supported-software/l/Lighter.md +++ b/docs/version-specific/supported-software/l/Lighter.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.2`` | ``GCC/11.2.0`` ``1.1.2`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Lightning.md b/docs/version-specific/supported-software/l/Lightning.md index 0533bbf80..2d8dd5eab 100644 --- a/docs/version-specific/supported-software/l/Lightning.md +++ b/docs/version-specific/supported-software/l/Lightning.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LinBox.md b/docs/version-specific/supported-software/l/LinBox.md index 02298f004..d2f2b9622 100644 --- a/docs/version-specific/supported-software/l/LinBox.md +++ b/docs/version-specific/supported-software/l/LinBox.md @@ -14,5 +14,6 @@ version | toolchain ``1.7.0`` | ``gfbf/2022a`` ``1.7.0`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Lingeling.md b/docs/version-specific/supported-software/l/Lingeling.md index 76528959a..b8548d400 100644 --- a/docs/version-specific/supported-software/l/Lingeling.md +++ b/docs/version-specific/supported-software/l/Lingeling.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``bcp`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LittleCMS.md b/docs/version-specific/supported-software/l/LittleCMS.md index dae25be14..572d29c91 100644 --- a/docs/version-specific/supported-software/l/LittleCMS.md +++ b/docs/version-specific/supported-software/l/LittleCMS.md @@ -31,5 +31,6 @@ version | toolchain ``2.9`` | ``foss/2018a`` ``2.9`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Lmod.md b/docs/version-specific/supported-software/l/Lmod.md index fb08250ac..395c4fc67 100644 --- a/docs/version-specific/supported-software/l/Lmod.md +++ b/docs/version-specific/supported-software/l/Lmod.md @@ -26,5 +26,6 @@ version | toolchain ``6.4.2`` | ``system`` ``7.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LncLOOM.md b/docs/version-specific/supported-software/l/LncLOOM.md index a118bfd63..6e4b25165 100644 --- a/docs/version-specific/supported-software/l/LncLOOM.md +++ b/docs/version-specific/supported-software/l/LncLOOM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LoFreq.md b/docs/version-specific/supported-software/l/LoFreq.md index 65a403b04..2b3e6df29 100644 --- a/docs/version-specific/supported-software/l/LoFreq.md +++ b/docs/version-specific/supported-software/l/LoFreq.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.1.3.1`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.1.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LoRDEC.md b/docs/version-specific/supported-software/l/LoRDEC.md index b8fe9d2c8..8d8df6951 100644 --- a/docs/version-specific/supported-software/l/LoRDEC.md +++ b/docs/version-specific/supported-software/l/LoRDEC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LocARNA.md b/docs/version-specific/supported-software/l/LocARNA.md index 5448405bc..32b002a01 100644 --- a/docs/version-specific/supported-software/l/LocARNA.md +++ b/docs/version-specific/supported-software/l/LocARNA.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.9.2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` ``1.9.2.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d6033c62a..f7e0580f4 100644 --- a/docs/version-specific/supported-software/l/Log-Log4perl.md +++ b/docs/version-specific/supported-software/l/Log-Log4perl.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.47`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Loki.md b/docs/version-specific/supported-software/l/Loki.md index 038d95185..31ef662ad 100644 --- a/docs/version-specific/supported-software/l/Loki.md +++ b/docs/version-specific/supported-software/l/Loki.md @@ -16,5 +16,6 @@ version | toolchain ``0.1.7`` | ``intel/2016b`` ``0.1.7`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Longshot.md b/docs/version-specific/supported-software/l/Longshot.md index bdc4498e9..d5ca263da 100644 --- a/docs/version-specific/supported-software/l/Longshot.md +++ b/docs/version-specific/supported-software/l/Longshot.md @@ -16,5 +16,6 @@ version | toolchain ``0.4.3`` | ``GCCcore/10.2.0`` ``0.4.5`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LoopTools.md b/docs/version-specific/supported-software/l/LoopTools.md index 651a0397d..67004918b 100644 --- a/docs/version-specific/supported-software/l/LoopTools.md +++ b/docs/version-specific/supported-software/l/LoopTools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.15`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LtrDetector.md b/docs/version-specific/supported-software/l/LtrDetector.md index 55d23082e..664633ae3 100644 --- a/docs/version-specific/supported-software/l/LtrDetector.md +++ b/docs/version-specific/supported-software/l/LtrDetector.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/Lua.md b/docs/version-specific/supported-software/l/Lua.md index 84c4f1ec8..2c28fef4a 100644 --- a/docs/version-specific/supported-software/l/Lua.md +++ b/docs/version-specific/supported-software/l/Lua.md @@ -33,5 +33,6 @@ version | toolchain ``5.4.6`` | ``GCCcore/12.3.0`` ``5.4.6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LuaJIT.md b/docs/version-specific/supported-software/l/LuaJIT.md index f4b364dfe..71ff4c352 100644 --- a/docs/version-specific/supported-software/l/LuaJIT.md +++ b/docs/version-specific/supported-software/l/LuaJIT.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.2`` | ``GCC/4.9.2`` ``2.1.0-beta3_20230602`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a89824ab1..c82e3b917 100644 --- a/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md +++ b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1-20220411`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/LuaRocks.md b/docs/version-specific/supported-software/l/LuaRocks.md index fe84eb1f1..5bf7a1635 100644 --- a/docs/version-specific/supported-software/l/LuaRocks.md +++ b/docs/version-specific/supported-software/l/LuaRocks.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.9.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e93a7f2d1..53087c7ca 100644 --- a/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md +++ b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20170718`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/index.md b/docs/version-specific/supported-software/l/index.md index 86796077d..803d4db18 100644 --- a/docs/version-specific/supported-software/l/index.md +++ b/docs/version-specific/supported-software/l/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (l) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../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) @@ -259,3 +261,7 @@ search: * [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 index 4d9959ae1..fb62a3bb0 100644 --- a/docs/version-specific/supported-software/l/lDDT.md +++ b/docs/version-specific/supported-software/l/lDDT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 75d2bdfe6..65502845a 100644 --- a/docs/version-specific/supported-software/l/lagrangian-filtering.md +++ b/docs/version-specific/supported-software/l/lagrangian-filtering.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lancet.md b/docs/version-specific/supported-software/l/lancet.md index ae4ce012e..ea6663d98 100644 --- a/docs/version-specific/supported-software/l/lancet.md +++ b/docs/version-specific/supported-software/l/lancet.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 35a483017..46cba3124 100644 --- a/docs/version-specific/supported-software/l/langchain-anthropic.md +++ b/docs/version-specific/supported-software/l/langchain-anthropic.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.15`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lavaan.md b/docs/version-specific/supported-software/l/lavaan.md index 726cfea4a..749abd55c 100644 --- a/docs/version-specific/supported-software/l/lavaan.md +++ b/docs/version-specific/supported-software/l/lavaan.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.6-4.1433`` | ``-R-3.6.0`` | ``foss/2019a`` ``0.6-9`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lcalc.md b/docs/version-specific/supported-software/l/lcalc.md index 1e3482cbb..22fd2ba2c 100644 --- a/docs/version-specific/supported-software/l/lcalc.md +++ b/docs/version-specific/supported-software/l/lcalc.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.5`` | ``GCCcore/11.3.0`` ``2.0.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/leafcutter.md b/docs/version-specific/supported-software/l/leafcutter.md index ffd9b6a7b..7b0fdd1d0 100644 --- a/docs/version-specific/supported-software/l/leafcutter.md +++ b/docs/version-specific/supported-software/l/leafcutter.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.9`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/leidenalg.md b/docs/version-specific/supported-software/l/leidenalg.md index 125411705..486ec14c0 100644 --- a/docs/version-specific/supported-software/l/leidenalg.md +++ b/docs/version-specific/supported-software/l/leidenalg.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``0.8.8`` | | ``foss/2021b`` ``0.9.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/less.md b/docs/version-specific/supported-software/l/less.md index cbf47dc08..488267abf 100644 --- a/docs/version-specific/supported-software/l/less.md +++ b/docs/version-specific/supported-software/l/less.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``458`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lftp.md b/docs/version-specific/supported-software/l/lftp.md index 7ee5d21d4..2f3350f3b 100644 --- a/docs/version-specific/supported-software/l/lftp.md +++ b/docs/version-specific/supported-software/l/lftp.md @@ -14,5 +14,6 @@ version | toolchain ``4.8.4`` | ``GCCcore/6.4.0`` ``4.9.2`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libBigWig.md b/docs/version-specific/supported-software/l/libBigWig.md index 0e8b25347..64ed428ad 100644 --- a/docs/version-specific/supported-software/l/libBigWig.md +++ b/docs/version-specific/supported-software/l/libBigWig.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.4`` | ``GCCcore/8.3.0`` ``0.4.6`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libFLAME.md b/docs/version-specific/supported-software/l/libFLAME.md index 020048323..0fb0f5d1e 100644 --- a/docs/version-specific/supported-software/l/libFLAME.md +++ b/docs/version-specific/supported-software/l/libFLAME.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``5.2.0`` | | ``GCCcore/10.3.0`` ``5.2.0`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libGDSII.md b/docs/version-specific/supported-software/l/libGDSII.md index 759df4939..7b5746be8 100644 --- a/docs/version-specific/supported-software/l/libGDSII.md +++ b/docs/version-specific/supported-software/l/libGDSII.md @@ -13,5 +13,6 @@ version | toolchain ``0.21`` | ``GCCcore/10.2.0`` ``0.21`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libGLU.md b/docs/version-specific/supported-software/l/libGLU.md index ccf5a1372..4baf0c863 100644 --- a/docs/version-specific/supported-software/l/libGLU.md +++ b/docs/version-specific/supported-software/l/libGLU.md @@ -41,5 +41,6 @@ version | versionsuffix | toolchain ``9.0.3`` | | ``GCCcore/12.3.0`` ``9.0.3`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libGridXC.md b/docs/version-specific/supported-software/l/libGridXC.md index 1a178d537..7319e83c4 100644 --- a/docs/version-specific/supported-software/l/libGridXC.md +++ b/docs/version-specific/supported-software/l/libGridXC.md @@ -19,5 +19,6 @@ version | toolchain ``0.9.6`` | ``iimpi/2021b`` ``1.1.0`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libICE.md b/docs/version-specific/supported-software/l/libICE.md index d07136c48..79e1b6330 100644 --- a/docs/version-specific/supported-software/l/libICE.md +++ b/docs/version-specific/supported-software/l/libICE.md @@ -14,5 +14,6 @@ version | toolchain ``1.0.9`` | ``gimkl/2.11.5`` ``1.0.9`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libMemcached.md b/docs/version-specific/supported-software/l/libMemcached.md index 524733174..6d76b4858 100644 --- a/docs/version-specific/supported-software/l/libMemcached.md +++ b/docs/version-specific/supported-software/l/libMemcached.md @@ -14,5 +14,6 @@ version | toolchain ``1.0.18`` | ``GCCcore/6.4.0`` ``1.0.18`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libPSML.md b/docs/version-specific/supported-software/l/libPSML.md index 15c617287..0c17db414 100644 --- a/docs/version-specific/supported-software/l/libPSML.md +++ b/docs/version-specific/supported-software/l/libPSML.md @@ -21,5 +21,6 @@ version | toolchain ``1.1.7`` | ``foss/2017a`` ``1.1.8`` | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libQGLViewer.md b/docs/version-specific/supported-software/l/libQGLViewer.md index 148b04893..e1daaa670 100644 --- a/docs/version-specific/supported-software/l/libQGLViewer.md +++ b/docs/version-specific/supported-software/l/libQGLViewer.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``2.7.1`` | | ``intel/2018a`` ``2.8.0`` | | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libRmath.md b/docs/version-specific/supported-software/l/libRmath.md index 853c42e1b..fa06fb893 100644 --- a/docs/version-specific/supported-software/l/libRmath.md +++ b/docs/version-specific/supported-software/l/libRmath.md @@ -17,5 +17,6 @@ version | toolchain ``4.2.0`` | ``GCCcore/10.3.0`` ``4.2.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libSBML.md b/docs/version-specific/supported-software/l/libSBML.md index eb33be1c6..2d885d17a 100644 --- a/docs/version-specific/supported-software/l/libSBML.md +++ b/docs/version-specific/supported-software/l/libSBML.md @@ -14,5 +14,6 @@ version | toolchain ``5.19.0`` | ``GCC/10.3.0`` ``5.19.7`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libSM.md b/docs/version-specific/supported-software/l/libSM.md index 6c14ff3ca..02cc4d165 100644 --- a/docs/version-specific/supported-software/l/libSM.md +++ b/docs/version-specific/supported-software/l/libSM.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.2`` | ``gimkl/2.11.5`` ``1.2.2`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libStatGen.md b/docs/version-specific/supported-software/l/libStatGen.md index 7906d7316..0e7443d14 100644 --- a/docs/version-specific/supported-software/l/libStatGen.md +++ b/docs/version-specific/supported-software/l/libStatGen.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.15`` | ``GCCcore/10.2.0`` ``20190330`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libWallModelledLES.md b/docs/version-specific/supported-software/l/libWallModelledLES.md index 0956f2475..0a5d7c894 100644 --- a/docs/version-specific/supported-software/l/libWallModelledLES.md +++ b/docs/version-specific/supported-software/l/libWallModelledLES.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libX11.md b/docs/version-specific/supported-software/l/libX11.md index 0cbc91d82..e0b3f4783 100644 --- a/docs/version-specific/supported-software/l/libX11.md +++ b/docs/version-specific/supported-software/l/libX11.md @@ -14,5 +14,6 @@ version | toolchain ``1.6.3`` | ``gimkl/2.11.5`` ``1.6.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXau.md b/docs/version-specific/supported-software/l/libXau.md index 405b8d1d2..5361a5af6 100644 --- a/docs/version-specific/supported-software/l/libXau.md +++ b/docs/version-specific/supported-software/l/libXau.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.8`` | ``gimkl/2.11.5`` ``1.0.8`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXcursor.md b/docs/version-specific/supported-software/l/libXcursor.md index 0a8a65e2a..e9fc4cc7c 100644 --- a/docs/version-specific/supported-software/l/libXcursor.md +++ b/docs/version-specific/supported-software/l/libXcursor.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.14`` | ``foss/2016a`` ``1.1.14`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXdamage.md b/docs/version-specific/supported-software/l/libXdamage.md index 08e536f1d..9dbed02a7 100644 --- a/docs/version-specific/supported-software/l/libXdamage.md +++ b/docs/version-specific/supported-software/l/libXdamage.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.4`` | ``gimkl/2.11.5`` ``1.1.4`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXdmcp.md b/docs/version-specific/supported-software/l/libXdmcp.md index e185627ee..bda47d2d8 100644 --- a/docs/version-specific/supported-software/l/libXdmcp.md +++ b/docs/version-specific/supported-software/l/libXdmcp.md @@ -15,5 +15,6 @@ version | toolchain ``1.1.2`` | ``gimkl/2.11.5`` ``1.1.2`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXext.md b/docs/version-specific/supported-software/l/libXext.md index 28f69b460..e5bae84ea 100644 --- a/docs/version-specific/supported-software/l/libXext.md +++ b/docs/version-specific/supported-software/l/libXext.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.3`` | ``gimkl/2.11.5`` ``1.3.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXfixes.md b/docs/version-specific/supported-software/l/libXfixes.md index b58741ebf..53d7407c8 100644 --- a/docs/version-specific/supported-software/l/libXfixes.md +++ b/docs/version-specific/supported-software/l/libXfixes.md @@ -15,5 +15,6 @@ version | toolchain ``5.0.1`` | ``intel/2016a`` ``5.0.2`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXfont.md b/docs/version-specific/supported-software/l/libXfont.md index f56ccb8b4..5d400dc16 100644 --- a/docs/version-specific/supported-software/l/libXfont.md +++ b/docs/version-specific/supported-software/l/libXfont.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.5.1`` | ``-freetype-2.6.3`` | ``intel/2016a`` ``1.5.1`` | | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXft.md b/docs/version-specific/supported-software/l/libXft.md index 05c9cd621..6791f12b5 100644 --- a/docs/version-specific/supported-software/l/libXft.md +++ b/docs/version-specific/supported-software/l/libXft.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3.2`` | ``-fontconfig-2.11.95`` | ``intel/2016a`` ``2.3.2`` | | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXi.md b/docs/version-specific/supported-software/l/libXi.md index 4b57b9272..e7bc8ffe5 100644 --- a/docs/version-specific/supported-software/l/libXi.md +++ b/docs/version-specific/supported-software/l/libXi.md @@ -13,5 +13,6 @@ version | toolchain ``1.7.6`` | ``foss/2016a`` ``1.7.6`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXinerama.md b/docs/version-specific/supported-software/l/libXinerama.md index 680b8cfd2..f88383fde 100644 --- a/docs/version-specific/supported-software/l/libXinerama.md +++ b/docs/version-specific/supported-software/l/libXinerama.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.3`` | ``foss/2016a`` ``1.1.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXmu.md b/docs/version-specific/supported-software/l/libXmu.md index da71e7686..f8dcbe087 100644 --- a/docs/version-specific/supported-software/l/libXmu.md +++ b/docs/version-specific/supported-software/l/libXmu.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.2`` | ``foss/2016a`` ``1.1.2`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXp.md b/docs/version-specific/supported-software/l/libXp.md index 4fac4576c..d053bdaf9 100644 --- a/docs/version-specific/supported-software/l/libXp.md +++ b/docs/version-specific/supported-software/l/libXp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXpm.md b/docs/version-specific/supported-software/l/libXpm.md index 688672eca..2a20b4f14 100644 --- a/docs/version-specific/supported-software/l/libXpm.md +++ b/docs/version-specific/supported-software/l/libXpm.md @@ -13,5 +13,6 @@ version | toolchain ``3.5.11`` | ``foss/2016a`` ``3.5.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXrandr.md b/docs/version-specific/supported-software/l/libXrandr.md index 6822ece35..28cb22344 100644 --- a/docs/version-specific/supported-software/l/libXrandr.md +++ b/docs/version-specific/supported-software/l/libXrandr.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.0`` | ``foss/2016a`` ``1.5.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXrender.md b/docs/version-specific/supported-software/l/libXrender.md index 1bc05bd6a..7ea9d2ea2 100644 --- a/docs/version-specific/supported-software/l/libXrender.md +++ b/docs/version-specific/supported-software/l/libXrender.md @@ -14,5 +14,6 @@ version | toolchain ``0.9.9`` | ``gimkl/2.11.5`` ``0.9.9`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXt.md b/docs/version-specific/supported-software/l/libXt.md index 90f6b9bd1..4acb0d9e1 100644 --- a/docs/version-specific/supported-software/l/libXt.md +++ b/docs/version-specific/supported-software/l/libXt.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.5`` | ``gimkl/2.11.5`` ``1.1.5`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libXxf86vm.md b/docs/version-specific/supported-software/l/libXxf86vm.md index 13179d3e4..2bc399a22 100644 --- a/docs/version-specific/supported-software/l/libXxf86vm.md +++ b/docs/version-specific/supported-software/l/libXxf86vm.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.4`` | ``foss/2016a`` ``1.1.4`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libabigail.md b/docs/version-specific/supported-software/l/libabigail.md index 6f448ee36..783ff71b2 100644 --- a/docs/version-specific/supported-software/l/libabigail.md +++ b/docs/version-specific/supported-software/l/libabigail.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libaec.md b/docs/version-specific/supported-software/l/libaec.md index 8cb3e1dd2..eb49ce1cc 100644 --- a/docs/version-specific/supported-software/l/libaec.md +++ b/docs/version-specific/supported-software/l/libaec.md @@ -18,5 +18,6 @@ version | toolchain ``1.0.6`` | ``GCCcore/12.3.0`` ``1.0.6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libaed2.md b/docs/version-specific/supported-software/l/libaed2.md index dd2b4b827..ffe0d949e 100644 --- a/docs/version-specific/supported-software/l/libaed2.md +++ b/docs/version-specific/supported-software/l/libaed2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libaio.md b/docs/version-specific/supported-software/l/libaio.md index 5766ae6a6..fafbcf2e5 100644 --- a/docs/version-specific/supported-software/l/libaio.md +++ b/docs/version-specific/supported-software/l/libaio.md @@ -20,5 +20,6 @@ version | toolchain ``0.3.113`` | ``GCCcore/12.3.0`` ``0.3.113`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libarchive.md b/docs/version-specific/supported-software/l/libarchive.md index c76bdfc50..bac586398 100644 --- a/docs/version-specific/supported-software/l/libarchive.md +++ b/docs/version-specific/supported-software/l/libarchive.md @@ -23,5 +23,6 @@ version | toolchain ``3.7.2`` | ``GCCcore/13.2.0`` ``3.7.4`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libav.md b/docs/version-specific/supported-software/l/libav.md index 01b7465b3..c1ebf6d77 100644 --- a/docs/version-specific/supported-software/l/libav.md +++ b/docs/version-specific/supported-software/l/libav.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``11.10`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libavif.md b/docs/version-specific/supported-software/l/libavif.md index 6065d4ab1..41a54987c 100644 --- a/docs/version-specific/supported-software/l/libavif.md +++ b/docs/version-specific/supported-software/l/libavif.md @@ -15,5 +15,6 @@ version | toolchain ``0.9.0`` | ``foss/2020b`` ``1.0.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libbaseencode.md b/docs/version-specific/supported-software/l/libbaseencode.md index 49e040afd..8f2cc2164 100644 --- a/docs/version-specific/supported-software/l/libbaseencode.md +++ b/docs/version-specific/supported-software/l/libbaseencode.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.11`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libbitmask.md b/docs/version-specific/supported-software/l/libbitmask.md index e1ba3da74..4ebee2dee 100644 --- a/docs/version-specific/supported-software/l/libbitmask.md +++ b/docs/version-specific/supported-software/l/libbitmask.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libbraiding.md b/docs/version-specific/supported-software/l/libbraiding.md index acae04908..63d471428 100644 --- a/docs/version-specific/supported-software/l/libbraiding.md +++ b/docs/version-specific/supported-software/l/libbraiding.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcdms.md b/docs/version-specific/supported-software/l/libcdms.md index b9101deb4..dff8b7c2c 100644 --- a/docs/version-specific/supported-software/l/libcdms.md +++ b/docs/version-specific/supported-software/l/libcdms.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcerf.md b/docs/version-specific/supported-software/l/libcerf.md index c4c53acdb..331430c2d 100644 --- a/docs/version-specific/supported-software/l/libcerf.md +++ b/docs/version-specific/supported-software/l/libcerf.md @@ -32,5 +32,6 @@ version | toolchain ``2.3`` | ``GCCcore/12.2.0`` ``2.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcint.md b/docs/version-specific/supported-software/l/libcint.md index b29b3029a..9b87af2e4 100644 --- a/docs/version-specific/supported-software/l/libcint.md +++ b/docs/version-specific/supported-software/l/libcint.md @@ -17,5 +17,6 @@ version | toolchain ``5.4.0`` | ``gfbf/2023a`` ``5.5.0`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcircle.md b/docs/version-specific/supported-software/l/libcircle.md index cebadffd8..1b72da498 100644 --- a/docs/version-specific/supported-software/l/libcircle.md +++ b/docs/version-specific/supported-software/l/libcircle.md @@ -18,5 +18,6 @@ version | toolchain ``0.3`` | ``gompi/2023a`` ``0.3`` | ``iimpi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcmaes.md b/docs/version-specific/supported-software/l/libcmaes.md index a88ca76ab..b607f9074 100644 --- a/docs/version-specific/supported-software/l/libcmaes.md +++ b/docs/version-specific/supported-software/l/libcmaes.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.5`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libconfig.md b/docs/version-specific/supported-software/l/libconfig.md index 1f6005221..d608000a4 100644 --- a/docs/version-specific/supported-software/l/libconfig.md +++ b/docs/version-specific/supported-software/l/libconfig.md @@ -16,5 +16,6 @@ version | toolchain ``1.7.3`` | ``GCCcore/10.3.0`` ``1.7.3`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcotp.md b/docs/version-specific/supported-software/l/libcotp.md index 24778cc50..e01fc02ec 100644 --- a/docs/version-specific/supported-software/l/libcotp.md +++ b/docs/version-specific/supported-software/l/libcotp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.3`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcpuset.md b/docs/version-specific/supported-software/l/libcpuset.md index 0690b88b9..f79e16b2e 100644 --- a/docs/version-specific/supported-software/l/libcpuset.md +++ b/docs/version-specific/supported-software/l/libcpuset.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libcroco.md b/docs/version-specific/supported-software/l/libcroco.md index a40c41661..8b636c0b2 100644 --- a/docs/version-specific/supported-software/l/libcroco.md +++ b/docs/version-specific/supported-software/l/libcroco.md @@ -14,5 +14,6 @@ version | toolchain ``0.6.13`` | ``GCC/10.2.0`` ``0.6.13`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libctl.md b/docs/version-specific/supported-software/l/libctl.md index dd2cd4ee3..78d07d45c 100644 --- a/docs/version-specific/supported-software/l/libctl.md +++ b/docs/version-specific/supported-software/l/libctl.md @@ -15,5 +15,6 @@ version | toolchain ``4.1.3`` | ``GCCcore/6.4.0`` ``4.5.1`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libdap.md b/docs/version-specific/supported-software/l/libdap.md index 6c5c1f96d..9b3c5a7ce 100644 --- a/docs/version-specific/supported-software/l/libdap.md +++ b/docs/version-specific/supported-software/l/libdap.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``3.20.7`` | | ``GCCcore/9.3.0`` ``3.20.8`` | | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libde265.md b/docs/version-specific/supported-software/l/libde265.md index 7a2d4a75f..d05238d3f 100644 --- a/docs/version-specific/supported-software/l/libde265.md +++ b/docs/version-specific/supported-software/l/libde265.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.8`` | ``GCC/10.3.0`` ``1.0.8`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libdeflate.md b/docs/version-specific/supported-software/l/libdeflate.md index 996e39c88..0f68bc2fc 100644 --- a/docs/version-specific/supported-software/l/libdeflate.md +++ b/docs/version-specific/supported-software/l/libdeflate.md @@ -22,5 +22,6 @@ version | toolchain ``1.8`` | ``GCCcore/10.3.0`` ``1.8`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libdivsufsort.md b/docs/version-specific/supported-software/l/libdivsufsort.md index 782b8a802..f58c197a9 100644 --- a/docs/version-specific/supported-software/l/libdivsufsort.md +++ b/docs/version-specific/supported-software/l/libdivsufsort.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libdrm.md b/docs/version-specific/supported-software/l/libdrm.md index 56be6e81a..b89180f62 100644 --- a/docs/version-specific/supported-software/l/libdrm.md +++ b/docs/version-specific/supported-software/l/libdrm.md @@ -34,5 +34,6 @@ version | toolchain ``2.4.97`` | ``GCCcore/8.2.0`` ``2.4.99`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libdrs.md b/docs/version-specific/supported-software/l/libdrs.md index a89f661bb..0b372d035 100644 --- a/docs/version-specific/supported-software/l/libdrs.md +++ b/docs/version-specific/supported-software/l/libdrs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libdwarf.md b/docs/version-specific/supported-software/l/libdwarf.md index beefaca95..a5e68e9d9 100644 --- a/docs/version-specific/supported-software/l/libdwarf.md +++ b/docs/version-specific/supported-software/l/libdwarf.md @@ -22,5 +22,6 @@ version | toolchain ``20210305`` | ``GCCcore/10.3.0`` ``20210528`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libedit.md b/docs/version-specific/supported-software/l/libedit.md index 4dd24487d..e1a14f48d 100644 --- a/docs/version-specific/supported-software/l/libedit.md +++ b/docs/version-specific/supported-software/l/libedit.md @@ -17,5 +17,6 @@ version | toolchain ``20210910`` | ``GCCcore/10.3.0`` ``20210910`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libelf.md b/docs/version-specific/supported-software/l/libelf.md index eb1638196..347a2fcfa 100644 --- a/docs/version-specific/supported-software/l/libelf.md +++ b/docs/version-specific/supported-software/l/libelf.md @@ -21,5 +21,6 @@ version | toolchain ``0.8.13`` | ``GCCcore/8.2.0`` ``0.8.13`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libemf.md b/docs/version-specific/supported-software/l/libemf.md index 4d9347671..f38b6f251 100644 --- a/docs/version-specific/supported-software/l/libemf.md +++ b/docs/version-specific/supported-software/l/libemf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.13`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libepoxy.md b/docs/version-specific/supported-software/l/libepoxy.md index 538b889d9..c0c484f6f 100644 --- a/docs/version-specific/supported-software/l/libepoxy.md +++ b/docs/version-specific/supported-software/l/libepoxy.md @@ -23,5 +23,6 @@ version | toolchain ``1.5.8`` | ``GCCcore/10.3.0`` ``1.5.8`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libev.md b/docs/version-specific/supported-software/l/libev.md index 5b3e40686..c989d034d 100644 --- a/docs/version-specific/supported-software/l/libev.md +++ b/docs/version-specific/supported-software/l/libev.md @@ -14,5 +14,6 @@ version | toolchain ``4.33`` | ``GCC/11.3.0`` ``4.33`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libevent.md b/docs/version-specific/supported-software/l/libevent.md index 8aaf4c58c..84a7dcf7c 100644 --- a/docs/version-specific/supported-software/l/libevent.md +++ b/docs/version-specific/supported-software/l/libevent.md @@ -34,5 +34,6 @@ version | toolchain ``2.1.8`` | ``GCCcore/8.3.0`` ``2.1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libexif.md b/docs/version-specific/supported-software/l/libexif.md index 22f0c0dc1..4b4cf87fa 100644 --- a/docs/version-specific/supported-software/l/libexif.md +++ b/docs/version-specific/supported-software/l/libexif.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.24`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libfabric.md b/docs/version-specific/supported-software/l/libfabric.md index 68641294d..c2b6ff7bc 100644 --- a/docs/version-specific/supported-software/l/libfabric.md +++ b/docs/version-specific/supported-software/l/libfabric.md @@ -24,5 +24,6 @@ version | toolchain ``1.21.0`` | ``GCCcore/13.3.0`` ``1.9.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libfdf.md b/docs/version-specific/supported-software/l/libfdf.md index 6766ce098..1dce06400 100644 --- a/docs/version-specific/supported-software/l/libfdf.md +++ b/docs/version-specific/supported-software/l/libfdf.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-serial`` | ``intel-compilers/2021.4.0`` ``0.5.0`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libffcall.md b/docs/version-specific/supported-software/l/libffcall.md index 89a129bdd..748c0337b 100644 --- a/docs/version-specific/supported-software/l/libffcall.md +++ b/docs/version-specific/supported-software/l/libffcall.md @@ -15,5 +15,6 @@ version | toolchain ``2.2`` | ``GCCcore/9.3.0`` ``2.4`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libffi.md b/docs/version-specific/supported-software/l/libffi.md index 183f6f94c..5ec095d72 100644 --- a/docs/version-specific/supported-software/l/libffi.md +++ b/docs/version-specific/supported-software/l/libffi.md @@ -38,5 +38,6 @@ version | toolchain ``3.4.4`` | ``GCCcore/13.2.0`` ``3.4.5`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libfontenc.md b/docs/version-specific/supported-software/l/libfontenc.md index df4388c2f..e83f9f827 100644 --- a/docs/version-specific/supported-software/l/libfontenc.md +++ b/docs/version-specific/supported-software/l/libfontenc.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.3`` | ``gimkl/2.11.5`` ``1.1.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libfyaml.md b/docs/version-specific/supported-software/l/libfyaml.md index 72ebda58b..2da5ec4c0 100644 --- a/docs/version-specific/supported-software/l/libfyaml.md +++ b/docs/version-specific/supported-software/l/libfyaml.md @@ -13,5 +13,6 @@ version | toolchain ``0.9`` | ``GCCcore/12.2.0`` ``0.9`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgcrypt.md b/docs/version-specific/supported-software/l/libgcrypt.md index b13ba38b0..b9ee06d8f 100644 --- a/docs/version-specific/supported-software/l/libgcrypt.md +++ b/docs/version-specific/supported-software/l/libgcrypt.md @@ -20,5 +20,6 @@ version | toolchain ``1.9.2`` | ``GCCcore/10.3.0`` ``1.9.3`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgd.md b/docs/version-specific/supported-software/l/libgd.md index 9644190b9..0d4fe9b7f 100644 --- a/docs/version-specific/supported-software/l/libgd.md +++ b/docs/version-specific/supported-software/l/libgd.md @@ -32,5 +32,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/12.3.0`` ``2.3.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgdiplus.md b/docs/version-specific/supported-software/l/libgdiplus.md index 50fbb6bc6..8d1c65276 100644 --- a/docs/version-specific/supported-software/l/libgdiplus.md +++ b/docs/version-specific/supported-software/l/libgdiplus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.1`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgeotiff.md b/docs/version-specific/supported-software/l/libgeotiff.md index f4a9e757b..98308b283 100644 --- a/docs/version-specific/supported-software/l/libgeotiff.md +++ b/docs/version-specific/supported-software/l/libgeotiff.md @@ -23,5 +23,6 @@ version | toolchain ``1.7.1`` | ``GCCcore/12.2.0`` ``1.7.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgit2.md b/docs/version-specific/supported-software/l/libgit2.md index 3e93f408d..ce026d71e 100644 --- a/docs/version-specific/supported-software/l/libgit2.md +++ b/docs/version-specific/supported-software/l/libgit2.md @@ -20,5 +20,6 @@ version | toolchain ``1.7.1`` | ``GCCcore/12.3.0`` ``1.7.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libglade.md b/docs/version-specific/supported-software/l/libglade.md index f1457d6a7..30eb22c56 100644 --- a/docs/version-specific/supported-software/l/libglade.md +++ b/docs/version-specific/supported-software/l/libglade.md @@ -15,5 +15,6 @@ version | toolchain ``2.6.4`` | ``intel/2017b`` ``2.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libglvnd.md b/docs/version-specific/supported-software/l/libglvnd.md index 2edc50e15..71e6b32d6 100644 --- a/docs/version-specific/supported-software/l/libglvnd.md +++ b/docs/version-specific/supported-software/l/libglvnd.md @@ -21,5 +21,6 @@ version | toolchain ``1.6.0`` | ``GCCcore/12.3.0`` ``1.7.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4a540b78c..6b5e5d898 100644 --- a/docs/version-specific/supported-software/l/libgpg-error.md +++ b/docs/version-specific/supported-software/l/libgpg-error.md @@ -20,5 +20,6 @@ version | toolchain ``1.46`` | ``GCCcore/11.3.0`` ``1.48`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgpuarray.md b/docs/version-specific/supported-software/l/libgpuarray.md index 4c9aa2393..0557ee1cf 100644 --- a/docs/version-specific/supported-software/l/libgpuarray.md +++ b/docs/version-specific/supported-software/l/libgpuarray.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``0.7.6`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` ``0.7.6`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgtextutils.md b/docs/version-specific/supported-software/l/libgtextutils.md index 53e26d114..27f4023e8 100644 --- a/docs/version-specific/supported-software/l/libgtextutils.md +++ b/docs/version-specific/supported-software/l/libgtextutils.md @@ -15,5 +15,6 @@ version | toolchain ``0.7`` | ``foss/2016b`` ``0.7`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libgxps.md b/docs/version-specific/supported-software/l/libgxps.md index 7b36754f9..c46840682 100644 --- a/docs/version-specific/supported-software/l/libgxps.md +++ b/docs/version-specific/supported-software/l/libgxps.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libhandy.md b/docs/version-specific/supported-software/l/libhandy.md index 3801ceab2..cf5e3c9ec 100644 --- a/docs/version-specific/supported-software/l/libhandy.md +++ b/docs/version-specific/supported-software/l/libhandy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libharu.md b/docs/version-specific/supported-software/l/libharu.md index 78aa9b692..1757a2635 100644 --- a/docs/version-specific/supported-software/l/libharu.md +++ b/docs/version-specific/supported-software/l/libharu.md @@ -24,5 +24,6 @@ version | toolchain ``2.3.0`` | ``intel/2017a`` ``2.3.0`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libheif.md b/docs/version-specific/supported-software/l/libheif.md index 44db5b600..e605d417e 100644 --- a/docs/version-specific/supported-software/l/libheif.md +++ b/docs/version-specific/supported-software/l/libheif.md @@ -15,5 +15,6 @@ version | toolchain ``1.16.2`` | ``GCC/11.3.0`` ``1.17.6`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libhomfly.md b/docs/version-specific/supported-software/l/libhomfly.md index 103d496f2..b7f193391 100644 --- a/docs/version-specific/supported-software/l/libhomfly.md +++ b/docs/version-specific/supported-software/l/libhomfly.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.02r6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libibmad.md b/docs/version-specific/supported-software/l/libibmad.md index ce19e68dd..16676a5a3 100644 --- a/docs/version-specific/supported-software/l/libibmad.md +++ b/docs/version-specific/supported-software/l/libibmad.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.12`` | ``GCC/4.9.3-2.25`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libibumad.md b/docs/version-specific/supported-software/l/libibumad.md index 2cbe80f59..4966e78a8 100644 --- a/docs/version-specific/supported-software/l/libibumad.md +++ b/docs/version-specific/supported-software/l/libibumad.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.10.2`` | ``GCC/4.9.3-2.25`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libiconv.md b/docs/version-specific/supported-software/l/libiconv.md index ea573fa54..2f6053313 100644 --- a/docs/version-specific/supported-software/l/libiconv.md +++ b/docs/version-specific/supported-software/l/libiconv.md @@ -26,5 +26,6 @@ version | toolchain ``1.17`` | ``GCCcore/13.2.0`` ``1.17`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libidn.md b/docs/version-specific/supported-software/l/libidn.md index 47ff14d50..f2fb7f196 100644 --- a/docs/version-specific/supported-software/l/libidn.md +++ b/docs/version-specific/supported-software/l/libidn.md @@ -24,5 +24,6 @@ version | toolchain ``1.38`` | ``GCCcore/11.2.0`` ``1.41`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libidn2.md b/docs/version-specific/supported-software/l/libidn2.md index a4e898429..79b15af8d 100644 --- a/docs/version-specific/supported-software/l/libidn2.md +++ b/docs/version-specific/supported-software/l/libidn2.md @@ -22,5 +22,6 @@ version | toolchain ``2.3.2`` | ``GCCcore/13.2.0`` ``2.3.7`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5d11db524..f94c07f15 100644 --- a/docs/version-specific/supported-software/l/libjpeg-turbo.md +++ b/docs/version-specific/supported-software/l/libjpeg-turbo.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``3.0.1`` | | ``GCCcore/13.2.0`` ``3.0.1`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libjxl.md b/docs/version-specific/supported-software/l/libjxl.md index 911e141fc..169488012 100644 --- a/docs/version-specific/supported-software/l/libjxl.md +++ b/docs/version-specific/supported-software/l/libjxl.md @@ -16,5 +16,6 @@ version | toolchain ``0.8.2`` | ``GCCcore/12.3.0`` ``0.8.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libleidenalg.md b/docs/version-specific/supported-software/l/libleidenalg.md index df5ca0059..2a852c8c7 100644 --- a/docs/version-specific/supported-software/l/libleidenalg.md +++ b/docs/version-specific/supported-software/l/libleidenalg.md @@ -13,5 +13,6 @@ version | toolchain ``0.11.1`` | ``foss/2022b`` ``0.11.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libmad.md b/docs/version-specific/supported-software/l/libmad.md index 8d18b77a5..56635920d 100644 --- a/docs/version-specific/supported-software/l/libmad.md +++ b/docs/version-specific/supported-software/l/libmad.md @@ -13,5 +13,6 @@ version | toolchain ``0.15.1b`` | ``GCCcore/11.3.0`` ``0.15.1b`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libmatheval.md b/docs/version-specific/supported-software/l/libmatheval.md index 166bfc35a..f47fa8fe6 100644 --- a/docs/version-specific/supported-software/l/libmatheval.md +++ b/docs/version-specific/supported-software/l/libmatheval.md @@ -20,5 +20,6 @@ version | toolchain ``1.1.11`` | ``intel/2016a`` ``1.1.11`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libmaus2.md b/docs/version-specific/supported-software/l/libmaus2.md index f7a633dd2..ef3495fa6 100644 --- a/docs/version-specific/supported-software/l/libmaus2.md +++ b/docs/version-specific/supported-software/l/libmaus2.md @@ -14,5 +14,6 @@ version | toolchain ``2.0.499`` | ``GCC/11.3.0`` ``2.0.813`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libmbd.md b/docs/version-specific/supported-software/l/libmbd.md index e06cef998..8d403dc09 100644 --- a/docs/version-specific/supported-software/l/libmbd.md +++ b/docs/version-specific/supported-software/l/libmbd.md @@ -15,5 +15,6 @@ version | toolchain ``0.10.4`` | ``intel/2020b`` ``0.10.4`` | ``intel/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libmicrohttpd.md b/docs/version-specific/supported-software/l/libmicrohttpd.md index 4e396c212..35ab23d2d 100644 --- a/docs/version-specific/supported-software/l/libmicrohttpd.md +++ b/docs/version-specific/supported-software/l/libmicrohttpd.md @@ -15,5 +15,6 @@ version | toolchain ``0.9.73`` | ``GCCcore/8.2.0`` ``0.9.73`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 624478a1b..473ca0da1 100644 --- a/docs/version-specific/supported-software/l/libmo_unpack.md +++ b/docs/version-specific/supported-software/l/libmo_unpack.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1.2`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libmypaint.md b/docs/version-specific/supported-software/l/libmypaint.md index 4b544ba1b..239335cfa 100644 --- a/docs/version-specific/supported-software/l/libmypaint.md +++ b/docs/version-specific/supported-software/l/libmypaint.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.1`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libnsl.md b/docs/version-specific/supported-software/l/libnsl.md index 6048e294d..c2453b8d6 100644 --- a/docs/version-specific/supported-software/l/libnsl.md +++ b/docs/version-specific/supported-software/l/libnsl.md @@ -15,5 +15,6 @@ version | toolchain ``2.0.0`` | ``GCCcore/12.2.0`` ``2.0.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libobjcryst.md b/docs/version-specific/supported-software/l/libobjcryst.md index 2c963f19b..c0e469da2 100644 --- a/docs/version-specific/supported-software/l/libobjcryst.md +++ b/docs/version-specific/supported-software/l/libobjcryst.md @@ -13,5 +13,6 @@ version | toolchain ``2017.2.3`` | ``intel/2020a`` ``2021.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libogg.md b/docs/version-specific/supported-software/l/libogg.md index 35fbddc2d..2e60f0647 100644 --- a/docs/version-specific/supported-software/l/libogg.md +++ b/docs/version-specific/supported-software/l/libogg.md @@ -17,5 +17,6 @@ version | toolchain ``1.3.5`` | ``GCCcore/12.2.0`` ``1.3.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libopus.md b/docs/version-specific/supported-software/l/libopus.md index cb46dcbea..e10550701 100644 --- a/docs/version-specific/supported-software/l/libopus.md +++ b/docs/version-specific/supported-software/l/libopus.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/12.2.0`` ``1.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libosmium.md b/docs/version-specific/supported-software/l/libosmium.md index 9805c8716..9a2113536 100644 --- a/docs/version-specific/supported-software/l/libosmium.md +++ b/docs/version-specific/supported-software/l/libosmium.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.15.4`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.15.6`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libpci.md b/docs/version-specific/supported-software/l/libpci.md index 9707610fd..7a74260aa 100644 --- a/docs/version-specific/supported-software/l/libpci.md +++ b/docs/version-specific/supported-software/l/libpci.md @@ -15,5 +15,6 @@ version | toolchain ``3.7.0`` | ``GCCcore/11.2.0`` ``3.7.0`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libpciaccess.md b/docs/version-specific/supported-software/l/libpciaccess.md index 65312ed1f..0caf456af 100644 --- a/docs/version-specific/supported-software/l/libpciaccess.md +++ b/docs/version-specific/supported-software/l/libpciaccess.md @@ -31,5 +31,6 @@ version | toolchain ``0.17`` | ``GCCcore/13.2.0`` ``0.18.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libplinkio.md b/docs/version-specific/supported-software/l/libplinkio.md index 56f1c2a9f..c880a4810 100644 --- a/docs/version-specific/supported-software/l/libplinkio.md +++ b/docs/version-specific/supported-software/l/libplinkio.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.8`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libpng.md b/docs/version-specific/supported-software/l/libpng.md index 6622124ff..66495d0d3 100644 --- a/docs/version-specific/supported-software/l/libpng.md +++ b/docs/version-specific/supported-software/l/libpng.md @@ -45,5 +45,6 @@ version | toolchain ``1.6.40`` | ``GCCcore/13.2.0`` ``1.6.43`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libpsl.md b/docs/version-specific/supported-software/l/libpsl.md index e151fb026..39fc4705e 100644 --- a/docs/version-specific/supported-software/l/libpsl.md +++ b/docs/version-specific/supported-software/l/libpsl.md @@ -18,5 +18,6 @@ version | toolchain ``0.21.1`` | ``GCCcore/11.2.0`` ``0.21.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libpsortb.md b/docs/version-specific/supported-software/l/libpsortb.md index a1433810d..3e9a8b4c8 100644 --- a/docs/version-specific/supported-software/l/libpsortb.md +++ b/docs/version-specific/supported-software/l/libpsortb.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libpspio.md b/docs/version-specific/supported-software/l/libpspio.md index 5852cdc79..631fb6031 100644 --- a/docs/version-specific/supported-software/l/libpspio.md +++ b/docs/version-specific/supported-software/l/libpspio.md @@ -17,5 +17,6 @@ version | toolchain ``0.2.4`` | ``intel-compilers/2021.2.0`` ``0.2.4`` | ``intel-compilers/2021.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8a1f4b784..11a967136 100644 --- a/docs/version-specific/supported-software/l/libpthread-stubs.md +++ b/docs/version-specific/supported-software/l/libpthread-stubs.md @@ -18,5 +18,6 @@ version | toolchain ``0.3`` | ``intel/2016b`` ``0.4`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libreadline.md b/docs/version-specific/supported-software/l/libreadline.md index d390447e6..ebf8debb6 100644 --- a/docs/version-specific/supported-software/l/libreadline.md +++ b/docs/version-specific/supported-software/l/libreadline.md @@ -51,5 +51,6 @@ version | toolchain ``8.2`` | ``GCCcore/13.2.0`` ``8.2`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/librosa.md b/docs/version-specific/supported-software/l/librosa.md index 62da18d59..4e8ccb80b 100644 --- a/docs/version-specific/supported-software/l/librosa.md +++ b/docs/version-specific/supported-software/l/librosa.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.7.2`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.7.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/librsb.md b/docs/version-specific/supported-software/l/librsb.md index 9b13007fb..c8c430551 100644 --- a/docs/version-specific/supported-software/l/librsb.md +++ b/docs/version-specific/supported-software/l/librsb.md @@ -16,5 +16,6 @@ version | toolchain ``1.3.0.0`` | ``GCC/10.2.0`` ``1.3.0.1`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/librsvg.md b/docs/version-specific/supported-software/l/librsvg.md index 4d364ca63..55f50b208 100644 --- a/docs/version-specific/supported-software/l/librsvg.md +++ b/docs/version-specific/supported-software/l/librsvg.md @@ -17,5 +17,6 @@ version | toolchain ``2.55.1`` | ``GCCcore/11.3.0`` ``2.58.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/librttopo.md b/docs/version-specific/supported-software/l/librttopo.md index 1fad9aa10..953110015 100644 --- a/docs/version-specific/supported-software/l/librttopo.md +++ b/docs/version-specific/supported-software/l/librttopo.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libsamplerate.md b/docs/version-specific/supported-software/l/libsamplerate.md index b5c9060ba..252f74dd2 100644 --- a/docs/version-specific/supported-software/l/libsamplerate.md +++ b/docs/version-specific/supported-software/l/libsamplerate.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.9`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libsigc++.md b/docs/version-specific/supported-software/l/libsigc++.md index d59c25909..82dcfa3a0 100644 --- a/docs/version-specific/supported-software/l/libsigc++.md +++ b/docs/version-specific/supported-software/l/libsigc++.md @@ -18,5 +18,6 @@ version | toolchain ``2.12.1`` | ``GCCcore/11.3.0`` ``3.4.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libsigsegv.md b/docs/version-specific/supported-software/l/libsigsegv.md index 5e55d29d0..0857cc78c 100644 --- a/docs/version-specific/supported-software/l/libsigsegv.md +++ b/docs/version-specific/supported-software/l/libsigsegv.md @@ -15,5 +15,6 @@ version | toolchain ``2.13`` | ``GCCcore/10.2.0`` ``2.14`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libsndfile.md b/docs/version-specific/supported-software/l/libsndfile.md index 74cb23f5d..42ce75e6b 100644 --- a/docs/version-specific/supported-software/l/libsndfile.md +++ b/docs/version-specific/supported-software/l/libsndfile.md @@ -23,5 +23,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/12.2.0`` ``1.2.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libsodium.md b/docs/version-specific/supported-software/l/libsodium.md index ee425b5b4..6bee71eb9 100644 --- a/docs/version-specific/supported-software/l/libsodium.md +++ b/docs/version-specific/supported-software/l/libsodium.md @@ -31,5 +31,6 @@ version | toolchain ``1.0.6`` | ``intel/2016a`` ``1.0.8`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libspatialindex.md b/docs/version-specific/supported-software/l/libspatialindex.md index 8e08f3372..17b50633c 100644 --- a/docs/version-specific/supported-software/l/libspatialindex.md +++ b/docs/version-specific/supported-software/l/libspatialindex.md @@ -21,5 +21,6 @@ version | toolchain ``1.9.3`` | ``GCCcore/12.3.0`` ``1.9.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libspatialite.md b/docs/version-specific/supported-software/l/libspatialite.md index 6c4ea15d1..485d87c22 100644 --- a/docs/version-specific/supported-software/l/libspatialite.md +++ b/docs/version-specific/supported-software/l/libspatialite.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``4.3.0a`` | | ``intel/2016b`` ``5.0.1`` | | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libspectre.md b/docs/version-specific/supported-software/l/libspectre.md index 37381235b..f95606c83 100644 --- a/docs/version-specific/supported-software/l/libspectre.md +++ b/docs/version-specific/supported-software/l/libspectre.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.12`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libssh.md b/docs/version-specific/supported-software/l/libssh.md index 6e5af4886..99c90c569 100644 --- a/docs/version-specific/supported-software/l/libssh.md +++ b/docs/version-specific/supported-software/l/libssh.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.0`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libsupermesh.md b/docs/version-specific/supported-software/l/libsupermesh.md index 916d0ef17..639981aa0 100644 --- a/docs/version-specific/supported-software/l/libsupermesh.md +++ b/docs/version-specific/supported-software/l/libsupermesh.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2025-01-25`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libtar.md b/docs/version-specific/supported-software/l/libtar.md index ec77dfa89..56d1c14be 100644 --- a/docs/version-specific/supported-software/l/libtar.md +++ b/docs/version-specific/supported-software/l/libtar.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.20`` | ``GCCcore/7.3.0`` ``1.2.20`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libtasn1.md b/docs/version-specific/supported-software/l/libtasn1.md index 91d8c1429..0fefb7542 100644 --- a/docs/version-specific/supported-software/l/libtasn1.md +++ b/docs/version-specific/supported-software/l/libtasn1.md @@ -23,5 +23,6 @@ version | toolchain ``4.7`` | ``foss/2016a`` ``4.7`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libtecla.md b/docs/version-specific/supported-software/l/libtecla.md index bf130abde..70dfeeba2 100644 --- a/docs/version-specific/supported-software/l/libtecla.md +++ b/docs/version-specific/supported-software/l/libtecla.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6.3`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libtirpc.md b/docs/version-specific/supported-software/l/libtirpc.md index 159265630..b489b1d29 100644 --- a/docs/version-specific/supported-software/l/libtirpc.md +++ b/docs/version-specific/supported-software/l/libtirpc.md @@ -22,5 +22,6 @@ version | toolchain ``1.3.3`` | ``GCCcore/12.3.0`` ``1.3.4`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libtool.md b/docs/version-specific/supported-software/l/libtool.md index 6b15e436a..3bfe92160 100644 --- a/docs/version-specific/supported-software/l/libtool.md +++ b/docs/version-specific/supported-software/l/libtool.md @@ -59,5 +59,6 @@ version | toolchain ``2.4.7`` | ``GCCcore/13.3.0`` ``2.4.7`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libtree.md b/docs/version-specific/supported-software/l/libtree.md index b91f2933d..56c8b0619 100644 --- a/docs/version-specific/supported-software/l/libtree.md +++ b/docs/version-specific/supported-software/l/libtree.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.0`` | ``GCCcore/10.3.0`` ``3.0.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libunistring.md b/docs/version-specific/supported-software/l/libunistring.md index 9832d1bd2..77eabe002 100644 --- a/docs/version-specific/supported-software/l/libunistring.md +++ b/docs/version-specific/supported-software/l/libunistring.md @@ -29,5 +29,6 @@ version | toolchain ``1.1`` | ``GCCcore/10.2.0`` ``1.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libunwind.md b/docs/version-specific/supported-software/l/libunwind.md index 4688c2de4..f336a94cb 100644 --- a/docs/version-specific/supported-software/l/libunwind.md +++ b/docs/version-specific/supported-software/l/libunwind.md @@ -29,5 +29,6 @@ version | toolchain ``1.6.2`` | ``GCCcore/12.3.0`` ``1.6.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libutempter.md b/docs/version-specific/supported-software/l/libutempter.md index 7468985a9..4a042819a 100644 --- a/docs/version-specific/supported-software/l/libutempter.md +++ b/docs/version-specific/supported-software/l/libutempter.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.6.2`` | ``GCC/6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libuv.md b/docs/version-specific/supported-software/l/libuv.md index 49910f271..9ff70e870 100644 --- a/docs/version-specific/supported-software/l/libuv.md +++ b/docs/version-specific/supported-software/l/libuv.md @@ -13,5 +13,6 @@ version | toolchain ``1.37.0`` | ``GCCcore/8.3.0`` ``1.48.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libvdwxc.md b/docs/version-specific/supported-software/l/libvdwxc.md index 6a7b89765..c1f97d33c 100644 --- a/docs/version-specific/supported-software/l/libvdwxc.md +++ b/docs/version-specific/supported-software/l/libvdwxc.md @@ -23,5 +23,6 @@ version | toolchain ``0.4.0`` | ``intel/2021a`` ``0.4.0`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libvorbis.md b/docs/version-specific/supported-software/l/libvorbis.md index 27b022804..ae44c1388 100644 --- a/docs/version-specific/supported-software/l/libvorbis.md +++ b/docs/version-specific/supported-software/l/libvorbis.md @@ -17,5 +17,6 @@ version | toolchain ``1.3.7`` | ``GCCcore/12.2.0`` ``1.3.7`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libvori.md b/docs/version-specific/supported-software/l/libvori.md index 1092058ed..77cca0a6e 100644 --- a/docs/version-specific/supported-software/l/libvori.md +++ b/docs/version-specific/supported-software/l/libvori.md @@ -14,5 +14,6 @@ version | toolchain ``220621`` | ``GCCcore/12.2.0`` ``220621`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libwebp.md b/docs/version-specific/supported-software/l/libwebp.md index 61da1c73c..8269a1d10 100644 --- a/docs/version-specific/supported-software/l/libwebp.md +++ b/docs/version-specific/supported-software/l/libwebp.md @@ -23,5 +23,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/12.3.0`` ``1.3.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libwpe.md b/docs/version-specific/supported-software/l/libwpe.md index 1e10f6444..1b717e1a2 100644 --- a/docs/version-specific/supported-software/l/libwpe.md +++ b/docs/version-specific/supported-software/l/libwpe.md @@ -13,5 +13,6 @@ version | toolchain ``1.13.3`` | ``GCCcore/11.2.0`` ``1.14.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxc.md b/docs/version-specific/supported-software/l/libxc.md index 49d677a47..d9987792d 100644 --- a/docs/version-specific/supported-software/l/libxc.md +++ b/docs/version-specific/supported-software/l/libxc.md @@ -72,5 +72,6 @@ version | toolchain ``6.2.2`` | ``intel-compilers/2023.1.0`` ``6.2.2`` | ``intel-compilers/2023.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxcb.md b/docs/version-specific/supported-software/l/libxcb.md index 5769c47f5..7f891e22d 100644 --- a/docs/version-specific/supported-software/l/libxcb.md +++ b/docs/version-specific/supported-software/l/libxcb.md @@ -15,5 +15,6 @@ version | toolchain ``1.11.1`` | ``intel/2016a`` ``1.13`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxkbcommon.md b/docs/version-specific/supported-software/l/libxkbcommon.md index ccd311779..aafbed84a 100644 --- a/docs/version-specific/supported-software/l/libxkbcommon.md +++ b/docs/version-specific/supported-software/l/libxkbcommon.md @@ -13,5 +13,6 @@ version | toolchain ``0.6.1`` | ``foss/2016a`` ``0.6.1`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxml++.md b/docs/version-specific/supported-software/l/libxml++.md index 348d95568..4a0016bac 100644 --- a/docs/version-specific/supported-software/l/libxml++.md +++ b/docs/version-specific/supported-software/l/libxml++.md @@ -15,5 +15,6 @@ version | toolchain ``2.40.1`` | ``GCCcore/8.3.0`` ``2.42.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1a1535b16..0ff461309 100644 --- a/docs/version-specific/supported-software/l/libxml2-python.md +++ b/docs/version-specific/supported-software/l/libxml2-python.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.9.8`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``2.9.8`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxml2.md b/docs/version-specific/supported-software/l/libxml2.md index 979524aeb..f0f00a9dc 100644 --- a/docs/version-specific/supported-software/l/libxml2.md +++ b/docs/version-specific/supported-software/l/libxml2.md @@ -53,5 +53,6 @@ version | versionsuffix | toolchain ``2.9.8`` | | ``GCCcore/8.2.0`` ``2.9.9`` | | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxslt.md b/docs/version-specific/supported-software/l/libxslt.md index bc95320bc..db4bf1d29 100644 --- a/docs/version-specific/supported-software/l/libxslt.md +++ b/docs/version-specific/supported-software/l/libxslt.md @@ -31,5 +31,6 @@ version | versionsuffix | toolchain ``1.1.38`` | | ``GCCcore/12.3.0`` ``1.1.38`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libxsmm.md b/docs/version-specific/supported-software/l/libxsmm.md index 9db5b0d09..2245fde79 100644 --- a/docs/version-specific/supported-software/l/libxsmm.md +++ b/docs/version-specific/supported-software/l/libxsmm.md @@ -33,5 +33,6 @@ version | toolchain ``1.8.3`` | ``foss/2018a`` ``1.8.3`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libyaml.md b/docs/version-specific/supported-software/l/libyaml.md index 11a09fb75..998b21dbd 100644 --- a/docs/version-specific/supported-software/l/libyaml.md +++ b/docs/version-specific/supported-software/l/libyaml.md @@ -32,5 +32,6 @@ version | toolchain ``0.2.5`` | ``GCCcore/13.2.0`` ``0.2.5`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libzeep.md b/docs/version-specific/supported-software/l/libzeep.md index 382fef52b..b9b92d495 100644 --- a/docs/version-specific/supported-software/l/libzeep.md +++ b/docs/version-specific/supported-software/l/libzeep.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.1`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/libzip.md b/docs/version-specific/supported-software/l/libzip.md index 5003f903a..f42684826 100644 --- a/docs/version-specific/supported-software/l/libzip.md +++ b/docs/version-specific/supported-software/l/libzip.md @@ -16,5 +16,6 @@ version | toolchain ``1.7.3`` | ``GCCcore/11.2.0`` ``1.9.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 73b5e693b..9b55bef76 100644 --- a/docs/version-specific/supported-software/l/lie_learn.md +++ b/docs/version-specific/supported-software/l/lie_learn.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1.post1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lifelines.md b/docs/version-specific/supported-software/l/lifelines.md index 60c4c2a56..e2e636d40 100644 --- a/docs/version-specific/supported-software/l/lifelines.md +++ b/docs/version-specific/supported-software/l/lifelines.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.26.3`` | | ``fosscuda/2020b`` ``0.27.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/liknorm.md b/docs/version-specific/supported-software/l/liknorm.md index ec6617cf3..2da3cc162 100644 --- a/docs/version-specific/supported-software/l/liknorm.md +++ b/docs/version-specific/supported-software/l/liknorm.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.2`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/likwid.md b/docs/version-specific/supported-software/l/likwid.md index 263198d13..bb641bc62 100644 --- a/docs/version-specific/supported-software/l/likwid.md +++ b/docs/version-specific/supported-software/l/likwid.md @@ -31,5 +31,6 @@ version | toolchain ``5.3.0`` | ``GCC/12.3.0`` ``5.3.0`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 103c4f566..bab3d148d 100644 --- a/docs/version-specific/supported-software/l/lil-aretomo.md +++ b/docs/version-specific/supported-software/l/lil-aretomo.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/limix.md b/docs/version-specific/supported-software/l/limix.md index 8205fdf09..1cbfad7b1 100644 --- a/docs/version-specific/supported-software/l/limix.md +++ b/docs/version-specific/supported-software/l/limix.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.4`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 621f1eb31..062abcef4 100644 --- a/docs/version-specific/supported-software/l/line_profiler.md +++ b/docs/version-specific/supported-software/l/line_profiler.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``GCCcore/12.2.0`` ``4.1.2`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lit.md b/docs/version-specific/supported-software/l/lit.md index c00b120a9..6fb87c94c 100644 --- a/docs/version-specific/supported-software/l/lit.md +++ b/docs/version-specific/supported-software/l/lit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``18.1.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lmoments3.md b/docs/version-specific/supported-software/l/lmoments3.md index 393fdd335..d1057e980 100644 --- a/docs/version-specific/supported-software/l/lmoments3.md +++ b/docs/version-specific/supported-software/l/lmoments3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.6`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/logaddexp.md b/docs/version-specific/supported-software/l/logaddexp.md index a3ef43017..c09bbba9e 100644 --- a/docs/version-specific/supported-software/l/logaddexp.md +++ b/docs/version-specific/supported-software/l/logaddexp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/longestrunsubsequence.md b/docs/version-specific/supported-software/l/longestrunsubsequence.md index 399857a59..e5569a7ac 100644 --- a/docs/version-specific/supported-software/l/longestrunsubsequence.md +++ b/docs/version-specific/supported-software/l/longestrunsubsequence.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.1`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a2aa918d0..840cb4ea4 100644 --- a/docs/version-specific/supported-software/l/longread_umi.md +++ b/docs/version-specific/supported-software/l/longread_umi.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/loomR.md b/docs/version-specific/supported-software/l/loomR.md index ab5cc7ebc..061fe0f44 100644 --- a/docs/version-specific/supported-software/l/loomR.md +++ b/docs/version-specific/supported-software/l/loomR.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.2.0-20180425`` | ``-R-4.2.2`` | ``foss/2022b`` ``0.2.0-20180425`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/loompy.md b/docs/version-specific/supported-software/l/loompy.md index 93e9e7c1b..454c97804 100644 --- a/docs/version-specific/supported-software/l/loompy.md +++ b/docs/version-specific/supported-software/l/loompy.md @@ -17,5 +17,6 @@ version | toolchain ``3.0.7`` | ``foss/2023a`` ``3.0.7`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lpsolve.md b/docs/version-specific/supported-software/l/lpsolve.md index a49d541c0..86394cda0 100644 --- a/docs/version-specific/supported-software/l/lpsolve.md +++ b/docs/version-specific/supported-software/l/lpsolve.md @@ -25,5 +25,6 @@ version | toolchain ``5.5.2.5`` | ``intel/2017a`` ``5.5.2.5`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lrslib.md b/docs/version-specific/supported-software/l/lrslib.md index e2fd07d65..7240f5d73 100644 --- a/docs/version-specific/supported-software/l/lrslib.md +++ b/docs/version-specific/supported-software/l/lrslib.md @@ -15,5 +15,6 @@ version | toolchain ``7.2`` | ``gompi/2022a`` ``7.2`` | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lwgrp.md b/docs/version-specific/supported-software/l/lwgrp.md index db47c849b..86ad2b331 100644 --- a/docs/version-specific/supported-software/l/lwgrp.md +++ b/docs/version-specific/supported-software/l/lwgrp.md @@ -18,5 +18,6 @@ version | toolchain ``1.0.5`` | ``gompi/2022a`` ``1.0.5`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lxml.md b/docs/version-specific/supported-software/l/lxml.md index fd17ae583..9eb99bb30 100644 --- a/docs/version-specific/supported-software/l/lxml.md +++ b/docs/version-specific/supported-software/l/lxml.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``4.9.2`` | | ``GCCcore/12.3.0`` ``4.9.3`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lynx.md b/docs/version-specific/supported-software/l/lynx.md index 0d475cea0..d57ec15a2 100644 --- a/docs/version-specific/supported-software/l/lynx.md +++ b/docs/version-specific/supported-software/l/lynx.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.8.9`` | ``-develop`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/l/lz4.md b/docs/version-specific/supported-software/l/lz4.md index 71ecae4bc..9e55611f8 100644 --- a/docs/version-specific/supported-software/l/lz4.md +++ b/docs/version-specific/supported-software/l/lz4.md @@ -25,5 +25,6 @@ version | toolchain ``1.9.4`` | ``GCCcore/13.2.0`` ``1.9.4`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/M1QN3.md b/docs/version-specific/supported-software/m/M1QN3.md index 95a5a766f..560eaae03 100644 --- a/docs/version-specific/supported-software/m/M1QN3.md +++ b/docs/version-specific/supported-software/m/M1QN3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/M3GNet.md b/docs/version-specific/supported-software/m/M3GNet.md index dd4363fe7..1421f9386 100644 --- a/docs/version-specific/supported-software/m/M3GNet.md +++ b/docs/version-specific/supported-software/m/M3GNet.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/M4.md b/docs/version-specific/supported-software/m/M4.md index a37763c38..5fcf4d611 100644 --- a/docs/version-specific/supported-software/m/M4.md +++ b/docs/version-specific/supported-software/m/M4.md @@ -80,5 +80,6 @@ version | toolchain ``1.4.19`` | ``GCCcore/9.5.0`` ``1.4.19`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MACH.md b/docs/version-specific/supported-software/m/MACH.md index 04e7cbab4..83397caa9 100644 --- a/docs/version-specific/supported-software/m/MACH.md +++ b/docs/version-specific/supported-software/m/MACH.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.18`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MACS2.md b/docs/version-specific/supported-software/m/MACS2.md index a9ec29cd1..ecacb3b16 100644 --- a/docs/version-specific/supported-software/m/MACS2.md +++ b/docs/version-specific/supported-software/m/MACS2.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2.2.9.1`` | | ``foss/2022b`` ``2.2.9.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MACS3.md b/docs/version-specific/supported-software/m/MACS3.md index 533d41a25..1d8fe5b78 100644 --- a/docs/version-specific/supported-software/m/MACS3.md +++ b/docs/version-specific/supported-software/m/MACS3.md @@ -15,5 +15,6 @@ version | toolchain ``3.0.1`` | ``foss/2022b`` ``3.0.1`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MACSE.md b/docs/version-specific/supported-software/m/MACSE.md index ece2aeb2b..037294f58 100644 --- a/docs/version-specific/supported-software/m/MACSE.md +++ b/docs/version-specific/supported-software/m/MACSE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.06`` | ``-Java-15`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MAFFT.md b/docs/version-specific/supported-software/m/MAFFT.md index 96f1ac99b..6d4c82242 100644 --- a/docs/version-specific/supported-software/m/MAFFT.md +++ b/docs/version-specific/supported-software/m/MAFFT.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``7.505`` | ``-with-extensions`` | ``GCC/12.2.0`` ``7.520`` | ``-with-extensions`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2af4ffff5..a15705591 100644 --- a/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md +++ b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md @@ -14,5 +14,6 @@ version | toolchain ``1.07bb`` | ``GCC/8.3.0`` ``1.09b`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MAGeCK.md b/docs/version-specific/supported-software/m/MAGeCK.md index b1d747e13..db7419036 100644 --- a/docs/version-specific/supported-software/m/MAGeCK.md +++ b/docs/version-specific/supported-software/m/MAGeCK.md @@ -14,5 +14,6 @@ version | toolchain ``0.5.9.4`` | ``foss/2022a`` ``0.5.9.5`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MAJIQ.md b/docs/version-specific/supported-software/m/MAJIQ.md index f1bcee6d1..f9705f1c3 100644 --- a/docs/version-specific/supported-software/m/MAJIQ.md +++ b/docs/version-specific/supported-software/m/MAJIQ.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MAKER.md b/docs/version-specific/supported-software/m/MAKER.md index b17323997..7a215ab67 100644 --- a/docs/version-specific/supported-software/m/MAKER.md +++ b/docs/version-specific/supported-software/m/MAKER.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.01.04`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MARS.md b/docs/version-specific/supported-software/m/MARS.md index 6b23e7346..1237f1260 100644 --- a/docs/version-specific/supported-software/m/MARS.md +++ b/docs/version-specific/supported-software/m/MARS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20191101`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MATIO.md b/docs/version-specific/supported-software/m/MATIO.md index 04e984a67..221da7109 100644 --- a/docs/version-specific/supported-software/m/MATIO.md +++ b/docs/version-specific/supported-software/m/MATIO.md @@ -23,5 +23,6 @@ version | toolchain ``1.5.26`` | ``GCCcore/13.2.0`` ``1.5.9`` | ``GCCcore/5.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f49ce963d..e9c5de891 100644 --- a/docs/version-specific/supported-software/m/MATLAB-Engine.md +++ b/docs/version-specific/supported-software/m/MATLAB-Engine.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2021a-9.10.1`` | | ``GCCcore/10.2.0`` ``2021b-9.11.19`` | | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MATLAB.md b/docs/version-specific/supported-software/m/MATLAB.md index dcb2fd406..5251ee8b8 100644 --- a/docs/version-specific/supported-software/m/MATLAB.md +++ b/docs/version-specific/supported-software/m/MATLAB.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``2023a`` | | ``system`` ``2023b`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MATSim.md b/docs/version-specific/supported-software/m/MATSim.md index e53c75c3b..9c427ee70 100644 --- a/docs/version-specific/supported-software/m/MATSim.md +++ b/docs/version-specific/supported-software/m/MATSim.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``15.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` ``15.0`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MBROLA.md b/docs/version-specific/supported-software/m/MBROLA.md index 583c0d3e0..93e59ef09 100644 --- a/docs/version-specific/supported-software/m/MBROLA.md +++ b/docs/version-specific/supported-software/m/MBROLA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.3`` | ``-voices-20200330`` | ``GCCcore/12.3.0`` ``3.3`` | ``-voices-20200330`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MCL.md b/docs/version-specific/supported-software/m/MCL.md index 973fded3b..baa08fb4a 100644 --- a/docs/version-specific/supported-software/m/MCL.md +++ b/docs/version-specific/supported-software/m/MCL.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``22.282`` | | ``GCCcore/11.3.0`` ``22.282`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MCR.md b/docs/version-specific/supported-software/m/MCR.md index 19a3a9a51..9b8bf279a 100644 --- a/docs/version-specific/supported-software/m/MCR.md +++ b/docs/version-specific/supported-software/m/MCR.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``R2022a`` | | ``system`` ``R2023a`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MDAnalysis.md b/docs/version-specific/supported-software/m/MDAnalysis.md index 63f7fb468..4e7538a47 100644 --- a/docs/version-specific/supported-software/m/MDAnalysis.md +++ b/docs/version-specific/supported-software/m/MDAnalysis.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2.4.2`` | | ``foss/2022b`` ``2.7.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MDBM.md b/docs/version-specific/supported-software/m/MDBM.md index 511c0e215..b33516286 100644 --- a/docs/version-specific/supported-software/m/MDBM.md +++ b/docs/version-specific/supported-software/m/MDBM.md @@ -13,5 +13,6 @@ version | toolchain ``4.13.0`` | ``GCCcore/6.4.0`` ``4.13.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MDI.md b/docs/version-specific/supported-software/m/MDI.md index 090346aac..d85a87c1c 100644 --- a/docs/version-specific/supported-software/m/MDI.md +++ b/docs/version-specific/supported-software/m/MDI.md @@ -13,5 +13,6 @@ version | toolchain ``1.4.16`` | ``gompi/2022b`` ``1.4.26`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 531d2a0c4..c51af199a 100644 --- a/docs/version-specific/supported-software/m/MDSplus-Java.md +++ b/docs/version-specific/supported-software/m/MDSplus-Java.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.96.12`` | ``-Java-13`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cb6ad2945..f0a5ab3c8 100644 --- a/docs/version-specific/supported-software/m/MDSplus-Python.md +++ b/docs/version-specific/supported-software/m/MDSplus-Python.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.96.12`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MDSplus.md b/docs/version-specific/supported-software/m/MDSplus.md index 075875eb7..b8a1b9a29 100644 --- a/docs/version-specific/supported-software/m/MDSplus.md +++ b/docs/version-specific/supported-software/m/MDSplus.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``7.96.12`` | | ``GCCcore/9.3.0`` ``7.96.8`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MDTraj.md b/docs/version-specific/supported-software/m/MDTraj.md index 878b70c69..ce7d68da2 100644 --- a/docs/version-specific/supported-software/m/MDTraj.md +++ b/docs/version-specific/supported-software/m/MDTraj.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``1.9.7`` | | ``intel/2022a`` ``1.9.9`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEGA.md b/docs/version-specific/supported-software/m/MEGA.md index 3c0097b9b..b97b44929 100644 --- a/docs/version-specific/supported-software/m/MEGA.md +++ b/docs/version-specific/supported-software/m/MEGA.md @@ -14,5 +14,6 @@ version | toolchain ``11.0.10`` | ``system`` ``7.0.20-1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEGACC.md b/docs/version-specific/supported-software/m/MEGACC.md index c917f877a..77489f794 100644 --- a/docs/version-specific/supported-software/m/MEGACC.md +++ b/docs/version-specific/supported-software/m/MEGACC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.0.18-1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEGAHIT.md b/docs/version-specific/supported-software/m/MEGAHIT.md index ff0e43808..3294a9821 100644 --- a/docs/version-specific/supported-software/m/MEGAHIT.md +++ b/docs/version-specific/supported-software/m/MEGAHIT.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``1.2.9`` | | ``GCCcore/9.3.0`` ``1.2.9`` | | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEGAN.md b/docs/version-specific/supported-software/m/MEGAN.md index 47c8b0b79..3674cb8cc 100644 --- a/docs/version-specific/supported-software/m/MEGAN.md +++ b/docs/version-specific/supported-software/m/MEGAN.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``6.22.0`` | ``-Java-17`` | ``system`` ``6.25.3`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEM.md b/docs/version-specific/supported-software/m/MEM.md index dd2c267d8..964134855 100644 --- a/docs/version-specific/supported-software/m/MEM.md +++ b/docs/version-specific/supported-software/m/MEM.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20191023`` | | ``foss/2019b`` ``20191023`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEME.md b/docs/version-specific/supported-software/m/MEME.md index 88f1b8cab..4e3c23f22 100644 --- a/docs/version-specific/supported-software/m/MEME.md +++ b/docs/version-specific/supported-software/m/MEME.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``5.4.1`` | | ``gompi/2021b`` ``5.5.4`` | | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MEMOTE.md b/docs/version-specific/supported-software/m/MEMOTE.md index 8a709e2ef..4f01ae55b 100644 --- a/docs/version-specific/supported-software/m/MEMOTE.md +++ b/docs/version-specific/supported-software/m/MEMOTE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MERCKX.md b/docs/version-specific/supported-software/m/MERCKX.md index 9e2475919..9df53b084 100644 --- a/docs/version-specific/supported-software/m/MERCKX.md +++ b/docs/version-specific/supported-software/m/MERCKX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170330`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MESS.md b/docs/version-specific/supported-software/m/MESS.md index 5445edb63..437f9c8e9 100644 --- a/docs/version-specific/supported-software/m/MESS.md +++ b/docs/version-specific/supported-software/m/MESS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.6`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/METIS.md b/docs/version-specific/supported-software/m/METIS.md index 7c1d76d6e..699a7792d 100644 --- a/docs/version-specific/supported-software/m/METIS.md +++ b/docs/version-specific/supported-software/m/METIS.md @@ -36,5 +36,6 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``intel/2016b`` ``5.1.0`` | | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MICOM.md b/docs/version-specific/supported-software/m/MICOM.md index 5f9bba182..de052a824 100644 --- a/docs/version-specific/supported-software/m/MICOM.md +++ b/docs/version-specific/supported-software/m/MICOM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.33.2`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 23edad50f..bde256454 100644 --- a/docs/version-specific/supported-software/m/MIGRATE-N.md +++ b/docs/version-specific/supported-software/m/MIGRATE-N.md @@ -14,5 +14,6 @@ version | toolchain ``4.2.8`` | ``foss/2016a`` ``5.0.4`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MINC.md b/docs/version-specific/supported-software/m/MINC.md index 0527396e7..1803c7a50 100644 --- a/docs/version-specific/supported-software/m/MINC.md +++ b/docs/version-specific/supported-software/m/MINC.md @@ -14,5 +14,6 @@ version | toolchain ``2.4.03`` | ``foss/2018a`` ``2.4.03`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MINPACK.md b/docs/version-specific/supported-software/m/MINPACK.md index 95f08ec6f..c47aceab0 100644 --- a/docs/version-specific/supported-software/m/MINPACK.md +++ b/docs/version-specific/supported-software/m/MINPACK.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``19961126`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MIRA.md b/docs/version-specific/supported-software/m/MIRA.md index 8c442f02c..3c92bbba1 100644 --- a/docs/version-specific/supported-software/m/MIRA.md +++ b/docs/version-specific/supported-software/m/MIRA.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``4.9.6`` | | ``intel/2017b`` ``5.0rc2`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MITObim.md b/docs/version-specific/supported-software/m/MITObim.md index 6916e1b5e..3886e6fbf 100644 --- a/docs/version-specific/supported-software/m/MITObim.md +++ b/docs/version-specific/supported-software/m/MITObim.md @@ -14,5 +14,6 @@ version | toolchain ``1.9.1`` | ``foss/2020b`` ``1.9.1`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MITgcmutils.md b/docs/version-specific/supported-software/m/MITgcmutils.md index 044f4cdbc..abc9ad65b 100644 --- a/docs/version-specific/supported-software/m/MITgcmutils.md +++ b/docs/version-specific/supported-software/m/MITgcmutils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MLC.md b/docs/version-specific/supported-software/m/MLC.md index 395cd8f1b..39e8725d3 100644 --- a/docs/version-specific/supported-software/m/MLC.md +++ b/docs/version-specific/supported-software/m/MLC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MLflow.md b/docs/version-specific/supported-software/m/MLflow.md index 802fb5b8b..c1da03a07 100644 --- a/docs/version-specific/supported-software/m/MLflow.md +++ b/docs/version-specific/supported-software/m/MLflow.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.10.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MLxtend.md b/docs/version-specific/supported-software/m/MLxtend.md index 89ed3dc6f..7dd111f66 100644 --- a/docs/version-specific/supported-software/m/MLxtend.md +++ b/docs/version-specific/supported-software/m/MLxtend.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.17.3`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MMSEQ.md b/docs/version-specific/supported-software/m/MMSEQ.md index 964cf3a1a..780760ab1 100644 --- a/docs/version-specific/supported-software/m/MMSEQ.md +++ b/docs/version-specific/supported-software/m/MMSEQ.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.8`` | ``-linux64-static`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MMseqs2.md b/docs/version-specific/supported-software/m/MMseqs2.md index 4d45eeb88..7d0bd1989 100644 --- a/docs/version-specific/supported-software/m/MMseqs2.md +++ b/docs/version-specific/supported-software/m/MMseqs2.md @@ -24,5 +24,6 @@ version | toolchain ``5-9375b`` | ``intel/2018a`` ``8-fac81`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fff916d01..b72bc9cc3 100644 --- a/docs/version-specific/supported-software/m/MNE-Python.md +++ b/docs/version-specific/supported-software/m/MNE-Python.md @@ -13,5 +13,6 @@ version | toolchain ``0.24.1`` | ``foss/2021a`` ``1.6.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MOABB.md b/docs/version-specific/supported-software/m/MOABB.md index 3c1491b94..305ca4ed9 100644 --- a/docs/version-specific/supported-software/m/MOABB.md +++ b/docs/version-specific/supported-software/m/MOABB.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.6`` | ``foss/2021a`` ``1.0.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MOABS.md b/docs/version-specific/supported-software/m/MOABS.md index b9ab1d60c..282bd9e13 100644 --- a/docs/version-specific/supported-software/m/MOABS.md +++ b/docs/version-specific/supported-software/m/MOABS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.9.6`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b235c56a4..c980201fc 100644 --- a/docs/version-specific/supported-software/m/MOB-suite.md +++ b/docs/version-specific/supported-software/m/MOB-suite.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MODFLOW.md b/docs/version-specific/supported-software/m/MODFLOW.md index 1fb914b38..d5c967fa9 100644 --- a/docs/version-specific/supported-software/m/MODFLOW.md +++ b/docs/version-specific/supported-software/m/MODFLOW.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.4.4`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MOFA2.md b/docs/version-specific/supported-software/m/MOFA2.md index 237a340b9..9ad7132a9 100644 --- a/docs/version-specific/supported-software/m/MOFA2.md +++ b/docs/version-specific/supported-software/m/MOFA2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.14.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MONA.md b/docs/version-specific/supported-software/m/MONA.md index 7ed19f16d..88f17b030 100644 --- a/docs/version-specific/supported-software/m/MONA.md +++ b/docs/version-specific/supported-software/m/MONA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4-18`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ce455101b..d8047d7c0 100644 --- a/docs/version-specific/supported-software/m/MONAI-Label.md +++ b/docs/version-specific/supported-software/m/MONAI-Label.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MONAI.md b/docs/version-specific/supported-software/m/MONAI.md index 88fac8ffd..82485caa5 100644 --- a/docs/version-specific/supported-software/m/MONAI.md +++ b/docs/version-specific/supported-software/m/MONAI.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``1.3.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MOOSE.md b/docs/version-specific/supported-software/m/MOOSE.md index 0ed1b3abf..b70a2637d 100644 --- a/docs/version-specific/supported-software/m/MOOSE.md +++ b/docs/version-specific/supported-software/m/MOOSE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2021-05-18`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MPB.md b/docs/version-specific/supported-software/m/MPB.md index d579a54e1..a169f3d28 100644 --- a/docs/version-specific/supported-software/m/MPB.md +++ b/docs/version-specific/supported-software/m/MPB.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.6.2`` | ``-Python-2.7.14`` | ``foss/2018a`` ``1.6.2`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MPC.md b/docs/version-specific/supported-software/m/MPC.md index 6ebbe47ec..69101a833 100644 --- a/docs/version-specific/supported-software/m/MPC.md +++ b/docs/version-specific/supported-software/m/MPC.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``1.3.1`` | | ``GCCcore/13.2.0`` ``1.3.1`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MPFI.md b/docs/version-specific/supported-software/m/MPFI.md index c505ad5c9..cb62a6526 100644 --- a/docs/version-specific/supported-software/m/MPFI.md +++ b/docs/version-specific/supported-software/m/MPFI.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.4`` | ``GCCcore/11.3.0`` ``1.5.4`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MPFR.md b/docs/version-specific/supported-software/m/MPFR.md index 2a2e890ef..c757d5816 100644 --- a/docs/version-specific/supported-software/m/MPFR.md +++ b/docs/version-specific/supported-software/m/MPFR.md @@ -32,5 +32,6 @@ version | toolchain ``4.2.1`` | ``GCCcore/13.2.0`` ``4.2.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MPICH.md b/docs/version-specific/supported-software/m/MPICH.md index df33a67b6..ea353e881 100644 --- a/docs/version-specific/supported-software/m/MPICH.md +++ b/docs/version-specific/supported-software/m/MPICH.md @@ -18,5 +18,6 @@ version | toolchain ``3.3.2`` | ``GCC/9.3.0`` ``3.4.2`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MPICH2.md b/docs/version-specific/supported-software/m/MPICH2.md index 64e87d124..5ea2b739a 100644 --- a/docs/version-specific/supported-software/m/MPICH2.md +++ b/docs/version-specific/supported-software/m/MPICH2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``GCC/4.8.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ec780d6e4..b030ef160 100644 --- a/docs/version-specific/supported-software/m/MPJ-Express.md +++ b/docs/version-specific/supported-software/m/MPJ-Express.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.44`` | ``-Java-1.8.0_92`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MRCPP.md b/docs/version-specific/supported-software/m/MRCPP.md index 1cf2a55c1..8f6e9b8db 100644 --- a/docs/version-specific/supported-software/m/MRCPP.md +++ b/docs/version-specific/supported-software/m/MRCPP.md @@ -13,5 +13,6 @@ version | toolchain ``1.3.6`` | ``foss/2020a`` ``1.4.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MRChem.md b/docs/version-specific/supported-software/m/MRChem.md index 36ad6e4d2..641bca9e2 100644 --- a/docs/version-specific/supported-software/m/MRChem.md +++ b/docs/version-specific/supported-software/m/MRChem.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MRIcron.md b/docs/version-specific/supported-software/m/MRIcron.md index bd30d9648..b7ec5fda4 100644 --- a/docs/version-specific/supported-software/m/MRIcron.md +++ b/docs/version-specific/supported-software/m/MRIcron.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.20180614`` | ``system`` ``20150601`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MRPRESSO.md b/docs/version-specific/supported-software/m/MRPRESSO.md index 1157bcf85..146503de5 100644 --- a/docs/version-specific/supported-software/m/MRPRESSO.md +++ b/docs/version-specific/supported-software/m/MRPRESSO.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0-20230502`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MRtrix.md b/docs/version-specific/supported-software/m/MRtrix.md index c91efb575..8ec856010 100644 --- a/docs/version-specific/supported-software/m/MRtrix.md +++ b/docs/version-specific/supported-software/m/MRtrix.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``3.0_RC2`` | ``-Python-2.7.13`` | ``foss/2017a`` ``3.0_RC3`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MSFragger.md b/docs/version-specific/supported-software/m/MSFragger.md index 01c60df86..55859c46a 100644 --- a/docs/version-specific/supported-software/m/MSFragger.md +++ b/docs/version-specific/supported-software/m/MSFragger.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MSM.md b/docs/version-specific/supported-software/m/MSM.md index 47991a643..9b2f5babe 100644 --- a/docs/version-specific/supported-software/m/MSM.md +++ b/docs/version-specific/supported-software/m/MSM.md @@ -13,5 +13,6 @@ version | toolchain ``1.0`` | ``foss/2017b`` ``1.0`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MSPC.md b/docs/version-specific/supported-software/m/MSPC.md index 948846fe6..d799e06f4 100644 --- a/docs/version-specific/supported-software/m/MSPC.md +++ b/docs/version-specific/supported-software/m/MSPC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MTL4.md b/docs/version-specific/supported-software/m/MTL4.md index 87a196455..0a615c4f7 100644 --- a/docs/version-specific/supported-software/m/MTL4.md +++ b/docs/version-specific/supported-software/m/MTL4.md @@ -13,5 +13,6 @@ version | toolchain ``4.0.8878`` | ``system`` ``4.0.9555`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MUMPS.md b/docs/version-specific/supported-software/m/MUMPS.md index 42fd4faa2..13ee73dfe 100644 --- a/docs/version-specific/supported-software/m/MUMPS.md +++ b/docs/version-specific/supported-software/m/MUMPS.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``5.6.1`` | ``-metis`` | ``foss/2023a`` ``5.6.1`` | ``-metis-seq`` | ``gomkl/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MUMmer.md b/docs/version-specific/supported-software/m/MUMmer.md index 50a9af2ff..c76e2e473 100644 --- a/docs/version-specific/supported-software/m/MUMmer.md +++ b/docs/version-specific/supported-software/m/MUMmer.md @@ -22,5 +22,6 @@ version | toolchain ``4.0.0rc1`` | ``GCCcore/12.2.0`` ``4.0.0rc1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MUSCLE.md b/docs/version-specific/supported-software/m/MUSCLE.md index a7374f726..1953638b3 100644 --- a/docs/version-specific/supported-software/m/MUSCLE.md +++ b/docs/version-specific/supported-software/m/MUSCLE.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``5.1.0`` | | ``GCCcore/11.3.0`` ``5.1.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MUSCLE3.md b/docs/version-specific/supported-software/m/MUSCLE3.md index 8f0082905..3676e3158 100644 --- a/docs/version-specific/supported-software/m/MUSCLE3.md +++ b/docs/version-specific/supported-software/m/MUSCLE3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MUST.md b/docs/version-specific/supported-software/m/MUST.md index 51e77df8f..691fbbdfd 100644 --- a/docs/version-specific/supported-software/m/MUST.md +++ b/docs/version-specific/supported-software/m/MUST.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.7.1`` | | ``foss/2020b`` ``1.7.2`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MVAPICH2.md b/docs/version-specific/supported-software/m/MVAPICH2.md index bebb33d7a..de45bc7ca 100644 --- a/docs/version-specific/supported-software/m/MVAPICH2.md +++ b/docs/version-specific/supported-software/m/MVAPICH2.md @@ -14,5 +14,6 @@ version | toolchain ``2.1`` | ``GCC/4.9.3-2.25`` ``2.2b`` | ``GCC/4.9.3-2.25`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MView.md b/docs/version-specific/supported-software/m/MView.md index f0b8f50ba..6a43aa79d 100644 --- a/docs/version-specific/supported-software/m/MView.md +++ b/docs/version-specific/supported-software/m/MView.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.67`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MXNet.md b/docs/version-specific/supported-software/m/MXNet.md index 60c2d89c0..6781a81f1 100644 --- a/docs/version-specific/supported-software/m/MXNet.md +++ b/docs/version-specific/supported-software/m/MXNet.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.9.3`` | ``-Python-2.7.12-R-3.3.3`` | ``foss/2016b`` ``1.9.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MaSuRCA.md b/docs/version-specific/supported-software/m/MaSuRCA.md index be30b6f98..94d7e3231 100644 --- a/docs/version-specific/supported-software/m/MaSuRCA.md +++ b/docs/version-specific/supported-software/m/MaSuRCA.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``4.0.9`` | ``-Perl-5.32.1`` | ``foss/2021a`` ``4.1.0`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Magics.md b/docs/version-specific/supported-software/m/Magics.md index d4847e827..97993fdce 100644 --- a/docs/version-specific/supported-software/m/Magics.md +++ b/docs/version-specific/supported-software/m/Magics.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.13.0`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MagresPython.md b/docs/version-specific/supported-software/m/MagresPython.md index a9debfc8c..35b97d5d7 100644 --- a/docs/version-specific/supported-software/m/MagresPython.md +++ b/docs/version-specific/supported-software/m/MagresPython.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160329`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mako.md b/docs/version-specific/supported-software/m/Mako.md index 33735fcc1..e49e5b76f 100644 --- a/docs/version-specific/supported-software/m/Mako.md +++ b/docs/version-specific/supported-software/m/Mako.md @@ -40,5 +40,6 @@ version | versionsuffix | toolchain ``1.2.4`` | | ``GCCcore/13.2.0`` ``1.3.5`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mamba.md b/docs/version-specific/supported-software/m/Mamba.md index beba81640..e6963bdef 100644 --- a/docs/version-specific/supported-software/m/Mamba.md +++ b/docs/version-specific/supported-software/m/Mamba.md @@ -14,5 +14,6 @@ version | toolchain ``23.11.0-0`` | ``system`` ``4.14.0-0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MapSplice.md b/docs/version-specific/supported-software/m/MapSplice.md index 5343a23d6..32cd4cdba 100644 --- a/docs/version-specific/supported-software/m/MapSplice.md +++ b/docs/version-specific/supported-software/m/MapSplice.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.2.1`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Maple.md b/docs/version-specific/supported-software/m/Maple.md index ca87e03e8..e3e23ce10 100644 --- a/docs/version-specific/supported-software/m/Maple.md +++ b/docs/version-specific/supported-software/m/Maple.md @@ -14,5 +14,6 @@ version | toolchain ``2017.2`` | ``system`` ``2022.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Maq.md b/docs/version-specific/supported-software/m/Maq.md index 01637fc9c..c124a6208 100644 --- a/docs/version-specific/supported-software/m/Maq.md +++ b/docs/version-specific/supported-software/m/Maq.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 606ea3392..f35f14448 100644 --- a/docs/version-specific/supported-software/m/MariaDB-connector-c.md +++ b/docs/version-specific/supported-software/m/MariaDB-connector-c.md @@ -21,5 +21,6 @@ version | toolchain ``3.1.7`` | ``GCCcore/9.3.0`` ``3.2.2`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MariaDB.md b/docs/version-specific/supported-software/m/MariaDB.md index e81013f74..5c7bf15cb 100644 --- a/docs/version-specific/supported-software/m/MariaDB.md +++ b/docs/version-specific/supported-software/m/MariaDB.md @@ -28,5 +28,6 @@ version | toolchain ``10.6.4`` | ``GCC/11.2.0`` ``10.9.3`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Markdown.md b/docs/version-specific/supported-software/m/Markdown.md index 436f9e588..9e478ce10 100644 --- a/docs/version-specific/supported-software/m/Markdown.md +++ b/docs/version-specific/supported-software/m/Markdown.md @@ -14,5 +14,6 @@ version | toolchain ``3.6`` | ``GCCcore/12.3.0`` ``3.6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mash.md b/docs/version-specific/supported-software/m/Mash.md index f66335a05..4db8895ab 100644 --- a/docs/version-specific/supported-software/m/Mash.md +++ b/docs/version-specific/supported-software/m/Mash.md @@ -20,5 +20,6 @@ version | toolchain ``2.3`` | ``GCC/12.3.0`` ``2.3`` | ``intel-compilers/2021.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mashtree.md b/docs/version-specific/supported-software/m/Mashtree.md index 5ca8efb6d..ccfea6e69 100644 --- a/docs/version-specific/supported-software/m/Mashtree.md +++ b/docs/version-specific/supported-software/m/Mashtree.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.6`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MathGL.md b/docs/version-specific/supported-software/m/MathGL.md index dc9701e6b..94dbf6e7e 100644 --- a/docs/version-specific/supported-software/m/MathGL.md +++ b/docs/version-specific/supported-software/m/MathGL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4.1`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mathematica.md b/docs/version-specific/supported-software/m/Mathematica.md index c23857419..fe350abb1 100644 --- a/docs/version-specific/supported-software/m/Mathematica.md +++ b/docs/version-specific/supported-software/m/Mathematica.md @@ -22,5 +22,6 @@ version | toolchain ``13.1.0`` | ``system`` ``9.0.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Maude.md b/docs/version-specific/supported-software/m/Maude.md index 505206eb9..072077d9e 100644 --- a/docs/version-specific/supported-software/m/Maude.md +++ b/docs/version-specific/supported-software/m/Maude.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Maven.md b/docs/version-specific/supported-software/m/Maven.md index 7e3a23132..f7be27163 100644 --- a/docs/version-specific/supported-software/m/Maven.md +++ b/docs/version-specific/supported-software/m/Maven.md @@ -18,5 +18,6 @@ version | toolchain ``3.6.0`` | ``system`` ``3.6.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MaxBin.md b/docs/version-specific/supported-software/m/MaxBin.md index bbb82ce6d..46b23bc05 100644 --- a/docs/version-specific/supported-software/m/MaxBin.md +++ b/docs/version-specific/supported-software/m/MaxBin.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.2.7`` | | ``gompi/2021a`` ``2.2.7`` | | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MaxQuant.md b/docs/version-specific/supported-software/m/MaxQuant.md index 66fdced56..bdc776242 100644 --- a/docs/version-specific/supported-software/m/MaxQuant.md +++ b/docs/version-specific/supported-software/m/MaxQuant.md @@ -15,5 +15,6 @@ version | toolchain ``2.2.0.0`` | ``GCCcore/11.2.0`` ``2.4.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MbedTLS.md b/docs/version-specific/supported-software/m/MbedTLS.md index 0aa1d13a9..358fd7bb6 100644 --- a/docs/version-specific/supported-software/m/MbedTLS.md +++ b/docs/version-specific/supported-software/m/MbedTLS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.26.0`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MedPy.md b/docs/version-specific/supported-software/m/MedPy.md index 46a8954b0..f361b0464 100644 --- a/docs/version-specific/supported-software/m/MedPy.md +++ b/docs/version-specific/supported-software/m/MedPy.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``foss/2020b`` ``0.4.0`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Meep.md b/docs/version-specific/supported-software/m/Meep.md index ea69be160..f8b641950 100644 --- a/docs/version-specific/supported-software/m/Meep.md +++ b/docs/version-specific/supported-software/m/Meep.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-2.7.14`` | ``foss/2018a`` ``1.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Megalodon.md b/docs/version-specific/supported-software/m/Megalodon.md index 95b1ffaaa..8db1f59a5 100644 --- a/docs/version-specific/supported-software/m/Megalodon.md +++ b/docs/version-specific/supported-software/m/Megalodon.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.5.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.5.0`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Meld.md b/docs/version-specific/supported-software/m/Meld.md index 95f7b78b6..956d52e59 100644 --- a/docs/version-specific/supported-software/m/Meld.md +++ b/docs/version-specific/supported-software/m/Meld.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.20.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mercurial.md b/docs/version-specific/supported-software/m/Mercurial.md index d11d4a318..0088a92cf 100644 --- a/docs/version-specific/supported-software/m/Mercurial.md +++ b/docs/version-specific/supported-software/m/Mercurial.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``6.2`` | | ``GCCcore/11.3.0`` ``6.4.5`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c79f3626e..03585294e 100644 --- a/docs/version-specific/supported-software/m/Mesa-demos.md +++ b/docs/version-specific/supported-software/m/Mesa-demos.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``8.4.0`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mesa.md b/docs/version-specific/supported-software/m/Mesa.md index 5ba8cf9ac..e4fb3d31b 100644 --- a/docs/version-specific/supported-software/m/Mesa.md +++ b/docs/version-specific/supported-software/m/Mesa.md @@ -42,5 +42,6 @@ version | toolchain ``23.1.4`` | ``GCCcore/12.3.0`` ``23.1.9`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Meson.md b/docs/version-specific/supported-software/m/Meson.md index a5f0ed517..6415f395f 100644 --- a/docs/version-specific/supported-software/m/Meson.md +++ b/docs/version-specific/supported-software/m/Meson.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``1.3.1`` | | ``GCCcore/12.3.0`` ``1.4.0`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mesquite.md b/docs/version-specific/supported-software/m/Mesquite.md index df97a6aa7..aa032f235 100644 --- a/docs/version-specific/supported-software/m/Mesquite.md +++ b/docs/version-specific/supported-software/m/Mesquite.md @@ -18,5 +18,6 @@ version | toolchain ``2.3.0`` | ``intel/2016a`` ``2.3.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaBAT.md b/docs/version-specific/supported-software/m/MetaBAT.md index a2401243c..3447c48d7 100644 --- a/docs/version-specific/supported-software/m/MetaBAT.md +++ b/docs/version-specific/supported-software/m/MetaBAT.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.15`` | | ``gompi/2021a`` ``2.15`` | | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaDecoder.md b/docs/version-specific/supported-software/m/MetaDecoder.md index ec83b5c20..4137afee6 100644 --- a/docs/version-specific/supported-software/m/MetaDecoder.md +++ b/docs/version-specific/supported-software/m/MetaDecoder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.19`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaEuk.md b/docs/version-specific/supported-software/m/MetaEuk.md index 4e2c071bd..47be2ca54 100644 --- a/docs/version-specific/supported-software/m/MetaEuk.md +++ b/docs/version-specific/supported-software/m/MetaEuk.md @@ -16,5 +16,6 @@ version | toolchain ``6`` | ``GCC/11.3.0`` ``6`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaGeneAnnotator.md b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md index 211720809..66bab203f 100644 --- a/docs/version-specific/supported-software/m/MetaGeneAnnotator.md +++ b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20080819`` | ``-x86-64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaMorpheus.md b/docs/version-specific/supported-software/m/MetaMorpheus.md index 0af0e067a..940482ca4 100644 --- a/docs/version-specific/supported-software/m/MetaMorpheus.md +++ b/docs/version-specific/supported-software/m/MetaMorpheus.md @@ -13,5 +13,6 @@ version | toolchain ``0.0.320`` | ``GCCcore/10.3.0`` ``1.0.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaPhlAn.md b/docs/version-specific/supported-software/m/MetaPhlAn.md index 4225a7ac3..41381f4b4 100644 --- a/docs/version-specific/supported-software/m/MetaPhlAn.md +++ b/docs/version-specific/supported-software/m/MetaPhlAn.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.0.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``4.0.6`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaPhlAn2.md b/docs/version-specific/supported-software/m/MetaPhlAn2.md index 68c77489c..b8ad555ed 100644 --- a/docs/version-specific/supported-software/m/MetaPhlAn2.md +++ b/docs/version-specific/supported-software/m/MetaPhlAn2.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.7.8`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.7.8`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetaboAnalystR.md b/docs/version-specific/supported-software/m/MetaboAnalystR.md index 0ce086562..59f87aa40 100644 --- a/docs/version-specific/supported-software/m/MetaboAnalystR.md +++ b/docs/version-specific/supported-software/m/MetaboAnalystR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1-20190827`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 07374f854..4ee24dbd4 100644 --- a/docs/version-specific/supported-software/m/Metagenome-Atlas.md +++ b/docs/version-specific/supported-software/m/Metagenome-Atlas.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.3`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Metal.md b/docs/version-specific/supported-software/m/Metal.md index 6184df35a..41a3ab0c7 100644 --- a/docs/version-specific/supported-software/m/Metal.md +++ b/docs/version-specific/supported-software/m/Metal.md @@ -13,5 +13,6 @@ version | toolchain ``2011-03-25`` | ``foss/2016a`` ``2020-05-05`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MetalWalls.md b/docs/version-specific/supported-software/m/MetalWalls.md index 9390842c8..f5e93717a 100644 --- a/docs/version-specific/supported-software/m/MetalWalls.md +++ b/docs/version-specific/supported-software/m/MetalWalls.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``21.06.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Metaxa2.md b/docs/version-specific/supported-software/m/Metaxa2.md index 712f25136..2e1d885c7 100644 --- a/docs/version-specific/supported-software/m/Metaxa2.md +++ b/docs/version-specific/supported-software/m/Metaxa2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MethylDackel.md b/docs/version-specific/supported-software/m/MethylDackel.md index 768666aa4..39ebb117d 100644 --- a/docs/version-specific/supported-software/m/MethylDackel.md +++ b/docs/version-specific/supported-software/m/MethylDackel.md @@ -14,5 +14,6 @@ version | toolchain ``0.5.0`` | ``iccifort/2019.5.281`` ``0.6.1`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MiGEC.md b/docs/version-specific/supported-software/m/MiGEC.md index 3442755b6..33e31bc3b 100644 --- a/docs/version-specific/supported-software/m/MiGEC.md +++ b/docs/version-specific/supported-software/m/MiGEC.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.8`` | ``-Java-1.8.0_162`` | ``system`` ``1.2.9`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MiXCR.md b/docs/version-specific/supported-software/m/MiXCR.md index e47e2bb65..dcafef54d 100644 --- a/docs/version-specific/supported-software/m/MiXCR.md +++ b/docs/version-specific/supported-software/m/MiXCR.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``3.0.3`` | ``-Java-1.8`` | ``system`` ``4.6.0`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MicrobeAnnotator.md b/docs/version-specific/supported-software/m/MicrobeAnnotator.md index 695ae05e2..8d1e530fe 100644 --- a/docs/version-specific/supported-software/m/MicrobeAnnotator.md +++ b/docs/version-specific/supported-software/m/MicrobeAnnotator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.5`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mikado.md b/docs/version-specific/supported-software/m/Mikado.md index e308a2aba..eae9c882c 100644 --- a/docs/version-specific/supported-software/m/Mikado.md +++ b/docs/version-specific/supported-software/m/Mikado.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.4`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Miller.md b/docs/version-specific/supported-software/m/Miller.md index 9bd5a1998..b9c26aba5 100644 --- a/docs/version-specific/supported-software/m/Miller.md +++ b/docs/version-specific/supported-software/m/Miller.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.4.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MinCED.md b/docs/version-specific/supported-software/m/MinCED.md index e26be3de0..bd85022be 100644 --- a/docs/version-specific/supported-software/m/MinCED.md +++ b/docs/version-specific/supported-software/m/MinCED.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.2`` | ``-Java-11`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MinPath.md b/docs/version-specific/supported-software/m/MinPath.md index 1491ecc3f..96b5f31ec 100644 --- a/docs/version-specific/supported-software/m/MinPath.md +++ b/docs/version-specific/supported-software/m/MinPath.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.4`` | ``-Python-2.7.16`` | ``intel/2019b`` ``1.6`` | | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 22a1db1dc..a4ee3ee97 100644 --- a/docs/version-specific/supported-software/m/Mini-XML.md +++ b/docs/version-specific/supported-software/m/Mini-XML.md @@ -15,5 +15,6 @@ version | toolchain ``3.2`` | ``GCCcore/10.3.0`` ``3.3.1`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MiniCARD.md b/docs/version-specific/supported-software/m/MiniCARD.md index bbe4fa000..2b5f860f6 100644 --- a/docs/version-specific/supported-software/m/MiniCARD.md +++ b/docs/version-specific/supported-software/m/MiniCARD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MiniSat.md b/docs/version-specific/supported-software/m/MiniSat.md index c0845df90..0d091ea31 100644 --- a/docs/version-specific/supported-software/m/MiniSat.md +++ b/docs/version-specific/supported-software/m/MiniSat.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.0`` | ``GCC/9.3.0`` ``20130925`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Miniconda2.md b/docs/version-specific/supported-software/m/Miniconda2.md index bc60d918d..a4b1202c6 100644 --- a/docs/version-specific/supported-software/m/Miniconda2.md +++ b/docs/version-specific/supported-software/m/Miniconda2.md @@ -14,5 +14,6 @@ version | toolchain ``4.6.14`` | ``system`` ``4.7.10`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Miniconda3.md b/docs/version-specific/supported-software/m/Miniconda3.md index a8a2b3ff8..4925ad708 100644 --- a/docs/version-specific/supported-software/m/Miniconda3.md +++ b/docs/version-specific/supported-software/m/Miniconda3.md @@ -21,5 +21,6 @@ version | toolchain ``4.8.3`` | ``system`` ``4.9.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Miniforge3.md b/docs/version-specific/supported-software/m/Miniforge3.md index b1e334ef5..55c234a2d 100644 --- a/docs/version-specific/supported-software/m/Miniforge3.md +++ b/docs/version-specific/supported-software/m/Miniforge3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``24.1.2-0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Minimac4.md b/docs/version-specific/supported-software/m/Minimac4.md index a1c4d4804..be75b814a 100644 --- a/docs/version-specific/supported-software/m/Minimac4.md +++ b/docs/version-specific/supported-software/m/Minimac4.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Minipolish.md b/docs/version-specific/supported-software/m/Minipolish.md index 2f0d8f801..cab2dced1 100644 --- a/docs/version-specific/supported-software/m/Minipolish.md +++ b/docs/version-specific/supported-software/m/Minipolish.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.3`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 52bf9f8ef..734cb4238 100644 --- a/docs/version-specific/supported-software/m/Mish-Cuda.md +++ b/docs/version-specific/supported-software/m/Mish-Cuda.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210309`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MitoHiFi.md b/docs/version-specific/supported-software/m/MitoHiFi.md index 2e9c7f580..154beb95b 100644 --- a/docs/version-specific/supported-software/m/MitoHiFi.md +++ b/docs/version-specific/supported-software/m/MitoHiFi.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MitoZ.md b/docs/version-specific/supported-software/m/MitoZ.md index 31108b7cc..e198a3909 100644 --- a/docs/version-specific/supported-software/m/MitoZ.md +++ b/docs/version-specific/supported-software/m/MitoZ.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MixMHC2pred.md b/docs/version-specific/supported-software/m/MixMHC2pred.md index 16424c057..803e5ed11 100644 --- a/docs/version-specific/supported-software/m/MixMHC2pred.md +++ b/docs/version-specific/supported-software/m/MixMHC2pred.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mmg.md b/docs/version-specific/supported-software/m/Mmg.md index 361203515..132037835 100644 --- a/docs/version-specific/supported-software/m/Mmg.md +++ b/docs/version-specific/supported-software/m/Mmg.md @@ -15,5 +15,6 @@ version | toolchain ``5.6.0`` | ``gompi/2021b`` ``5.7.2`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f1e2947a2..29057e03a 100644 --- a/docs/version-specific/supported-software/m/ModelTest-NG.md +++ b/docs/version-specific/supported-software/m/ModelTest-NG.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.7`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Molcas.md b/docs/version-specific/supported-software/m/Molcas.md index c056fd172..4828f6e20 100644 --- a/docs/version-specific/supported-software/m/Molcas.md +++ b/docs/version-specific/supported-software/m/Molcas.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``8.2`` | ``-centos-mkl-par`` | ``system`` ``8.2`` | ``-centos-par`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Molden.md b/docs/version-specific/supported-software/m/Molden.md index 0e83c1827..65c0dffda 100644 --- a/docs/version-specific/supported-software/m/Molden.md +++ b/docs/version-specific/supported-software/m/Molden.md @@ -19,5 +19,6 @@ version | toolchain ``7.1`` | ``GCCcore/11.3.0`` ``7.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Molekel.md b/docs/version-specific/supported-software/m/Molekel.md index 969be8121..c448e89c3 100644 --- a/docs/version-specific/supported-software/m/Molekel.md +++ b/docs/version-specific/supported-software/m/Molekel.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.4.0`` | ``-Linux_x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Molpro.md b/docs/version-specific/supported-software/m/Molpro.md index fa3552b51..788e74e99 100644 --- a/docs/version-specific/supported-software/m/Molpro.md +++ b/docs/version-specific/supported-software/m/Molpro.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2024.1.0`` | ``.linux_x86_64_mpipr`` | ``system`` ``2024.1.0`` | ``.linux_x86_64_sockets`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mono.md b/docs/version-specific/supported-software/m/Mono.md index 802918b7b..315bd9695 100644 --- a/docs/version-specific/supported-software/m/Mono.md +++ b/docs/version-specific/supported-software/m/Mono.md @@ -22,5 +22,6 @@ version | toolchain ``6.4.0.198`` | ``foss/2018b`` ``6.8.0.105`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Monocle3.md b/docs/version-specific/supported-software/m/Monocle3.md index ddfcd8dec..eab9ff39c 100644 --- a/docs/version-specific/supported-software/m/Monocle3.md +++ b/docs/version-specific/supported-software/m/Monocle3.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.3.1`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MoreRONN.md b/docs/version-specific/supported-software/m/MoreRONN.md index c58092759..02dffefd8 100644 --- a/docs/version-specific/supported-software/m/MoreRONN.md +++ b/docs/version-specific/supported-software/m/MoreRONN.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.9`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Mothur.md b/docs/version-specific/supported-software/m/Mothur.md index 9108459fe..296f2007d 100644 --- a/docs/version-specific/supported-software/m/Mothur.md +++ b/docs/version-specific/supported-software/m/Mothur.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.41.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.43.0`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MotionCor2.md b/docs/version-specific/supported-software/m/MotionCor2.md index 3733d50aa..361dc103e 100644 --- a/docs/version-specific/supported-software/m/MotionCor2.md +++ b/docs/version-specific/supported-software/m/MotionCor2.md @@ -18,5 +18,6 @@ version | toolchain ``1.4.4`` | ``GCCcore/10.3.0`` ``1.5.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MotionCor3.md b/docs/version-specific/supported-software/m/MotionCor3.md index e3d4057af..edc01bd01 100644 --- a/docs/version-specific/supported-software/m/MotionCor3.md +++ b/docs/version-specific/supported-software/m/MotionCor3.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MoviePy.md b/docs/version-specific/supported-software/m/MoviePy.md index 66ba5e80a..fa0ef4d7d 100644 --- a/docs/version-specific/supported-software/m/MoviePy.md +++ b/docs/version-specific/supported-software/m/MoviePy.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.3`` | | ``foss/2021a`` ``1.0.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MrBayes.md b/docs/version-specific/supported-software/m/MrBayes.md index 5c1e230f5..47483784c 100644 --- a/docs/version-specific/supported-software/m/MrBayes.md +++ b/docs/version-specific/supported-software/m/MrBayes.md @@ -19,5 +19,6 @@ version | toolchain ``3.2.7a`` | ``foss/2020a`` ``3.2.7a`` | ``iimpi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MuJoCo.md b/docs/version-specific/supported-software/m/MuJoCo.md index ebd5a359e..aac267648 100644 --- a/docs/version-specific/supported-software/m/MuJoCo.md +++ b/docs/version-specific/supported-software/m/MuJoCo.md @@ -14,5 +14,6 @@ version | toolchain ``2.2.2`` | ``GCCcore/11.3.0`` ``3.1.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MuPeXI.md b/docs/version-specific/supported-software/m/MuPeXI.md index bc5d96f5f..3f4a949e5 100644 --- a/docs/version-specific/supported-software/m/MuPeXI.md +++ b/docs/version-specific/supported-software/m/MuPeXI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.0`` | ``-Perl-5.28.0-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MuSiC.md b/docs/version-specific/supported-software/m/MuSiC.md index 6caa42631..7bfeee4ea 100644 --- a/docs/version-specific/supported-software/m/MuSiC.md +++ b/docs/version-specific/supported-software/m/MuSiC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MuTect.md b/docs/version-specific/supported-software/m/MuTect.md index 625714c27..db05e8607 100644 --- a/docs/version-specific/supported-software/m/MuTect.md +++ b/docs/version-specific/supported-software/m/MuTect.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.1.4`` | ``-Java-1.7.0_80`` | ``system`` ``1.1.7`` | ``-Java-1.7.0_80`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MultiNest.md b/docs/version-specific/supported-software/m/MultiNest.md index 565abc28d..7a58b3875 100644 --- a/docs/version-specific/supported-software/m/MultiNest.md +++ b/docs/version-specific/supported-software/m/MultiNest.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.10`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MultiQC.md b/docs/version-specific/supported-software/m/MultiQC.md index a8fb85a08..cc10184aa 100644 --- a/docs/version-specific/supported-software/m/MultiQC.md +++ b/docs/version-specific/supported-software/m/MultiQC.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``1.9`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.9`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MultilevelEstimators.md b/docs/version-specific/supported-software/m/MultilevelEstimators.md index aedf486d2..815099fb2 100644 --- a/docs/version-specific/supported-software/m/MultilevelEstimators.md +++ b/docs/version-specific/supported-software/m/MultilevelEstimators.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0`` | ``-Julia-1.7.2`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Multiwfn.md b/docs/version-specific/supported-software/m/Multiwfn.md index 532d016b4..760afcc58 100644 --- a/docs/version-specific/supported-software/m/Multiwfn.md +++ b/docs/version-specific/supported-software/m/Multiwfn.md @@ -14,5 +14,6 @@ version | toolchain ``3.6`` | ``intel/2019a`` ``3.6`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MyCC.md b/docs/version-specific/supported-software/m/MyCC.md index bd11eab6d..b2ae516ce 100644 --- a/docs/version-specific/supported-software/m/MyCC.md +++ b/docs/version-specific/supported-software/m/MyCC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2017-03-01`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MyMediaLite.md b/docs/version-specific/supported-software/m/MyMediaLite.md index bf0870215..c29b03484 100644 --- a/docs/version-specific/supported-software/m/MyMediaLite.md +++ b/docs/version-specific/supported-software/m/MyMediaLite.md @@ -14,5 +14,6 @@ version | toolchain ``3.11`` | ``intel/2016b`` ``3.12`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index faf7a5fb9..e51e80b7d 100644 --- a/docs/version-specific/supported-software/m/MySQL-python.md +++ b/docs/version-specific/supported-software/m/MySQL-python.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/MySQL.md b/docs/version-specific/supported-software/m/MySQL.md index e12316e2f..024cc0543 100644 --- a/docs/version-specific/supported-software/m/MySQL.md +++ b/docs/version-specific/supported-software/m/MySQL.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.6.26`` | ``-clientonly`` | ``GNU/4.9.3-2.25`` ``5.7.21`` | ``-clientonly`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/Myokit.md b/docs/version-specific/supported-software/m/Myokit.md index f96b2181c..f0a53135b 100644 --- a/docs/version-specific/supported-software/m/Myokit.md +++ b/docs/version-specific/supported-software/m/Myokit.md @@ -13,5 +13,6 @@ version | toolchain ``1.32.0`` | ``foss/2020b`` ``1.32.0`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/index.md b/docs/version-specific/supported-software/m/index.md index 46551ec0c..2fc9d1ed4 100644 --- a/docs/version-specific/supported-software/m/index.md +++ b/docs/version-specific/supported-software/m/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (m) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../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) @@ -278,3 +280,7 @@ search: * [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 index 0b0d73d8f..f76ff2571 100644 --- a/docs/version-specific/supported-software/m/m4ri.md +++ b/docs/version-specific/supported-software/m/m4ri.md @@ -13,5 +13,6 @@ version | toolchain ``20200125`` | ``GCC/11.3.0`` ``20200125`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/m4rie.md b/docs/version-specific/supported-software/m/m4rie.md index f95855e6e..9aa8bf3ff 100644 --- a/docs/version-specific/supported-software/m/m4rie.md +++ b/docs/version-specific/supported-software/m/m4rie.md @@ -13,5 +13,6 @@ version | toolchain ``20200125`` | ``GCC/11.3.0`` ``20200125`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/maeparser.md b/docs/version-specific/supported-software/m/maeparser.md index 3e51e432f..9c525c22f 100644 --- a/docs/version-specific/supported-software/m/maeparser.md +++ b/docs/version-specific/supported-software/m/maeparser.md @@ -18,5 +18,6 @@ version | toolchain ``1.3.0`` | ``iimpi/2020a`` ``1.3.1`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/magick.md b/docs/version-specific/supported-software/m/magick.md index 0df7f7995..9a3ef986e 100644 --- a/docs/version-specific/supported-software/m/magick.md +++ b/docs/version-specific/supported-software/m/magick.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/magma.md b/docs/version-specific/supported-software/m/magma.md index 5e9ffa115..f9e894e7a 100644 --- a/docs/version-specific/supported-software/m/magma.md +++ b/docs/version-specific/supported-software/m/magma.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``2.7.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.7.2`` | ``-CUDA-12.4.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mahotas.md b/docs/version-specific/supported-software/m/mahotas.md index df4893713..9417b1bac 100644 --- a/docs/version-specific/supported-software/m/mahotas.md +++ b/docs/version-specific/supported-software/m/mahotas.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4.13`` | | ``foss/2022a`` ``1.4.3`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/make.md b/docs/version-specific/supported-software/m/make.md index b48c811f5..a5ab9f328 100644 --- a/docs/version-specific/supported-software/m/make.md +++ b/docs/version-specific/supported-software/m/make.md @@ -25,5 +25,6 @@ version | toolchain ``4.4.1`` | ``GCCcore/13.2.0`` ``4.4.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/makedepend.md b/docs/version-specific/supported-software/m/makedepend.md index 3860076de..dcee11d74 100644 --- a/docs/version-specific/supported-software/m/makedepend.md +++ b/docs/version-specific/supported-software/m/makedepend.md @@ -23,5 +23,6 @@ version | toolchain ``1.0.7`` | ``GCCcore/11.3.0`` ``1.0.7`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/makedepf90.md b/docs/version-specific/supported-software/m/makedepf90.md index 0b21a33e1..d203ca589 100644 --- a/docs/version-specific/supported-software/m/makedepf90.md +++ b/docs/version-specific/supported-software/m/makedepf90.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.8`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/makefun.md b/docs/version-specific/supported-software/m/makefun.md index 7b6c295be..72510d901 100644 --- a/docs/version-specific/supported-software/m/makefun.md +++ b/docs/version-specific/supported-software/m/makefun.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.15.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/makeinfo.md b/docs/version-specific/supported-software/m/makeinfo.md index ea391f91f..204058f2e 100644 --- a/docs/version-specific/supported-software/m/makeinfo.md +++ b/docs/version-specific/supported-software/m/makeinfo.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``7.1`` | | ``GCCcore/13.2.0`` ``7.1`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mandrake.md b/docs/version-specific/supported-software/m/mandrake.md index ed62ce5a3..74a653b49 100644 --- a/docs/version-specific/supported-software/m/mandrake.md +++ b/docs/version-specific/supported-software/m/mandrake.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mannkendall.md b/docs/version-specific/supported-software/m/mannkendall.md index c2cc1fd11..b2abe8ad8 100644 --- a/docs/version-specific/supported-software/m/mannkendall.md +++ b/docs/version-specific/supported-software/m/mannkendall.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/manta.md b/docs/version-specific/supported-software/m/manta.md index 3440a690c..54dd19825 100644 --- a/docs/version-specific/supported-software/m/manta.md +++ b/docs/version-specific/supported-software/m/manta.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-2.7.18`` | ``gompi/2020a`` ``1.6.0`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mapDamage.md b/docs/version-specific/supported-software/m/mapDamage.md index 5a50a59d0..4c7b44091 100644 --- a/docs/version-specific/supported-software/m/mapDamage.md +++ b/docs/version-specific/supported-software/m/mapDamage.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.2.1`` | | ``foss/2021b`` ``2.2.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1beb05338..f67b3e8d4 100644 --- a/docs/version-specific/supported-software/m/matlab-proxy.md +++ b/docs/version-specific/supported-software/m/matlab-proxy.md @@ -13,5 +13,6 @@ version | toolchain ``0.18.1`` | ``GCCcore/12.3.0`` ``0.5.4`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f77f52082..daadb4904 100644 --- a/docs/version-specific/supported-software/m/matplotlib-inline.md +++ b/docs/version-specific/supported-software/m/matplotlib-inline.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.3`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/matplotlib.md b/docs/version-specific/supported-software/m/matplotlib.md index 114e0c5f8..9d7839663 100644 --- a/docs/version-specific/supported-software/m/matplotlib.md +++ b/docs/version-specific/supported-software/m/matplotlib.md @@ -107,5 +107,6 @@ version | versionsuffix | toolchain ``3.7.2`` | | ``iimkl/2023a`` ``3.8.2`` | | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/maturin.md b/docs/version-specific/supported-software/m/maturin.md index f1917dd46..4c08650cb 100644 --- a/docs/version-specific/supported-software/m/maturin.md +++ b/docs/version-specific/supported-software/m/maturin.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.4.0`` | ``-Rust-1.75.0`` | ``GCCcore/12.3.0`` ``1.5.0`` | ``-Rust-1.76.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mauveAligner.md b/docs/version-specific/supported-software/m/mauveAligner.md index 43fdc4b04..55b1ba51f 100644 --- a/docs/version-specific/supported-software/m/mauveAligner.md +++ b/docs/version-specific/supported-software/m/mauveAligner.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4736`` | ``gompi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mawk.md b/docs/version-specific/supported-software/m/mawk.md index 2a0f17fbe..6454d9c71 100644 --- a/docs/version-specific/supported-software/m/mawk.md +++ b/docs/version-specific/supported-software/m/mawk.md @@ -18,5 +18,6 @@ version | toolchain ``1.3.4-20171017`` | ``intel/2018b`` ``1.3.4-20171017`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mayavi.md b/docs/version-specific/supported-software/m/mayavi.md index eddfb9327..4bd6f17c6 100644 --- a/docs/version-specific/supported-software/m/mayavi.md +++ b/docs/version-specific/supported-software/m/mayavi.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``4.7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` ``4.7.4`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/maze.md b/docs/version-specific/supported-software/m/maze.md index 5fa228384..1edc3c5b4 100644 --- a/docs/version-specific/supported-software/m/maze.md +++ b/docs/version-specific/supported-software/m/maze.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20170124`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mbuffer.md b/docs/version-specific/supported-software/m/mbuffer.md index 807eace4e..111a5a7b7 100644 --- a/docs/version-specific/supported-software/m/mbuffer.md +++ b/docs/version-specific/supported-software/m/mbuffer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20191016`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mc.md b/docs/version-specific/supported-software/m/mc.md index c075ac9d9..9dd373b34 100644 --- a/docs/version-specific/supported-software/m/mc.md +++ b/docs/version-specific/supported-software/m/mc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.8.13`` | ``GCC/4.9.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3bce95d12..39d6a2881 100644 --- a/docs/version-specific/supported-software/m/mctc-lib.md +++ b/docs/version-specific/supported-software/m/mctc-lib.md @@ -15,5 +15,6 @@ version | toolchain ``0.3.1`` | ``intel-compilers/2022.1.0`` ``0.3.1`` | ``intel-compilers/2022.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mcu.md b/docs/version-specific/supported-software/m/mcu.md index 4f0028e83..f84a7369e 100644 --- a/docs/version-specific/supported-software/m/mcu.md +++ b/docs/version-specific/supported-software/m/mcu.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2021-04-06`` | ``gomkl/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mdtest.md b/docs/version-specific/supported-software/m/mdtest.md index bfcb5539a..38b327b7c 100644 --- a/docs/version-specific/supported-software/m/mdtest.md +++ b/docs/version-specific/supported-software/m/mdtest.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.9.3`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mdust.md b/docs/version-specific/supported-software/m/mdust.md index 224e36417..54efe4c67 100644 --- a/docs/version-specific/supported-software/m/mdust.md +++ b/docs/version-specific/supported-software/m/mdust.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20150102`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/meRanTK.md b/docs/version-specific/supported-software/m/meRanTK.md index 81aef3816..8f654e053 100644 --- a/docs/version-specific/supported-software/m/meRanTK.md +++ b/docs/version-specific/supported-software/m/meRanTK.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/meboot.md b/docs/version-specific/supported-software/m/meboot.md index bd2d205b9..4130b3eeb 100644 --- a/docs/version-specific/supported-software/m/meboot.md +++ b/docs/version-specific/supported-software/m/meboot.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4-9.2`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/medImgProc.md b/docs/version-specific/supported-software/m/medImgProc.md index 42bde229d..ba00e804f 100644 --- a/docs/version-specific/supported-software/m/medImgProc.md +++ b/docs/version-specific/supported-software/m/medImgProc.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.5.7`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/medaka.md b/docs/version-specific/supported-software/m/medaka.md index 3a83d7eb1..a1b4d4675 100644 --- a/docs/version-specific/supported-software/m/medaka.md +++ b/docs/version-specific/supported-software/m/medaka.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``1.9.1`` | | ``foss/2022a`` ``1.9.1`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/memkind.md b/docs/version-specific/supported-software/m/memkind.md index 0eb30f1c0..8b0c0d576 100644 --- a/docs/version-specific/supported-software/m/memkind.md +++ b/docs/version-specific/supported-software/m/memkind.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.0`` | ``GCCcore/5.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d09914bd2..e7824bb82 100644 --- a/docs/version-specific/supported-software/m/memory-profiler.md +++ b/docs/version-specific/supported-software/m/memory-profiler.md @@ -13,5 +13,6 @@ version | toolchain ``0.55.0`` | ``foss/2019a`` ``0.55.0`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/memtester.md b/docs/version-specific/supported-software/m/memtester.md index a9ef7d59a..0439f8470 100644 --- a/docs/version-specific/supported-software/m/memtester.md +++ b/docs/version-specific/supported-software/m/memtester.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/meshalyzer.md b/docs/version-specific/supported-software/m/meshalyzer.md index 686d9d82d..6e846f670 100644 --- a/docs/version-specific/supported-software/m/meshalyzer.md +++ b/docs/version-specific/supported-software/m/meshalyzer.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.2`` | | ``foss/2020b`` ``20200308`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/meshio.md b/docs/version-specific/supported-software/m/meshio.md index 7f5074134..f68395bc2 100644 --- a/docs/version-specific/supported-software/m/meshio.md +++ b/docs/version-specific/supported-software/m/meshio.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.0.2`` | ``-Python-3.6.4`` | ``intel/2018a`` ``5.3.4`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/meshtool.md b/docs/version-specific/supported-software/m/meshtool.md index 1a0310cb9..d61327312 100644 --- a/docs/version-specific/supported-software/m/meshtool.md +++ b/docs/version-specific/supported-software/m/meshtool.md @@ -13,5 +13,6 @@ version | toolchain ``16`` | ``GCC/10.2.0`` ``16`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8cdc6fcc3..c7ac42b64 100644 --- a/docs/version-specific/supported-software/m/meson-python.md +++ b/docs/version-specific/supported-software/m/meson-python.md @@ -15,5 +15,6 @@ version | toolchain ``0.15.0`` | ``GCCcore/12.3.0`` ``0.15.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/metaWRAP.md b/docs/version-specific/supported-software/m/metaWRAP.md index 02ae6d8e3..29c2c7beb 100644 --- a/docs/version-specific/supported-software/m/metaWRAP.md +++ b/docs/version-specific/supported-software/m/metaWRAP.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.2.2`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.3`` | ``-Python-2.7.18`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/metaerg.md b/docs/version-specific/supported-software/m/metaerg.md index 945450d43..e68bac2ba 100644 --- a/docs/version-specific/supported-software/m/metaerg.md +++ b/docs/version-specific/supported-software/m/metaerg.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.3`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/methylartist.md b/docs/version-specific/supported-software/m/methylartist.md index fd4c172ab..42256ca32 100644 --- a/docs/version-specific/supported-software/m/methylartist.md +++ b/docs/version-specific/supported-software/m/methylartist.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.6`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/methylpy.md b/docs/version-specific/supported-software/m/methylpy.md index 0024ba320..ea2a3e532 100644 --- a/docs/version-specific/supported-software/m/methylpy.md +++ b/docs/version-specific/supported-software/m/methylpy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.9`` | ``-Python-2.7.13`` | ``foss/2017a`` ``1.2.9`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mfqe.md b/docs/version-specific/supported-software/m/mfqe.md index a80c1d742..f96ce46e4 100644 --- a/docs/version-specific/supported-software/m/mfqe.md +++ b/docs/version-specific/supported-software/m/mfqe.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mgen.md b/docs/version-specific/supported-software/m/mgen.md index be17a0e06..6cbe99b89 100644 --- a/docs/version-specific/supported-software/m/mgen.md +++ b/docs/version-specific/supported-software/m/mgen.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mgltools.md b/docs/version-specific/supported-software/m/mgltools.md index 89b3f67b6..d419e5e24 100644 --- a/docs/version-specific/supported-software/m/mgltools.md +++ b/docs/version-specific/supported-software/m/mgltools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.7`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mhcflurry.md b/docs/version-specific/supported-software/m/mhcflurry.md index ab56bfb5c..4424c641a 100644 --- a/docs/version-specific/supported-software/m/mhcflurry.md +++ b/docs/version-specific/supported-software/m/mhcflurry.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.4`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.2.4`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mhcnuggets.md b/docs/version-specific/supported-software/m/mhcnuggets.md index e8cfc6b5f..4e555a90a 100644 --- a/docs/version-specific/supported-software/m/mhcnuggets.md +++ b/docs/version-specific/supported-software/m/mhcnuggets.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` ``2.3`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/miRDeep2.md b/docs/version-specific/supported-software/m/miRDeep2.md index 78d1c6746..ef06dbde2 100644 --- a/docs/version-specific/supported-software/m/miRDeep2.md +++ b/docs/version-specific/supported-software/m/miRDeep2.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` ``2.0.0.8`` | | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/microctools.md b/docs/version-specific/supported-software/m/microctools.md index 246b3c1ae..c0233427f 100644 --- a/docs/version-specific/supported-software/m/microctools.md +++ b/docs/version-specific/supported-software/m/microctools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20201209`` | ``-R-4.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mimalloc.md b/docs/version-specific/supported-software/m/mimalloc.md index ea4c2b5e1..15c013691 100644 --- a/docs/version-specific/supported-software/m/mimalloc.md +++ b/docs/version-specific/supported-software/m/mimalloc.md @@ -13,5 +13,6 @@ version | toolchain ``1.7.2`` | ``GCCcore/10.3.0`` ``1.7.2`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/miniasm.md b/docs/version-specific/supported-software/m/miniasm.md index 48fc03f69..67768b9e2 100644 --- a/docs/version-specific/supported-software/m/miniasm.md +++ b/docs/version-specific/supported-software/m/miniasm.md @@ -13,5 +13,6 @@ version | toolchain ``0.3-20191007`` | ``GCCcore/10.3.0`` ``0.3-20191007`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/minibar.md b/docs/version-specific/supported-software/m/minibar.md index bb5ca3640..4ba07246e 100644 --- a/docs/version-specific/supported-software/m/minibar.md +++ b/docs/version-specific/supported-software/m/minibar.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20200326`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` ``20200326`` | ``-Python-3.8.2`` | ``iccifort/2020.1.217`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/minieigen.md b/docs/version-specific/supported-software/m/minieigen.md index 558dbd618..31749fe6e 100644 --- a/docs/version-specific/supported-software/m/minieigen.md +++ b/docs/version-specific/supported-software/m/minieigen.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.5.3`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.5.4`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/minimap2.md b/docs/version-specific/supported-software/m/minimap2.md index f4a35eb01..d2aca80c6 100644 --- a/docs/version-specific/supported-software/m/minimap2.md +++ b/docs/version-specific/supported-software/m/minimap2.md @@ -27,5 +27,6 @@ version | toolchain ``2.26`` | ``GCCcore/12.2.0`` ``2.26`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/minizip.md b/docs/version-specific/supported-software/m/minizip.md index 61bc796e3..09bf1ef7f 100644 --- a/docs/version-specific/supported-software/m/minizip.md +++ b/docs/version-specific/supported-software/m/minizip.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/misha.md b/docs/version-specific/supported-software/m/misha.md index d26aa2ec3..2ec440f07 100644 --- a/docs/version-specific/supported-software/m/misha.md +++ b/docs/version-specific/supported-software/m/misha.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0.10`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2d579d965..dcb7bd548 100644 --- a/docs/version-specific/supported-software/m/mkl-dnn.md +++ b/docs/version-specific/supported-software/m/mkl-dnn.md @@ -16,5 +16,6 @@ version | toolchain ``0.16`` | ``intel/2018b`` ``0.17.2`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ce5a72717..a5642a8dc 100644 --- a/docs/version-specific/supported-software/m/mkl-service.md +++ b/docs/version-specific/supported-software/m/mkl-service.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``intel/2020b`` ``2.3.0`` | | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 04cdabb72..8a4624e06 100644 --- a/docs/version-specific/supported-software/m/mkl_fft.md +++ b/docs/version-specific/supported-software/m/mkl_fft.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.14`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a7be9ff88..8cd58ca94 100644 --- a/docs/version-specific/supported-software/m/ml-collections.md +++ b/docs/version-specific/supported-software/m/ml-collections.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 30465c32c..a3cf9599a 100644 --- a/docs/version-specific/supported-software/m/ml_dtypes.md +++ b/docs/version-specific/supported-software/m/ml_dtypes.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mlpack.md b/docs/version-specific/supported-software/m/mlpack.md index a5d601fa4..f07ec3d4d 100644 --- a/docs/version-specific/supported-software/m/mlpack.md +++ b/docs/version-specific/supported-software/m/mlpack.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 31143a9dc..077384b44 100644 --- a/docs/version-specific/supported-software/m/mm-common.md +++ b/docs/version-specific/supported-software/m/mm-common.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.4`` | ``GCCcore/10.3.0`` ``1.0.5`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a9a37b6ea..2d9c6e887 100644 --- a/docs/version-specific/supported-software/m/mmtf-cpp.md +++ b/docs/version-specific/supported-software/m/mmtf-cpp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/modred.md b/docs/version-specific/supported-software/m/modred.md index 7c65d175d..72482d17d 100644 --- a/docs/version-specific/supported-software/m/modred.md +++ b/docs/version-specific/supported-software/m/modred.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.2`` | ``-Python-3.5.2`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mold.md b/docs/version-specific/supported-software/m/mold.md index ed90cd764..9363a0070 100644 --- a/docs/version-specific/supported-software/m/mold.md +++ b/docs/version-specific/supported-software/m/mold.md @@ -19,5 +19,6 @@ version | toolchain ``2.3.1`` | ``GCCcore/13.2.0`` ``2.31.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/molecularGSM.md b/docs/version-specific/supported-software/m/molecularGSM.md index 3e05423e4..502ea57d8 100644 --- a/docs/version-specific/supported-software/m/molecularGSM.md +++ b/docs/version-specific/supported-software/m/molecularGSM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20190826`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/molmod.md b/docs/version-specific/supported-software/m/molmod.md index 99f38dbe2..9d8cb5ba6 100644 --- a/docs/version-specific/supported-software/m/molmod.md +++ b/docs/version-specific/supported-software/m/molmod.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``1.4.8`` | | ``foss/2021b`` ``1.4.8`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mongolite.md b/docs/version-specific/supported-software/m/mongolite.md index 0818a7158..f933307fd 100644 --- a/docs/version-specific/supported-software/m/mongolite.md +++ b/docs/version-specific/supported-software/m/mongolite.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.3.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``2.3.0`` | ``-R-4.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/moonjit.md b/docs/version-specific/supported-software/m/moonjit.md index 4a085e32c..41cd409d0 100644 --- a/docs/version-specific/supported-software/m/moonjit.md +++ b/docs/version-specific/supported-software/m/moonjit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mordecai.md b/docs/version-specific/supported-software/m/mordecai.md index 46a10e91b..f31730638 100644 --- a/docs/version-specific/supported-software/m/mordecai.md +++ b/docs/version-specific/supported-software/m/mordecai.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.1`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/morphosamplers.md b/docs/version-specific/supported-software/m/morphosamplers.md index eff271b3d..5a5a22d8f 100644 --- a/docs/version-specific/supported-software/m/morphosamplers.md +++ b/docs/version-specific/supported-software/m/morphosamplers.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.10`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mosdepth.md b/docs/version-specific/supported-software/m/mosdepth.md index c45890f76..91f5f4aca 100644 --- a/docs/version-specific/supported-software/m/mosdepth.md +++ b/docs/version-specific/supported-software/m/mosdepth.md @@ -15,5 +15,6 @@ version | toolchain ``0.2.4`` | ``foss/2018b`` ``0.3.3`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/motif.md b/docs/version-specific/supported-software/m/motif.md index 676045ad2..56de1bbc0 100644 --- a/docs/version-specific/supported-software/m/motif.md +++ b/docs/version-specific/supported-software/m/motif.md @@ -29,5 +29,6 @@ version | toolchain ``2.3.8`` | ``intel/2018a`` ``2.3.8`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/motionSegmentation.md b/docs/version-specific/supported-software/m/motionSegmentation.md index 3f7f6ccb2..f4e708c09 100644 --- a/docs/version-specific/supported-software/m/motionSegmentation.md +++ b/docs/version-specific/supported-software/m/motionSegmentation.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.7.9`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mpath.md b/docs/version-specific/supported-software/m/mpath.md index d585f5e8b..b09c526ce 100644 --- a/docs/version-specific/supported-software/m/mpath.md +++ b/docs/version-specific/supported-software/m/mpath.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.3`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mpi4py.md b/docs/version-specific/supported-software/m/mpi4py.md index 328d5a748..d7626af17 100644 --- a/docs/version-specific/supported-software/m/mpi4py.md +++ b/docs/version-specific/supported-software/m/mpi4py.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``3.1.4`` | | ``gompi/2023a`` ``3.1.5`` | | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mpiP.md b/docs/version-specific/supported-software/m/mpiP.md index b99fd8806..ff01d1d58 100644 --- a/docs/version-specific/supported-software/m/mpiP.md +++ b/docs/version-specific/supported-software/m/mpiP.md @@ -14,5 +14,6 @@ version | toolchain ``3.4.1`` | ``iimpi/2019a`` ``3.4.1`` | ``iompi/2019.01`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mpifileutils.md b/docs/version-specific/supported-software/m/mpifileutils.md index 07bdca1b1..16940a7e8 100644 --- a/docs/version-specific/supported-software/m/mpifileutils.md +++ b/docs/version-specific/supported-software/m/mpifileutils.md @@ -18,5 +18,6 @@ version | toolchain ``0.9.1`` | ``gompi/2019a`` ``0.9.1`` | ``iimpi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mpmath.md b/docs/version-specific/supported-software/m/mpmath.md index b24ec554d..9e45bc635 100644 --- a/docs/version-specific/supported-software/m/mpmath.md +++ b/docs/version-specific/supported-software/m/mpmath.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``1.2.1`` | | ``GCCcore/11.3.0`` ``1.3.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mrcfile.md b/docs/version-specific/supported-software/m/mrcfile.md index b4c2377f4..fd21062bf 100644 --- a/docs/version-specific/supported-software/m/mrcfile.md +++ b/docs/version-specific/supported-software/m/mrcfile.md @@ -16,5 +16,6 @@ version | toolchain ``1.4.3`` | ``foss/2022a`` ``1.5.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fb94e2ce0..c30d3beb4 100644 --- a/docs/version-specific/supported-software/m/msgpack-c.md +++ b/docs/version-specific/supported-software/m/msgpack-c.md @@ -13,5 +13,6 @@ version | toolchain ``3.3.0`` | ``GCCcore/10.2.0`` ``6.0.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/msprime.md b/docs/version-specific/supported-software/m/msprime.md index 87c82c2cc..0e5e87c8e 100644 --- a/docs/version-specific/supported-software/m/msprime.md +++ b/docs/version-specific/supported-software/m/msprime.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.2.0`` | | ``foss/2021b`` ``1.2.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mstore.md b/docs/version-specific/supported-software/m/mstore.md index 1573c3755..2ba2b863c 100644 --- a/docs/version-specific/supported-software/m/mstore.md +++ b/docs/version-specific/supported-software/m/mstore.md @@ -16,5 +16,6 @@ version | toolchain ``0.2.0`` | ``intel-compilers/2022.1.0`` ``0.2.0`` | ``intel-compilers/2022.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/muMerge.md b/docs/version-specific/supported-software/m/muMerge.md index 335e5ed44..80746ba84 100644 --- a/docs/version-specific/supported-software/m/muMerge.md +++ b/docs/version-specific/supported-software/m/muMerge.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/muParser.md b/docs/version-specific/supported-software/m/muParser.md index 7526e0064..e8d3d8807 100644 --- a/docs/version-specific/supported-software/m/muParser.md +++ b/docs/version-specific/supported-software/m/muParser.md @@ -17,5 +17,6 @@ version | toolchain ``2.3.4`` | ``GCCcore/11.3.0`` ``2.3.4`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c4ce39531..9438b5e18 100644 --- a/docs/version-specific/supported-software/m/mujoco-py.md +++ b/docs/version-specific/supported-software/m/mujoco-py.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.2.14`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/multicharge.md b/docs/version-specific/supported-software/m/multicharge.md index 1760be56e..3c9198789 100644 --- a/docs/version-specific/supported-software/m/multicharge.md +++ b/docs/version-specific/supported-software/m/multicharge.md @@ -14,5 +14,6 @@ version | toolchain ``0.2.0`` | ``iimkl/2022a`` ``0.2.0`` | ``iimkl/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/multichoose.md b/docs/version-specific/supported-software/m/multichoose.md index 650d9c707..5b66751bd 100644 --- a/docs/version-specific/supported-software/m/multichoose.md +++ b/docs/version-specific/supported-software/m/multichoose.md @@ -17,5 +17,6 @@ version | toolchain ``1.0.3`` | ``GCCcore/12.3.0`` ``1.0.3`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/multiprocess.md b/docs/version-specific/supported-software/m/multiprocess.md index e863d491f..c3497b656 100644 --- a/docs/version-specific/supported-software/m/multiprocess.md +++ b/docs/version-specific/supported-software/m/multiprocess.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.70.15`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mumott.md b/docs/version-specific/supported-software/m/mumott.md index 7c745e426..bfaa792a0 100644 --- a/docs/version-specific/supported-software/m/mumott.md +++ b/docs/version-specific/supported-software/m/mumott.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/muparserx.md b/docs/version-specific/supported-software/m/muparserx.md index 5a82c984c..e228cb544 100644 --- a/docs/version-specific/supported-software/m/muparserx.md +++ b/docs/version-specific/supported-software/m/muparserx.md @@ -13,5 +13,6 @@ version | toolchain ``4.0.8`` | ``GCCcore/10.3.0`` ``4.0.8`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mutil.md b/docs/version-specific/supported-software/m/mutil.md index db2ac45a7..9b1711498 100644 --- a/docs/version-specific/supported-software/m/mutil.md +++ b/docs/version-specific/supported-software/m/mutil.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.822.3`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mxml.md b/docs/version-specific/supported-software/m/mxml.md index 4ab762fcd..97ad16fce 100644 --- a/docs/version-specific/supported-software/m/mxml.md +++ b/docs/version-specific/supported-software/m/mxml.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.2`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mxmlplus.md b/docs/version-specific/supported-software/m/mxmlplus.md index 01da952b8..b0c8ccb57 100644 --- a/docs/version-specific/supported-software/m/mxmlplus.md +++ b/docs/version-specific/supported-software/m/mxmlplus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.2`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mygene.md b/docs/version-specific/supported-software/m/mygene.md index f53dfa97b..12f502cc9 100644 --- a/docs/version-specific/supported-software/m/mygene.md +++ b/docs/version-specific/supported-software/m/mygene.md @@ -14,5 +14,6 @@ version | toolchain ``3.2.2`` | ``foss/2022a`` ``3.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mympingpong.md b/docs/version-specific/supported-software/m/mympingpong.md index b48a0dc99..1547912f2 100644 --- a/docs/version-specific/supported-software/m/mympingpong.md +++ b/docs/version-specific/supported-software/m/mympingpong.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.8.0`` | ``-Python-2.7.14`` | ``intel/2018a`` ``0.8.0`` | ``-Python-2.7.15`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mypy.md b/docs/version-specific/supported-software/m/mypy.md index 4c66c6459..4c451a20c 100644 --- a/docs/version-specific/supported-software/m/mypy.md +++ b/docs/version-specific/supported-software/m/mypy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.5`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/m/mysqlclient.md b/docs/version-specific/supported-software/m/mysqlclient.md index 2d78aec0a..48b52e2ef 100644 --- a/docs/version-specific/supported-software/m/mysqlclient.md +++ b/docs/version-specific/supported-software/m/mysqlclient.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.3.7`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.3.7`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NAG.md b/docs/version-specific/supported-software/n/NAG.md index 4ad4d1ac5..2b42b844e 100644 --- a/docs/version-specific/supported-software/n/NAG.md +++ b/docs/version-specific/supported-software/n/NAG.md @@ -15,5 +15,6 @@ version | toolchain ``26`` | ``intel/2018a`` ``7.1`` | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NAGfor.md b/docs/version-specific/supported-software/n/NAGfor.md index 3418a9d20..dc850b020 100644 --- a/docs/version-specific/supported-software/n/NAGfor.md +++ b/docs/version-specific/supported-software/n/NAGfor.md @@ -13,5 +13,6 @@ version | toolchain ``6.2.14`` | ``system`` ``7.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NAMD.md b/docs/version-specific/supported-software/n/NAMD.md index 967ec4be9..b954e9be0 100644 --- a/docs/version-specific/supported-software/n/NAMD.md +++ b/docs/version-specific/supported-software/n/NAMD.md @@ -31,5 +31,6 @@ version | versionsuffix | toolchain ``2.14`` | | ``fosscuda/2020b`` ``2.14`` | ``-mpi`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NASM.md b/docs/version-specific/supported-software/n/NASM.md index c25a68e93..d55df4fba 100644 --- a/docs/version-specific/supported-software/n/NASM.md +++ b/docs/version-specific/supported-software/n/NASM.md @@ -38,5 +38,6 @@ version | toolchain ``2.16.01`` | ``GCCcore/13.2.0`` ``2.16.03`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NBO.md b/docs/version-specific/supported-software/n/NBO.md index 18539d58c..ea1c36096 100644 --- a/docs/version-specific/supported-software/n/NBO.md +++ b/docs/version-specific/supported-software/n/NBO.md @@ -19,5 +19,6 @@ version | toolchain ``7.0.10`` | ``gfbf/2022a`` ``7.0.10`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 58c62ce7a..46fda8175 100644 --- a/docs/version-specific/supported-software/n/NCBI-Toolkit.md +++ b/docs/version-specific/supported-software/n/NCBI-Toolkit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``18.0.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 619f9ccf5..e88a87d9a 100644 --- a/docs/version-specific/supported-software/n/NCCL-tests.md +++ b/docs/version-specific/supported-software/n/NCCL-tests.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0.0`` | | ``gompic/2019b`` ``2.13.6`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NCCL.md b/docs/version-specific/supported-software/n/NCCL.md index 6d6fb1d17..9a80024b3 100644 --- a/docs/version-specific/supported-software/n/NCCL.md +++ b/docs/version-specific/supported-software/n/NCCL.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``2.8.3`` | ``-CUDA-11.0.2`` | ``GCCcore/9.3.0`` ``2.9.9`` | ``-CUDA-11.3.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NCIPLOT.md b/docs/version-specific/supported-software/n/NCIPLOT.md index 9c16da649..b76778f47 100644 --- a/docs/version-specific/supported-software/n/NCIPLOT.md +++ b/docs/version-specific/supported-software/n/NCIPLOT.md @@ -14,5 +14,6 @@ version | toolchain ``4.0-20200106`` | ``iccifort/2019.5.281`` ``4.0-20200624`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NCL.md b/docs/version-specific/supported-software/n/NCL.md index f9b1f4360..db0307e20 100644 --- a/docs/version-specific/supported-software/n/NCL.md +++ b/docs/version-specific/supported-software/n/NCL.md @@ -22,5 +22,6 @@ version | toolchain ``6.6.2`` | ``intel/2019b`` ``6.6.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NCO.md b/docs/version-specific/supported-software/n/NCO.md index e4bb3f15a..458a73f0e 100644 --- a/docs/version-specific/supported-software/n/NCO.md +++ b/docs/version-specific/supported-software/n/NCO.md @@ -31,5 +31,6 @@ version | toolchain ``5.1.3`` | ``foss/2022a`` ``5.1.9`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NECI.md b/docs/version-specific/supported-software/n/NECI.md index 0929ec694..59498bbcc 100644 --- a/docs/version-specific/supported-software/n/NECI.md +++ b/docs/version-specific/supported-software/n/NECI.md @@ -13,5 +13,6 @@ version | toolchain ``20220711`` | ``foss/2022a`` ``20230620`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NEURON.md b/docs/version-specific/supported-software/n/NEURON.md index 81d520a29..b0dd3d562 100644 --- a/docs/version-specific/supported-software/n/NEURON.md +++ b/docs/version-specific/supported-software/n/NEURON.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``7.6.5`` | ``-Python-2.7.15`` | ``intel/2018b`` ``7.8.2`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cbddf05fc..2510a2362 100644 --- a/docs/version-specific/supported-software/n/NEXUS-CL.md +++ b/docs/version-specific/supported-software/n/NEXUS-CL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.18`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NEdit.md b/docs/version-specific/supported-software/n/NEdit.md index df6ba4343..d71d0f5a5 100644 --- a/docs/version-specific/supported-software/n/NEdit.md +++ b/docs/version-specific/supported-software/n/NEdit.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.5`` | ``-Linux-x86`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NFFT.md b/docs/version-specific/supported-software/n/NFFT.md index f916c33c0..9247ba54d 100644 --- a/docs/version-specific/supported-software/n/NFFT.md +++ b/docs/version-specific/supported-software/n/NFFT.md @@ -20,5 +20,6 @@ version | toolchain ``3.5.3`` | ``foss/2022a`` ``3.5.3`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NGLess.md b/docs/version-specific/supported-software/n/NGLess.md index 09b22b6c9..f71bf7412 100644 --- a/docs/version-specific/supported-software/n/NGLess.md +++ b/docs/version-specific/supported-software/n/NGLess.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-static-Linux64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 70f55c9e5..3e9db0e26 100644 --- a/docs/version-specific/supported-software/n/NGS-Python.md +++ b/docs/version-specific/supported-software/n/NGS-Python.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.10.4`` | ``-Python-2.7.16`` | ``gompi/2019b`` ``2.9.3`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NGS.md b/docs/version-specific/supported-software/n/NGS.md index 01219c042..c34a6f2a3 100644 --- a/docs/version-specific/supported-software/n/NGS.md +++ b/docs/version-specific/supported-software/n/NGS.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-Java-1.8.0_162`` | ``intel/2018a`` ``2.9.3`` | ``-Java-1.8`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NGSadmix.md b/docs/version-specific/supported-software/n/NGSadmix.md index 36984b948..3b105139d 100644 --- a/docs/version-specific/supported-software/n/NGSadmix.md +++ b/docs/version-specific/supported-software/n/NGSadmix.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``32`` | ``GCC/7.3.0-2.30`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NGSpeciesID.md b/docs/version-specific/supported-software/n/NGSpeciesID.md index cdfb8f9a6..f0bd1c744 100644 --- a/docs/version-specific/supported-software/n/NGSpeciesID.md +++ b/docs/version-specific/supported-software/n/NGSpeciesID.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.3.0`` | | ``foss/2022b`` ``0.3.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NIMBLE.md b/docs/version-specific/supported-software/n/NIMBLE.md index c15506591..fc41b9670 100644 --- a/docs/version-specific/supported-software/n/NIMBLE.md +++ b/docs/version-specific/supported-software/n/NIMBLE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NIfTI.md b/docs/version-specific/supported-software/n/NIfTI.md index 3c12c2990..0e51c4fb0 100644 --- a/docs/version-specific/supported-software/n/NIfTI.md +++ b/docs/version-specific/supported-software/n/NIfTI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NLMpy.md b/docs/version-specific/supported-software/n/NLMpy.md index 22586bb40..121307a4a 100644 --- a/docs/version-specific/supported-software/n/NLMpy.md +++ b/docs/version-specific/supported-software/n/NLMpy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.5`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NLTK.md b/docs/version-specific/supported-software/n/NLTK.md index 0473d121f..587a578e7 100644 --- a/docs/version-specific/supported-software/n/NLTK.md +++ b/docs/version-specific/supported-software/n/NLTK.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``3.8.1`` | | ``foss/2023a`` ``3.8.1`` | | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NLopt.md b/docs/version-specific/supported-software/n/NLopt.md index 8ea444573..7f7a71931 100644 --- a/docs/version-specific/supported-software/n/NLopt.md +++ b/docs/version-specific/supported-software/n/NLopt.md @@ -33,5 +33,6 @@ version | toolchain ``2.7.1`` | ``GCCcore/12.2.0`` ``2.7.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NOVOPlasty.md b/docs/version-specific/supported-software/n/NOVOPlasty.md index dd92fbad3..427c96d63 100644 --- a/docs/version-specific/supported-software/n/NOVOPlasty.md +++ b/docs/version-specific/supported-software/n/NOVOPlasty.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.7`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NRGLjubljana.md b/docs/version-specific/supported-software/n/NRGLjubljana.md index c93fbdb4a..cb3c6c43a 100644 --- a/docs/version-specific/supported-software/n/NRGLjubljana.md +++ b/docs/version-specific/supported-software/n/NRGLjubljana.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4.3.23`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NSPR.md b/docs/version-specific/supported-software/n/NSPR.md index e7c3a6527..d98e2c682 100644 --- a/docs/version-specific/supported-software/n/NSPR.md +++ b/docs/version-specific/supported-software/n/NSPR.md @@ -23,5 +23,6 @@ version | toolchain ``4.35`` | ``GCCcore/12.3.0`` ``4.35`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NSS.md b/docs/version-specific/supported-software/n/NSS.md index 905e8891f..e0fcfff21 100644 --- a/docs/version-specific/supported-software/n/NSS.md +++ b/docs/version-specific/supported-software/n/NSS.md @@ -23,5 +23,6 @@ version | toolchain ``3.89.1`` | ``GCCcore/12.3.0`` ``3.94`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NTL.md b/docs/version-specific/supported-software/n/NTL.md index c61e00c93..c261c2c22 100644 --- a/docs/version-specific/supported-software/n/NTL.md +++ b/docs/version-specific/supported-software/n/NTL.md @@ -16,5 +16,6 @@ version | toolchain ``11.5.1`` | ``GCC/12.2.0`` ``11.5.1`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NTPoly.md b/docs/version-specific/supported-software/n/NTPoly.md index 9e1dd1a93..defa4dce8 100644 --- a/docs/version-specific/supported-software/n/NTPoly.md +++ b/docs/version-specific/supported-software/n/NTPoly.md @@ -16,5 +16,6 @@ version | toolchain ``2.7.0`` | ``intel/2021a`` ``2.7.1`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NVHPC.md b/docs/version-specific/supported-software/n/NVHPC.md index 60786c052..f91a4b0a9 100644 --- a/docs/version-specific/supported-software/n/NVHPC.md +++ b/docs/version-specific/supported-software/n/NVHPC.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``23.7`` | ``-CUDA-12.2.0`` | ``system`` ``24.1`` | ``-CUDA-12.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NVSHMEM.md b/docs/version-specific/supported-software/n/NVSHMEM.md index 393f956d7..cd26be319 100644 --- a/docs/version-specific/supported-software/n/NVSHMEM.md +++ b/docs/version-specific/supported-software/n/NVSHMEM.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.7.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` ``2.8.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NWChem.md b/docs/version-specific/supported-software/n/NWChem.md index 0c15feb65..dc27a3eba 100644 --- a/docs/version-specific/supported-software/n/NWChem.md +++ b/docs/version-specific/supported-software/n/NWChem.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``7.0.2`` | | ``intel/2022a`` ``7.2.2`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanoCaller.md b/docs/version-specific/supported-software/n/NanoCaller.md index da7b3eefa..534bd5c91 100644 --- a/docs/version-specific/supported-software/n/NanoCaller.md +++ b/docs/version-specific/supported-software/n/NanoCaller.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.4.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanoComp.md b/docs/version-specific/supported-software/n/NanoComp.md index c2b3422a9..b1a8b8ec1 100644 --- a/docs/version-specific/supported-software/n/NanoComp.md +++ b/docs/version-specific/supported-software/n/NanoComp.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.10.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.13.1`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanoFilt.md b/docs/version-specific/supported-software/n/NanoFilt.md index 89ee1d885..130e339ac 100644 --- a/docs/version-specific/supported-software/n/NanoFilt.md +++ b/docs/version-specific/supported-software/n/NanoFilt.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.8.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanoLyse.md b/docs/version-specific/supported-software/n/NanoLyse.md index 91da3f9c4..65df19c47 100644 --- a/docs/version-specific/supported-software/n/NanoLyse.md +++ b/docs/version-specific/supported-software/n/NanoLyse.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanoPlot.md b/docs/version-specific/supported-software/n/NanoPlot.md index 11c075329..55d66ab7e 100644 --- a/docs/version-specific/supported-software/n/NanoPlot.md +++ b/docs/version-specific/supported-software/n/NanoPlot.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.33.0`` | | ``intel/2020b`` ``1.42.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanoStat.md b/docs/version-specific/supported-software/n/NanoStat.md index 20bbdd30e..34bea78fb 100644 --- a/docs/version-specific/supported-software/n/NanoStat.md +++ b/docs/version-specific/supported-software/n/NanoStat.md @@ -13,5 +13,6 @@ version | toolchain ``1.6.0`` | ``foss/2021a`` ``1.6.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NanopolishComp.md b/docs/version-specific/supported-software/n/NanopolishComp.md index d184070dc..71acbea06 100644 --- a/docs/version-specific/supported-software/n/NanopolishComp.md +++ b/docs/version-specific/supported-software/n/NanopolishComp.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.11`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Nek5000.md b/docs/version-specific/supported-software/n/Nek5000.md index e33958710..0025a5f02 100644 --- a/docs/version-specific/supported-software/n/Nek5000.md +++ b/docs/version-specific/supported-software/n/Nek5000.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``17.0`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Nektar++.md b/docs/version-specific/supported-software/n/Nektar++.md index 944ae170e..82b068f70 100644 --- a/docs/version-specific/supported-software/n/Nektar++.md +++ b/docs/version-specific/supported-software/n/Nektar++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index eea78ab81..2028f8805 100644 --- a/docs/version-specific/supported-software/n/Net-core.md +++ b/docs/version-specific/supported-software/n/Net-core.md @@ -14,5 +14,6 @@ version | toolchain ``2.2.5`` | ``system`` ``3.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NetLogo.md b/docs/version-specific/supported-software/n/NetLogo.md index 9ae37c597..e93141506 100644 --- a/docs/version-specific/supported-software/n/NetLogo.md +++ b/docs/version-specific/supported-software/n/NetLogo.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``6.2.2`` | ``-64`` | ``system`` ``6.3.0`` | ``-64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NetPIPE.md b/docs/version-specific/supported-software/n/NetPIPE.md index 22c527b46..3870403a2 100644 --- a/docs/version-specific/supported-software/n/NetPIPE.md +++ b/docs/version-specific/supported-software/n/NetPIPE.md @@ -14,5 +14,6 @@ version | toolchain ``5.1.4`` | ``gompi/2020b`` ``5.1.4`` | ``iimpi/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NetPyNE.md b/docs/version-specific/supported-software/n/NetPyNE.md index 5b9dfd78b..494eb07ad 100644 --- a/docs/version-specific/supported-software/n/NetPyNE.md +++ b/docs/version-specific/supported-software/n/NetPyNE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NeuroKit.md b/docs/version-specific/supported-software/n/NeuroKit.md index f4f4c0f62..eb852498c 100644 --- a/docs/version-specific/supported-software/n/NeuroKit.md +++ b/docs/version-specific/supported-software/n/NeuroKit.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.7`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NewHybrids.md b/docs/version-specific/supported-software/n/NewHybrids.md index 529b72616..1da3c1f60 100644 --- a/docs/version-specific/supported-software/n/NewHybrids.md +++ b/docs/version-specific/supported-software/n/NewHybrids.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1_Beta3`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NextGenMap.md b/docs/version-specific/supported-software/n/NextGenMap.md index 805044419..ff929e59c 100644 --- a/docs/version-specific/supported-software/n/NextGenMap.md +++ b/docs/version-specific/supported-software/n/NextGenMap.md @@ -13,5 +13,6 @@ version | toolchain ``0.5.5`` | ``GCC/11.2.0`` ``0.5.5`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Nextflow.md b/docs/version-specific/supported-software/n/Nextflow.md index ba0ea24ac..e4329ade9 100644 --- a/docs/version-specific/supported-software/n/Nextflow.md +++ b/docs/version-specific/supported-software/n/Nextflow.md @@ -28,5 +28,6 @@ version | toolchain ``23.10.0`` | ``system`` ``24.04.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NiBabel.md b/docs/version-specific/supported-software/n/NiBabel.md index 45c0b5d94..495fe24c8 100644 --- a/docs/version-specific/supported-software/n/NiBabel.md +++ b/docs/version-specific/supported-software/n/NiBabel.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``4.0.2`` | | ``foss/2022a`` ``5.2.0`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Nilearn.md b/docs/version-specific/supported-software/n/Nilearn.md index 0393a75c3..17aa290be 100644 --- a/docs/version-specific/supported-software/n/Nilearn.md +++ b/docs/version-specific/supported-software/n/Nilearn.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.7.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Nim.md b/docs/version-specific/supported-software/n/Nim.md index 3b189f260..c8e187e15 100644 --- a/docs/version-specific/supported-software/n/Nim.md +++ b/docs/version-specific/supported-software/n/Nim.md @@ -17,5 +17,6 @@ version | toolchain ``1.4.8`` | ``GCCcore/10.3.0`` ``1.6.6`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Ninja.md b/docs/version-specific/supported-software/n/Ninja.md index a24408561..cb3ce3e70 100644 --- a/docs/version-specific/supported-software/n/Ninja.md +++ b/docs/version-specific/supported-software/n/Ninja.md @@ -28,5 +28,6 @@ version | toolchain ``1.9.0`` | ``GCCcore/8.3.0`` ``1.9.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Nipype.md b/docs/version-specific/supported-software/n/Nipype.md index 3eea4affa..83298ab5a 100644 --- a/docs/version-specific/supported-software/n/Nipype.md +++ b/docs/version-specific/supported-software/n/Nipype.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.6.0`` | | ``foss/2020b`` ``1.8.5`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d9173c9a6..cbf10efb6 100644 --- a/docs/version-specific/supported-software/n/Node-RED.md +++ b/docs/version-specific/supported-software/n/Node-RED.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.16.2`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/Normaliz.md b/docs/version-specific/supported-software/n/Normaliz.md index f6f0e51a9..6a54be457 100644 --- a/docs/version-specific/supported-software/n/Normaliz.md +++ b/docs/version-specific/supported-software/n/Normaliz.md @@ -15,5 +15,6 @@ version | toolchain ``3.7.4`` | ``gompi/2019a`` ``3.8.4`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1e11ede5d..c29647c1f 100644 --- a/docs/version-specific/supported-software/n/Nsight-Compute.md +++ b/docs/version-specific/supported-software/n/Nsight-Compute.md @@ -13,5 +13,6 @@ version | toolchain ``2020.3.0`` | ``system`` ``2021.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ed5da4fd5..03f16adbe 100644 --- a/docs/version-specific/supported-software/n/Nsight-Systems.md +++ b/docs/version-specific/supported-software/n/Nsight-Systems.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2020.5.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/NxTrim.md b/docs/version-specific/supported-software/n/NxTrim.md index 4c9e30c43..89d6bcd13 100644 --- a/docs/version-specific/supported-software/n/NxTrim.md +++ b/docs/version-specific/supported-software/n/NxTrim.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.3`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/index.md b/docs/version-specific/supported-software/n/index.md index c850d2716..e9f2dd632 100644 --- a/docs/version-specific/supported-software/n/index.md +++ b/docs/version-specific/supported-software/n/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (n) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../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) @@ -137,3 +139,7 @@ search: * [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 index c8444c17d..013d07991 100644 --- a/docs/version-specific/supported-software/n/n2v.md +++ b/docs/version-specific/supported-software/n/n2v.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.3.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/namedlist.md b/docs/version-specific/supported-software/n/namedlist.md index fec8baf27..ebb7bca80 100644 --- a/docs/version-specific/supported-software/n/namedlist.md +++ b/docs/version-specific/supported-software/n/namedlist.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nano.md b/docs/version-specific/supported-software/n/nano.md index a2d15537a..d5fd08556 100644 --- a/docs/version-specific/supported-software/n/nano.md +++ b/docs/version-specific/supported-software/n/nano.md @@ -15,5 +15,6 @@ version | toolchain ``7.1`` | ``GCCcore/12.2.0`` ``7.2`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nanocompore.md b/docs/version-specific/supported-software/n/nanocompore.md index c5cf83b10..25033684c 100644 --- a/docs/version-specific/supported-software/n/nanocompore.md +++ b/docs/version-specific/supported-software/n/nanocompore.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.0rc3-2`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nanoflann.md b/docs/version-specific/supported-software/n/nanoflann.md index 1ecac5b12..c1f1283d7 100644 --- a/docs/version-specific/supported-software/n/nanoflann.md +++ b/docs/version-specific/supported-software/n/nanoflann.md @@ -13,5 +13,6 @@ version | toolchain ``1.4.0`` | ``GCCcore/10.3.0`` ``1.5.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nanoget.md b/docs/version-specific/supported-software/n/nanoget.md index a9678b4d7..e5df0c0ac 100644 --- a/docs/version-specific/supported-software/n/nanoget.md +++ b/docs/version-specific/supported-software/n/nanoget.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.18.1`` | | ``foss/2022b`` ``1.19.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nanomath.md b/docs/version-specific/supported-software/n/nanomath.md index e26f527da..211382d10 100644 --- a/docs/version-specific/supported-software/n/nanomath.md +++ b/docs/version-specific/supported-software/n/nanomath.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.3.0`` | | ``foss/2022a`` ``1.3.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index aa5b1ce85..13c7a3724 100644 --- a/docs/version-specific/supported-software/n/nanomax-analysis-utils.md +++ b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.4.3`` | | ``fosscuda/2020b`` ``0.4.4`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nanonet.md b/docs/version-specific/supported-software/n/nanonet.md index 7ca0d2461..0ae65e991 100644 --- a/docs/version-specific/supported-software/n/nanonet.md +++ b/docs/version-specific/supported-software/n/nanonet.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0.0`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nanopolish.md b/docs/version-specific/supported-software/n/nanopolish.md index c412ad097..4112228ea 100644 --- a/docs/version-specific/supported-software/n/nanopolish.md +++ b/docs/version-specific/supported-software/n/nanopolish.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``foss/2022a`` ``0.9.2`` | | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/napari.md b/docs/version-specific/supported-software/n/napari.md index aadfad788..9c1392d09 100644 --- a/docs/version-specific/supported-software/n/napari.md +++ b/docs/version-specific/supported-software/n/napari.md @@ -15,5 +15,6 @@ version | toolchain ``0.4.18`` | ``foss/2023a`` ``0.4.19.post1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nauty.md b/docs/version-specific/supported-software/n/nauty.md index 1a808c344..ab776e3c4 100644 --- a/docs/version-specific/supported-software/n/nauty.md +++ b/docs/version-specific/supported-software/n/nauty.md @@ -16,5 +16,6 @@ version | toolchain ``2.8.6`` | ``GCC/11.3.0`` ``2.8.8`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nbclassic.md b/docs/version-specific/supported-software/n/nbclassic.md index 6c2b7b1c8..72a0fef27 100644 --- a/docs/version-specific/supported-software/n/nbclassic.md +++ b/docs/version-specific/supported-software/n/nbclassic.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/12.3.0`` ``1.0.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f18402e91..e1eebb95d 100644 --- a/docs/version-specific/supported-software/n/ncbi-vdb.md +++ b/docs/version-specific/supported-software/n/ncbi-vdb.md @@ -31,5 +31,6 @@ version | toolchain ``3.0.5`` | ``gompi/2021a`` ``3.0.5`` | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ncdf4.md b/docs/version-specific/supported-software/n/ncdf4.md index a227f99c0..7e8618559 100644 --- a/docs/version-specific/supported-software/n/ncdf4.md +++ b/docs/version-specific/supported-software/n/ncdf4.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``1.17`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.17`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ncdu.md b/docs/version-specific/supported-software/n/ncdu.md index 59b8bb9ee..cfa38ff82 100644 --- a/docs/version-specific/supported-software/n/ncdu.md +++ b/docs/version-specific/supported-software/n/ncdu.md @@ -18,5 +18,6 @@ version | toolchain ``1.17`` | ``GCC/11.3.0`` ``1.18`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ncolor.md b/docs/version-specific/supported-software/n/ncolor.md index bfb2f3da8..7e934fa5b 100644 --- a/docs/version-specific/supported-software/n/ncolor.md +++ b/docs/version-specific/supported-software/n/ncolor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ncompress.md b/docs/version-specific/supported-software/n/ncompress.md index 5d106dfb6..961658fab 100644 --- a/docs/version-specific/supported-software/n/ncompress.md +++ b/docs/version-specific/supported-software/n/ncompress.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.2.4.4`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ncurses.md b/docs/version-specific/supported-software/n/ncurses.md index 2f35ce68c..6a91f0e4b 100644 --- a/docs/version-specific/supported-software/n/ncurses.md +++ b/docs/version-specific/supported-software/n/ncurses.md @@ -60,5 +60,6 @@ version | toolchain ``6.5`` | ``GCCcore/13.3.0`` ``6.5`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ncview.md b/docs/version-specific/supported-software/n/ncview.md index 49a0ca4a2..d3890e7a9 100644 --- a/docs/version-specific/supported-software/n/ncview.md +++ b/docs/version-specific/supported-software/n/ncview.md @@ -27,5 +27,6 @@ version | toolchain ``2.1.8`` | ``gompi/2022a`` ``2.1.8`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nd2reader.md b/docs/version-specific/supported-software/n/nd2reader.md index 9e6008a2c..1095df8b5 100644 --- a/docs/version-specific/supported-software/n/nd2reader.md +++ b/docs/version-specific/supported-software/n/nd2reader.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.6`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ne.md b/docs/version-specific/supported-software/n/ne.md index e7fe4006e..d77ffe638 100644 --- a/docs/version-specific/supported-software/n/ne.md +++ b/docs/version-specific/supported-software/n/ne.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.1`` | ``gimkl/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/neon.md b/docs/version-specific/supported-software/n/neon.md index 508871226..f323b7c06 100644 --- a/docs/version-specific/supported-software/n/neon.md +++ b/docs/version-specific/supported-software/n/neon.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.31.2`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a72cc916d..55d905b8b 100644 --- a/docs/version-specific/supported-software/n/neptune-client.md +++ b/docs/version-specific/supported-software/n/neptune-client.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.16.2`` | | ``foss/2022a`` ``0.4.129`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4c3091cdb..3aaf70ba4 100644 --- a/docs/version-specific/supported-software/n/netCDF-C++.md +++ b/docs/version-specific/supported-software/n/netCDF-C++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.2`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f89c18037..6e09a73f4 100644 --- a/docs/version-specific/supported-software/n/netCDF-C++4.md +++ b/docs/version-specific/supported-software/n/netCDF-C++4.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``4.3.1`` | | ``iimpi/2022a`` ``4.3.1`` | | ``iimpi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3df185c38..e20b10e7d 100644 --- a/docs/version-specific/supported-software/n/netCDF-Fortran.md +++ b/docs/version-specific/supported-software/n/netCDF-Fortran.md @@ -59,5 +59,6 @@ version | versionsuffix | toolchain ``4.6.1`` | | ``iimpi/2023a`` ``4.6.1`` | | ``iimpi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/netCDF.md b/docs/version-specific/supported-software/n/netCDF.md index 997b4056e..de35516ff 100644 --- a/docs/version-specific/supported-software/n/netCDF.md +++ b/docs/version-specific/supported-software/n/netCDF.md @@ -73,5 +73,6 @@ version | versionsuffix | toolchain ``4.9.2`` | | ``iimpi/2023a`` ``4.9.2`` | | ``iimpi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/netMHC.md b/docs/version-specific/supported-software/n/netMHC.md index ec1366e36..0bea7f3b6 100644 --- a/docs/version-specific/supported-software/n/netMHC.md +++ b/docs/version-specific/supported-software/n/netMHC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/netMHCII.md b/docs/version-specific/supported-software/n/netMHCII.md index 9b543e079..85f61578f 100644 --- a/docs/version-specific/supported-software/n/netMHCII.md +++ b/docs/version-specific/supported-software/n/netMHCII.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/netMHCIIpan.md b/docs/version-specific/supported-software/n/netMHCIIpan.md index 39b3edc7b..329d60852 100644 --- a/docs/version-specific/supported-software/n/netMHCIIpan.md +++ b/docs/version-specific/supported-software/n/netMHCIIpan.md @@ -13,5 +13,6 @@ version | toolchain ``3.2`` | ``GCCcore/7.3.0`` ``3.2`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/netMHCpan.md b/docs/version-specific/supported-software/n/netMHCpan.md index b7cd8636e..f6eeefbd2 100644 --- a/docs/version-specific/supported-software/n/netMHCpan.md +++ b/docs/version-specific/supported-software/n/netMHCpan.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0a`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 01885e334..a27443e74 100644 --- a/docs/version-specific/supported-software/n/netcdf4-python.md +++ b/docs/version-specific/supported-software/n/netcdf4-python.md @@ -38,5 +38,6 @@ version | versionsuffix | toolchain ``1.6.4`` | | ``foss/2023a`` ``1.6.5`` | | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/netloc.md b/docs/version-specific/supported-software/n/netloc.md index 8fa21088e..4cec1cb0f 100644 --- a/docs/version-specific/supported-software/n/netloc.md +++ b/docs/version-specific/supported-software/n/netloc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5`` | ``GCC/4.8.3`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nettle.md b/docs/version-specific/supported-software/n/nettle.md index 65c206be4..8736595e4 100644 --- a/docs/version-specific/supported-software/n/nettle.md +++ b/docs/version-specific/supported-software/n/nettle.md @@ -38,5 +38,6 @@ version | toolchain ``3.9.1`` | ``GCCcore/12.3.0`` ``3.9.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/networkTools.md b/docs/version-specific/supported-software/n/networkTools.md index 7300a4326..18dcce3b3 100644 --- a/docs/version-specific/supported-software/n/networkTools.md +++ b/docs/version-specific/supported-software/n/networkTools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/networkx.md b/docs/version-specific/supported-software/n/networkx.md index f55f8c027..c1b5a26b2 100644 --- a/docs/version-specific/supported-software/n/networkx.md +++ b/docs/version-specific/supported-software/n/networkx.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``3.1`` | | ``gfbf/2023a`` ``3.2.1`` | | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8a6f55b4d..aea691d7e 100644 --- a/docs/version-specific/supported-software/n/nf-core-mag.md +++ b/docs/version-specific/supported-software/n/nf-core-mag.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20221110`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0777e3a52..051ba35d6 100644 --- a/docs/version-specific/supported-software/n/nf-core.md +++ b/docs/version-specific/supported-software/n/nf-core.md @@ -13,5 +13,6 @@ version | toolchain ``2.10`` | ``foss/2022b`` ``2.13.1`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nghttp2.md b/docs/version-specific/supported-software/n/nghttp2.md index 9ca40a598..1d11ffd9f 100644 --- a/docs/version-specific/supported-software/n/nghttp2.md +++ b/docs/version-specific/supported-software/n/nghttp2.md @@ -14,5 +14,6 @@ version | toolchain ``1.48.0`` | ``GCC/11.3.0`` ``1.58.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nghttp3.md b/docs/version-specific/supported-software/n/nghttp3.md index f6a989a72..a78bae804 100644 --- a/docs/version-specific/supported-software/n/nghttp3.md +++ b/docs/version-specific/supported-software/n/nghttp3.md @@ -14,5 +14,6 @@ version | toolchain ``0.6.0`` | ``GCCcore/11.3.0`` ``1.3.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nglview.md b/docs/version-specific/supported-software/n/nglview.md index a4edd33a2..38f8c340b 100644 --- a/docs/version-specific/supported-software/n/nglview.md +++ b/docs/version-specific/supported-software/n/nglview.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``3.0.3`` | | ``foss/2022a`` ``3.1.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ngspice.md b/docs/version-specific/supported-software/n/ngspice.md index a7242bf19..900576deb 100644 --- a/docs/version-specific/supported-software/n/ngspice.md +++ b/docs/version-specific/supported-software/n/ngspice.md @@ -13,5 +13,6 @@ version | toolchain ``31`` | ``foss/2019b`` ``39`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ngtcp2.md b/docs/version-specific/supported-software/n/ngtcp2.md index 7d9563e7f..70392f31b 100644 --- a/docs/version-specific/supported-software/n/ngtcp2.md +++ b/docs/version-specific/supported-software/n/ngtcp2.md @@ -14,5 +14,6 @@ version | toolchain ``0.7.0`` | ``GCC/11.3.0`` ``1.2.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nichenetr.md b/docs/version-specific/supported-software/n/nichenetr.md index 96270a3bb..23c0a6e0b 100644 --- a/docs/version-specific/supported-software/n/nichenetr.md +++ b/docs/version-specific/supported-software/n/nichenetr.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.1-20230223`` | ``-R-4.2.1`` | ``foss/2022a`` ``2.0.4`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nifti2dicom.md b/docs/version-specific/supported-software/n/nifti2dicom.md index 9856826b5..fb5bd71ee 100644 --- a/docs/version-specific/supported-software/n/nifti2dicom.md +++ b/docs/version-specific/supported-software/n/nifti2dicom.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.11`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5f81d8cda..aa7689367 100644 --- a/docs/version-specific/supported-software/n/nlohmann_json.md +++ b/docs/version-specific/supported-software/n/nlohmann_json.md @@ -17,5 +17,6 @@ version | toolchain ``3.11.2`` | ``GCCcore/12.3.0`` ``3.11.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index abeb53cbe..9dab643bb 100644 --- a/docs/version-specific/supported-software/n/nnU-Net.md +++ b/docs/version-specific/supported-software/n/nnU-Net.md @@ -13,5 +13,6 @@ version | toolchain ``1.7.0`` | ``foss/2020b`` ``1.7.0`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nodejs.md b/docs/version-specific/supported-software/n/nodejs.md index 31d28f34e..3bb5c2862 100644 --- a/docs/version-specific/supported-software/n/nodejs.md +++ b/docs/version-specific/supported-software/n/nodejs.md @@ -28,5 +28,6 @@ version | toolchain ``6.10.3`` | ``foss/2017a`` ``8.9.4`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/noise.md b/docs/version-specific/supported-software/n/noise.md index 70ed54943..6460e1a5c 100644 --- a/docs/version-specific/supported-software/n/noise.md +++ b/docs/version-specific/supported-software/n/noise.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 971d029b8..04e770f6b 100644 --- a/docs/version-specific/supported-software/n/nose-parameterized.md +++ b/docs/version-specific/supported-software/n/nose-parameterized.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.5.0`` | ``-Python-3.5.2`` | ``intel/2016b`` ``0.6.0`` | ``-Python-3.6.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nose3.md b/docs/version-specific/supported-software/n/nose3.md index 06657aacd..ebce30f94 100644 --- a/docs/version-specific/supported-software/n/nose3.md +++ b/docs/version-specific/supported-software/n/nose3.md @@ -13,5 +13,6 @@ version | toolchain ``1.3.8`` | ``GCCcore/11.3.0`` ``1.3.8`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/novaSTA.md b/docs/version-specific/supported-software/n/novaSTA.md index 3aeb10602..36b620cc3 100644 --- a/docs/version-specific/supported-software/n/novaSTA.md +++ b/docs/version-specific/supported-software/n/novaSTA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/novoalign.md b/docs/version-specific/supported-software/n/novoalign.md index e29198741..ea2f6caff 100644 --- a/docs/version-specific/supported-software/n/novoalign.md +++ b/docs/version-specific/supported-software/n/novoalign.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.09.00`` | | ``system`` ``3.09.01`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/npstat.md b/docs/version-specific/supported-software/n/npstat.md index 1254880af..285db7a73 100644 --- a/docs/version-specific/supported-software/n/npstat.md +++ b/docs/version-specific/supported-software/n/npstat.md @@ -13,5 +13,6 @@ version | toolchain ``0.99`` | ``foss/2016a`` ``0.99`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nsync.md b/docs/version-specific/supported-software/n/nsync.md index d61e346af..ace5c0e56 100644 --- a/docs/version-specific/supported-software/n/nsync.md +++ b/docs/version-specific/supported-software/n/nsync.md @@ -19,5 +19,6 @@ version | toolchain ``1.26.0`` | ``GCCcore/12.2.0`` ``1.26.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ntCard.md b/docs/version-specific/supported-software/n/ntCard.md index 7d5a355d3..057bf3014 100644 --- a/docs/version-specific/supported-software/n/ntCard.md +++ b/docs/version-specific/supported-software/n/ntCard.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.1`` | ``GCC/8.3.0`` ``1.2.2`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ntEdit.md b/docs/version-specific/supported-software/n/ntEdit.md index 678622992..54a791412 100644 --- a/docs/version-specific/supported-software/n/ntEdit.md +++ b/docs/version-specific/supported-software/n/ntEdit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/ntHits.md b/docs/version-specific/supported-software/n/ntHits.md index a490a4bc9..cc241acc6 100644 --- a/docs/version-specific/supported-software/n/ntHits.md +++ b/docs/version-specific/supported-software/n/ntHits.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/num2words.md b/docs/version-specific/supported-software/n/num2words.md index b230b64db..825258159 100644 --- a/docs/version-specific/supported-software/n/num2words.md +++ b/docs/version-specific/supported-software/n/num2words.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.10`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/numactl.md b/docs/version-specific/supported-software/n/numactl.md index a0370e44c..f4ad2a855 100644 --- a/docs/version-specific/supported-software/n/numactl.md +++ b/docs/version-specific/supported-software/n/numactl.md @@ -49,5 +49,6 @@ version | toolchain ``2.0.18`` | ``GCCcore/13.3.0`` ``2.0.9`` | ``GCC/4.8.3`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/numba.md b/docs/version-specific/supported-software/n/numba.md index 6b65aae96..27e79ff88 100644 --- a/docs/version-specific/supported-software/n/numba.md +++ b/docs/version-specific/supported-software/n/numba.md @@ -41,5 +41,6 @@ version | versionsuffix | toolchain ``0.58.1`` | | ``foss/2022b`` ``0.58.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/numdiff.md b/docs/version-specific/supported-software/n/numdiff.md index fd027a57c..eb54ad4ef 100644 --- a/docs/version-specific/supported-software/n/numdiff.md +++ b/docs/version-specific/supported-software/n/numdiff.md @@ -13,5 +13,6 @@ version | toolchain ``5.9.0`` | ``GCCcore/10.2.0`` ``5.9.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/numexpr.md b/docs/version-specific/supported-software/n/numexpr.md index ffef1b917..8bc548f61 100644 --- a/docs/version-specific/supported-software/n/numexpr.md +++ b/docs/version-specific/supported-software/n/numexpr.md @@ -36,5 +36,6 @@ version | versionsuffix | toolchain ``2.8.1`` | | ``intel/2021a`` ``2.8.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/numpy.md b/docs/version-specific/supported-software/n/numpy.md index 395b43d2e..aa79534de 100644 --- a/docs/version-specific/supported-software/n/numpy.md +++ b/docs/version-specific/supported-software/n/numpy.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``1.8.2`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nvitop.md b/docs/version-specific/supported-software/n/nvitop.md index fefa26760..054298414 100644 --- a/docs/version-specific/supported-software/n/nvitop.md +++ b/docs/version-specific/supported-software/n/nvitop.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-CUDA-12.3.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nvofbf.md b/docs/version-specific/supported-software/n/nvofbf.md index d6f142af5..2f0443825 100644 --- a/docs/version-specific/supported-software/n/nvofbf.md +++ b/docs/version-specific/supported-software/n/nvofbf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2022.07`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nvompi.md b/docs/version-specific/supported-software/n/nvompi.md index a46d4b552..5184b793f 100644 --- a/docs/version-specific/supported-software/n/nvompi.md +++ b/docs/version-specific/supported-software/n/nvompi.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2022.07`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/n/nvtop.md b/docs/version-specific/supported-software/n/nvtop.md index 709dd04e7..5fb4158b4 100644 --- a/docs/version-specific/supported-software/n/nvtop.md +++ b/docs/version-specific/supported-software/n/nvtop.md @@ -20,5 +20,6 @@ version | toolchain ``3.0.1`` | ``GCCcore/12.2.0`` ``3.1.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OBITools.md b/docs/version-specific/supported-software/o/OBITools.md index ffc87b136..b1e9a75d6 100644 --- a/docs/version-specific/supported-software/o/OBITools.md +++ b/docs/version-specific/supported-software/o/OBITools.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.13`` | ``-Python-2.7.15`` | ``foss/2019a`` ``1.2.9`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OBITools3.md b/docs/version-specific/supported-software/o/OBITools3.md index e569aeb37..bf7248127 100644 --- a/docs/version-specific/supported-software/o/OBITools3.md +++ b/docs/version-specific/supported-software/o/OBITools3.md @@ -13,5 +13,6 @@ version | toolchain ``3.0.1b26`` | ``GCCcore/12.3.0`` ``3.0.1b8`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OCNet.md b/docs/version-specific/supported-software/o/OCNet.md index 081dfda2d..677457747 100644 --- a/docs/version-specific/supported-software/o/OCNet.md +++ b/docs/version-specific/supported-software/o/OCNet.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OCaml.md b/docs/version-specific/supported-software/o/OCaml.md index a4dadaf1e..cd624f159 100644 --- a/docs/version-specific/supported-software/o/OCaml.md +++ b/docs/version-specific/supported-software/o/OCaml.md @@ -15,5 +15,6 @@ version | toolchain ``4.14.0`` | ``GCC/11.3.0`` ``5.1.1`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OGDF.md b/docs/version-specific/supported-software/o/OGDF.md index 26e5053f0..9fc3f292f 100644 --- a/docs/version-specific/supported-software/o/OGDF.md +++ b/docs/version-specific/supported-software/o/OGDF.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``dogwood-202202`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OMA.md b/docs/version-specific/supported-software/o/OMA.md index 22228d182..4e8f4e7de 100644 --- a/docs/version-specific/supported-software/o/OMA.md +++ b/docs/version-specific/supported-software/o/OMA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0dba2a326..e276da141 100644 --- a/docs/version-specific/supported-software/o/OMERO.insight.md +++ b/docs/version-specific/supported-software/o/OMERO.insight.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``5.8.3`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b9efa815d..36da0d7dd 100644 --- a/docs/version-specific/supported-software/o/OMERO.py.md +++ b/docs/version-specific/supported-software/o/OMERO.py.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.17.0`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1a7580088..e517b5706 100644 --- a/docs/version-specific/supported-software/o/ONNX-Runtime.md +++ b/docs/version-specific/supported-software/o/ONNX-Runtime.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.10.0`` | | ``foss/2021a`` ``1.16.3`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/ONNX.md b/docs/version-specific/supported-software/o/ONNX.md index 9bc689869..a954915e0 100644 --- a/docs/version-specific/supported-software/o/ONNX.md +++ b/docs/version-specific/supported-software/o/ONNX.md @@ -14,5 +14,6 @@ version | toolchain ``1.15.0`` | ``foss/2022b`` ``1.15.0`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OOMPA.md b/docs/version-specific/supported-software/o/OOMPA.md index c04e8e269..6ea9abd02 100644 --- a/docs/version-specific/supported-software/o/OOMPA.md +++ b/docs/version-specific/supported-software/o/OOMPA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-R-3.3.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OPARI2.md b/docs/version-specific/supported-software/o/OPARI2.md index afe654e74..f2b543df5 100644 --- a/docs/version-specific/supported-software/o/OPARI2.md +++ b/docs/version-specific/supported-software/o/OPARI2.md @@ -22,5 +22,6 @@ version | toolchain ``2.0.7`` | ``GCCcore/12.3.0`` ``2.0.8`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 904c832a2..493bdc506 100644 --- a/docs/version-specific/supported-software/o/OPERA-MS.md +++ b/docs/version-specific/supported-software/o/OPERA-MS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.0-20200802`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OPERA.md b/docs/version-specific/supported-software/o/OPERA.md index 85f77a307..76745209e 100644 --- a/docs/version-specific/supported-software/o/OPERA.md +++ b/docs/version-specific/supported-software/o/OPERA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0.6`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``2.0.6`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5d9be7c7d..30325ef8c 100644 --- a/docs/version-specific/supported-software/o/OR-Tools.md +++ b/docs/version-specific/supported-software/o/OR-Tools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/ORCA.md b/docs/version-specific/supported-software/o/ORCA.md index bd35c81ec..ddb83e536 100644 --- a/docs/version-specific/supported-software/o/ORCA.md +++ b/docs/version-specific/supported-software/o/ORCA.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``5.0.4`` | | ``gompi/2022a`` ``5.0.4`` | | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/ORFfinder.md b/docs/version-specific/supported-software/o/ORFfinder.md index b6fe3a0f5..4d0e60e51 100644 --- a/docs/version-specific/supported-software/o/ORFfinder.md +++ b/docs/version-specific/supported-software/o/ORFfinder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OSPRay.md b/docs/version-specific/supported-software/o/OSPRay.md index 1ae5636f4..2fb21a00c 100644 --- a/docs/version-specific/supported-software/o/OSPRay.md +++ b/docs/version-specific/supported-software/o/OSPRay.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c3a46718b..912d60068 100644 --- a/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md +++ b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``7.2`` | | ``gompi/2023b`` ``7.4`` | | ``gompi/2024.05`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OTF2.md b/docs/version-specific/supported-software/o/OTF2.md index e7fae7b16..36d3583dc 100644 --- a/docs/version-specific/supported-software/o/OTF2.md +++ b/docs/version-specific/supported-software/o/OTF2.md @@ -24,5 +24,6 @@ version | toolchain ``3.0.3`` | ``GCCcore/12.3.0`` ``3.0.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OVITO.md b/docs/version-specific/supported-software/o/OVITO.md index 390f96472..8655e3571 100644 --- a/docs/version-specific/supported-software/o/OVITO.md +++ b/docs/version-specific/supported-software/o/OVITO.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.7.11`` | ``-basic`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/Oases.md b/docs/version-specific/supported-software/o/Oases.md index 4de4eb209..96844bd85 100644 --- a/docs/version-specific/supported-software/o/Oases.md +++ b/docs/version-specific/supported-software/o/Oases.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.2.08`` | ``-kmer_101`` | ``intel/2017b`` ``20180312`` | | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/Octave.md b/docs/version-specific/supported-software/o/Octave.md index 537bdfec7..dc4531a52 100644 --- a/docs/version-specific/supported-software/o/Octave.md +++ b/docs/version-specific/supported-software/o/Octave.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``6.2.0`` | | ``foss/2020b`` ``7.1.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7256e2bea..5bb9dcf4e 100644 --- a/docs/version-specific/supported-software/o/Octopus-vcf.md +++ b/docs/version-specific/supported-software/o/Octopus-vcf.md @@ -13,5 +13,6 @@ version | toolchain ``0.7.1`` | ``foss/2020b`` ``0.7.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OmegaFold.md b/docs/version-specific/supported-software/o/OmegaFold.md index c30adf69c..1214d0d4e 100644 --- a/docs/version-specific/supported-software/o/OmegaFold.md +++ b/docs/version-specific/supported-software/o/OmegaFold.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/Omnipose.md b/docs/version-specific/supported-software/o/Omnipose.md index 890ffaa46..f6e5e726f 100644 --- a/docs/version-specific/supported-software/o/Omnipose.md +++ b/docs/version-specific/supported-software/o/Omnipose.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.4.4`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 053674955..dca053952 100644 --- a/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md +++ b/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.3`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b9caf2a00..03dbb667e 100644 --- a/docs/version-specific/supported-software/o/OpenAI-Gym.md +++ b/docs/version-specific/supported-software/o/OpenAI-Gym.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.21.0`` | | ``foss/2021b`` ``0.26.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenBLAS.md b/docs/version-specific/supported-software/o/OpenBLAS.md index a57f348f9..ed15986ac 100644 --- a/docs/version-specific/supported-software/o/OpenBLAS.md +++ b/docs/version-specific/supported-software/o/OpenBLAS.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``0.3.8`` | | ``GCC/9.2.0`` ``0.3.9`` | | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenBabel.md b/docs/version-specific/supported-software/o/OpenBabel.md index def694b11..75484e452 100644 --- a/docs/version-specific/supported-software/o/OpenBabel.md +++ b/docs/version-specific/supported-software/o/OpenBabel.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``gompi/2023a`` ``3.1.1`` | ``-Python-3.8.2`` | ``iimpi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenCV.md b/docs/version-specific/supported-software/o/OpenCV.md index d3cb265ea..128957fd8 100644 --- a/docs/version-specific/supported-software/o/OpenCV.md +++ b/docs/version-specific/supported-software/o/OpenCV.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``4.8.1`` | ``-CUDA-12.1.1-contrib`` | ``foss/2023a`` ``4.8.1`` | ``-contrib`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 64e2ace96..8f3bf0d24 100644 --- a/docs/version-specific/supported-software/o/OpenCensus-python.md +++ b/docs/version-specific/supported-software/o/OpenCensus-python.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenCoarrays.md b/docs/version-specific/supported-software/o/OpenCoarrays.md index ebf5f571e..2b3976a11 100644 --- a/docs/version-specific/supported-software/o/OpenCoarrays.md +++ b/docs/version-specific/supported-software/o/OpenCoarrays.md @@ -15,5 +15,6 @@ version | toolchain ``2.8.0`` | ``gompi/2019b`` ``2.9.2`` | ``gompi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenColorIO.md b/docs/version-specific/supported-software/o/OpenColorIO.md index 7d0a07667..810ae73a7 100644 --- a/docs/version-specific/supported-software/o/OpenColorIO.md +++ b/docs/version-specific/supported-software/o/OpenColorIO.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenEXR.md b/docs/version-specific/supported-software/o/OpenEXR.md index 8f2a0befe..d5b687f7b 100644 --- a/docs/version-specific/supported-software/o/OpenEXR.md +++ b/docs/version-specific/supported-software/o/OpenEXR.md @@ -24,5 +24,6 @@ version | toolchain ``3.1.7`` | ``GCCcore/12.3.0`` ``3.2.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenFAST.md b/docs/version-specific/supported-software/o/OpenFAST.md index 81e327d4b..4f074ccd5 100644 --- a/docs/version-specific/supported-software/o/OpenFAST.md +++ b/docs/version-specific/supported-software/o/OpenFAST.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 68182ed2a..c2ff81ca5 100644 --- a/docs/version-specific/supported-software/o/OpenFOAM-Extend.md +++ b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``4.1-20191120`` | ``-Python-2.7.16`` | ``intel/2019b`` ``4.1-20200408`` | ``-Python-2.7.16`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenFOAM.md b/docs/version-specific/supported-software/o/OpenFOAM.md index 6bcbf2f1d..9ceb50608 100644 --- a/docs/version-specific/supported-software/o/OpenFOAM.md +++ b/docs/version-specific/supported-software/o/OpenFOAM.md @@ -71,5 +71,6 @@ version | versionsuffix | toolchain ``v2306`` | | ``foss/2022b`` ``v2312`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenFace.md b/docs/version-specific/supported-software/o/OpenFace.md index bb68b4313..00156295c 100644 --- a/docs/version-specific/supported-software/o/OpenFace.md +++ b/docs/version-specific/supported-software/o/OpenFace.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``2.2.0`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenFold.md b/docs/version-specific/supported-software/o/OpenFold.md index c509f278b..a36d408cb 100644 --- a/docs/version-specific/supported-software/o/OpenFold.md +++ b/docs/version-specific/supported-software/o/OpenFold.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenForceField.md b/docs/version-specific/supported-software/o/OpenForceField.md index 73bacb7f4..e74613a96 100644 --- a/docs/version-specific/supported-software/o/OpenForceField.md +++ b/docs/version-specific/supported-software/o/OpenForceField.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenImageIO.md b/docs/version-specific/supported-software/o/OpenImageIO.md index 80397b774..c3ba28786 100644 --- a/docs/version-specific/supported-software/o/OpenImageIO.md +++ b/docs/version-specific/supported-software/o/OpenImageIO.md @@ -21,5 +21,6 @@ version | toolchain ``2.3.17.0`` | ``GCC/11.3.0`` ``2.4.14.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenJPEG.md b/docs/version-specific/supported-software/o/OpenJPEG.md index 0e9f3437b..e5b66ff36 100644 --- a/docs/version-specific/supported-software/o/OpenJPEG.md +++ b/docs/version-specific/supported-software/o/OpenJPEG.md @@ -24,5 +24,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4eecabd82..d63e2c983 100644 --- a/docs/version-specific/supported-software/o/OpenKIM-API.md +++ b/docs/version-specific/supported-software/o/OpenKIM-API.md @@ -16,5 +16,6 @@ version | toolchain ``1.9.7`` | ``intel/2018b`` ``1.9.7`` | ``iomkl/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenMEEG.md b/docs/version-specific/supported-software/o/OpenMEEG.md index d5440bcf4..1ba9974f4 100644 --- a/docs/version-specific/supported-software/o/OpenMEEG.md +++ b/docs/version-specific/supported-software/o/OpenMEEG.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.7`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6b71ce46f..3fabcdba6 100644 --- a/docs/version-specific/supported-software/o/OpenMM-PLUMED.md +++ b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenMM.md b/docs/version-specific/supported-software/o/OpenMM.md index fceeb4e78..53fd85c69 100644 --- a/docs/version-specific/supported-software/o/OpenMM.md +++ b/docs/version-specific/supported-software/o/OpenMM.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``8.0.0`` | | ``foss/2022a`` ``8.0.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenMMTools.md b/docs/version-specific/supported-software/o/OpenMMTools.md index def183861..5c127753b 100644 --- a/docs/version-specific/supported-software/o/OpenMMTools.md +++ b/docs/version-specific/supported-software/o/OpenMMTools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.20.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenMPI.md b/docs/version-specific/supported-software/o/OpenMPI.md index d3e4c77be..f2650e12d 100644 --- a/docs/version-specific/supported-software/o/OpenMPI.md +++ b/docs/version-specific/supported-software/o/OpenMPI.md @@ -93,5 +93,6 @@ version | versionsuffix | toolchain ``5.0.3`` | | ``GCC/13.3.0`` ``system`` | | ``GCC/system-2.29`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenMS.md b/docs/version-specific/supported-software/o/OpenMS.md index a003f8e5c..3e6c3ed0c 100644 --- a/docs/version-specific/supported-software/o/OpenMS.md +++ b/docs/version-specific/supported-software/o/OpenMS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenMolcas.md b/docs/version-specific/supported-software/o/OpenMolcas.md index 918d03c39..ba905c846 100644 --- a/docs/version-specific/supported-software/o/OpenMolcas.md +++ b/docs/version-specific/supported-software/o/OpenMolcas.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``22.10`` | | ``intel/2022a`` ``23.06`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenNLP.md b/docs/version-specific/supported-software/o/OpenNLP.md index 332a8f06e..71a4aac92 100644 --- a/docs/version-specific/supported-software/o/OpenNLP.md +++ b/docs/version-specific/supported-software/o/OpenNLP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenPGM.md b/docs/version-specific/supported-software/o/OpenPGM.md index 89451ecd7..05d8530d2 100644 --- a/docs/version-specific/supported-software/o/OpenPGM.md +++ b/docs/version-specific/supported-software/o/OpenPGM.md @@ -29,5 +29,6 @@ version | toolchain ``5.2.122`` | ``intel/2016b`` ``5.2.122`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenPIV.md b/docs/version-specific/supported-software/o/OpenPIV.md index 71a6fb283..33ed5bc9c 100644 --- a/docs/version-specific/supported-software/o/OpenPIV.md +++ b/docs/version-specific/supported-software/o/OpenPIV.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.21.8`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenRefine.md b/docs/version-specific/supported-software/o/OpenRefine.md index 96e49ee3b..4b8710d19 100644 --- a/docs/version-specific/supported-software/o/OpenRefine.md +++ b/docs/version-specific/supported-software/o/OpenRefine.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.7`` | ``-Java-1.8.0_144`` | ``system`` ``3.4.1`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenSSL.md b/docs/version-specific/supported-software/o/OpenSSL.md index df3ab7360..6f1ee1d61 100644 --- a/docs/version-specific/supported-software/o/OpenSSL.md +++ b/docs/version-specific/supported-software/o/OpenSSL.md @@ -33,5 +33,6 @@ version | toolchain ``1.1`` | ``system`` ``3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenSceneGraph.md b/docs/version-specific/supported-software/o/OpenSceneGraph.md index 3c11fd44b..4ae4bb725 100644 --- a/docs/version-specific/supported-software/o/OpenSceneGraph.md +++ b/docs/version-specific/supported-software/o/OpenSceneGraph.md @@ -14,5 +14,6 @@ version | toolchain ``3.6.5`` | ``foss/2021b`` ``3.6.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenSees.md b/docs/version-specific/supported-software/o/OpenSees.md index f80783f62..301a04998 100644 --- a/docs/version-specific/supported-software/o/OpenSees.md +++ b/docs/version-specific/supported-software/o/OpenSees.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-3.8.2-parallel`` | ``intel/2020a`` ``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fc0202325..7d9b9bf48 100644 --- a/docs/version-specific/supported-software/o/OpenSlide-Java.md +++ b/docs/version-specific/supported-software/o/OpenSlide-Java.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.4`` | ``-Java-17`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenSlide.md b/docs/version-specific/supported-software/o/OpenSlide.md index 4cc839966..662b5d220 100644 --- a/docs/version-specific/supported-software/o/OpenSlide.md +++ b/docs/version-specific/supported-software/o/OpenSlide.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``3.4.1`` | ``-largefiles`` | ``GCCcore/8.2.0`` ``3.4.1`` | | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OpenStackClient.md b/docs/version-specific/supported-software/o/OpenStackClient.md index 3461a2447..4a446ca05 100644 --- a/docs/version-specific/supported-software/o/OpenStackClient.md +++ b/docs/version-specific/supported-software/o/OpenStackClient.md @@ -14,5 +14,6 @@ version | toolchain ``5.8.0`` | ``GCCcore/11.2.0`` ``6.0.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OptaDOS.md b/docs/version-specific/supported-software/o/OptaDOS.md index d749da888..dae588c86 100644 --- a/docs/version-specific/supported-software/o/OptaDOS.md +++ b/docs/version-specific/supported-software/o/OptaDOS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.380`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/Optax.md b/docs/version-specific/supported-software/o/Optax.md index e64523727..a332a5fa0 100644 --- a/docs/version-specific/supported-software/o/Optax.md +++ b/docs/version-specific/supported-software/o/Optax.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.7`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OptiType.md b/docs/version-specific/supported-software/o/OptiType.md index d159772ff..9dc02d080 100644 --- a/docs/version-specific/supported-software/o/OptiType.md +++ b/docs/version-specific/supported-software/o/OptiType.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.3.2`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OptiX.md b/docs/version-specific/supported-software/o/OptiX.md index c5dbde848..f64ec1e24 100644 --- a/docs/version-specific/supported-software/o/OptiX.md +++ b/docs/version-specific/supported-software/o/OptiX.md @@ -15,5 +15,6 @@ version | toolchain ``6.5.0`` | ``system`` ``7.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/Optuna.md b/docs/version-specific/supported-software/o/Optuna.md index 74e8b502e..16685e757 100644 --- a/docs/version-specific/supported-software/o/Optuna.md +++ b/docs/version-specific/supported-software/o/Optuna.md @@ -15,5 +15,6 @@ version | toolchain ``3.1.0`` | ``foss/2022a`` ``3.5.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OrfM.md b/docs/version-specific/supported-software/o/OrfM.md index c85577a62..b17258b44 100644 --- a/docs/version-specific/supported-software/o/OrfM.md +++ b/docs/version-specific/supported-software/o/OrfM.md @@ -14,5 +14,6 @@ version | toolchain ``0.7.1`` | ``GCC/12.3.0`` ``0.7.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OrthoFinder.md b/docs/version-specific/supported-software/o/OrthoFinder.md index 2ae3319dc..5f3c2142b 100644 --- a/docs/version-specific/supported-software/o/OrthoFinder.md +++ b/docs/version-specific/supported-software/o/OrthoFinder.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.5.4`` | | ``foss/2020b`` ``2.5.5`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/OrthoMCL.md b/docs/version-specific/supported-software/o/OrthoMCL.md index 207e39350..edad604c7 100644 --- a/docs/version-specific/supported-software/o/OrthoMCL.md +++ b/docs/version-specific/supported-software/o/OrthoMCL.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4`` | ``-Perl-5.24.0`` | ``intel/2016b`` ``2.0.9`` | ``-Perl-5.24.0`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/Osi.md b/docs/version-specific/supported-software/o/Osi.md index 9d0338bef..a76bdfe8f 100644 --- a/docs/version-specific/supported-software/o/Osi.md +++ b/docs/version-specific/supported-software/o/Osi.md @@ -18,5 +18,6 @@ version | toolchain ``0.108.8`` | ``GCC/12.2.0`` ``0.108.9`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/index.md b/docs/version-specific/supported-software/o/index.md index 6e8c991d7..cd61ee466 100644 --- a/docs/version-specific/supported-software/o/index.md +++ b/docs/version-specific/supported-software/o/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (o) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../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) @@ -94,3 +96,7 @@ search: * [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 index f54cf3093..4bd903489 100644 --- a/docs/version-specific/supported-software/o/ocamlbuild.md +++ b/docs/version-specific/supported-software/o/ocamlbuild.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.14.3`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/occt.md b/docs/version-specific/supported-software/o/occt.md index e2c2f9f74..1d7ea73aa 100644 --- a/docs/version-specific/supported-software/o/occt.md +++ b/docs/version-specific/supported-software/o/occt.md @@ -15,5 +15,6 @@ version | toolchain ``7.5.0p1`` | ``foss/2022a`` ``7.8.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/oceanspy.md b/docs/version-specific/supported-software/o/oceanspy.md index e7c59975d..955852843 100644 --- a/docs/version-specific/supported-software/o/oceanspy.md +++ b/docs/version-specific/supported-software/o/oceanspy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/olaFlow.md b/docs/version-specific/supported-software/o/olaFlow.md index 9326c8bd5..42e067514 100644 --- a/docs/version-specific/supported-software/o/olaFlow.md +++ b/docs/version-specific/supported-software/o/olaFlow.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20210820`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/olego.md b/docs/version-specific/supported-software/o/olego.md index edab73f7d..d5021957e 100644 --- a/docs/version-specific/supported-software/o/olego.md +++ b/docs/version-specific/supported-software/o/olego.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.9`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/onedrive.md b/docs/version-specific/supported-software/o/onedrive.md index e9c781235..ee4561b7a 100644 --- a/docs/version-specific/supported-software/o/onedrive.md +++ b/docs/version-specific/supported-software/o/onedrive.md @@ -14,5 +14,6 @@ version | toolchain ``2.4.21`` | ``GCCcore/11.3.0`` ``2.4.25`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4e9c5376e..ceff8516c 100644 --- a/docs/version-specific/supported-software/o/ont-fast5-api.md +++ b/docs/version-specific/supported-software/o/ont-fast5-api.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``foss/2022b`` ``4.1.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e7a84913e..162a84c4f 100644 --- a/docs/version-specific/supported-software/o/ont-guppy.md +++ b/docs/version-specific/supported-software/o/ont-guppy.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``6.4.6`` | | ``system`` ``6.4.8`` | ``-CUDA-11.7.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3046b10ef..dbb884a57 100644 --- a/docs/version-specific/supported-software/o/ont-remora.md +++ b/docs/version-specific/supported-software/o/ont-remora.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0.0`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/openCARP.md b/docs/version-specific/supported-software/o/openCARP.md index 5cd14cc72..2bc954f1c 100644 --- a/docs/version-specific/supported-software/o/openCARP.md +++ b/docs/version-specific/supported-software/o/openCARP.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``6.0`` | | ``foss/2020b`` ``8.2`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 39c179504..fd393411e 100644 --- a/docs/version-specific/supported-software/o/openkim-models.md +++ b/docs/version-specific/supported-software/o/openkim-models.md @@ -19,5 +19,6 @@ version | toolchain ``20210811`` | ``GCC/12.3.0`` ``20210811`` | ``intel-compilers/2023.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/openpyxl.md b/docs/version-specific/supported-software/o/openpyxl.md index f9f0c135f..4ba1ba8cf 100644 --- a/docs/version-specific/supported-software/o/openpyxl.md +++ b/docs/version-specific/supported-software/o/openpyxl.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``3.1.2`` | | ``GCCcore/12.3.0`` ``3.1.2`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 02dcdca23..3cedd6d5d 100644 --- a/docs/version-specific/supported-software/o/openslide-python.md +++ b/docs/version-specific/supported-software/o/openslide-python.md @@ -16,5 +16,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/11.3.0`` ``1.3.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/optiSLang.md b/docs/version-specific/supported-software/o/optiSLang.md index 53a8feb46..23ddb34d7 100644 --- a/docs/version-specific/supported-software/o/optiSLang.md +++ b/docs/version-specific/supported-software/o/optiSLang.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2024R1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/orthAgogue.md b/docs/version-specific/supported-software/o/orthAgogue.md index 455f28836..1cfa46926 100644 --- a/docs/version-specific/supported-software/o/orthAgogue.md +++ b/docs/version-specific/supported-software/o/orthAgogue.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20141105`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/ownCloud.md b/docs/version-specific/supported-software/o/ownCloud.md index 341283c59..3c97d732f 100644 --- a/docs/version-specific/supported-software/o/ownCloud.md +++ b/docs/version-specific/supported-software/o/ownCloud.md @@ -13,5 +13,6 @@ version | toolchain ``2.4.3`` | ``foss/2018b`` ``2.5.4`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/o/oxDNA.md b/docs/version-specific/supported-software/o/oxDNA.md index 593953426..74fd5be7f 100644 --- a/docs/version-specific/supported-software/o/oxDNA.md +++ b/docs/version-specific/supported-software/o/oxDNA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 159253e46..7e2184b44 100644 --- a/docs/version-specific/supported-software/o/oxford_asl.md +++ b/docs/version-specific/supported-software/o/oxford_asl.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.9.6`` | ``-centos7-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PAGAN2.md b/docs/version-specific/supported-software/p/PAGAN2.md index 4a4a21c0c..eacb2634f 100644 --- a/docs/version-specific/supported-software/p/PAGAN2.md +++ b/docs/version-specific/supported-software/p/PAGAN2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.53_20230824`` | ``-linux64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PAL2NAL.md b/docs/version-specific/supported-software/p/PAL2NAL.md index b61c0fcf3..4e2a6a18a 100644 --- a/docs/version-specific/supported-software/p/PAL2NAL.md +++ b/docs/version-specific/supported-software/p/PAL2NAL.md @@ -13,5 +13,6 @@ version | toolchain ``14`` | ``GCCcore/10.2.0`` ``14`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PALEOMIX.md b/docs/version-specific/supported-software/p/PALEOMIX.md index a7f9465a9..c872d77b3 100644 --- a/docs/version-specific/supported-software/p/PALEOMIX.md +++ b/docs/version-specific/supported-software/p/PALEOMIX.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.7`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PAML.md b/docs/version-specific/supported-software/p/PAML.md index 6f9b4cf0d..2e889efc8 100644 --- a/docs/version-specific/supported-software/p/PAML.md +++ b/docs/version-specific/supported-software/p/PAML.md @@ -18,5 +18,6 @@ version | toolchain ``4.9j`` | ``GCCcore/11.2.0`` ``4.9j`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PANDAseq.md b/docs/version-specific/supported-software/p/PANDAseq.md index d97b92f77..088b8affe 100644 --- a/docs/version-specific/supported-software/p/PANDAseq.md +++ b/docs/version-specific/supported-software/p/PANDAseq.md @@ -16,5 +16,6 @@ version | toolchain ``2.11`` | ``intel/2017b`` ``2.11`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PAPI.md b/docs/version-specific/supported-software/p/PAPI.md index baf278604..b44a52967 100644 --- a/docs/version-specific/supported-software/p/PAPI.md +++ b/docs/version-specific/supported-software/p/PAPI.md @@ -26,5 +26,6 @@ version | toolchain ``7.0.1`` | ``GCCcore/12.3.0`` ``7.1.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cd7e35178..03b0b4cc3 100644 --- a/docs/version-specific/supported-software/p/PARI-GP.md +++ b/docs/version-specific/supported-software/p/PARI-GP.md @@ -14,5 +14,6 @@ version | toolchain ``2.15.5`` | ``GCCcore/13.2.0`` ``2.7.6`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PASA.md b/docs/version-specific/supported-software/p/PASA.md index 97261b3ce..4034ca212 100644 --- a/docs/version-specific/supported-software/p/PASA.md +++ b/docs/version-specific/supported-software/p/PASA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.3`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PAUP.md b/docs/version-specific/supported-software/p/PAUP.md index 448f1e3bd..ef7cc8d5c 100644 --- a/docs/version-specific/supported-software/p/PAUP.md +++ b/docs/version-specific/supported-software/p/PAUP.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.0a166`` | ``-centos64`` | ``system`` ``4.0a168`` | ``-centos64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PBSuite.md b/docs/version-specific/supported-software/p/PBSuite.md index 45f76e2b4..7afe20bb2 100644 --- a/docs/version-specific/supported-software/p/PBSuite.md +++ b/docs/version-specific/supported-software/p/PBSuite.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``15.8.24`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PBZIP2.md b/docs/version-specific/supported-software/p/PBZIP2.md index 1362b48f4..17c9a23a6 100644 --- a/docs/version-specific/supported-software/p/PBZIP2.md +++ b/docs/version-specific/supported-software/p/PBZIP2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.13`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCAngsd.md b/docs/version-specific/supported-software/p/PCAngsd.md index f6000abc2..e0b9961b6 100644 --- a/docs/version-specific/supported-software/p/PCAngsd.md +++ b/docs/version-specific/supported-software/p/PCAngsd.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.97`` | ``-Python-2.7.14`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCC.md b/docs/version-specific/supported-software/p/PCC.md index 1e79bbd8b..f89711aaf 100644 --- a/docs/version-specific/supported-software/p/PCC.md +++ b/docs/version-specific/supported-software/p/PCC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20131024`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCL.md b/docs/version-specific/supported-software/p/PCL.md index 22f1ec21e..72fa3e047 100644 --- a/docs/version-specific/supported-software/p/PCL.md +++ b/docs/version-specific/supported-software/p/PCL.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.7.2`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.8.1`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCMSolver.md b/docs/version-specific/supported-software/p/PCMSolver.md index 9420035b3..74ba078a9 100644 --- a/docs/version-specific/supported-software/p/PCMSolver.md +++ b/docs/version-specific/supported-software/p/PCMSolver.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.2.3`` | | ``iimpi/2020b`` ``20160205`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCRE.md b/docs/version-specific/supported-software/p/PCRE.md index f645c5973..acfb6077b 100644 --- a/docs/version-specific/supported-software/p/PCRE.md +++ b/docs/version-specific/supported-software/p/PCRE.md @@ -37,5 +37,6 @@ version | toolchain ``8.45`` | ``GCCcore/12.3.0`` ``8.45`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCRE2.md b/docs/version-specific/supported-software/p/PCRE2.md index 680fe05f0..4ec1e38f6 100644 --- a/docs/version-specific/supported-software/p/PCRE2.md +++ b/docs/version-specific/supported-software/p/PCRE2.md @@ -24,5 +24,6 @@ version | toolchain ``10.42`` | ``GCCcore/13.2.0`` ``10.43`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PCRaster.md b/docs/version-specific/supported-software/p/PCRaster.md index 39b9a7ede..270c3b5f4 100644 --- a/docs/version-specific/supported-software/p/PCRaster.md +++ b/docs/version-specific/supported-software/p/PCRaster.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PDM.md b/docs/version-specific/supported-software/p/PDM.md index c91739642..390a4da05 100644 --- a/docs/version-specific/supported-software/p/PDM.md +++ b/docs/version-specific/supported-software/p/PDM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.12.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PDT.md b/docs/version-specific/supported-software/p/PDT.md index 013470a75..2fa9ff3c5 100644 --- a/docs/version-specific/supported-software/p/PDT.md +++ b/docs/version-specific/supported-software/p/PDT.md @@ -22,5 +22,6 @@ version | toolchain ``3.25.1`` | ``GCCcore/9.3.0`` ``3.25.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PEAR.md b/docs/version-specific/supported-software/p/PEAR.md index adf862dd2..280610e2c 100644 --- a/docs/version-specific/supported-software/p/PEAR.md +++ b/docs/version-specific/supported-software/p/PEAR.md @@ -21,5 +21,6 @@ version | toolchain ``0.9.8`` | ``foss/2016b`` ``0.9.8`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PEPT.md b/docs/version-specific/supported-software/p/PEPT.md index 266bd322a..6f7acf098 100644 --- a/docs/version-specific/supported-software/p/PEPT.md +++ b/docs/version-specific/supported-software/p/PEPT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PEST++.md b/docs/version-specific/supported-software/p/PEST++.md index b7d9d3e10..f0d8ea82a 100644 --- a/docs/version-specific/supported-software/p/PEST++.md +++ b/docs/version-specific/supported-software/p/PEST++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.5`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PETSc.md b/docs/version-specific/supported-software/p/PETSc.md index a7910ac6b..ae363a8ab 100644 --- a/docs/version-specific/supported-software/p/PETSc.md +++ b/docs/version-specific/supported-software/p/PETSc.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``3.9.3`` | | ``foss/2018a`` ``3.9.3`` | | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PFFT.md b/docs/version-specific/supported-software/p/PFFT.md index e9dc385ce..b34ce655b 100644 --- a/docs/version-specific/supported-software/p/PFFT.md +++ b/docs/version-specific/supported-software/p/PFFT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20181230`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PGDSpider.md b/docs/version-specific/supported-software/p/PGDSpider.md index bbc15207b..6ca7f8959 100644 --- a/docs/version-specific/supported-software/p/PGDSpider.md +++ b/docs/version-specific/supported-software/p/PGDSpider.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.0.3`` | ``-Java-1.7.0_80`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PGI.md b/docs/version-specific/supported-software/p/PGI.md index 0a1172613..3a598c62c 100644 --- a/docs/version-specific/supported-software/p/PGI.md +++ b/docs/version-specific/supported-software/p/PGI.md @@ -31,5 +31,6 @@ version | versionsuffix | toolchain ``19.4`` | ``-GCC-8.2.0-2.31.1`` | ``system`` ``19.7`` | ``-GCC-8.3.0-2.32`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PGPLOT.md b/docs/version-specific/supported-software/p/PGPLOT.md index 65d7f063b..ab5007dbd 100644 --- a/docs/version-specific/supported-software/p/PGPLOT.md +++ b/docs/version-specific/supported-software/p/PGPLOT.md @@ -14,5 +14,6 @@ version | toolchain ``5.2.2`` | ``GCCcore/11.3.0`` ``5.2.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PHANOTATE.md b/docs/version-specific/supported-software/p/PHANOTATE.md index c7edb4de5..a872d70a4 100644 --- a/docs/version-specific/supported-software/p/PHANOTATE.md +++ b/docs/version-specific/supported-software/p/PHANOTATE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20190724`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PHASE.md b/docs/version-specific/supported-software/p/PHASE.md index dfca6e5c0..323525250 100644 --- a/docs/version-specific/supported-software/p/PHASE.md +++ b/docs/version-specific/supported-software/p/PHASE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PHAST.md b/docs/version-specific/supported-software/p/PHAST.md index 0b6cf8da7..d62468a94 100644 --- a/docs/version-specific/supported-software/p/PHAST.md +++ b/docs/version-specific/supported-software/p/PHAST.md @@ -14,5 +14,6 @@ version | toolchain ``1.5`` | ``GCC/6.4.0-2.28`` ``1.5`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PHLAT.md b/docs/version-specific/supported-software/p/PHLAT.md index 8146bd234..2e07a2304 100644 --- a/docs/version-specific/supported-software/p/PHLAT.md +++ b/docs/version-specific/supported-software/p/PHLAT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PHYLIP.md b/docs/version-specific/supported-software/p/PHYLIP.md index 52cffffeb..f4039ba4b 100644 --- a/docs/version-specific/supported-software/p/PHYLIP.md +++ b/docs/version-specific/supported-software/p/PHYLIP.md @@ -17,5 +17,6 @@ version | toolchain ``3.697`` | ``GCC/9.3.0`` ``3.697`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f8e5ac48e..ee777ad80 100644 --- a/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md +++ b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.8.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PICRUSt2.md b/docs/version-specific/supported-software/p/PICRUSt2.md index a90583e71..5a5630bca 100644 --- a/docs/version-specific/supported-software/p/PICRUSt2.md +++ b/docs/version-specific/supported-software/p/PICRUSt2.md @@ -13,5 +13,6 @@ version | toolchain ``2.5.2`` | ``foss/2022a`` ``2.5.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PIL.md b/docs/version-specific/supported-software/p/PIL.md index 1925817ae..1ac49dc74 100644 --- a/docs/version-specific/supported-software/p/PIL.md +++ b/docs/version-specific/supported-software/p/PIL.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.1.7`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.1.7`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PIMS.md b/docs/version-specific/supported-software/p/PIMS.md index 538529c37..92420f8a9 100644 --- a/docs/version-specific/supported-software/p/PIMS.md +++ b/docs/version-specific/supported-software/p/PIMS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.1`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PIPITS.md b/docs/version-specific/supported-software/p/PIPITS.md index fbeac2b44..eb9d7a476 100644 --- a/docs/version-specific/supported-software/p/PIPITS.md +++ b/docs/version-specific/supported-software/p/PIPITS.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.0`` | | ``foss/2021a`` ``3.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PIRATE.md b/docs/version-specific/supported-software/p/PIRATE.md index 1d1113653..7d4fbf409 100644 --- a/docs/version-specific/supported-software/p/PIRATE.md +++ b/docs/version-specific/supported-software/p/PIRATE.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.5`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLAMS.md b/docs/version-specific/supported-software/p/PLAMS.md index 6292338c7..a38131f95 100644 --- a/docs/version-specific/supported-software/p/PLAMS.md +++ b/docs/version-specific/supported-software/p/PLAMS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.1`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLAST.md b/docs/version-specific/supported-software/p/PLAST.md index 36360966c..8a908b780 100644 --- a/docs/version-specific/supported-software/p/PLAST.md +++ b/docs/version-specific/supported-software/p/PLAST.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Java-1.8.0_92`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLINK.md b/docs/version-specific/supported-software/p/PLINK.md index 134140ec9..2b02d53f6 100644 --- a/docs/version-specific/supported-software/p/PLINK.md +++ b/docs/version-specific/supported-software/p/PLINK.md @@ -28,5 +28,6 @@ version | toolchain ``2.00a3.7`` | ``foss/2022a`` ``2.00a3.7`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLINKSEQ.md b/docs/version-specific/supported-software/p/PLINKSEQ.md index 4bf39618b..2b204164b 100644 --- a/docs/version-specific/supported-software/p/PLINKSEQ.md +++ b/docs/version-specific/supported-software/p/PLINKSEQ.md @@ -13,5 +13,6 @@ version | toolchain ``0.10`` | ``GCC/6.4.0-2.28`` ``0.10`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLUMED.md b/docs/version-specific/supported-software/p/PLUMED.md index b42878557..002603b94 100644 --- a/docs/version-specific/supported-software/p/PLUMED.md +++ b/docs/version-specific/supported-software/p/PLUMED.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``2.9.0`` | | ``foss/2022b`` ``2.9.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLY.md b/docs/version-specific/supported-software/p/PLY.md index dbd8f4c31..1c2a272ec 100644 --- a/docs/version-specific/supported-software/p/PLY.md +++ b/docs/version-specific/supported-software/p/PLY.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.11`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``3.11`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PLplot.md b/docs/version-specific/supported-software/p/PLplot.md index c67306c12..836cbc2b7 100644 --- a/docs/version-specific/supported-software/p/PLplot.md +++ b/docs/version-specific/supported-software/p/PLplot.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PMIx.md b/docs/version-specific/supported-software/p/PMIx.md index 44ff01cec..bdc247021 100644 --- a/docs/version-specific/supported-software/p/PMIx.md +++ b/docs/version-specific/supported-software/p/PMIx.md @@ -36,5 +36,6 @@ version | toolchain ``4.2.6`` | ``GCCcore/13.2.0`` ``5.0.2`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/POT.md b/docs/version-specific/supported-software/p/POT.md index c4a2cefe7..1866a2ddc 100644 --- a/docs/version-specific/supported-software/p/POT.md +++ b/docs/version-specific/supported-software/p/POT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.5.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``0.9.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 65eb6de04..3d23e7c03 100644 --- a/docs/version-specific/supported-software/p/POV-Ray.md +++ b/docs/version-specific/supported-software/p/POV-Ray.md @@ -21,5 +21,6 @@ version | toolchain ``3.7.0.8`` | ``GCC/10.2.0`` ``3.7.0.8`` | ``iccifort/2020.4.304`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PPanGGOLiN.md b/docs/version-specific/supported-software/p/PPanGGOLiN.md index 8a6ea914f..dbe318c3a 100644 --- a/docs/version-specific/supported-software/p/PPanGGOLiN.md +++ b/docs/version-specific/supported-software/p/PPanGGOLiN.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.136`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PPfold.md b/docs/version-specific/supported-software/p/PPfold.md index d21855e13..52fd9bf65 100644 --- a/docs/version-specific/supported-software/p/PPfold.md +++ b/docs/version-specific/supported-software/p/PPfold.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.1`` | ``-Java-1.8.0_66`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PRANK.md b/docs/version-specific/supported-software/p/PRANK.md index 3ca5c1a0d..df317855f 100644 --- a/docs/version-specific/supported-software/p/PRANK.md +++ b/docs/version-specific/supported-software/p/PRANK.md @@ -18,5 +18,6 @@ version | toolchain ``170427`` | ``GCC/9.3.0`` ``170427`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PRC.md b/docs/version-specific/supported-software/p/PRC.md index 1705ea1b7..f79377efd 100644 --- a/docs/version-specific/supported-software/p/PRC.md +++ b/docs/version-specific/supported-software/p/PRC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.6`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PREQUAL.md b/docs/version-specific/supported-software/p/PREQUAL.md index 04fc30dc2..7e60e6270 100644 --- a/docs/version-specific/supported-software/p/PREQUAL.md +++ b/docs/version-specific/supported-software/p/PREQUAL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.02`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PRINSEQ.md b/docs/version-specific/supported-software/p/PRINSEQ.md index e27c529f1..2c814d2c3 100644 --- a/docs/version-specific/supported-software/p/PRINSEQ.md +++ b/docs/version-specific/supported-software/p/PRINSEQ.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.20.4`` | ``-Perl-5.32.0`` | ``foss/2020b`` ``0.20.4`` | ``-Perl-5.34.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 504346b4e..ffbb290be 100644 --- a/docs/version-specific/supported-software/p/PRISMS-PF.md +++ b/docs/version-specific/supported-software/p/PRISMS-PF.md @@ -14,5 +14,6 @@ version | toolchain ``2.1.1`` | ``intel/2019a`` ``2.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PROJ.md b/docs/version-specific/supported-software/p/PROJ.md index 337b354ac..2077d30c1 100644 --- a/docs/version-specific/supported-software/p/PROJ.md +++ b/docs/version-specific/supported-software/p/PROJ.md @@ -36,5 +36,6 @@ version | toolchain ``9.2.0`` | ``GCCcore/12.3.0`` ``9.3.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PRRTE.md b/docs/version-specific/supported-software/p/PRRTE.md index 250ea0833..7a8569cfe 100644 --- a/docs/version-specific/supported-software/p/PRRTE.md +++ b/docs/version-specific/supported-software/p/PRRTE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.5`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PRSice.md b/docs/version-specific/supported-software/p/PRSice.md index a14b9da3a..c19c2aecb 100644 --- a/docs/version-specific/supported-software/p/PRSice.md +++ b/docs/version-specific/supported-software/p/PRSice.md @@ -17,5 +17,6 @@ version | toolchain ``2.3.5`` | ``GCCcore/11.3.0`` ``2.3.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSASS.md b/docs/version-specific/supported-software/p/PSASS.md index 7fe27a516..3536f7d6c 100644 --- a/docs/version-specific/supported-software/p/PSASS.md +++ b/docs/version-specific/supported-software/p/PSASS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSI.md b/docs/version-specific/supported-software/p/PSI.md index 6e8bd257c..ec54ee4d7 100644 --- a/docs/version-specific/supported-software/p/PSI.md +++ b/docs/version-specific/supported-software/p/PSI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.0b6-20160201`` | ``-mt-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSI4.md b/docs/version-specific/supported-software/p/PSI4.md index 4c6dbb11f..95de497bd 100644 --- a/docs/version-specific/supported-software/p/PSI4.md +++ b/docs/version-specific/supported-software/p/PSI4.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.3.2`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.7`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSIPRED.md b/docs/version-specific/supported-software/p/PSIPRED.md index eb7e6ba20..045a6d73a 100644 --- a/docs/version-specific/supported-software/p/PSIPRED.md +++ b/docs/version-specific/supported-software/p/PSIPRED.md @@ -13,5 +13,6 @@ version | toolchain ``4.02`` | ``GCC/12.3.0`` ``4.02`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSM2.md b/docs/version-specific/supported-software/p/PSM2.md index f15f2cc6a..6f1fdb0ea 100644 --- a/docs/version-specific/supported-software/p/PSM2.md +++ b/docs/version-specific/supported-software/p/PSM2.md @@ -18,5 +18,6 @@ version | toolchain ``12.0.1`` | ``GCCcore/13.2.0`` ``12.0.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSORTb.md b/docs/version-specific/supported-software/p/PSORTb.md index 6573f8419..1ef0772c5 100644 --- a/docs/version-specific/supported-software/p/PSORTb.md +++ b/docs/version-specific/supported-software/p/PSORTb.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.4`` | ``-Perl-5.22.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PSolver.md b/docs/version-specific/supported-software/p/PSolver.md index 9fbd814fb..e53804ef6 100644 --- a/docs/version-specific/supported-software/p/PSolver.md +++ b/docs/version-specific/supported-software/p/PSolver.md @@ -23,5 +23,6 @@ version | toolchain ``1.8.3`` | ``intel/2021a`` ``1.8.3`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PTESFinder.md b/docs/version-specific/supported-software/p/PTESFinder.md index d488bc77c..e8875aba5 100644 --- a/docs/version-specific/supported-software/p/PTESFinder.md +++ b/docs/version-specific/supported-software/p/PTESFinder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PYPOWER.md b/docs/version-specific/supported-software/p/PYPOWER.md index 8038cf52e..904b50bc4 100644 --- a/docs/version-specific/supported-software/p/PYPOWER.md +++ b/docs/version-specific/supported-software/p/PYPOWER.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.1.15`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PYTHIA.md b/docs/version-specific/supported-software/p/PYTHIA.md index 855270e2a..4f22c4095 100644 --- a/docs/version-specific/supported-software/p/PYTHIA.md +++ b/docs/version-specific/supported-software/p/PYTHIA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``8.226`` | ``-Python-2.7.13`` | ``intel/2017a`` ``8.309`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PaStiX.md b/docs/version-specific/supported-software/p/PaStiX.md index 42c0d9dae..e87ac570e 100644 --- a/docs/version-specific/supported-software/p/PaStiX.md +++ b/docs/version-specific/supported-software/p/PaStiX.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.2.3`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pandoc.md b/docs/version-specific/supported-software/p/Pandoc.md index 827b21606..d361e6e51 100644 --- a/docs/version-specific/supported-software/p/Pandoc.md +++ b/docs/version-specific/supported-software/p/Pandoc.md @@ -16,5 +16,6 @@ version | toolchain ``2.5`` | ``system`` ``3.1.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Panedr.md b/docs/version-specific/supported-software/p/Panedr.md index 4c4702743..7202e852d 100644 --- a/docs/version-specific/supported-software/p/Panedr.md +++ b/docs/version-specific/supported-software/p/Panedr.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pango.md b/docs/version-specific/supported-software/p/Pango.md index 7583784b3..27a6f2661 100644 --- a/docs/version-specific/supported-software/p/Pango.md +++ b/docs/version-specific/supported-software/p/Pango.md @@ -37,5 +37,6 @@ version | toolchain ``1.50.7`` | ``GCCcore/11.3.0`` ``1.51.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ParMETIS.md b/docs/version-specific/supported-software/p/ParMETIS.md index 960f643ae..fd13f73fc 100644 --- a/docs/version-specific/supported-software/p/ParMETIS.md +++ b/docs/version-specific/supported-software/p/ParMETIS.md @@ -39,5 +39,6 @@ version | toolchain ``4.0.3`` | ``intel/2018a`` ``4.0.3`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ParMGridGen.md b/docs/version-specific/supported-software/p/ParMGridGen.md index 2b37bf86a..1b64bc3e5 100644 --- a/docs/version-specific/supported-software/p/ParMGridGen.md +++ b/docs/version-specific/supported-software/p/ParMGridGen.md @@ -18,5 +18,6 @@ version | toolchain ``1.0`` | ``intel/2016a`` ``1.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ParaView.md b/docs/version-specific/supported-software/p/ParaView.md index 1f3b80d8e..05d0d4a31 100644 --- a/docs/version-specific/supported-software/p/ParaView.md +++ b/docs/version-specific/supported-software/p/ParaView.md @@ -42,5 +42,6 @@ version | versionsuffix | toolchain ``5.9.1`` | ``-mpi`` | ``foss/2021b`` ``5.9.1`` | ``-mpi`` | ``intel/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 81e5ff809..130efe0ea 100644 --- a/docs/version-specific/supported-software/p/Parallel-Hashmap.md +++ b/docs/version-specific/supported-software/p/Parallel-Hashmap.md @@ -14,5 +14,6 @@ version | toolchain ``1.33`` | ``GCCcore/10.3.0`` ``1.36`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ParallelIO.md b/docs/version-specific/supported-software/p/ParallelIO.md index d234a34a1..54b185261 100644 --- a/docs/version-specific/supported-software/p/ParallelIO.md +++ b/docs/version-specific/supported-software/p/ParallelIO.md @@ -14,5 +14,6 @@ version | toolchain ``2.5.10`` | ``gompi/2022a`` ``2.5.10`` | ``iimpi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Paraver.md b/docs/version-specific/supported-software/p/Paraver.md index 2aea8d697..fce55147d 100644 --- a/docs/version-specific/supported-software/p/Paraver.md +++ b/docs/version-specific/supported-software/p/Paraver.md @@ -14,5 +14,6 @@ version | toolchain ``4.8.1`` | ``foss/2019a`` ``4.9.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Parcels.md b/docs/version-specific/supported-software/p/Parcels.md index 417d20156..6079e5e1a 100644 --- a/docs/version-specific/supported-software/p/Parcels.md +++ b/docs/version-specific/supported-software/p/Parcels.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.4.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ParmEd.md b/docs/version-specific/supported-software/p/ParmEd.md index 9dcea1824..923ffa28d 100644 --- a/docs/version-specific/supported-software/p/ParmEd.md +++ b/docs/version-specific/supported-software/p/ParmEd.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Parsl.md b/docs/version-specific/supported-software/p/Parsl.md index 03a161905..292555d3d 100644 --- a/docs/version-specific/supported-software/p/Parsl.md +++ b/docs/version-specific/supported-software/p/Parsl.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2023.7.17`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PartitionFinder.md b/docs/version-specific/supported-software/p/PartitionFinder.md index 57466c58b..7be13b738 100644 --- a/docs/version-specific/supported-software/p/PartitionFinder.md +++ b/docs/version-specific/supported-software/p/PartitionFinder.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-2.7.18`` | ``foss/2020b`` ``2.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PennCNV.md b/docs/version-specific/supported-software/p/PennCNV.md index 31360bdfc..945f65855 100644 --- a/docs/version-specific/supported-software/p/PennCNV.md +++ b/docs/version-specific/supported-software/p/PennCNV.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.5`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Percolator.md b/docs/version-specific/supported-software/p/Percolator.md index 0ba2dc6d5..9a0473699 100644 --- a/docs/version-specific/supported-software/p/Percolator.md +++ b/docs/version-specific/supported-software/p/Percolator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.4`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 62a3c202a..0b9ad7406 100644 --- a/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md +++ b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md @@ -13,5 +13,6 @@ version | toolchain ``5.36.1`` | ``GCCcore/12.3.0`` ``5.38.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Perl.md b/docs/version-specific/supported-software/p/Perl.md index d02da3754..0ec442d00 100644 --- a/docs/version-specific/supported-software/p/Perl.md +++ b/docs/version-specific/supported-software/p/Perl.md @@ -63,5 +63,6 @@ version | versionsuffix | toolchain ``5.38.0`` | | ``system`` ``5.38.2`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e08b4121a..820c40ce7 100644 --- a/docs/version-specific/supported-software/p/Perl4-CoreLibs.md +++ b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.003`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Perseus.md b/docs/version-specific/supported-software/p/Perseus.md index 68b0073ba..e3db4d138 100644 --- a/docs/version-specific/supported-software/p/Perseus.md +++ b/docs/version-specific/supported-software/p/Perseus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.7.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PfamScan.md b/docs/version-specific/supported-software/p/PfamScan.md index 779c87121..1bc099af5 100644 --- a/docs/version-specific/supported-software/p/PfamScan.md +++ b/docs/version-specific/supported-software/p/PfamScan.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.6`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Phantompeakqualtools.md b/docs/version-specific/supported-software/p/Phantompeakqualtools.md index ba3854cdc..a4a41bf19 100644 --- a/docs/version-specific/supported-software/p/Phantompeakqualtools.md +++ b/docs/version-specific/supported-software/p/Phantompeakqualtools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PheWAS.md b/docs/version-specific/supported-software/p/PheWAS.md index 6a09e69bc..8b5bd38b0 100644 --- a/docs/version-specific/supported-software/p/PheWAS.md +++ b/docs/version-specific/supported-software/p/PheWAS.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.99.5-2`` | ``-R-3.6.0`` | ``foss/2019a`` ``0.99.5-2`` | ``-R-3.6.0`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PheWeb.md b/docs/version-specific/supported-software/p/PheWeb.md index e34dd0b50..d6e21ce6e 100644 --- a/docs/version-specific/supported-software/p/PheWeb.md +++ b/docs/version-specific/supported-software/p/PheWeb.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.20`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Phenoflow.md b/docs/version-specific/supported-software/p/Phenoflow.md index a73d67338..26706fcae 100644 --- a/docs/version-specific/supported-software/p/Phenoflow.md +++ b/docs/version-specific/supported-software/p/Phenoflow.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.2-20200917`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PhiPack.md b/docs/version-specific/supported-software/p/PhiPack.md index 54b6bc29f..d80558b4e 100644 --- a/docs/version-specific/supported-software/p/PhiPack.md +++ b/docs/version-specific/supported-software/p/PhiPack.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2016.06.14`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Philosopher.md b/docs/version-specific/supported-software/p/Philosopher.md index 6da5c9e3f..c6be8e5fa 100644 --- a/docs/version-specific/supported-software/p/Philosopher.md +++ b/docs/version-specific/supported-software/p/Philosopher.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.0`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PhyML.md b/docs/version-specific/supported-software/p/PhyML.md index 6a5e62ad6..670145efc 100644 --- a/docs/version-specific/supported-software/p/PhyML.md +++ b/docs/version-specific/supported-software/p/PhyML.md @@ -14,5 +14,6 @@ version | toolchain ``3.3.20200621`` | ``foss/2020b`` ``3.3.20220408`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b3c8137c4..3c51d1f9d 100644 --- a/docs/version-specific/supported-software/p/PhyloBayes-MPI.md +++ b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20161021`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PhyloPhlAn.md b/docs/version-specific/supported-software/p/PhyloPhlAn.md index 97a83e004..48d5d565c 100644 --- a/docs/version-specific/supported-software/p/PhyloPhlAn.md +++ b/docs/version-specific/supported-software/p/PhyloPhlAn.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.0.2`` | | ``foss/2021a`` ``3.0.3`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PileOMeth.md b/docs/version-specific/supported-software/p/PileOMeth.md index 686b32fe1..3ab253abb 100644 --- a/docs/version-specific/supported-software/p/PileOMeth.md +++ b/docs/version-specific/supported-software/p/PileOMeth.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.11`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6f55f5272..ad8dddcd2 100644 --- a/docs/version-specific/supported-software/p/Pillow-SIMD.md +++ b/docs/version-specific/supported-software/p/Pillow-SIMD.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``9.5.0`` | | ``GCCcore/12.2.0`` ``9.5.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pillow.md b/docs/version-specific/supported-software/p/Pillow.md index 2ea930343..bb8067fab 100644 --- a/docs/version-specific/supported-software/p/Pillow.md +++ b/docs/version-specific/supported-software/p/Pillow.md @@ -50,5 +50,6 @@ version | versionsuffix | toolchain ``9.2.0`` | | ``GCCcore/10.2.0`` ``9.4.0`` | | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pilon.md b/docs/version-specific/supported-software/p/Pilon.md index 8a3500fcb..98ccadc07 100644 --- a/docs/version-specific/supported-software/p/Pilon.md +++ b/docs/version-specific/supported-software/p/Pilon.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.23`` | ``-Java-1.8`` | ``system`` ``1.23`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pindel.md b/docs/version-specific/supported-software/p/Pindel.md index cba7c1bd4..8f3fa1786 100644 --- a/docs/version-specific/supported-software/p/Pindel.md +++ b/docs/version-specific/supported-software/p/Pindel.md @@ -15,5 +15,6 @@ version | toolchain ``0.2.5b9-20170508`` | ``GCC/11.3.0`` ``0.2.5b9-20170508`` | ``GCC/6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pingouin.md b/docs/version-specific/supported-software/p/Pingouin.md index 9bdcaee5b..27b8c968b 100644 --- a/docs/version-specific/supported-software/p/Pingouin.md +++ b/docs/version-specific/supported-software/p/Pingouin.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pint.md b/docs/version-specific/supported-software/p/Pint.md index def3426d3..7525a699a 100644 --- a/docs/version-specific/supported-software/p/Pint.md +++ b/docs/version-specific/supported-software/p/Pint.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.22`` | | ``GCCcore/11.3.0`` ``0.23`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pisces.md b/docs/version-specific/supported-software/p/Pisces.md index b1b3913ed..af07958af 100644 --- a/docs/version-specific/supported-software/p/Pisces.md +++ b/docs/version-specific/supported-software/p/Pisces.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.2.7.47`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PlaScope.md b/docs/version-specific/supported-software/p/PlaScope.md index cd8ee6e07..c54746444 100644 --- a/docs/version-specific/supported-software/p/PlaScope.md +++ b/docs/version-specific/supported-software/p/PlaScope.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PlasmaPy.md b/docs/version-specific/supported-software/p/PlasmaPy.md index 0a9d83432..cd7b784a1 100644 --- a/docs/version-specific/supported-software/p/PlasmaPy.md +++ b/docs/version-specific/supported-software/p/PlasmaPy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Platanus.md b/docs/version-specific/supported-software/p/Platanus.md index f4db8dda2..4497b8b34 100644 --- a/docs/version-specific/supported-software/p/Platanus.md +++ b/docs/version-specific/supported-software/p/Platanus.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.1`` | ``-linux-x86_64`` | ``system`` ``1.2.4`` | | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2e56059b9..f53b5c96a 100644 --- a/docs/version-specific/supported-software/p/Platypus-Opt.md +++ b/docs/version-specific/supported-software/p/Platypus-Opt.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Platypus.md b/docs/version-specific/supported-software/p/Platypus.md index e06b9131a..0672589e5 100644 --- a/docs/version-specific/supported-software/p/Platypus.md +++ b/docs/version-specific/supported-software/p/Platypus.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.8.1`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Ploticus.md b/docs/version-specific/supported-software/p/Ploticus.md index 32b7cd745..3cd622ce4 100644 --- a/docs/version-specific/supported-software/p/Ploticus.md +++ b/docs/version-specific/supported-software/p/Ploticus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.42`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PnetCDF.md b/docs/version-specific/supported-software/p/PnetCDF.md index 1e9f1382b..e9423d22d 100644 --- a/docs/version-specific/supported-software/p/PnetCDF.md +++ b/docs/version-specific/supported-software/p/PnetCDF.md @@ -29,5 +29,6 @@ version | toolchain ``1.8.1`` | ``intel/2017a`` ``1.9.0`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Porechop.md b/docs/version-specific/supported-software/p/Porechop.md index eec55d15a..fa9ecc7bb 100644 --- a/docs/version-specific/supported-software/p/Porechop.md +++ b/docs/version-specific/supported-software/p/Porechop.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.2.4`` | ``-Python-3.6.6`` | ``foss/2018b`` ``0.2.4`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PortAudio.md b/docs/version-specific/supported-software/p/PortAudio.md index 1e18cd1b4..6ba789a4e 100644 --- a/docs/version-specific/supported-software/p/PortAudio.md +++ b/docs/version-specific/supported-software/p/PortAudio.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``19.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PortMidi.md b/docs/version-specific/supported-software/p/PortMidi.md index 3bde9db4e..9f75c0450 100644 --- a/docs/version-specific/supported-software/p/PortMidi.md +++ b/docs/version-specific/supported-software/p/PortMidi.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.4`` | ``GCCcore/11.3.0`` ``2.0.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Portcullis.md b/docs/version-specific/supported-software/p/Portcullis.md index eb904414e..1d21c9ad6 100644 --- a/docs/version-specific/supported-software/p/Portcullis.md +++ b/docs/version-specific/supported-software/p/Portcullis.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.2`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PostgreSQL.md b/docs/version-specific/supported-software/p/PostgreSQL.md index 013b3a41c..1be6be855 100644 --- a/docs/version-specific/supported-software/p/PostgreSQL.md +++ b/docs/version-specific/supported-software/p/PostgreSQL.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``9.6.2`` | ``-Python-2.7.12`` | ``foss/2016b`` ``9.6.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9ba965efb..d42fd6551 100644 --- a/docs/version-specific/supported-software/p/Postgres-XL.md +++ b/docs/version-specific/supported-software/p/Postgres-XL.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.5r1`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Primer3.md b/docs/version-specific/supported-software/p/Primer3.md index 363d33786..9e465246f 100644 --- a/docs/version-specific/supported-software/p/Primer3.md +++ b/docs/version-specific/supported-software/p/Primer3.md @@ -15,5 +15,6 @@ version | toolchain ``2.4.0`` | ``intel/2018b`` ``2.5.0`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ProBiS.md b/docs/version-specific/supported-software/p/ProBiS.md index 44ed3b012..587326a8b 100644 --- a/docs/version-specific/supported-software/p/ProBiS.md +++ b/docs/version-specific/supported-software/p/ProBiS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20230403`` | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ProFit.md b/docs/version-specific/supported-software/p/ProFit.md index ec7f576bb..fc755e96e 100644 --- a/docs/version-specific/supported-software/p/ProFit.md +++ b/docs/version-specific/supported-software/p/ProFit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ProbABEL.md b/docs/version-specific/supported-software/p/ProbABEL.md index e784c2d8e..bf8d8156d 100644 --- a/docs/version-specific/supported-software/p/ProbABEL.md +++ b/docs/version-specific/supported-software/p/ProbABEL.md @@ -13,5 +13,6 @@ version | toolchain ``0.5.0`` | ``GCCcore/9.3.0`` ``0.5.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ProjectQ.md b/docs/version-specific/supported-software/p/ProjectQ.md index d8f9a4f91..f47a8ca3e 100644 --- a/docs/version-specific/supported-software/p/ProjectQ.md +++ b/docs/version-specific/supported-software/p/ProjectQ.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.2`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ProtHint.md b/docs/version-specific/supported-software/p/ProtHint.md index b1a3027d3..11508eadb 100644 --- a/docs/version-specific/supported-software/p/ProtHint.md +++ b/docs/version-specific/supported-software/p/ProtHint.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ProteinMPNN.md b/docs/version-specific/supported-software/p/ProteinMPNN.md index e996914f2..9595f51cb 100644 --- a/docs/version-specific/supported-software/p/ProteinMPNN.md +++ b/docs/version-specific/supported-software/p/ProteinMPNN.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.1-20230627`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Proteinortho.md b/docs/version-specific/supported-software/p/Proteinortho.md index e3efe556c..a05819767 100644 --- a/docs/version-specific/supported-software/p/Proteinortho.md +++ b/docs/version-specific/supported-software/p/Proteinortho.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.16b`` | ``-Python-3.6.4-Perl-5.26.1`` | ``foss/2018a`` ``6.2.3`` | | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PsiCLASS.md b/docs/version-specific/supported-software/p/PsiCLASS.md index e6b311c69..7aa4de1d1 100644 --- a/docs/version-specific/supported-software/p/PsiCLASS.md +++ b/docs/version-specific/supported-software/p/PsiCLASS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PuLP.md b/docs/version-specific/supported-software/p/PuLP.md index 1147b245a..1dbd43137 100644 --- a/docs/version-specific/supported-software/p/PuLP.md +++ b/docs/version-specific/supported-software/p/PuLP.md @@ -14,5 +14,6 @@ version | toolchain ``2.7.0`` | ``foss/2022b`` ``2.8.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyAEDT.md b/docs/version-specific/supported-software/p/PyAEDT.md index cebe893e5..863a329a6 100644 --- a/docs/version-specific/supported-software/p/PyAEDT.md +++ b/docs/version-specific/supported-software/p/PyAEDT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.7`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyAMG.md b/docs/version-specific/supported-software/p/PyAMG.md index 04af4797b..0bbb75794 100644 --- a/docs/version-specific/supported-software/p/PyAMG.md +++ b/docs/version-specific/supported-software/p/PyAMG.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``4.2.3`` | | ``foss/2021a`` ``5.1.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyAPS3.md b/docs/version-specific/supported-software/p/PyAPS3.md index e8b57b68d..cc5795abf 100644 --- a/docs/version-specific/supported-software/p/PyAPS3.md +++ b/docs/version-specific/supported-software/p/PyAPS3.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190407`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyAV.md b/docs/version-specific/supported-software/p/PyAV.md index ec8850e7e..8c6a9e356 100644 --- a/docs/version-specific/supported-software/p/PyAV.md +++ b/docs/version-specific/supported-software/p/PyAV.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``10.0.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyBerny.md b/docs/version-specific/supported-software/p/PyBerny.md index 91be75cdf..6a5db2509 100644 --- a/docs/version-specific/supported-software/p/PyBerny.md +++ b/docs/version-specific/supported-software/p/PyBerny.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.6.3`` | | ``foss/2022a`` ``0.6.3`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyBioLib.md b/docs/version-specific/supported-software/p/PyBioLib.md index 4ae27490e..2afdb6ada 100644 --- a/docs/version-specific/supported-software/p/PyBioLib.md +++ b/docs/version-specific/supported-software/p/PyBioLib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.988`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCUDA.md b/docs/version-specific/supported-software/p/PyCUDA.md index cfa45ddac..385a4fafc 100644 --- a/docs/version-specific/supported-software/p/PyCUDA.md +++ b/docs/version-specific/supported-software/p/PyCUDA.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2019.1.2`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` ``2020.1`` | | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCairo.md b/docs/version-specific/supported-software/p/PyCairo.md index 0b6620c1b..7cdc20702 100644 --- a/docs/version-specific/supported-software/p/PyCairo.md +++ b/docs/version-specific/supported-software/p/PyCairo.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``1.25.0`` | | ``GCCcore/12.3.0`` ``1.25.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCalib.md b/docs/version-specific/supported-software/p/PyCalib.md index fde379d07..f606dc057 100644 --- a/docs/version-specific/supported-software/p/PyCalib.md +++ b/docs/version-specific/supported-software/p/PyCalib.md @@ -13,5 +13,6 @@ version | toolchain ``0.1.0.dev0`` | ``foss/2021b`` ``20230531`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCharm.md b/docs/version-specific/supported-software/p/PyCharm.md index 8fa61342e..c94b5eec1 100644 --- a/docs/version-specific/supported-software/p/PyCharm.md +++ b/docs/version-specific/supported-software/p/PyCharm.md @@ -16,5 +16,6 @@ version | toolchain ``2022.2.2`` | ``system`` ``2022.3.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCheMPS2.md b/docs/version-specific/supported-software/p/PyCheMPS2.md index e3bda8b95..e7b90cf3f 100644 --- a/docs/version-specific/supported-software/p/PyCheMPS2.md +++ b/docs/version-specific/supported-software/p/PyCheMPS2.md @@ -13,5 +13,6 @@ version | toolchain ``1.8.12`` | ``foss/2022a`` ``1.8.12`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCifRW.md b/docs/version-specific/supported-software/p/PyCifRW.md index 713c13e59..e24e7aaf4 100644 --- a/docs/version-specific/supported-software/p/PyCifRW.md +++ b/docs/version-specific/supported-software/p/PyCifRW.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.4.2`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyClone.md b/docs/version-specific/supported-software/p/PyClone.md index d27402b6f..0cbfc39a6 100644 --- a/docs/version-specific/supported-software/p/PyClone.md +++ b/docs/version-specific/supported-software/p/PyClone.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2020.9b2`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyCogent.md b/docs/version-specific/supported-software/p/PyCogent.md index 2bc5ace7e..2fb2e707a 100644 --- a/docs/version-specific/supported-software/p/PyCogent.md +++ b/docs/version-specific/supported-software/p/PyCogent.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.9`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.9`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyDamage.md b/docs/version-specific/supported-software/p/PyDamage.md index 14403af5e..10205a418 100644 --- a/docs/version-specific/supported-software/p/PyDamage.md +++ b/docs/version-specific/supported-software/p/PyDamage.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.70`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyDatastream.md b/docs/version-specific/supported-software/p/PyDatastream.md index d0f112a47..25f458bb8 100644 --- a/docs/version-specific/supported-software/p/PyDatastream.md +++ b/docs/version-specific/supported-software/p/PyDatastream.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyEVTK.md b/docs/version-specific/supported-software/p/PyEVTK.md index aaa55afe5..b2ce6c96a 100644 --- a/docs/version-specific/supported-software/p/PyEVTK.md +++ b/docs/version-specific/supported-software/p/PyEVTK.md @@ -13,5 +13,6 @@ version | toolchain ``1.4.1`` | ``foss/2021b`` ``2.0.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyEXR.md b/docs/version-specific/supported-software/p/PyEXR.md index d3654a3a0..024eb2a2d 100644 --- a/docs/version-specific/supported-software/p/PyEXR.md +++ b/docs/version-specific/supported-software/p/PyEXR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.10`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyFFmpeg.md b/docs/version-specific/supported-software/p/PyFFmpeg.md index df5238610..c256f4c49 100644 --- a/docs/version-specific/supported-software/p/PyFFmpeg.md +++ b/docs/version-specific/supported-software/p/PyFFmpeg.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1beta`` | ``-Python-2.7.10`` | ``gimkl/2.11.5`` ``2.1beta`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyFMI.md b/docs/version-specific/supported-software/p/PyFMI.md index 0bbf4277a..940a4100f 100644 --- a/docs/version-specific/supported-software/p/PyFMI.md +++ b/docs/version-specific/supported-software/p/PyFMI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyFR.md b/docs/version-specific/supported-software/p/PyFR.md index cef920667..86f353f81 100644 --- a/docs/version-specific/supported-software/p/PyFR.md +++ b/docs/version-specific/supported-software/p/PyFR.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyFoam.md b/docs/version-specific/supported-software/p/PyFoam.md index c0b8781a1..549bf4603 100644 --- a/docs/version-specific/supported-software/p/PyFoam.md +++ b/docs/version-specific/supported-software/p/PyFoam.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2020.5`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyFrag.md b/docs/version-specific/supported-software/p/PyFrag.md index 380e3e90b..408495273 100644 --- a/docs/version-specific/supported-software/p/PyFrag.md +++ b/docs/version-specific/supported-software/p/PyFrag.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2019-20220216`` | ``-ASA`` | ``intel/2020b`` ``2023-dev.20240220`` | ``-ASA`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyGEOS.md b/docs/version-specific/supported-software/p/PyGEOS.md index 57c2b8878..ed9abf832 100644 --- a/docs/version-specific/supported-software/p/PyGEOS.md +++ b/docs/version-specific/supported-software/p/PyGEOS.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.7.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.8`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyGObject.md b/docs/version-specific/supported-software/p/PyGObject.md index 1c61ae05b..98be185b0 100644 --- a/docs/version-specific/supported-software/p/PyGObject.md +++ b/docs/version-specific/supported-software/p/PyGObject.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``3.46.0`` | | ``GCCcore/12.3.0`` ``3.46.0`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyGTK.md b/docs/version-specific/supported-software/p/PyGTK.md index c3d9d20d2..9b91e64d6 100644 --- a/docs/version-specific/supported-software/p/PyGTK.md +++ b/docs/version-specific/supported-software/p/PyGTK.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.24.0`` | ``-Python-2.7.14`` | ``intel/2017b`` ``2.24.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyGTS.md b/docs/version-specific/supported-software/p/PyGTS.md index 467beb0c9..dff7942ee 100644 --- a/docs/version-specific/supported-software/p/PyGTS.md +++ b/docs/version-specific/supported-software/p/PyGTS.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyGWAS.md b/docs/version-specific/supported-software/p/PyGWAS.md index c5950e89d..24adb418b 100644 --- a/docs/version-specific/supported-software/p/PyGWAS.md +++ b/docs/version-specific/supported-software/p/PyGWAS.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.6.1`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.7.1`` | ``-Python-2.7.13`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyHMMER.md b/docs/version-specific/supported-software/p/PyHMMER.md index 1e54a82fa..d12b0f113 100644 --- a/docs/version-specific/supported-software/p/PyHMMER.md +++ b/docs/version-specific/supported-software/p/PyHMMER.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.10.6`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyImageJ.md b/docs/version-specific/supported-software/p/PyImageJ.md index 404ce5b2b..6b8cf400f 100644 --- a/docs/version-specific/supported-software/p/PyImageJ.md +++ b/docs/version-specific/supported-software/p/PyImageJ.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyInstaller.md b/docs/version-specific/supported-software/p/PyInstaller.md index ff14d8c23..7c0a14786 100644 --- a/docs/version-specific/supported-software/p/PyInstaller.md +++ b/docs/version-specific/supported-software/p/PyInstaller.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.3.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyMC.md b/docs/version-specific/supported-software/p/PyMC.md index b06b48112..8f9fa74e1 100644 --- a/docs/version-specific/supported-software/p/PyMC.md +++ b/docs/version-specific/supported-software/p/PyMC.md @@ -14,5 +14,6 @@ version | toolchain ``2.3.8`` | ``intel/2021b`` ``5.9.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyMC3.md b/docs/version-specific/supported-software/p/PyMC3.md index c51017928..6ad06b3ab 100644 --- a/docs/version-specific/supported-software/p/PyMC3.md +++ b/docs/version-specific/supported-software/p/PyMC3.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.8`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyMOL.md b/docs/version-specific/supported-software/p/PyMOL.md index 42fa4f9f2..0ef8a28ae 100644 --- a/docs/version-specific/supported-software/p/PyMOL.md +++ b/docs/version-specific/supported-software/p/PyMOL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyNAST.md b/docs/version-specific/supported-software/p/PyNAST.md index b53a86d3f..119803952 100644 --- a/docs/version-specific/supported-software/p/PyNAST.md +++ b/docs/version-specific/supported-software/p/PyNAST.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.2.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyOD.md b/docs/version-specific/supported-software/p/PyOD.md index 37b998fd7..1ebb1f664 100644 --- a/docs/version-specific/supported-software/p/PyOD.md +++ b/docs/version-specific/supported-software/p/PyOD.md @@ -13,5 +13,6 @@ version | toolchain ``0.8.7`` | ``foss/2020b`` ``0.8.7`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyOpenCL.md b/docs/version-specific/supported-software/p/PyOpenCL.md index 075da1f63..33c269253 100644 --- a/docs/version-specific/supported-software/p/PyOpenCL.md +++ b/docs/version-specific/supported-software/p/PyOpenCL.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2023.1.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2023.1.4`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyOpenGL.md b/docs/version-specific/supported-software/p/PyOpenGL.md index a92d1ada4..772446ffd 100644 --- a/docs/version-specific/supported-software/p/PyOpenGL.md +++ b/docs/version-specific/supported-software/p/PyOpenGL.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``3.1.6`` | | ``GCCcore/11.3.0`` ``3.1.7`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyPSA.md b/docs/version-specific/supported-software/p/PyPSA.md index 5f34e87b7..8d9d47305 100644 --- a/docs/version-specific/supported-software/p/PyPSA.md +++ b/docs/version-specific/supported-software/p/PyPSA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.17.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyPy.md b/docs/version-specific/supported-software/p/PyPy.md index 126ad8303..29ee7d548 100644 --- a/docs/version-specific/supported-software/p/PyPy.md +++ b/docs/version-specific/supported-software/p/PyPy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``7.3.12`` | ``-3.10`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index aea0697e6..8c0d56b88 100644 --- a/docs/version-specific/supported-software/p/PyQt-builder.md +++ b/docs/version-specific/supported-software/p/PyQt-builder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.15.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyQt.md b/docs/version-specific/supported-software/p/PyQt.md index fe5dceb67..9ec781725 100644 --- a/docs/version-specific/supported-software/p/PyQt.md +++ b/docs/version-specific/supported-software/p/PyQt.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``4.12.1`` | ``-Python-2.7.14`` | ``foss/2018a`` ``4.12.3`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyQt5.md b/docs/version-specific/supported-software/p/PyQt5.md index 0ba4c3778..cbc16d5a4 100644 --- a/docs/version-specific/supported-software/p/PyQt5.md +++ b/docs/version-specific/supported-software/p/PyQt5.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``5.9.2`` | ``-Python-2.7.14`` | ``intel/2018a`` ``5.9.2`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyQtGraph.md b/docs/version-specific/supported-software/p/PyQtGraph.md index 68f4af37a..04b3e14e7 100644 --- a/docs/version-specific/supported-software/p/PyQtGraph.md +++ b/docs/version-specific/supported-software/p/PyQtGraph.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``0.13.3`` | | ``foss/2022a`` ``0.13.7`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyRETIS.md b/docs/version-specific/supported-software/p/PyRETIS.md index d64c7c3ba..ddc00316c 100644 --- a/docs/version-specific/supported-software/p/PyRETIS.md +++ b/docs/version-specific/supported-software/p/PyRETIS.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.5.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.5.0`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyRe.md b/docs/version-specific/supported-software/p/PyRe.md index 3b17df072..1aaa54d44 100644 --- a/docs/version-specific/supported-software/p/PyRe.md +++ b/docs/version-specific/supported-software/p/PyRe.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.0.3-20190221`` | ``-Python-3.7.4`` | ``foss/2019b`` ``5.0.3-20190221`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyRosetta.md b/docs/version-specific/supported-software/p/PyRosetta.md index b05ef6c9e..eadf29720 100644 --- a/docs/version-specific/supported-software/p/PyRosetta.md +++ b/docs/version-specific/supported-software/p/PyRosetta.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.release-292`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PySAT.md b/docs/version-specific/supported-software/p/PySAT.md index 4459641e1..1d8502067 100644 --- a/docs/version-specific/supported-software/p/PySAT.md +++ b/docs/version-specific/supported-software/p/PySAT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.6.dev11`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` ``0.1.7.dev1`` | | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PySCF.md b/docs/version-specific/supported-software/p/PySCF.md index 19734e73b..e02f4068d 100644 --- a/docs/version-specific/supported-software/p/PySCF.md +++ b/docs/version-specific/supported-software/p/PySCF.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.1.1`` | | ``foss/2022a`` ``2.4.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PySINDy.md b/docs/version-specific/supported-software/p/PySINDy.md index 6b6e7f2a8..3a8406a8f 100644 --- a/docs/version-specific/supported-software/p/PySINDy.md +++ b/docs/version-specific/supported-software/p/PySINDy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PySide2.md b/docs/version-specific/supported-software/p/PySide2.md index b339c99be..b1be44523 100644 --- a/docs/version-specific/supported-software/p/PySide2.md +++ b/docs/version-specific/supported-software/p/PySide2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.14.2.3`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyStan.md b/docs/version-specific/supported-software/p/PyStan.md index 86695b9ba..aa3697638 100644 --- a/docs/version-specific/supported-software/p/PyStan.md +++ b/docs/version-specific/supported-software/p/PyStan.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.19.1.1`` | | ``intel/2020b`` ``3.5.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyTables.md b/docs/version-specific/supported-software/p/PyTables.md index 2e2f80522..8103660b8 100644 --- a/docs/version-specific/supported-software/p/PyTables.md +++ b/docs/version-specific/supported-software/p/PyTables.md @@ -43,5 +43,6 @@ version | versionsuffix | toolchain ``3.8.0`` | | ``foss/2023a`` ``3.9.2`` | | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyTensor.md b/docs/version-specific/supported-software/p/PyTensor.md index e125a429b..1d411fd98 100644 --- a/docs/version-specific/supported-software/p/PyTensor.md +++ b/docs/version-specific/supported-software/p/PyTensor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.17.1`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 035f6aa3c..b7db777d9 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Geometric.md +++ b/docs/version-specific/supported-software/p/PyTorch-Geometric.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` ``2.5.0`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a1cced150..9011183a4 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Ignite.md +++ b/docs/version-specific/supported-software/p/PyTorch-Ignite.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.4.13`` | | ``foss/2023a`` ``0.4.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ff4917552..5658247db 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Image-Models.md +++ b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.9.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.9.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 71bf50d36..8a12604c9 100644 --- a/docs/version-specific/supported-software/p/PyTorch-Lightning.md +++ b/docs/version-specific/supported-software/p/PyTorch-Lightning.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.2.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4f96b4dd0..089677467 100644 --- a/docs/version-specific/supported-software/p/PyTorch-bundle.md +++ b/docs/version-specific/supported-software/p/PyTorch-bundle.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.1.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``2.1.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyTorch.md b/docs/version-specific/supported-software/p/PyTorch.md index cdd0e4fe6..af8cf090e 100644 --- a/docs/version-specific/supported-software/p/PyTorch.md +++ b/docs/version-specific/supported-software/p/PyTorch.md @@ -62,5 +62,6 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``foss/2023a`` ``2.1.2`` | | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyTorch3D.md b/docs/version-specific/supported-software/p/PyTorch3D.md index afe2eb8fa..86b3a1fbd 100644 --- a/docs/version-specific/supported-software/p/PyTorch3D.md +++ b/docs/version-specific/supported-software/p/PyTorch3D.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4.0`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyTorchVideo.md b/docs/version-specific/supported-software/p/PyTorchVideo.md index fbc5340d8..986f1c307 100644 --- a/docs/version-specific/supported-software/p/PyTorchVideo.md +++ b/docs/version-specific/supported-software/p/PyTorchVideo.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyVCF.md b/docs/version-specific/supported-software/p/PyVCF.md index 6eda4f9c8..6ed7bf8fd 100644 --- a/docs/version-specific/supported-software/p/PyVCF.md +++ b/docs/version-specific/supported-software/p/PyVCF.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.8`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyVCF3.md b/docs/version-specific/supported-software/p/PyVCF3.md index e44d798ab..36dc2dcb3 100644 --- a/docs/version-specific/supported-software/p/PyVCF3.md +++ b/docs/version-specific/supported-software/p/PyVCF3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyVista.md b/docs/version-specific/supported-software/p/PyVista.md index 9564bf69f..2c50d429c 100644 --- a/docs/version-specific/supported-software/p/PyVista.md +++ b/docs/version-specific/supported-software/p/PyVista.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.43.8`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyWBGT.md b/docs/version-specific/supported-software/p/PyWBGT.md index e1baa43d0..3e118d78a 100644 --- a/docs/version-specific/supported-software/p/PyWBGT.md +++ b/docs/version-specific/supported-software/p/PyWBGT.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.0`` | ``foss/2021b`` ``1.0.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyWavelets.md b/docs/version-specific/supported-software/p/PyWavelets.md index 255301069..531b68a49 100644 --- a/docs/version-specific/supported-software/p/PyWavelets.md +++ b/docs/version-specific/supported-software/p/PyWavelets.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.1`` | | ``intelcuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyYAML.md b/docs/version-specific/supported-software/p/PyYAML.md index da99bcce8..e15d7be3d 100644 --- a/docs/version-specific/supported-software/p/PyYAML.md +++ b/docs/version-specific/supported-software/p/PyYAML.md @@ -45,5 +45,6 @@ version | versionsuffix | toolchain ``6.0`` | | ``GCCcore/12.3.0`` ``6.0.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PyZMQ.md b/docs/version-specific/supported-software/p/PyZMQ.md index f648283a2..e19ea7f1a 100644 --- a/docs/version-specific/supported-software/p/PyZMQ.md +++ b/docs/version-specific/supported-software/p/PyZMQ.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``25.1.1`` | | ``GCCcore/12.3.0`` ``25.1.2`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/PycURL.md b/docs/version-specific/supported-software/p/PycURL.md index e36c4f628..c6c8c3386 100644 --- a/docs/version-specific/supported-software/p/PycURL.md +++ b/docs/version-specific/supported-software/p/PycURL.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``7.45.2`` | | ``GCCcore/12.3.0`` ``7.45.3`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pychopper.md b/docs/version-specific/supported-software/p/Pychopper.md index 3b8ae2654..64b4ac6bc 100644 --- a/docs/version-specific/supported-software/p/Pychopper.md +++ b/docs/version-specific/supported-software/p/Pychopper.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.1`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pygments.md b/docs/version-specific/supported-software/p/Pygments.md index b31f98f49..27cf2a194 100644 --- a/docs/version-specific/supported-software/p/Pygments.md +++ b/docs/version-specific/supported-software/p/Pygments.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.3`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.1.3`` | ``-Python-3.5.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pyke3.md b/docs/version-specific/supported-software/p/Pyke3.md index 8ac9405b2..a414a3450 100644 --- a/docs/version-specific/supported-software/p/Pyke3.md +++ b/docs/version-specific/supported-software/p/Pyke3.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pylint.md b/docs/version-specific/supported-software/p/Pylint.md index a307f5e7e..bb3a523e8 100644 --- a/docs/version-specific/supported-software/p/Pylint.md +++ b/docs/version-specific/supported-software/p/Pylint.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.17.4`` | | ``GCCcore/12.2.0`` ``2.7.4`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pyomo.md b/docs/version-specific/supported-software/p/Pyomo.md index 0e390337e..44c7a5d32 100644 --- a/docs/version-specific/supported-software/p/Pyomo.md +++ b/docs/version-specific/supported-software/p/Pyomo.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``6.4.2`` | | ``foss/2022a`` ``6.5.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pyro4.md b/docs/version-specific/supported-software/p/Pyro4.md index 7429a8a57..d9f966470 100644 --- a/docs/version-specific/supported-software/p/Pyro4.md +++ b/docs/version-specific/supported-software/p/Pyro4.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.47`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pysam.md b/docs/version-specific/supported-software/p/Pysam.md index ae58f2462..b324cdc3b 100644 --- a/docs/version-specific/supported-software/p/Pysam.md +++ b/docs/version-specific/supported-software/p/Pysam.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``0.8.4`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.9.1.4`` | ``-Python-2.7.12`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Pysolar.md b/docs/version-specific/supported-software/p/Pysolar.md index 7cc92c81d..681c1be21 100644 --- a/docs/version-specific/supported-software/p/Pysolar.md +++ b/docs/version-specific/supported-software/p/Pysolar.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.8`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` ``0.8`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8479f94ef..0f8cbe8b3 100644 --- a/docs/version-specific/supported-software/p/Python-bundle-PyPI.md +++ b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md @@ -13,5 +13,6 @@ version | toolchain ``2023.06`` | ``GCCcore/12.3.0`` ``2023.10`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 50e0ea976..5491146c5 100644 --- a/docs/version-specific/supported-software/p/Python-bundle.md +++ b/docs/version-specific/supported-software/p/Python-bundle.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.10.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/Python.md b/docs/version-specific/supported-software/p/Python.md index b3db03e58..508b39127 100644 --- a/docs/version-specific/supported-software/p/Python.md +++ b/docs/version-specific/supported-software/p/Python.md @@ -110,5 +110,6 @@ version | versionsuffix | toolchain ``3.9.6`` | ``-bare`` | ``GCCcore/11.2.0`` ``3.9.6`` | | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/index.md b/docs/version-specific/supported-software/p/index.md index 0a6a91ef5..7ca3438cb 100644 --- a/docs/version-specific/supported-software/p/index.md +++ b/docs/version-specific/supported-software/p/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (p) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../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) @@ -442,3 +444,7 @@ search: * [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 index 7ca1e5877..3d333d9dd 100644 --- a/docs/version-specific/supported-software/p/p11-kit.md +++ b/docs/version-specific/supported-software/p/p11-kit.md @@ -19,5 +19,6 @@ version | toolchain ``0.24.1`` | ``GCCcore/11.3.0`` ``0.25.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5ceb46c00..e447253d7 100644 --- a/docs/version-specific/supported-software/p/p4-phylogenetics.md +++ b/docs/version-specific/supported-software/p/p4-phylogenetics.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4-20210322`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/p4est.md b/docs/version-specific/supported-software/p/p4est.md index a5988236e..ba92d0919 100644 --- a/docs/version-specific/supported-software/p/p4est.md +++ b/docs/version-specific/supported-software/p/p4est.md @@ -15,5 +15,6 @@ version | toolchain ``2.8`` | ``foss/2021a`` ``2.8.6`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/p4vasp.md b/docs/version-specific/supported-software/p/p4vasp.md index 6070d72c1..01999ee02 100644 --- a/docs/version-specific/supported-software/p/p4vasp.md +++ b/docs/version-specific/supported-software/p/p4vasp.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.3.30`` | ``-Python-2.7.14`` | ``intel/2017b`` ``0.3.30`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/p7zip.md b/docs/version-specific/supported-software/p/p7zip.md index 7bddd4b42..5ebc24c6b 100644 --- a/docs/version-specific/supported-software/p/p7zip.md +++ b/docs/version-specific/supported-software/p/p7zip.md @@ -21,5 +21,6 @@ version | toolchain ``9.38.1`` | ``GCC/4.9.2`` ``9.38.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pFUnit.md b/docs/version-specific/supported-software/p/pFUnit.md index 0690838bd..3d6cfc3dc 100644 --- a/docs/version-specific/supported-software/p/pFUnit.md +++ b/docs/version-specific/supported-software/p/pFUnit.md @@ -15,5 +15,6 @@ version | toolchain ``4.2.0`` | ``iimpi/2021a`` ``4.7.3`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pIRS.md b/docs/version-specific/supported-software/p/pIRS.md index 91697d7c1..d7ca66bdd 100644 --- a/docs/version-specific/supported-software/p/pIRS.md +++ b/docs/version-specific/supported-software/p/pIRS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.2`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/packmol.md b/docs/version-specific/supported-software/p/packmol.md index b675a92eb..1ee1db50a 100644 --- a/docs/version-specific/supported-software/p/packmol.md +++ b/docs/version-specific/supported-software/p/packmol.md @@ -16,5 +16,6 @@ version | toolchain ``20.2.2`` | ``GCC/10.2.0`` ``v20.2.2`` | ``iccifort/2020.1.217`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pagmo.md b/docs/version-specific/supported-software/p/pagmo.md index 7504ecb02..44a5bd7fa 100644 --- a/docs/version-specific/supported-software/p/pagmo.md +++ b/docs/version-specific/supported-software/p/pagmo.md @@ -15,5 +15,6 @@ version | toolchain ``2.18.0`` | ``foss/2021b`` ``2.18.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pairsnp.md b/docs/version-specific/supported-software/p/pairsnp.md index 5d0ca9458..9fbef0f41 100644 --- a/docs/version-specific/supported-software/p/pairsnp.md +++ b/docs/version-specific/supported-software/p/pairsnp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.7`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/paladin.md b/docs/version-specific/supported-software/p/paladin.md index 8e1d4a859..d790d6240 100644 --- a/docs/version-specific/supported-software/p/paladin.md +++ b/docs/version-specific/supported-software/p/paladin.md @@ -13,5 +13,6 @@ version | toolchain ``1.4.6`` | ``GCCcore/10.3.0`` ``1.4.6`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/panaroo.md b/docs/version-specific/supported-software/p/panaroo.md index 4b21486f8..85288580d 100644 --- a/docs/version-specific/supported-software/p/panaroo.md +++ b/docs/version-specific/supported-software/p/panaroo.md @@ -14,5 +14,6 @@ version | toolchain ``1.2.9`` | ``foss/2021a`` ``1.3.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pandapower.md b/docs/version-specific/supported-software/p/pandapower.md index 66cbfe803..92c9e594f 100644 --- a/docs/version-specific/supported-software/p/pandapower.md +++ b/docs/version-specific/supported-software/p/pandapower.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.7.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9824c6b3b..46e70da9a 100644 --- a/docs/version-specific/supported-software/p/pandas-datareader.md +++ b/docs/version-specific/supported-software/p/pandas-datareader.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pandas.md b/docs/version-specific/supported-software/p/pandas.md index 21dcc2e3a..c22c26013 100644 --- a/docs/version-specific/supported-software/p/pandas.md +++ b/docs/version-specific/supported-software/p/pandas.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``0.21.0`` | ``-Python-3.6.3`` | ``intel/2017b`` ``1.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pangolin.md b/docs/version-specific/supported-software/p/pangolin.md index 544dac1c8..416afdfba 100644 --- a/docs/version-specific/supported-software/p/pangolin.md +++ b/docs/version-specific/supported-software/p/pangolin.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.1.16`` | ``-pangoLEARN-2021-10-18`` | ``foss/2021b`` ``3.1.16`` | ``-pangoLEARN-2021-11-25`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/panito.md b/docs/version-specific/supported-software/p/panito.md index 49ef1cb89..4558cd663 100644 --- a/docs/version-specific/supported-software/p/panito.md +++ b/docs/version-specific/supported-software/p/panito.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f9c81de7e..7bdf89be8 100644 --- a/docs/version-specific/supported-software/p/parallel-fastq-dump.md +++ b/docs/version-specific/supported-software/p/parallel-fastq-dump.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.6.7`` | | ``gompi/2020b`` ``0.6.7`` | | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/parallel.md b/docs/version-specific/supported-software/p/parallel.md index 4ae138dae..1cd547f63 100644 --- a/docs/version-specific/supported-software/p/parallel.md +++ b/docs/version-specific/supported-software/p/parallel.md @@ -34,5 +34,6 @@ version | toolchain ``20230722`` | ``GCCcore/12.3.0`` ``20240322`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/parameterized.md b/docs/version-specific/supported-software/p/parameterized.md index 05cf9b7c4..e7625af4b 100644 --- a/docs/version-specific/supported-software/p/parameterized.md +++ b/docs/version-specific/supported-software/p/parameterized.md @@ -14,5 +14,6 @@ version | toolchain ``0.9.0`` | ``GCCcore/11.3.0`` ``0.9.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/paramiko.md b/docs/version-specific/supported-software/p/paramiko.md index a11c288ac..67eb78a46 100644 --- a/docs/version-specific/supported-software/p/paramiko.md +++ b/docs/version-specific/supported-software/p/paramiko.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.2.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/parasail.md b/docs/version-specific/supported-software/p/parasail.md index e206b39ac..afc07b309 100644 --- a/docs/version-specific/supported-software/p/parasail.md +++ b/docs/version-specific/supported-software/p/parasail.md @@ -23,5 +23,6 @@ version | toolchain ``2.6.2`` | ``GCC/12.2.0`` ``2.6.2`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pasta.md b/docs/version-specific/supported-software/p/pasta.md index d437656de..740a3af21 100644 --- a/docs/version-specific/supported-software/p/pasta.md +++ b/docs/version-specific/supported-software/p/pasta.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.5`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pastml.md b/docs/version-specific/supported-software/p/pastml.md index 0b3d4e37b..a06ac4249 100644 --- a/docs/version-specific/supported-software/p/pastml.md +++ b/docs/version-specific/supported-software/p/pastml.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.9.34`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/patch.md b/docs/version-specific/supported-software/p/patch.md index 88f2a5038..dfe7a6e36 100644 --- a/docs/version-specific/supported-software/p/patch.md +++ b/docs/version-specific/supported-software/p/patch.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.7.6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/patchelf.md b/docs/version-specific/supported-software/p/patchelf.md index 3aa3200f0..155695409 100644 --- a/docs/version-specific/supported-software/p/patchelf.md +++ b/docs/version-specific/supported-software/p/patchelf.md @@ -25,5 +25,6 @@ version | toolchain ``0.9`` | ``GCCcore/6.4.0`` ``0.9`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5dd340174..59d554acc 100644 --- a/docs/version-specific/supported-software/p/path.py.md +++ b/docs/version-specific/supported-software/p/path.py.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``8.2.1`` | ``-Python-2.7.12`` | ``intel/2016b`` ``8.2.1`` | ``-Python-3.5.2`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pauvre.md b/docs/version-specific/supported-software/p/pauvre.md index c44f80ee1..84c28e36e 100644 --- a/docs/version-specific/supported-software/p/pauvre.md +++ b/docs/version-specific/supported-software/p/pauvre.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.2.3`` | | ``foss/2022b`` ``0.2.3`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pbbam.md b/docs/version-specific/supported-software/p/pbbam.md index 0934a61ff..bb7be94b4 100644 --- a/docs/version-specific/supported-software/p/pbbam.md +++ b/docs/version-specific/supported-software/p/pbbam.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.6`` | ``gompi/2019a`` ``20170508`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pbcopper.md b/docs/version-specific/supported-software/p/pbcopper.md index 2d09dcbc0..132ad237b 100644 --- a/docs/version-specific/supported-software/p/pbcopper.md +++ b/docs/version-specific/supported-software/p/pbcopper.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pbdagcon.md b/docs/version-specific/supported-software/p/pbdagcon.md index 2bb44842b..b89a9744e 100644 --- a/docs/version-specific/supported-software/p/pbdagcon.md +++ b/docs/version-specific/supported-software/p/pbdagcon.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20170330`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pbipa.md b/docs/version-specific/supported-software/p/pbipa.md index e5d5fa732..970e47336 100644 --- a/docs/version-specific/supported-software/p/pbipa.md +++ b/docs/version-specific/supported-software/p/pbipa.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pblat.md b/docs/version-specific/supported-software/p/pblat.md index 35ad40bed..47e8e8ea4 100644 --- a/docs/version-specific/supported-software/p/pblat.md +++ b/docs/version-specific/supported-software/p/pblat.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.1`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pbmm2.md b/docs/version-specific/supported-software/p/pbmm2.md index 17326e1f5..380790d03 100644 --- a/docs/version-specific/supported-software/p/pbmm2.md +++ b/docs/version-specific/supported-software/p/pbmm2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fce27df76..7627e4d2c 100644 --- a/docs/version-specific/supported-software/p/pbs_python.md +++ b/docs/version-specific/supported-software/p/pbs_python.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``4.6.0`` | ``-Python-2.7.13`` | ``intel/2017a`` ``4.6.0`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pdf2docx.md b/docs/version-specific/supported-software/p/pdf2docx.md index 7e3e11858..6bc54f084 100644 --- a/docs/version-specific/supported-software/p/pdf2docx.md +++ b/docs/version-specific/supported-software/p/pdf2docx.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.8`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pdsh.md b/docs/version-specific/supported-software/p/pdsh.md index b7599ce41..b6a2bd90a 100644 --- a/docs/version-specific/supported-software/p/pdsh.md +++ b/docs/version-specific/supported-software/p/pdsh.md @@ -14,5 +14,6 @@ version | toolchain ``2.34`` | ``GCCcore/12.2.0`` ``2.34`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/peakdetect.md b/docs/version-specific/supported-software/p/peakdetect.md index 2932d57dc..9cfa1c330 100644 --- a/docs/version-specific/supported-software/p/peakdetect.md +++ b/docs/version-specific/supported-software/p/peakdetect.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 017711b70..4b13a3beb 100644 --- a/docs/version-specific/supported-software/p/perl-app-cpanminus.md +++ b/docs/version-specific/supported-software/p/perl-app-cpanminus.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7039`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/petsc4py.md b/docs/version-specific/supported-software/p/petsc4py.md index 8d15f49ee..0214c2e29 100644 --- a/docs/version-specific/supported-software/p/petsc4py.md +++ b/docs/version-specific/supported-software/p/petsc4py.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.20.3`` | | ``foss/2023a`` ``3.9.1`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pfind.md b/docs/version-specific/supported-software/p/pfind.md index dbfe3803e..99a2f8500 100644 --- a/docs/version-specific/supported-software/p/pfind.md +++ b/docs/version-specific/supported-software/p/pfind.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220613`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pftoolsV3.md b/docs/version-specific/supported-software/p/pftoolsV3.md index c9b800541..338789c1e 100644 --- a/docs/version-specific/supported-software/p/pftoolsV3.md +++ b/docs/version-specific/supported-software/p/pftoolsV3.md @@ -16,5 +16,6 @@ version | toolchain ``3.2.12`` | ``GCCcore/11.2.0`` ``3.2.12`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phonemizer.md b/docs/version-specific/supported-software/p/phonemizer.md index caf30cf8e..b5aaaee10 100644 --- a/docs/version-specific/supported-software/p/phonemizer.md +++ b/docs/version-specific/supported-software/p/phonemizer.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-3.8.2`` | ``gompi/2020a`` ``3.2.1`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phono3py.md b/docs/version-specific/supported-software/p/phono3py.md index 6fb4def4a..bd7d009c3 100644 --- a/docs/version-specific/supported-software/p/phono3py.md +++ b/docs/version-specific/supported-software/p/phono3py.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.12.7.55`` | ``-Python-2.7.14`` | ``intel/2018a`` ``2.7.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phonopy.md b/docs/version-specific/supported-software/p/phonopy.md index 9da2506a2..0ccaeff8d 100644 --- a/docs/version-specific/supported-software/p/phonopy.md +++ b/docs/version-specific/supported-software/p/phonopy.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``2.7.1`` | ``-Python-3.7.4`` | ``intel/2019b`` ``2.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/photontorch.md b/docs/version-specific/supported-software/p/photontorch.md index 353fefa67..5f1eaca95 100644 --- a/docs/version-specific/supported-software/p/photontorch.md +++ b/docs/version-specific/supported-software/p/photontorch.md @@ -14,5 +14,6 @@ version | toolchain ``0.4.1`` | ``foss/2022a`` ``0.4.1`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phototonic.md b/docs/version-specific/supported-software/p/phototonic.md index 2de33267b..689c893b5 100644 --- a/docs/version-specific/supported-software/p/phototonic.md +++ b/docs/version-specific/supported-software/p/phototonic.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phylokit.md b/docs/version-specific/supported-software/p/phylokit.md index b8321484d..4eadd3c0d 100644 --- a/docs/version-specific/supported-software/p/phylokit.md +++ b/docs/version-specific/supported-software/p/phylokit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phylonaut.md b/docs/version-specific/supported-software/p/phylonaut.md index 9f6b8c935..ed71740e6 100644 --- a/docs/version-specific/supported-software/p/phylonaut.md +++ b/docs/version-specific/supported-software/p/phylonaut.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20190626`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phyluce.md b/docs/version-specific/supported-software/p/phyluce.md index 70eef42a3..fbad4b1f9 100644 --- a/docs/version-specific/supported-software/p/phyluce.md +++ b/docs/version-specific/supported-software/p/phyluce.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.3`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/phyx.md b/docs/version-specific/supported-software/p/phyx.md index 0dbd56fa2..b712bde04 100644 --- a/docs/version-specific/supported-software/p/phyx.md +++ b/docs/version-specific/supported-software/p/phyx.md @@ -13,5 +13,6 @@ version | toolchain ``1.01`` | ``foss/2019a`` ``1.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5c369c2dd..bb01730c8 100644 --- a/docs/version-specific/supported-software/p/piSvM-JSC.md +++ b/docs/version-specific/supported-software/p/piSvM-JSC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2-20150622`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/piSvM.md b/docs/version-specific/supported-software/p/piSvM.md index 45d4e8a07..d87a3766e 100644 --- a/docs/version-specific/supported-software/p/piSvM.md +++ b/docs/version-specific/supported-software/p/piSvM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/picard.md b/docs/version-specific/supported-software/p/picard.md index 81a318b77..4b21361e5 100644 --- a/docs/version-specific/supported-software/p/picard.md +++ b/docs/version-specific/supported-software/p/picard.md @@ -40,5 +40,6 @@ version | versionsuffix | toolchain ``2.6.0`` | ``-Java-1.8.0_131`` | ``system`` ``3.0.0`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pigz.md b/docs/version-specific/supported-software/p/pigz.md index 3c7069e44..88d8182db 100644 --- a/docs/version-specific/supported-software/p/pigz.md +++ b/docs/version-specific/supported-software/p/pigz.md @@ -27,5 +27,6 @@ version | toolchain ``2.8`` | ``GCCcore/12.3.0`` ``2.8`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pip.md b/docs/version-specific/supported-software/p/pip.md index cd6ab3371..eab555b44 100644 --- a/docs/version-specific/supported-software/p/pip.md +++ b/docs/version-specific/supported-software/p/pip.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``8.1.2`` | ``-Python-2.7.12`` | ``foss/2016b`` ``8.1.2`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pixman.md b/docs/version-specific/supported-software/p/pixman.md index f248dad83..34fbf2ae1 100644 --- a/docs/version-specific/supported-software/p/pixman.md +++ b/docs/version-specific/supported-software/p/pixman.md @@ -29,5 +29,6 @@ version | toolchain ``0.42.2`` | ``GCCcore/12.3.0`` ``0.42.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pizzly.md b/docs/version-specific/supported-software/p/pizzly.md index 3eab5129f..9c845dbb8 100644 --- a/docs/version-specific/supported-software/p/pizzly.md +++ b/docs/version-specific/supported-software/p/pizzly.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.37.3`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a04c2e079..6e8efcc33 100644 --- a/docs/version-specific/supported-software/p/pkg-config.md +++ b/docs/version-specific/supported-software/p/pkg-config.md @@ -41,5 +41,6 @@ version | toolchain ``0.29.2`` | ``intel/2017a`` ``0.29.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pkgconf.md b/docs/version-specific/supported-software/p/pkgconf.md index b640e0ae5..d92f5c330 100644 --- a/docs/version-specific/supported-software/p/pkgconf.md +++ b/docs/version-specific/supported-software/p/pkgconf.md @@ -21,5 +21,6 @@ version | toolchain ``2.2.0`` | ``GCCcore/13.3.0`` ``2.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pkgconfig.md b/docs/version-specific/supported-software/p/pkgconfig.md index 39882d3b3..072bf3b74 100644 --- a/docs/version-specific/supported-software/p/pkgconfig.md +++ b/docs/version-specific/supported-software/p/pkgconfig.md @@ -48,5 +48,6 @@ version | versionsuffix | toolchain ``1.5.5`` | ``-python`` | ``GCCcore/12.3.0`` ``1.5.5`` | ``-python`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/planarity.md b/docs/version-specific/supported-software/p/planarity.md index 9896f2015..ede499331 100644 --- a/docs/version-specific/supported-software/p/planarity.md +++ b/docs/version-specific/supported-software/p/planarity.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.2.0`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plantcv.md b/docs/version-specific/supported-software/p/plantcv.md index e61c017ce..14f50cb63 100644 --- a/docs/version-specific/supported-software/p/plantcv.md +++ b/docs/version-specific/supported-software/p/plantcv.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.8.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plantri.md b/docs/version-specific/supported-software/p/plantri.md index 88d889de5..b56569b02 100644 --- a/docs/version-specific/supported-software/p/plantri.md +++ b/docs/version-specific/supported-software/p/plantri.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.4`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plc.md b/docs/version-specific/supported-software/p/plc.md index c10832988..2d9e65c8b 100644 --- a/docs/version-specific/supported-software/p/plc.md +++ b/docs/version-specific/supported-software/p/plc.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``3.10`` | | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plinkQC.md b/docs/version-specific/supported-software/p/plinkQC.md index 8e4048367..fc8152e94 100644 --- a/docs/version-specific/supported-software/p/plinkQC.md +++ b/docs/version-specific/supported-software/p/plinkQC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.3`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plinkliftover.md b/docs/version-specific/supported-software/p/plinkliftover.md index 00d57c893..1decb2552 100644 --- a/docs/version-specific/supported-software/p/plinkliftover.md +++ b/docs/version-specific/supported-software/p/plinkliftover.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plmc.md b/docs/version-specific/supported-software/p/plmc.md index 70cbefcea..3c6257452 100644 --- a/docs/version-specific/supported-software/p/plmc.md +++ b/docs/version-specific/supported-software/p/plmc.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20230121`` | ``-32bit`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plot1cell.md b/docs/version-specific/supported-software/p/plot1cell.md index 946847cf7..2c6c347e0 100644 --- a/docs/version-specific/supported-software/p/plot1cell.md +++ b/docs/version-specific/supported-software/p/plot1cell.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``0.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3e34c528a..588cf948a 100644 --- a/docs/version-specific/supported-software/p/plotly-orca.md +++ b/docs/version-specific/supported-software/p/plotly-orca.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/10.2.0`` ``1.3.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plotly.md b/docs/version-specific/supported-software/p/plotly.md index 666b829dc..6bf4b5373 100644 --- a/docs/version-specific/supported-software/p/plotly.md +++ b/docs/version-specific/supported-software/p/plotly.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.7.1`` | ``-R-3.4.0`` | ``intel/2017a`` ``4.8.0`` | ``-R-3.4.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dac335be0..6b0847ab5 100644 --- a/docs/version-specific/supported-software/p/plotly.py.md +++ b/docs/version-specific/supported-software/p/plotly.py.md @@ -22,5 +22,6 @@ version | toolchain ``5.18.0`` | ``GCCcore/13.2.0`` ``5.4.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/plotutils.md b/docs/version-specific/supported-software/p/plotutils.md index bb4f652b2..e884a4be6 100644 --- a/docs/version-specific/supported-software/p/plotutils.md +++ b/docs/version-specific/supported-software/p/plotutils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.6`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pmt.md b/docs/version-specific/supported-software/p/pmt.md index a1db8b023..3f4ee804d 100644 --- a/docs/version-specific/supported-software/p/pmt.md +++ b/docs/version-specific/supported-software/p/pmt.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.2.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` ``1.2.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pmx.md b/docs/version-specific/supported-software/p/pmx.md index 39773f029..d5ab25247 100644 --- a/docs/version-specific/supported-software/p/pmx.md +++ b/docs/version-specific/supported-software/p/pmx.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.0`` | ``-Python-2.7.18`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pocl.md b/docs/version-specific/supported-software/p/pocl.md index 6cbc9d5ce..96a8ba87d 100644 --- a/docs/version-specific/supported-software/p/pocl.md +++ b/docs/version-specific/supported-software/p/pocl.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``4.0`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` ``4.0`` | | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3e6c75953..1b6a97cfe 100644 --- a/docs/version-specific/supported-software/p/pod5-file-format.md +++ b/docs/version-specific/supported-software/p/pod5-file-format.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.8`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/poetry.md b/docs/version-specific/supported-software/p/poetry.md index 9c7e88ef6..931a03316 100644 --- a/docs/version-specific/supported-software/p/poetry.md +++ b/docs/version-specific/supported-software/p/poetry.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.6.1`` | | ``GCCcore/13.2.0`` ``1.7.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/polars.md b/docs/version-specific/supported-software/p/polars.md index 4ab4a5717..910b418af 100644 --- a/docs/version-specific/supported-software/p/polars.md +++ b/docs/version-specific/supported-software/p/polars.md @@ -13,5 +13,6 @@ version | toolchain ``0.15.6`` | ``foss/2022a`` ``0.20.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/polymake.md b/docs/version-specific/supported-software/p/polymake.md index 3395393d0..aa174779b 100644 --- a/docs/version-specific/supported-software/p/polymake.md +++ b/docs/version-specific/supported-software/p/polymake.md @@ -14,5 +14,6 @@ version | toolchain ``4.8`` | ``foss/2021b`` ``4.8`` | ``gfbf/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pomkl.md b/docs/version-specific/supported-software/p/pomkl.md index d3b0f0471..37e4267ef 100644 --- a/docs/version-specific/supported-software/p/pomkl.md +++ b/docs/version-specific/supported-software/p/pomkl.md @@ -14,5 +14,6 @@ version | toolchain ``2016.04`` | ``system`` ``2016.09`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pompi.md b/docs/version-specific/supported-software/p/pompi.md index 2f16b5598..ba813121a 100644 --- a/docs/version-specific/supported-software/p/pompi.md +++ b/docs/version-specific/supported-software/p/pompi.md @@ -14,5 +14,6 @@ version | toolchain ``2016.04`` | ``system`` ``2016.09`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/poppler.md b/docs/version-specific/supported-software/p/poppler.md index 63201458d..f319cfe6e 100644 --- a/docs/version-specific/supported-software/p/poppler.md +++ b/docs/version-specific/supported-software/p/poppler.md @@ -19,5 +19,6 @@ version | toolchain ``23.09.0`` | ``GCC/12.3.0`` ``24.04.0`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/poppunk.md b/docs/version-specific/supported-software/p/poppunk.md index c0a9ff77e..6eb16bee6 100644 --- a/docs/version-specific/supported-software/p/poppunk.md +++ b/docs/version-specific/supported-software/p/poppunk.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.6.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/popscle.md b/docs/version-specific/supported-software/p/popscle.md index 1e3ea41c9..c78a22ada 100644 --- a/docs/version-specific/supported-software/p/popscle.md +++ b/docs/version-specific/supported-software/p/popscle.md @@ -13,5 +13,6 @@ version | toolchain ``0.1-beta-20210505`` | ``GCC/11.3.0`` ``0.1-beta`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/popt.md b/docs/version-specific/supported-software/p/popt.md index 45140eb4f..f482d5d29 100644 --- a/docs/version-specific/supported-software/p/popt.md +++ b/docs/version-specific/supported-software/p/popt.md @@ -15,5 +15,6 @@ version | toolchain ``1.16`` | ``GCC/4.9.2`` ``1.16`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/porefoam.md b/docs/version-specific/supported-software/p/porefoam.md index cabebee58..65fb5c675 100644 --- a/docs/version-specific/supported-software/p/porefoam.md +++ b/docs/version-specific/supported-software/p/porefoam.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2021-09-21`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/poretools.md b/docs/version-specific/supported-software/p/poretools.md index 8a77850b3..8dfb6e484 100644 --- a/docs/version-specific/supported-software/p/poretools.md +++ b/docs/version-specific/supported-software/p/poretools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/powerlaw.md b/docs/version-specific/supported-software/p/powerlaw.md index 88eb4b1c7..014a489e0 100644 --- a/docs/version-specific/supported-software/p/powerlaw.md +++ b/docs/version-specific/supported-software/p/powerlaw.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3594242b1..7b1a2e7ae 100644 --- a/docs/version-specific/supported-software/p/pp-sketchlib.md +++ b/docs/version-specific/supported-software/p/pp-sketchlib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ppl.md b/docs/version-specific/supported-software/p/ppl.md index b76e0c173..ad8d01254 100644 --- a/docs/version-specific/supported-software/p/ppl.md +++ b/docs/version-specific/supported-software/p/ppl.md @@ -13,5 +13,6 @@ version | toolchain ``1.2`` | ``GCCcore/11.3.0`` ``1.2`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pplacer.md b/docs/version-specific/supported-software/p/pplacer.md index 771bd4d4a..3bd773eea 100644 --- a/docs/version-specific/supported-software/p/pplacer.md +++ b/docs/version-specific/supported-software/p/pplacer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.alpha19`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pplpy.md b/docs/version-specific/supported-software/p/pplpy.md index bed44c890..40b2e8757 100644 --- a/docs/version-specific/supported-software/p/pplpy.md +++ b/docs/version-specific/supported-software/p/pplpy.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.8.4`` | ``-Python-3.6.3`` | ``intel/2017b`` ``0.8.9`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/preCICE.md b/docs/version-specific/supported-software/p/preCICE.md index 8b2311042..f24a20630 100644 --- a/docs/version-specific/supported-software/p/preCICE.md +++ b/docs/version-specific/supported-software/p/preCICE.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.5.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/premailer.md b/docs/version-specific/supported-software/p/premailer.md index cbcb8b3ab..d4bea8ded 100644 --- a/docs/version-specific/supported-software/p/premailer.md +++ b/docs/version-specific/supported-software/p/premailer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.10.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/preseq.md b/docs/version-specific/supported-software/p/preseq.md index ae62420e9..90c1fc832 100644 --- a/docs/version-specific/supported-software/p/preseq.md +++ b/docs/version-specific/supported-software/p/preseq.md @@ -18,5 +18,6 @@ version | toolchain ``3.2.0`` | ``GCC/11.3.0`` ``3.2.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/presto.md b/docs/version-specific/supported-software/p/presto.md index f0c1619b4..d54148407 100644 --- a/docs/version-specific/supported-software/p/presto.md +++ b/docs/version-specific/supported-software/p/presto.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.0.0-20230501`` | ``-R-4.2.2`` | ``foss/2022b`` ``1.0.0-20230501`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 28b96bbd7..86e8861f4 100644 --- a/docs/version-specific/supported-software/p/pretty-yaml.md +++ b/docs/version-specific/supported-software/p/pretty-yaml.md @@ -15,5 +15,6 @@ version | toolchain ``21.10.1`` | ``GCCcore/10.3.0`` ``23.9.5`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/primecount.md b/docs/version-specific/supported-software/p/primecount.md index a0fb2df9f..b0436a803 100644 --- a/docs/version-specific/supported-software/p/primecount.md +++ b/docs/version-specific/supported-software/p/primecount.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.9`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/primecountpy.md b/docs/version-specific/supported-software/p/primecountpy.md index 4af111acd..61d7af7cb 100644 --- a/docs/version-specific/supported-software/p/primecountpy.md +++ b/docs/version-specific/supported-software/p/primecountpy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/printproto.md b/docs/version-specific/supported-software/p/printproto.md index d32dcc929..c4d622c05 100644 --- a/docs/version-specific/supported-software/p/printproto.md +++ b/docs/version-specific/supported-software/p/printproto.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.5`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/prodigal.md b/docs/version-specific/supported-software/p/prodigal.md index ee6b74759..55264b3a9 100644 --- a/docs/version-specific/supported-software/p/prodigal.md +++ b/docs/version-specific/supported-software/p/prodigal.md @@ -23,5 +23,6 @@ version | toolchain ``2.6.3`` | ``GCCcore/8.3.0`` ``2.6.3`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/prokka.md b/docs/version-specific/supported-software/p/prokka.md index cc636a916..e898c00da 100644 --- a/docs/version-specific/supported-software/p/prokka.md +++ b/docs/version-specific/supported-software/p/prokka.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``1.14.5`` | | ``gompi/2022a`` ``1.14.5`` | | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fa3f19386..c56a638ea 100644 --- a/docs/version-specific/supported-software/p/prompt-toolkit.md +++ b/docs/version-specific/supported-software/p/prompt-toolkit.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``3.0.36`` | | ``GCCcore/12.2.0`` ``3.0.36`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/proovread.md b/docs/version-specific/supported-software/p/proovread.md index ff2d50b0b..085830d97 100644 --- a/docs/version-specific/supported-software/p/proovread.md +++ b/docs/version-specific/supported-software/p/proovread.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.14.1`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/propy.md b/docs/version-specific/supported-software/p/propy.md index 8beba6bf7..7ef08fe49 100644 --- a/docs/version-specific/supported-software/p/propy.md +++ b/docs/version-specific/supported-software/p/propy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c5201ae1a..24f847c21 100644 --- a/docs/version-specific/supported-software/p/protobuf-python.md +++ b/docs/version-specific/supported-software/p/protobuf-python.md @@ -38,5 +38,6 @@ version | versionsuffix | toolchain ``4.24.0`` | | ``GCCcore/12.3.0`` ``4.25.3`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/protobuf.md b/docs/version-specific/supported-software/p/protobuf.md index 3631dd2a4..8c910b386 100644 --- a/docs/version-specific/supported-software/p/protobuf.md +++ b/docs/version-specific/supported-software/p/protobuf.md @@ -41,5 +41,6 @@ version | toolchain ``3.7.1`` | ``GCCcore/8.2.0`` ``3.7.1`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/protozero.md b/docs/version-specific/supported-software/p/protozero.md index 63071d464..f14a4fbf3 100644 --- a/docs/version-specific/supported-software/p/protozero.md +++ b/docs/version-specific/supported-software/p/protozero.md @@ -13,5 +13,6 @@ version | toolchain ``1.6.8`` | ``GCCcore/7.3.0`` ``1.7.0`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pscom.md b/docs/version-specific/supported-software/p/pscom.md index e631b4021..2581e2802 100644 --- a/docs/version-specific/supported-software/p/pscom.md +++ b/docs/version-specific/supported-software/p/pscom.md @@ -14,5 +14,6 @@ version | toolchain ``5.0.44-1`` | ``GCC/4.9.2`` ``5.0.48-1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psmc.md b/docs/version-specific/supported-software/p/psmc.md index dab2f0fd0..d7e02dcf0 100644 --- a/docs/version-specific/supported-software/p/psmc.md +++ b/docs/version-specific/supported-software/p/psmc.md @@ -14,5 +14,6 @@ version | toolchain ``0.6.5`` | ``foss/2018a`` ``0.6.5_20221121`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psmpi.md b/docs/version-specific/supported-software/p/psmpi.md index bb477d3d1..7f952852e 100644 --- a/docs/version-specific/supported-software/p/psmpi.md +++ b/docs/version-specific/supported-software/p/psmpi.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``5.1.5-1`` | ``-mt`` | ``GCC/4.9.3`` ``5.1.5-1`` | | ``GCC/4.9.3`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psmpi2.md b/docs/version-specific/supported-software/p/psmpi2.md index 529d4f36b..cb8f46df9 100644 --- a/docs/version-specific/supported-software/p/psmpi2.md +++ b/docs/version-specific/supported-software/p/psmpi2.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``5.0.29`` | ``-mt`` | ``GCC/4.8.2`` ``5.0.29`` | | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psrecord.md b/docs/version-specific/supported-software/p/psrecord.md index a41f27434..db88a8597 100644 --- a/docs/version-specific/supported-software/p/psrecord.md +++ b/docs/version-specific/supported-software/p/psrecord.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pstoedit.md b/docs/version-specific/supported-software/p/pstoedit.md index fd5d6a65a..5ce330c32 100644 --- a/docs/version-specific/supported-software/p/pstoedit.md +++ b/docs/version-specific/supported-software/p/pstoedit.md @@ -14,5 +14,6 @@ version | toolchain ``3.70`` | ``GCCcore/6.4.0`` ``3.78`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psutil.md b/docs/version-specific/supported-software/p/psutil.md index 92d959527..3afc52bc3 100644 --- a/docs/version-specific/supported-software/p/psutil.md +++ b/docs/version-specific/supported-software/p/psutil.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``5.9.5`` | | ``GCCcore/12.2.0`` ``5.9.8`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psycopg.md b/docs/version-specific/supported-software/p/psycopg.md index 48ba37867..8d5ef7226 100644 --- a/docs/version-specific/supported-software/p/psycopg.md +++ b/docs/version-specific/supported-software/p/psycopg.md @@ -13,5 +13,6 @@ version | toolchain ``3.1.18`` | ``GCCcore/12.2.0`` ``3.1.18`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/psycopg2.md b/docs/version-specific/supported-software/p/psycopg2.md index 65ee73a41..32bd072c8 100644 --- a/docs/version-specific/supported-software/p/psycopg2.md +++ b/docs/version-specific/supported-software/p/psycopg2.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.9.6`` | | ``GCCcore/11.3.0`` ``2.9.9`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/ptemcee.md b/docs/version-specific/supported-software/p/ptemcee.md index 6c122a2cd..7786f4b64 100644 --- a/docs/version-specific/supported-software/p/ptemcee.md +++ b/docs/version-specific/supported-software/p/ptemcee.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pubtcrs.md b/docs/version-specific/supported-software/p/pubtcrs.md index ec466d628..2aaf3f15f 100644 --- a/docs/version-specific/supported-software/p/pubtcrs.md +++ b/docs/version-specific/supported-software/p/pubtcrs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20180622`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pugixml.md b/docs/version-specific/supported-software/p/pugixml.md index 4776985be..4b36ee6a8 100644 --- a/docs/version-specific/supported-software/p/pugixml.md +++ b/docs/version-specific/supported-software/p/pugixml.md @@ -14,5 +14,6 @@ version | toolchain ``1.12.1`` | ``GCCcore/11.2.0`` ``1.12.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pullseq.md b/docs/version-specific/supported-software/p/pullseq.md index cd3a30f7a..c5b9d68e9 100644 --- a/docs/version-specific/supported-software/p/pullseq.md +++ b/docs/version-specific/supported-software/p/pullseq.md @@ -14,5 +14,6 @@ version | toolchain ``1.0.2`` | ``GCCcore/11.2.0`` ``1.0.2`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8fb95f595..25ffa551d 100644 --- a/docs/version-specific/supported-software/p/purge_dups.md +++ b/docs/version-specific/supported-software/p/purge_dups.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.5`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pv.md b/docs/version-specific/supported-software/p/pv.md index c7d011e15..13d2cdafe 100644 --- a/docs/version-specific/supported-software/p/pv.md +++ b/docs/version-specific/supported-software/p/pv.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.24`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3a88d6425..55cd59bd6 100644 --- a/docs/version-specific/supported-software/p/py-aiger-bdd.md +++ b/docs/version-specific/supported-software/p/py-aiger-bdd.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ac5a40a5b..ba08c73ee 100644 --- a/docs/version-specific/supported-software/p/py-aiger.md +++ b/docs/version-specific/supported-software/p/py-aiger.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``6.1.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``6.1.14`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0224e38cf..4d069089b 100644 --- a/docs/version-specific/supported-software/p/py-c3d.md +++ b/docs/version-specific/supported-software/p/py-c3d.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f866f8813..ab3e81303 100644 --- a/docs/version-specific/supported-software/p/py-cpuinfo.md +++ b/docs/version-specific/supported-software/p/py-cpuinfo.md @@ -18,5 +18,6 @@ version | toolchain ``9.0.0`` | ``GCCcore/12.3.0`` ``9.0.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/py.md b/docs/version-specific/supported-software/p/py.md index 9bb7b378c..9f5c50f4b 100644 --- a/docs/version-specific/supported-software/p/py.md +++ b/docs/version-specific/supported-software/p/py.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4.31`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.4.31`` | ``-Python-3.5.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/py3Dmol.md b/docs/version-specific/supported-software/p/py3Dmol.md index 363dc7aaa..5b1d19c81 100644 --- a/docs/version-specific/supported-software/p/py3Dmol.md +++ b/docs/version-specific/supported-software/p/py3Dmol.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.1.post1`` | ``GCCcore/11.3.0`` ``2.1.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyABC.md b/docs/version-specific/supported-software/p/pyABC.md index f833a2fc3..b34a6a164 100644 --- a/docs/version-specific/supported-software/p/pyABC.md +++ b/docs/version-specific/supported-software/p/pyABC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.10.4`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyBigWig.md b/docs/version-specific/supported-software/p/pyBigWig.md index 995fbfdd3..c9c8d4a3b 100644 --- a/docs/version-specific/supported-software/p/pyBigWig.md +++ b/docs/version-specific/supported-software/p/pyBigWig.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.3.22`` | | ``foss/2022b`` ``0.3.22`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyEGA3.md b/docs/version-specific/supported-software/p/pyEGA3.md index d3feef94c..f5651d56b 100644 --- a/docs/version-specific/supported-software/p/pyEGA3.md +++ b/docs/version-specific/supported-software/p/pyEGA3.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``4.0.0`` | | ``GCCcore/11.2.0`` ``5.0.2`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyFAI.md b/docs/version-specific/supported-software/p/pyFAI.md index d702abba8..72d41c937 100644 --- a/docs/version-specific/supported-software/p/pyFAI.md +++ b/docs/version-specific/supported-software/p/pyFAI.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.20.0`` | | ``fosscuda/2020b`` ``0.21.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyFFTW.md b/docs/version-specific/supported-software/p/pyFFTW.md index a583ccd7f..cd5bb4f40 100644 --- a/docs/version-specific/supported-software/p/pyFFTW.md +++ b/docs/version-specific/supported-software/p/pyFFTW.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.12.0`` | | ``fosscuda/2020b`` ``0.13.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyGAM.md b/docs/version-specific/supported-software/p/pyGAM.md index 6a212cdcc..365b7faea 100644 --- a/docs/version-specific/supported-software/p/pyGAM.md +++ b/docs/version-specific/supported-software/p/pyGAM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.1`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyGIMLi.md b/docs/version-specific/supported-software/p/pyGIMLi.md index c9e10167e..79abe522a 100644 --- a/docs/version-specific/supported-software/p/pyGIMLi.md +++ b/docs/version-specific/supported-software/p/pyGIMLi.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20160803`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160803`` | ``-Python-3.5.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyGenomeTracks.md b/docs/version-specific/supported-software/p/pyGenomeTracks.md index d693424d0..5484ca22a 100644 --- a/docs/version-specific/supported-software/p/pyGenomeTracks.md +++ b/docs/version-specific/supported-software/p/pyGenomeTracks.md @@ -13,5 +13,6 @@ version | toolchain ``3.7`` | ``foss/2021b`` ``3.8`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyMannKendall.md b/docs/version-specific/supported-software/p/pyMannKendall.md index 2c0610463..d3110e25c 100644 --- a/docs/version-specific/supported-software/p/pyMannKendall.md +++ b/docs/version-specific/supported-software/p/pyMannKendall.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pySCENIC.md b/docs/version-specific/supported-software/p/pySCENIC.md index d6edb52fc..f3de0bb4d 100644 --- a/docs/version-specific/supported-software/p/pySCENIC.md +++ b/docs/version-specific/supported-software/p/pySCENIC.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.12.1-20240311`` | | ``foss/2023a`` ``0.12.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyScaf.md b/docs/version-specific/supported-software/p/pyScaf.md index 5ef8d5287..108fdb853 100644 --- a/docs/version-specific/supported-software/p/pyScaf.md +++ b/docs/version-specific/supported-software/p/pyScaf.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12a4`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyWannier90.md b/docs/version-specific/supported-software/p/pyWannier90.md index ca28fb116..e80960929 100644 --- a/docs/version-specific/supported-software/p/pyWannier90.md +++ b/docs/version-specific/supported-software/p/pyWannier90.md @@ -13,5 +13,6 @@ version | toolchain ``2021-12-07`` | ``foss/2021a`` ``2021-12-07`` | ``gomkl/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyXDF.md b/docs/version-specific/supported-software/p/pyXDF.md index bb1118bac..0f3920bc7 100644 --- a/docs/version-specific/supported-software/p/pyXDF.md +++ b/docs/version-specific/supported-software/p/pyXDF.md @@ -13,5 +13,6 @@ version | toolchain ``1.16.3`` | ``foss/2021a`` ``1.16.5`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pybedtools.md b/docs/version-specific/supported-software/p/pybedtools.md index a6f1560e7..afde30e85 100644 --- a/docs/version-specific/supported-software/p/pybedtools.md +++ b/docs/version-specific/supported-software/p/pybedtools.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``GCC/12.2.0`` ``0.9.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6fe5d749b..46b182aa0 100644 --- a/docs/version-specific/supported-software/p/pybind11-stubgen.md +++ b/docs/version-specific/supported-software/p/pybind11-stubgen.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pybind11.md b/docs/version-specific/supported-software/p/pybind11.md index 264d6528f..0ecdefc00 100644 --- a/docs/version-specific/supported-software/p/pybind11.md +++ b/docs/version-specific/supported-software/p/pybind11.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``2.7.1`` | | ``GCCcore/11.2.0`` ``2.9.2`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pybinding.md b/docs/version-specific/supported-software/p/pybinding.md index 6c15e1865..16a89a8d1 100644 --- a/docs/version-specific/supported-software/p/pybinding.md +++ b/docs/version-specific/supported-software/p/pybinding.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyccel.md b/docs/version-specific/supported-software/p/pyccel.md index 77cbbc215..4ac223d58 100644 --- a/docs/version-specific/supported-software/p/pyccel.md +++ b/docs/version-specific/supported-software/p/pyccel.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pycma.md b/docs/version-specific/supported-software/p/pycma.md index 4cd3c799f..08be42928 100644 --- a/docs/version-specific/supported-software/p/pycma.md +++ b/docs/version-specific/supported-software/p/pycma.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.7.0`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pycoQC.md b/docs/version-specific/supported-software/p/pycoQC.md index bcc47f35f..66ff457fa 100644 --- a/docs/version-specific/supported-software/p/pycoQC.md +++ b/docs/version-specific/supported-software/p/pycoQC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pycocotools.md b/docs/version-specific/supported-software/p/pycocotools.md index f11e072e8..c9a21c06e 100644 --- a/docs/version-specific/supported-software/p/pycocotools.md +++ b/docs/version-specific/supported-software/p/pycocotools.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``2.0.4`` | | ``foss/2021a`` ``2.0.6`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pycodestyle.md b/docs/version-specific/supported-software/p/pycodestyle.md index 79b942d2c..604c2ef59 100644 --- a/docs/version-specific/supported-software/p/pycodestyle.md +++ b/docs/version-specific/supported-software/p/pycodestyle.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.11.1`` | | ``foss/2023a`` ``2.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pycubescd.md b/docs/version-specific/supported-software/p/pycubescd.md index 2d519e88c..9b69b19e2 100644 --- a/docs/version-specific/supported-software/p/pycubescd.md +++ b/docs/version-specific/supported-software/p/pycubescd.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220704`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pydantic.md b/docs/version-specific/supported-software/p/pydantic.md index aafa8961e..a723c9b46 100644 --- a/docs/version-specific/supported-software/p/pydantic.md +++ b/docs/version-specific/supported-software/p/pydantic.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.5.3`` | | ``GCCcore/12.3.0`` ``2.6.4`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 592823eb6..fa3c7390e 100644 --- a/docs/version-specific/supported-software/p/pydicom-seg.md +++ b/docs/version-specific/supported-software/p/pydicom-seg.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pydicom.md b/docs/version-specific/supported-software/p/pydicom.md index 764c3d63d..b06a99919 100644 --- a/docs/version-specific/supported-software/p/pydicom.md +++ b/docs/version-specific/supported-software/p/pydicom.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``GCCcore/11.3.0`` ``2.4.4`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pydlpoly.md b/docs/version-specific/supported-software/p/pydlpoly.md index 73b60808c..244c19a7b 100644 --- a/docs/version-specific/supported-software/p/pydlpoly.md +++ b/docs/version-specific/supported-software/p/pydlpoly.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20150225`` | ``-Python-2.7.12`` | ``intel/2016b`` ``20150225`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pydot.md b/docs/version-specific/supported-software/p/pydot.md index 87cce1a48..f1167d8ae 100644 --- a/docs/version-specific/supported-software/p/pydot.md +++ b/docs/version-specific/supported-software/p/pydot.md @@ -18,5 +18,6 @@ version | toolchain ``1.4.2`` | ``GCCcore/11.3.0`` ``2.0.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyenchant.md b/docs/version-specific/supported-software/p/pyenchant.md index 37aed89d2..3eb8553ed 100644 --- a/docs/version-specific/supported-software/p/pyenchant.md +++ b/docs/version-specific/supported-software/p/pyenchant.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.8`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyfaidx.md b/docs/version-specific/supported-software/p/pyfaidx.md index e42e490dd..abae7cfd2 100644 --- a/docs/version-specific/supported-software/p/pyfaidx.md +++ b/docs/version-specific/supported-software/p/pyfaidx.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``0.8.1.1`` | | ``GCCcore/12.3.0`` ``0.8.1.1`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyfasta.md b/docs/version-specific/supported-software/p/pyfasta.md index bfd5da74d..99da34003 100644 --- a/docs/version-specific/supported-software/p/pyfasta.md +++ b/docs/version-specific/supported-software/p/pyfasta.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyfits.md b/docs/version-specific/supported-software/p/pyfits.md index d389f10e8..4b956e645 100644 --- a/docs/version-specific/supported-software/p/pyfits.md +++ b/docs/version-specific/supported-software/p/pyfits.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pygame.md b/docs/version-specific/supported-software/p/pygame.md index d67a742cc..f197a8066 100644 --- a/docs/version-specific/supported-software/p/pygame.md +++ b/docs/version-specific/supported-software/p/pygame.md @@ -13,5 +13,6 @@ version | toolchain ``2.1.0`` | ``GCCcore/11.3.0`` ``2.5.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pygccxml.md b/docs/version-specific/supported-software/p/pygccxml.md index 89e912ddd..632191a93 100644 --- a/docs/version-specific/supported-software/p/pygccxml.md +++ b/docs/version-specific/supported-software/p/pygccxml.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20160706`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160706`` | ``-Python-3.5.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pygmo.md b/docs/version-specific/supported-software/p/pygmo.md index 2200a963f..210c8eb7e 100644 --- a/docs/version-specific/supported-software/p/pygmo.md +++ b/docs/version-specific/supported-software/p/pygmo.md @@ -15,5 +15,6 @@ version | toolchain ``2.18.0`` | ``foss/2021b`` ``2.18.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pygraphviz.md b/docs/version-specific/supported-software/p/pygraphviz.md index fad8574e8..67d433eb1 100644 --- a/docs/version-specific/supported-software/p/pygraphviz.md +++ b/docs/version-specific/supported-software/p/pygraphviz.md @@ -16,5 +16,6 @@ version | toolchain ``1.7`` | ``foss/2020b`` ``1.7`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pygrib.md b/docs/version-specific/supported-software/p/pygrib.md index 396299402..3ddc158cc 100644 --- a/docs/version-specific/supported-software/p/pygrib.md +++ b/docs/version-specific/supported-software/p/pygrib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.4`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyhdf.md b/docs/version-specific/supported-software/p/pyhdf.md index a576f7745..eb2886fbe 100644 --- a/docs/version-specific/supported-software/p/pyhdf.md +++ b/docs/version-specific/supported-software/p/pyhdf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.10.1`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyiron.md b/docs/version-specific/supported-software/p/pyiron.md index 1437568d0..16f58e5b5 100644 --- a/docs/version-specific/supported-software/p/pyiron.md +++ b/docs/version-specific/supported-software/p/pyiron.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-Python-3.8.2`` | ``intel/2020a`` ``0.5.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pylift.md b/docs/version-specific/supported-software/p/pylift.md index a77bccaaf..9c56adb2d 100644 --- a/docs/version-specific/supported-software/p/pylift.md +++ b/docs/version-specific/supported-software/p/pylift.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pylipid.md b/docs/version-specific/supported-software/p/pylipid.md index abaf773c2..38d328a00 100644 --- a/docs/version-specific/supported-software/p/pylipid.md +++ b/docs/version-specific/supported-software/p/pylipid.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.14`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fa38ad343..eebf802aa 100644 --- a/docs/version-specific/supported-software/p/pymatgen-db.md +++ b/docs/version-specific/supported-software/p/pymatgen-db.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6.5`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pymatgen.md b/docs/version-specific/supported-software/p/pymatgen.md index 257a5ffea..0cc9baa0b 100644 --- a/docs/version-specific/supported-software/p/pymatgen.md +++ b/docs/version-specific/supported-software/p/pymatgen.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``4.3.2`` | ``-Python-2.7.12`` | ``intel/2016b`` ``4.7.3`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pymbar.md b/docs/version-specific/supported-software/p/pymbar.md index c23321c71..e2a3727b6 100644 --- a/docs/version-specific/supported-software/p/pymbar.md +++ b/docs/version-specific/supported-software/p/pymbar.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.0.3`` | ``-Python-3.6.3`` | ``intel/2017b`` ``3.0.3`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pymca.md b/docs/version-specific/supported-software/p/pymca.md index db1808d92..51a64e1be 100644 --- a/docs/version-specific/supported-software/p/pymca.md +++ b/docs/version-specific/supported-software/p/pymca.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``5.6.3`` | | ``fosscuda/2020b`` ``5.7.6`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pymemcache.md b/docs/version-specific/supported-software/p/pymemcache.md index 64f7d2b30..ae2ff5f2d 100644 --- a/docs/version-specific/supported-software/p/pymemcache.md +++ b/docs/version-specific/supported-software/p/pymemcache.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyobjcryst.md b/docs/version-specific/supported-software/p/pyobjcryst.md index 6481e0567..7f3fc405b 100644 --- a/docs/version-specific/supported-software/p/pyobjcryst.md +++ b/docs/version-specific/supported-software/p/pyobjcryst.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.0.post2`` | ``-Python-3.8.2`` | ``intel/2020a`` ``2.2.1`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyodbc.md b/docs/version-specific/supported-software/p/pyodbc.md index dc0b91209..13df7e4f9 100644 --- a/docs/version-specific/supported-software/p/pyodbc.md +++ b/docs/version-specific/supported-software/p/pyodbc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0.39`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyparsing.md b/docs/version-specific/supported-software/p/pyparsing.md index d26fbf751..b656f6c43 100644 --- a/docs/version-specific/supported-software/p/pyparsing.md +++ b/docs/version-specific/supported-software/p/pyparsing.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.0.9`` | | ``GCCcore/11.3.0`` ``3.1.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyperf.md b/docs/version-specific/supported-software/p/pyperf.md index 64c442c17..00881cc20 100644 --- a/docs/version-specific/supported-software/p/pyperf.md +++ b/docs/version-specific/supported-software/p/pyperf.md @@ -13,5 +13,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/11.3.0`` ``2.6.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyplusplus.md b/docs/version-specific/supported-software/p/pyplusplus.md index 6b599f5be..1f3845208 100644 --- a/docs/version-specific/supported-software/p/pyplusplus.md +++ b/docs/version-specific/supported-software/p/pyplusplus.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20160707`` | ``-Python-2.7.11`` | ``foss/2016a`` ``20160707`` | ``-Python-3.5.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pypmt.md b/docs/version-specific/supported-software/p/pypmt.md index 18dbfadb9..9f291a53e 100644 --- a/docs/version-specific/supported-software/p/pypmt.md +++ b/docs/version-specific/supported-software/p/pypmt.md @@ -15,5 +15,6 @@ version | toolchain ``1.2.0`` | ``foss/2022a`` ``1.2.0`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyproj.md b/docs/version-specific/supported-software/p/pyproj.md index 10f786803..27d1299ae 100644 --- a/docs/version-specific/supported-software/p/pyproj.md +++ b/docs/version-specific/supported-software/p/pyproj.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``GCCcore/12.2.0`` ``3.6.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyqstem.md b/docs/version-specific/supported-software/p/pyqstem.md index ac26def06..7407e6884 100644 --- a/docs/version-specific/supported-software/p/pyqstem.md +++ b/docs/version-specific/supported-software/p/pyqstem.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.0.3`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` ``1.0.3`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyradiomics.md b/docs/version-specific/supported-software/p/pyradiomics.md index 83c163776..802c7d568 100644 --- a/docs/version-specific/supported-software/p/pyradiomics.md +++ b/docs/version-specific/supported-software/p/pyradiomics.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``3.0.1`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyringe.md b/docs/version-specific/supported-software/p/pyringe.md index 2e1b203a5..1854935b2 100644 --- a/docs/version-specific/supported-software/p/pyringe.md +++ b/docs/version-specific/supported-software/p/pyringe.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.2`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 45a382c7e..76503c392 100644 --- a/docs/version-specific/supported-software/p/pyro-api.md +++ b/docs/version-specific/supported-software/p/pyro-api.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.2`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d6dfb323f..3edb0312d 100644 --- a/docs/version-specific/supported-software/p/pyro-ppl.md +++ b/docs/version-specific/supported-software/p/pyro-ppl.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.9.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``1.9.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pysamstats.md b/docs/version-specific/supported-software/p/pysamstats.md index 44770807d..2d0b4dc4b 100644 --- a/docs/version-specific/supported-software/p/pysamstats.md +++ b/docs/version-specific/supported-software/p/pysamstats.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyseer.md b/docs/version-specific/supported-software/p/pyseer.md index 83153f48e..38155eb80 100644 --- a/docs/version-specific/supported-software/p/pyseer.md +++ b/docs/version-specific/supported-software/p/pyseer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.11`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pysheds.md b/docs/version-specific/supported-software/p/pysheds.md index 75f6fcc45..a7911199e 100644 --- a/docs/version-specific/supported-software/p/pysheds.md +++ b/docs/version-specific/supported-software/p/pysheds.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.7.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyshp.md b/docs/version-specific/supported-software/p/pyshp.md index 6a6246016..13e72542b 100644 --- a/docs/version-specific/supported-software/p/pyshp.md +++ b/docs/version-specific/supported-software/p/pyshp.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.12`` | ``-Python-3.6.2`` | ``foss/2017b`` ``2.1.3`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyslim.md b/docs/version-specific/supported-software/p/pyslim.md index d4323d726..4788b46b4 100644 --- a/docs/version-specific/supported-software/p/pyslim.md +++ b/docs/version-specific/supported-software/p/pyslim.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.1`` | ``foss/2021b`` ``1.0.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pysndfx.md b/docs/version-specific/supported-software/p/pysndfx.md index fce280d60..6a7321dcf 100644 --- a/docs/version-specific/supported-software/p/pysndfx.md +++ b/docs/version-specific/supported-software/p/pysndfx.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.6`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pyspoa.md b/docs/version-specific/supported-software/p/pyspoa.md index d4869b7a8..8862e9e5f 100644 --- a/docs/version-specific/supported-software/p/pyspoa.md +++ b/docs/version-specific/supported-software/p/pyspoa.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.0.9`` | | ``GCC/12.2.0`` ``0.2.1`` | | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pysqlite.md b/docs/version-specific/supported-software/p/pysqlite.md index bf0c068e6..d1ae0ebd3 100644 --- a/docs/version-specific/supported-software/p/pysqlite.md +++ b/docs/version-specific/supported-software/p/pysqlite.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.8.2`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pysteps.md b/docs/version-specific/supported-software/p/pysteps.md index fa34a15cf..e51daa4d9 100644 --- a/docs/version-specific/supported-software/p/pysteps.md +++ b/docs/version-specific/supported-software/p/pysteps.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pystran.md b/docs/version-specific/supported-software/p/pystran.md index 80e436e5f..b12bb76f1 100644 --- a/docs/version-specific/supported-software/p/pystran.md +++ b/docs/version-specific/supported-software/p/pystran.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2017.04.20`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pytesseract.md b/docs/version-specific/supported-software/p/pytesseract.md index 531aa7550..d436dff91 100644 --- a/docs/version-specific/supported-software/p/pytesseract.md +++ b/docs/version-specific/supported-software/p/pytesseract.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.10`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c7d6988da..deff707d2 100644 --- a/docs/version-specific/supported-software/p/pytest-benchmark.md +++ b/docs/version-specific/supported-software/p/pytest-benchmark.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.4.1`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a9d54b2dd..3e44e7932 100644 --- a/docs/version-specific/supported-software/p/pytest-cpp.md +++ b/docs/version-specific/supported-software/p/pytest-cpp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5b7f3e73e..98eca0bcb 100644 --- a/docs/version-specific/supported-software/p/pytest-flakefinder.md +++ b/docs/version-specific/supported-software/p/pytest-flakefinder.md @@ -15,5 +15,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/12.3.0`` ``1.1.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c10a1fb0e..84013a7ea 100644 --- a/docs/version-specific/supported-software/p/pytest-rerunfailures.md +++ b/docs/version-specific/supported-software/p/pytest-rerunfailures.md @@ -15,5 +15,6 @@ version | toolchain ``12.0`` | ``GCCcore/12.3.0`` ``14.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7d43cb836..210ce004a 100644 --- a/docs/version-specific/supported-software/p/pytest-shard.md +++ b/docs/version-specific/supported-software/p/pytest-shard.md @@ -15,5 +15,6 @@ version | toolchain ``0.1.2`` | ``GCCcore/12.3.0`` ``0.1.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8fbc62436..28b33e0ac 100644 --- a/docs/version-specific/supported-software/p/pytest-workflow.md +++ b/docs/version-specific/supported-software/p/pytest-workflow.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.1`` | ``GCCcore/12.2.0`` ``2.1.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a56d3cc83..b5f020663 100644 --- a/docs/version-specific/supported-software/p/pytest-xdist.md +++ b/docs/version-specific/supported-software/p/pytest-xdist.md @@ -17,5 +17,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/11.3.0`` ``3.3.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pytest.md b/docs/version-specific/supported-software/p/pytest.md index 05b0038d4..9dece5f48 100644 --- a/docs/version-specific/supported-software/p/pytest.md +++ b/docs/version-specific/supported-software/p/pytest.md @@ -32,5 +32,6 @@ version | versionsuffix | toolchain ``7.2.2`` | | ``GCCcore/11.2.0`` ``7.4.2`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pythermalcomfort.md b/docs/version-specific/supported-software/p/pythermalcomfort.md index 39b51ab92..b2f619c2c 100644 --- a/docs/version-specific/supported-software/p/pythermalcomfort.md +++ b/docs/version-specific/supported-software/p/pythermalcomfort.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.10`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2826251e8..97a4c8dcf 100644 --- a/docs/version-specific/supported-software/p/python-Levenshtein.md +++ b/docs/version-specific/supported-software/p/python-Levenshtein.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.12.0`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.12.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 96c69999b..105dec5bd 100644 --- a/docs/version-specific/supported-software/p/python-casacore.md +++ b/docs/version-specific/supported-software/p/python-casacore.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.5.2`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8563b9b2b..2042ecabe 100644 --- a/docs/version-specific/supported-software/p/python-docx.md +++ b/docs/version-specific/supported-software/p/python-docx.md @@ -13,5 +13,6 @@ version | toolchain ``0.8.11`` | ``GCCcore/10.2.0`` ``0.8.11`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 88ddc7d92..027e646f7 100644 --- a/docs/version-specific/supported-software/p/python-hl7.md +++ b/docs/version-specific/supported-software/p/python-hl7.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.4`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 83c365a5d..e7b094449 100644 --- a/docs/version-specific/supported-software/p/python-igraph.md +++ b/docs/version-specific/supported-software/p/python-igraph.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``0.9.6`` | | ``foss/2021a`` ``0.9.8`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6e24767a2..68a52ed84 100644 --- a/docs/version-specific/supported-software/p/python-irodsclient.md +++ b/docs/version-specific/supported-software/p/python-irodsclient.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.4`` | ``GCCcore/11.2.0`` ``2.0.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 540197841..29e83ee50 100644 --- a/docs/version-specific/supported-software/p/python-isal.md +++ b/docs/version-specific/supported-software/p/python-isal.md @@ -18,5 +18,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/12.3.0`` ``1.6.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 72699e9e8..3a47b2b14 100644 --- a/docs/version-specific/supported-software/p/python-libsbml.md +++ b/docs/version-specific/supported-software/p/python-libsbml.md @@ -14,5 +14,6 @@ version | toolchain ``5.20.2`` | ``foss/2021b`` ``5.20.2`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3c3e8ac6d..f9d4d0910 100644 --- a/docs/version-specific/supported-software/p/python-louvain.md +++ b/docs/version-specific/supported-software/p/python-louvain.md @@ -14,5 +14,6 @@ version | toolchain ``0.16`` | ``foss/2022a`` ``0.16`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c96099bf8..00bd032fa 100644 --- a/docs/version-specific/supported-software/p/python-mujoco.md +++ b/docs/version-specific/supported-software/p/python-mujoco.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.2`` | ``foss/2022a`` ``3.1.4`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 233bc4d59..b0bc23e7c 100644 --- a/docs/version-specific/supported-software/p/python-parasail.md +++ b/docs/version-specific/supported-software/p/python-parasail.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``1.3.4`` | | ``foss/2022b`` ``1.3.4`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8ae20b5da..7796c7c63 100644 --- a/docs/version-specific/supported-software/p/python-telegram-bot.md +++ b/docs/version-specific/supported-software/p/python-telegram-bot.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20.0a0`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index fa4f7bf9d..c12c131af 100644 --- a/docs/version-specific/supported-software/p/python-weka-wrapper3.md +++ b/docs/version-specific/supported-software/p/python-weka-wrapper3.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.11`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2d9f161d5..e2a908b88 100644 --- a/docs/version-specific/supported-software/p/python-xxhash.md +++ b/docs/version-specific/supported-software/p/python-xxhash.md @@ -16,5 +16,6 @@ version | toolchain ``3.4.1`` | ``GCCcore/12.3.0`` ``3.4.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/p/pythran.md b/docs/version-specific/supported-software/p/pythran.md index 950cdfcb7..c150351de 100644 --- a/docs/version-specific/supported-software/p/pythran.md +++ b/docs/version-specific/supported-software/p/pythran.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.4.post1`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6970bfa1f..dd1e80d1a 100644 --- a/docs/version-specific/supported-software/p/pytorch-3dunet.md +++ b/docs/version-specific/supported-software/p/pytorch-3dunet.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c0f637830..9f05c213c 100644 --- a/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md +++ b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20230314`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Q6.md b/docs/version-specific/supported-software/q/Q6.md index 869bf0845..bc11f0519 100644 --- a/docs/version-specific/supported-software/q/Q6.md +++ b/docs/version-specific/supported-software/q/Q6.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20180205`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QCA.md b/docs/version-specific/supported-software/q/QCA.md index 29989feb7..74b3a3bff 100644 --- a/docs/version-specific/supported-software/q/QCA.md +++ b/docs/version-specific/supported-software/q/QCA.md @@ -17,5 +17,6 @@ version | toolchain ``2.1.3`` | ``intel/2016b`` ``2.3.5`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c94320fb4..a220d1efb 100644 --- a/docs/version-specific/supported-software/q/QCG-PilotJob.md +++ b/docs/version-specific/supported-software/q/QCG-PilotJob.md @@ -15,5 +15,6 @@ version | toolchain ``0.13.1`` | ``gfbf/2022b`` ``0.13.1`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QCxMS.md b/docs/version-specific/supported-software/q/QCxMS.md index 741bb69d4..3f09d70c5 100644 --- a/docs/version-specific/supported-software/q/QCxMS.md +++ b/docs/version-specific/supported-software/q/QCxMS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QD.md b/docs/version-specific/supported-software/q/QD.md index 606841c54..bacef4f64 100644 --- a/docs/version-specific/supported-software/q/QD.md +++ b/docs/version-specific/supported-software/q/QD.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.8.9`` | | ``foss/2021a`` ``2.3.17`` | ``-20160110`` | ``NVHPC/21.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QDD.md b/docs/version-specific/supported-software/q/QDD.md index 254ac9453..81f8b2b4d 100644 --- a/docs/version-specific/supported-software/q/QDD.md +++ b/docs/version-specific/supported-software/q/QDD.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QEMU.md b/docs/version-specific/supported-software/q/QEMU.md index 9c5289acf..fc64a86e4 100644 --- a/docs/version-specific/supported-software/q/QEMU.md +++ b/docs/version-specific/supported-software/q/QEMU.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.10.1`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QGIS.md b/docs/version-specific/supported-software/q/QGIS.md index d6915f1ba..4b01bd99a 100644 --- a/docs/version-specific/supported-software/q/QGIS.md +++ b/docs/version-specific/supported-software/q/QGIS.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.28.1`` | | ``foss/2021b`` ``3.4.12`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QIIME.md b/docs/version-specific/supported-software/q/QIIME.md index 7134ac093..20bee595e 100644 --- a/docs/version-specific/supported-software/q/QIIME.md +++ b/docs/version-specific/supported-software/q/QIIME.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.9.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QIIME2.md b/docs/version-specific/supported-software/q/QIIME2.md index 259842b36..d11524976 100644 --- a/docs/version-specific/supported-software/q/QIIME2.md +++ b/docs/version-specific/supported-software/q/QIIME2.md @@ -22,5 +22,6 @@ version | toolchain ``2023.5.1`` | ``foss/2022a`` ``2023.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QJson.md b/docs/version-specific/supported-software/q/QJson.md index 08ec97ff9..74df14c85 100644 --- a/docs/version-specific/supported-software/q/QJson.md +++ b/docs/version-specific/supported-software/q/QJson.md @@ -15,5 +15,6 @@ version | toolchain ``0.9.0`` | ``foss/2016b`` ``0.9.0`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QML.md b/docs/version-specific/supported-software/q/QML.md index 651405dfa..e4cbd9c2d 100644 --- a/docs/version-specific/supported-software/q/QML.md +++ b/docs/version-specific/supported-software/q/QML.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.10`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QScintilla.md b/docs/version-specific/supported-software/q/QScintilla.md index 4ce6a4319..8201a47d2 100644 --- a/docs/version-specific/supported-software/q/QScintilla.md +++ b/docs/version-specific/supported-software/q/QScintilla.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.9.4`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.9.4`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QTLtools.md b/docs/version-specific/supported-software/q/QTLtools.md index 1e573f61b..2dbf9fa3a 100644 --- a/docs/version-specific/supported-software/q/QTLtools.md +++ b/docs/version-specific/supported-software/q/QTLtools.md @@ -13,5 +13,6 @@ version | toolchain ``1.1`` | ``intel/2016b`` ``1.3.1`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QUAST.md b/docs/version-specific/supported-software/q/QUAST.md index 94519f4e7..eceda8355 100644 --- a/docs/version-specific/supported-software/q/QUAST.md +++ b/docs/version-specific/supported-software/q/QUAST.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``5.0.2`` | | ``foss/2021b`` ``5.2.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qhull.md b/docs/version-specific/supported-software/q/Qhull.md index 3be2c443a..76ffe2721 100644 --- a/docs/version-specific/supported-software/q/Qhull.md +++ b/docs/version-specific/supported-software/q/Qhull.md @@ -30,5 +30,6 @@ version | toolchain ``2020.2`` | ``GCCcore/12.3.0`` ``2020.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qiskit.md b/docs/version-specific/supported-software/q/Qiskit.md index fb9118302..9b79f58e2 100644 --- a/docs/version-specific/supported-software/q/Qiskit.md +++ b/docs/version-specific/supported-software/q/Qiskit.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.12.0`` | ``-Python-3.7.2`` | ``foss/2019a`` ``0.31.0`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qt.md b/docs/version-specific/supported-software/q/Qt.md index 9e5834ff4..5037d0438 100644 --- a/docs/version-specific/supported-software/q/Qt.md +++ b/docs/version-specific/supported-software/q/Qt.md @@ -29,5 +29,6 @@ version | versionsuffix | toolchain ``4.8.7`` | | ``intel/2017b`` ``4.8.7`` | | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qt5.md b/docs/version-specific/supported-software/q/Qt5.md index 276dfaf7a..c6132dfa7 100644 --- a/docs/version-specific/supported-software/q/Qt5.md +++ b/docs/version-specific/supported-software/q/Qt5.md @@ -41,5 +41,6 @@ version | toolchain ``5.9.3`` | ``foss/2017b`` ``5.9.8`` | ``fosscuda/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qt5Webkit.md b/docs/version-specific/supported-software/q/Qt5Webkit.md index 73b07dd2d..2e0f1b9e7 100644 --- a/docs/version-specific/supported-software/q/Qt5Webkit.md +++ b/docs/version-specific/supported-software/q/Qt5Webkit.md @@ -15,5 +15,6 @@ version | toolchain ``5.212.0-alpha4`` | ``GCCcore/11.2.0`` ``5.212.0-alpha4`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qt6.md b/docs/version-specific/supported-software/q/Qt6.md index 9faadca90..71f818615 100644 --- a/docs/version-specific/supported-software/q/Qt6.md +++ b/docs/version-specific/supported-software/q/Qt6.md @@ -13,5 +13,6 @@ version | toolchain ``6.5.2`` | ``GCCcore/12.3.0`` ``6.6.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QtKeychain.md b/docs/version-specific/supported-software/q/QtKeychain.md index f792b4ca4..0a78c3d2c 100644 --- a/docs/version-specific/supported-software/q/QtKeychain.md +++ b/docs/version-specific/supported-software/q/QtKeychain.md @@ -14,5 +14,6 @@ version | toolchain ``0.9.1`` | ``GCCcore/8.2.0`` ``0.9.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QtPy.md b/docs/version-specific/supported-software/q/QtPy.md index 182f9a1f0..2e2600924 100644 --- a/docs/version-specific/supported-software/q/QtPy.md +++ b/docs/version-specific/supported-software/q/QtPy.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``GCCcore/11.3.0`` ``2.4.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qtconsole.md b/docs/version-specific/supported-software/q/Qtconsole.md index 431c3b475..c53cec46c 100644 --- a/docs/version-specific/supported-software/q/Qtconsole.md +++ b/docs/version-specific/supported-software/q/Qtconsole.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``5.4.0`` | | ``GCCcore/11.3.0`` ``5.5.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuPath.md b/docs/version-specific/supported-software/q/QuPath.md index 637d2c2ad..cc0229e27 100644 --- a/docs/version-specific/supported-software/q/QuPath.md +++ b/docs/version-specific/supported-software/q/QuPath.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuTiP.md b/docs/version-specific/supported-software/q/QuTiP.md index 15b07839b..c69f99260 100644 --- a/docs/version-specific/supported-software/q/QuTiP.md +++ b/docs/version-specific/supported-software/q/QuTiP.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``4.3.1`` | ``-Python-3.6.6`` | ``foss/2018b`` ``4.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuaZIP.md b/docs/version-specific/supported-software/q/QuaZIP.md index f075d0065..29e72d151 100644 --- a/docs/version-specific/supported-software/q/QuaZIP.md +++ b/docs/version-specific/supported-software/q/QuaZIP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.1`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qualimap.md b/docs/version-specific/supported-software/q/Qualimap.md index 1553b728d..5d8cdad76 100644 --- a/docs/version-specific/supported-software/q/Qualimap.md +++ b/docs/version-specific/supported-software/q/Qualimap.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-R-4.0.3`` | ``foss/2020b`` ``2.2.1`` | ``-R-4.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Quandl.md b/docs/version-specific/supported-software/q/Quandl.md index 1f9054e90..df2545f80 100644 --- a/docs/version-specific/supported-software/q/Quandl.md +++ b/docs/version-specific/supported-software/q/Quandl.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.6.1`` | | ``foss/2020b`` ``3.6.1`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuantumESPRESSO.md b/docs/version-specific/supported-software/q/QuantumESPRESSO.md index 7f63b16a9..3186bf746 100644 --- a/docs/version-specific/supported-software/q/QuantumESPRESSO.md +++ b/docs/version-specific/supported-software/q/QuantumESPRESSO.md @@ -46,5 +46,6 @@ version | versionsuffix | toolchain ``7.3`` | | ``foss/2023a`` ``7.3`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuickFF.md b/docs/version-specific/supported-software/q/QuickFF.md index 3cff0ae45..7a82f50a0 100644 --- a/docs/version-specific/supported-software/q/QuickFF.md +++ b/docs/version-specific/supported-software/q/QuickFF.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.2.7`` | | ``foss/2023a`` ``2.2.7`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuickPIC.md b/docs/version-specific/supported-software/q/QuickPIC.md index 33da1a3b6..055fb09fb 100644 --- a/docs/version-specific/supported-software/q/QuickPIC.md +++ b/docs/version-specific/supported-software/q/QuickPIC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20210224`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QuickTree.md b/docs/version-specific/supported-software/q/QuickTree.md index 22a350797..eb48f7382 100644 --- a/docs/version-specific/supported-software/q/QuickTree.md +++ b/docs/version-specific/supported-software/q/QuickTree.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Quip.md b/docs/version-specific/supported-software/q/Quip.md index 5fe48d198..da1699c7b 100644 --- a/docs/version-specific/supported-software/q/Quip.md +++ b/docs/version-specific/supported-software/q/Quip.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.8`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Quorum.md b/docs/version-specific/supported-software/q/Quorum.md index e5dd71805..f06e14d6e 100644 --- a/docs/version-specific/supported-software/q/Quorum.md +++ b/docs/version-specific/supported-software/q/Quorum.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/Qwt.md b/docs/version-specific/supported-software/q/Qwt.md index ee5c0f73e..dba030e8a 100644 --- a/docs/version-specific/supported-software/q/Qwt.md +++ b/docs/version-specific/supported-software/q/Qwt.md @@ -22,5 +22,6 @@ version | toolchain ``6.2.0`` | ``GCCcore/11.2.0`` ``6.2.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/QwtPolar.md b/docs/version-specific/supported-software/q/QwtPolar.md index 756b46c5e..e8d3d84c3 100644 --- a/docs/version-specific/supported-software/q/QwtPolar.md +++ b/docs/version-specific/supported-software/q/QwtPolar.md @@ -15,5 +15,6 @@ version | toolchain ``1.1.1`` | ``foss/2016b`` ``1.1.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/index.md b/docs/version-specific/supported-software/q/index.md index 185853045..0030a50b0 100644 --- a/docs/version-specific/supported-software/q/index.md +++ b/docs/version-specific/supported-software/q/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (q) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../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) @@ -52,3 +54,7 @@ search: * [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 index 7838f15a3..8e35054c4 100644 --- a/docs/version-specific/supported-software/q/q2-krona.md +++ b/docs/version-specific/supported-software/q/q2-krona.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220124`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qcat.md b/docs/version-specific/supported-software/q/qcat.md index 8ee787c01..d74d7094c 100644 --- a/docs/version-specific/supported-software/q/qcat.md +++ b/docs/version-specific/supported-software/q/qcat.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qcint.md b/docs/version-specific/supported-software/q/qcint.md index 2add91874..5a20ea35f 100644 --- a/docs/version-specific/supported-software/q/qcint.md +++ b/docs/version-specific/supported-software/q/qcint.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.18`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qforce.md b/docs/version-specific/supported-software/q/qforce.md index 52814e0e2..6d207f378 100644 --- a/docs/version-specific/supported-software/q/qforce.md +++ b/docs/version-specific/supported-software/q/qforce.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.11`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qmflows.md b/docs/version-specific/supported-software/q/qmflows.md index 04437824f..9e02da965 100644 --- a/docs/version-specific/supported-software/q/qmflows.md +++ b/docs/version-specific/supported-software/q/qmflows.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qnorm.md b/docs/version-specific/supported-software/q/qnorm.md index d762e4308..f24c0fcb2 100644 --- a/docs/version-specific/supported-software/q/qnorm.md +++ b/docs/version-specific/supported-software/q/qnorm.md @@ -13,5 +13,6 @@ version | toolchain ``0.8.1`` | ``foss/2022a`` ``0.8.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qpth.md b/docs/version-specific/supported-software/q/qpth.md index a68c8938b..df6a5bdfd 100644 --- a/docs/version-specific/supported-software/q/qpth.md +++ b/docs/version-specific/supported-software/q/qpth.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.13-20190626`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qrupdate.md b/docs/version-specific/supported-software/q/qrupdate.md index 9d6cd321e..9b2793432 100644 --- a/docs/version-specific/supported-software/q/qrupdate.md +++ b/docs/version-specific/supported-software/q/qrupdate.md @@ -24,5 +24,6 @@ version | toolchain ``1.1.2`` | ``intel/2016b`` ``1.1.2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/q/qtop.md b/docs/version-specific/supported-software/q/qtop.md index c74e34ee6..9902f53be 100644 --- a/docs/version-specific/supported-software/q/qtop.md +++ b/docs/version-specific/supported-software/q/qtop.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``53`` | ``-1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 49da23f65..ba5116811 100644 --- a/docs/version-specific/supported-software/r/R-INLA.md +++ b/docs/version-specific/supported-software/r/R-INLA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``21.05.02`` | ``-R-4.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 59de0a714..b3cfa5f96 100644 --- a/docs/version-specific/supported-software/r/R-MXM.md +++ b/docs/version-specific/supported-software/r/R-MXM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.5`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bb4e4542a..68dfcb405 100644 --- a/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md +++ b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md @@ -31,5 +31,6 @@ version | versionsuffix | toolchain ``3.8`` | ``-R-3.5.1`` | ``foss/2018b`` ``3.9`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c31ec9258..51d33eecc 100644 --- a/docs/version-specific/supported-software/r/R-bundle-CRAN.md +++ b/docs/version-specific/supported-software/r/R-bundle-CRAN.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2023.12`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c3aec4485..f1ae28728 100644 --- a/docs/version-specific/supported-software/r/R-keras.md +++ b/docs/version-specific/supported-software/r/R-keras.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.4.0`` | ``-R-4.0.4`` | ``foss/2020b`` ``2.4.0`` | ``-R-4.0.4`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 03d159f76..90a31628f 100644 --- a/docs/version-specific/supported-software/r/R-opencv.md +++ b/docs/version-specific/supported-software/r/R-opencv.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dcff40eee..d81bb9488 100644 --- a/docs/version-specific/supported-software/r/R-tesseract.md +++ b/docs/version-specific/supported-software/r/R-tesseract.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.0`` | ``-R-3.5.1`` | ``foss/2018b`` ``5.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f2908d90a..c220dee77 100644 --- a/docs/version-specific/supported-software/r/R-transport.md +++ b/docs/version-specific/supported-software/r/R-transport.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13-0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/R.md b/docs/version-specific/supported-software/r/R.md index a92510dba..27e4f5f09 100644 --- a/docs/version-specific/supported-software/r/R.md +++ b/docs/version-specific/supported-software/r/R.md @@ -58,5 +58,6 @@ version | versionsuffix | toolchain ``4.3.2`` | | ``gfbf/2023a`` ``4.3.3`` | | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/R2jags.md b/docs/version-specific/supported-software/r/R2jags.md index 39e0cdb48..dad5842d5 100644 --- a/docs/version-specific/supported-software/r/R2jags.md +++ b/docs/version-specific/supported-software/r/R2jags.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7-1`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RAPSearch2.md b/docs/version-specific/supported-software/r/RAPSearch2.md index 769caddd5..dd49aec5d 100644 --- a/docs/version-specific/supported-software/r/RAPSearch2.md +++ b/docs/version-specific/supported-software/r/RAPSearch2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.24`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RASPA2.md b/docs/version-specific/supported-software/r/RASPA2.md index 385109ab9..393e995b7 100644 --- a/docs/version-specific/supported-software/r/RASPA2.md +++ b/docs/version-specific/supported-software/r/RASPA2.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.0.41`` | | ``foss/2020b`` ``2.0.47`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 082a7d403..89369d8ae 100644 --- a/docs/version-specific/supported-software/r/RAxML-NG.md +++ b/docs/version-specific/supported-software/r/RAxML-NG.md @@ -19,5 +19,6 @@ version | toolchain ``1.2.0`` | ``GCC/12.2.0`` ``1.2.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RAxML.md b/docs/version-specific/supported-software/r/RAxML.md index 0601692bc..545450309 100644 --- a/docs/version-specific/supported-software/r/RAxML.md +++ b/docs/version-specific/supported-software/r/RAxML.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``8.2.4`` | ``-hybrid-avx2`` | ``foss/2016a`` ``8.2.9`` | ``-hybrid-avx2`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RBFOpt.md b/docs/version-specific/supported-software/r/RBFOpt.md index 8682599ff..b3cbdc2f0 100644 --- a/docs/version-specific/supported-software/r/RBFOpt.md +++ b/docs/version-specific/supported-software/r/RBFOpt.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``4.1.1`` | | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RCall.md b/docs/version-specific/supported-software/r/RCall.md index e7f4ea0db..deaf6596d 100644 --- a/docs/version-specific/supported-software/r/RCall.md +++ b/docs/version-specific/supported-software/r/RCall.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.13.17`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RDFlib.md b/docs/version-specific/supported-software/r/RDFlib.md index 357b9c71c..8e1d05504 100644 --- a/docs/version-specific/supported-software/r/RDFlib.md +++ b/docs/version-specific/supported-software/r/RDFlib.md @@ -17,5 +17,6 @@ version | toolchain ``6.2.0`` | ``GCCcore/11.3.0`` ``7.0.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RDKit.md b/docs/version-specific/supported-software/r/RDKit.md index e75742c1a..74cc980e3 100644 --- a/docs/version-specific/supported-software/r/RDKit.md +++ b/docs/version-specific/supported-software/r/RDKit.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2022.09.4`` | | ``foss/2022a`` ``2023.03.3`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6babb351b..c221e9f67 100644 --- a/docs/version-specific/supported-software/r/RDP-Classifier.md +++ b/docs/version-specific/supported-software/r/RDP-Classifier.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.13`` | ``-Java-17`` | ``system`` ``2.7`` | ``-Java-1.7.0_60`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RE2.md b/docs/version-specific/supported-software/r/RE2.md index e5bcb7575..4a49041f0 100644 --- a/docs/version-specific/supported-software/r/RE2.md +++ b/docs/version-specific/supported-software/r/RE2.md @@ -19,5 +19,6 @@ version | toolchain ``2023-08-01`` | ``GCCcore/12.3.0`` ``2024-03-01`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RECON.md b/docs/version-specific/supported-software/r/RECON.md index a3d4f9f50..9bd683f5e 100644 --- a/docs/version-specific/supported-software/r/RECON.md +++ b/docs/version-specific/supported-software/r/RECON.md @@ -13,5 +13,6 @@ version | toolchain ``1.08`` | ``GCC/10.2.0`` ``1.08`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RELION.md b/docs/version-specific/supported-software/r/RELION.md index 73008f4cf..fb49d3563 100644 --- a/docs/version-specific/supported-software/r/RELION.md +++ b/docs/version-specific/supported-software/r/RELION.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``3.0_beta.2018.08.02`` | | ``fosscuda/2018a`` ``3.0_beta.2018.08.02`` | | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/REMORA.md b/docs/version-specific/supported-software/r/REMORA.md index d92c9cb0a..7b9c4346f 100644 --- a/docs/version-specific/supported-software/r/REMORA.md +++ b/docs/version-specific/supported-software/r/REMORA.md @@ -16,5 +16,6 @@ version | toolchain ``1.8.2`` | ``intel/2018a`` ``1.8.3`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RERconverge.md b/docs/version-specific/supported-software/r/RERconverge.md index ca97067b6..9e8bb72b3 100644 --- a/docs/version-specific/supported-software/r/RERconverge.md +++ b/docs/version-specific/supported-software/r/RERconverge.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.0`` | ``-R-3.4.3`` | ``foss/2017b`` ``0.1.0`` | ``-R-3.4.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RFdiffusion.md b/docs/version-specific/supported-software/r/RFdiffusion.md index e54bc23c2..9eaf6a702 100644 --- a/docs/version-specific/supported-software/r/RFdiffusion.md +++ b/docs/version-specific/supported-software/r/RFdiffusion.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``1.1.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RHEIA.md b/docs/version-specific/supported-software/r/RHEIA.md index 93737318b..b277c11f9 100644 --- a/docs/version-specific/supported-software/r/RHEIA.md +++ b/docs/version-specific/supported-software/r/RHEIA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.6`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RInChI.md b/docs/version-specific/supported-software/r/RInChI.md index ef2458248..e0762a3c6 100644 --- a/docs/version-specific/supported-software/r/RInChI.md +++ b/docs/version-specific/supported-software/r/RInChI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.00`` | ``-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RLCard.md b/docs/version-specific/supported-software/r/RLCard.md index facaa0a37..a0df8dab9 100644 --- a/docs/version-specific/supported-software/r/RLCard.md +++ b/docs/version-specific/supported-software/r/RLCard.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.9`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RMBlast.md b/docs/version-specific/supported-software/r/RMBlast.md index ad09e2d11..56db8c545 100644 --- a/docs/version-specific/supported-software/r/RMBlast.md +++ b/docs/version-specific/supported-software/r/RMBlast.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.2.28`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.9.0`` | | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 34c945b66..a45ed6a85 100644 --- a/docs/version-specific/supported-software/r/RNA-Bloom.md +++ b/docs/version-specific/supported-software/r/RNA-Bloom.md @@ -14,5 +14,6 @@ version | toolchain ``1.4.3`` | ``GCC/11.2.0`` ``2.0.1`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bb0e064f4..264eefb47 100644 --- a/docs/version-specific/supported-software/r/RNA-SeQC.md +++ b/docs/version-specific/supported-software/r/RNA-SeQC.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.4.2`` | | ``foss/2021a`` ``2.4.2`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RNAIndel.md b/docs/version-specific/supported-software/r/RNAIndel.md index f9a6a0489..a06b14670 100644 --- a/docs/version-specific/supported-software/r/RNAIndel.md +++ b/docs/version-specific/supported-software/r/RNAIndel.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RNAclust.md b/docs/version-specific/supported-software/r/RNAclust.md index 38fc880c1..6e16c740e 100644 --- a/docs/version-specific/supported-software/r/RNAclust.md +++ b/docs/version-specific/supported-software/r/RNAclust.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.3`` | ``-Perl-5.24.0`` | ``foss/2016b`` ``1.3`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RNAcode.md b/docs/version-specific/supported-software/r/RNAcode.md index ad9e8fbfb..efac44080 100644 --- a/docs/version-specific/supported-software/r/RNAcode.md +++ b/docs/version-specific/supported-software/r/RNAcode.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3`` | ``foss/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RNAmmer.md b/docs/version-specific/supported-software/r/RNAmmer.md index dca0cea2a..d084a2ad6 100644 --- a/docs/version-specific/supported-software/r/RNAmmer.md +++ b/docs/version-specific/supported-software/r/RNAmmer.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RNAz.md b/docs/version-specific/supported-software/r/RNAz.md index 473797b1a..f04700521 100644 --- a/docs/version-specific/supported-software/r/RNAz.md +++ b/docs/version-specific/supported-software/r/RNAz.md @@ -13,5 +13,6 @@ version | toolchain ``2.1`` | ``foss/2016b`` ``2.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 23de0eaf8..5db943867 100644 --- a/docs/version-specific/supported-software/r/ROCR-Runtime.md +++ b/docs/version-specific/supported-software/r/ROCR-Runtime.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 342f56c0c..b9347ea1e 100644 --- a/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md +++ b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6dba50c41..ce06dc3cb 100644 --- a/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md +++ b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ROCm.md b/docs/version-specific/supported-software/r/ROCm.md index df559d86b..7e6dc4438 100644 --- a/docs/version-specific/supported-software/r/ROCm.md +++ b/docs/version-specific/supported-software/r/ROCm.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bcc1f5d23..b44e4b4df 100644 --- a/docs/version-specific/supported-software/r/ROI_PAC.md +++ b/docs/version-specific/supported-software/r/ROI_PAC.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ROME.md b/docs/version-specific/supported-software/r/ROME.md index 20041f24a..2aaa9a031 100644 --- a/docs/version-specific/supported-software/r/ROME.md +++ b/docs/version-specific/supported-software/r/ROME.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.2`` | ``intel/2019.02`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ROOT.md b/docs/version-specific/supported-software/r/ROOT.md index 7b602d3b2..975b948c6 100644 --- a/docs/version-specific/supported-software/r/ROOT.md +++ b/docs/version-specific/supported-software/r/ROOT.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``v6.06.02`` | ``-Python-2.7.12`` | ``intel/2016b`` ``v6.08.02`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RPostgreSQL.md b/docs/version-specific/supported-software/r/RPostgreSQL.md index c55e4befe..e0c70ed10 100644 --- a/docs/version-specific/supported-software/r/RPostgreSQL.md +++ b/docs/version-specific/supported-software/r/RPostgreSQL.md @@ -13,5 +13,6 @@ version | toolchain ``0.7-5`` | ``foss/2022a`` ``0.7-6`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RQGIS3.md b/docs/version-specific/supported-software/r/RQGIS3.md index 97ba39c5f..d1274aee8 100644 --- a/docs/version-specific/supported-software/r/RQGIS3.md +++ b/docs/version-specific/supported-software/r/RQGIS3.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190903`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RSEM.md b/docs/version-specific/supported-software/r/RSEM.md index d8b42c7d0..d79b8398a 100644 --- a/docs/version-specific/supported-software/r/RSEM.md +++ b/docs/version-specific/supported-software/r/RSEM.md @@ -23,5 +23,6 @@ version | toolchain ``1.3.3`` | ``foss/2021b`` ``1.3.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RSeQC.md b/docs/version-specific/supported-software/r/RSeQC.md index 6a2130a98..717623f30 100644 --- a/docs/version-specific/supported-software/r/RSeQC.md +++ b/docs/version-specific/supported-software/r/RSeQC.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``4.0.0`` | | ``foss/2021a`` ``4.0.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RStan.md b/docs/version-specific/supported-software/r/RStan.md index aec7f94e1..0dffd85dd 100644 --- a/docs/version-specific/supported-software/r/RStan.md +++ b/docs/version-specific/supported-software/r/RStan.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.18.2`` | ``-R-3.5.1`` | ``foss/2018b`` ``2.18.2`` | ``-R-3.4.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 89b111601..76c7966dd 100644 --- a/docs/version-specific/supported-software/r/RStudio-Server.md +++ b/docs/version-specific/supported-software/r/RStudio-Server.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2022.07.2+576`` | ``-Java-11-R-4.2.1`` | ``foss/2022a`` ``2023.12.1+402`` | ``-Java-11-R-4.3.3`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3aaa766ef..eb5d48404 100644 --- a/docs/version-specific/supported-software/r/RTG-Tools.md +++ b/docs/version-specific/supported-software/r/RTG-Tools.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.12.1`` | ``-Java-11`` | ``system`` ``3.9.1`` | ``-Java-1.8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RaGOO.md b/docs/version-specific/supported-software/r/RaGOO.md index 744cbb60c..b76e00960 100644 --- a/docs/version-specific/supported-software/r/RaGOO.md +++ b/docs/version-specific/supported-software/r/RaGOO.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.11`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Racon.md b/docs/version-specific/supported-software/r/Racon.md index 181a3fc40..28649dfcc 100644 --- a/docs/version-specific/supported-software/r/Racon.md +++ b/docs/version-specific/supported-software/r/Racon.md @@ -23,5 +23,6 @@ version | toolchain ``1.5.0`` | ``GCCcore/12.2.0`` ``1.5.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RagTag.md b/docs/version-specific/supported-software/r/RagTag.md index 389a7e508..9e9b4b614 100644 --- a/docs/version-specific/supported-software/r/RagTag.md +++ b/docs/version-specific/supported-software/r/RagTag.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.1`` | ``foss/2020b`` ``2.1.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Ragout.md b/docs/version-specific/supported-software/r/Ragout.md index 09cded978..7572183fd 100644 --- a/docs/version-specific/supported-software/r/Ragout.md +++ b/docs/version-specific/supported-software/r/Ragout.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.3`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RapidJSON.md b/docs/version-specific/supported-software/r/RapidJSON.md index c02bc0a5b..a2a647e54 100644 --- a/docs/version-specific/supported-software/r/RapidJSON.md +++ b/docs/version-specific/supported-software/r/RapidJSON.md @@ -21,5 +21,6 @@ version | toolchain ``1.1.0`` | ``GCCcore/8.3.0`` ``1.1.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Raptor.md b/docs/version-specific/supported-software/r/Raptor.md index 84e6666e6..07fcbe9a1 100644 --- a/docs/version-specific/supported-software/r/Raptor.md +++ b/docs/version-specific/supported-software/r/Raptor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.16`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rascaf.md b/docs/version-specific/supported-software/r/Rascaf.md index f8fc4bc77..4afd50872 100644 --- a/docs/version-specific/supported-software/r/Rascaf.md +++ b/docs/version-specific/supported-software/r/Rascaf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Ratatosk.md b/docs/version-specific/supported-software/r/Ratatosk.md index 8696356f8..9d4e1c1c0 100644 --- a/docs/version-specific/supported-software/r/Ratatosk.md +++ b/docs/version-specific/supported-software/r/Ratatosk.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Raven.md b/docs/version-specific/supported-software/r/Raven.md index 5e7604d88..430a5d08d 100644 --- a/docs/version-specific/supported-software/r/Raven.md +++ b/docs/version-specific/supported-software/r/Raven.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.1`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 11378528f..0407f5cde 100644 --- a/docs/version-specific/supported-software/r/Ray-assembler.md +++ b/docs/version-specific/supported-software/r/Ray-assembler.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.1`` | ``iimpi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b9fdcba8e..7f00219f0 100644 --- a/docs/version-specific/supported-software/r/Ray-project.md +++ b/docs/version-specific/supported-software/r/Ray-project.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.9.2`` | | ``foss/2021b`` ``2.2.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Raysect.md b/docs/version-specific/supported-software/r/Raysect.md index b68248fef..577ac613a 100644 --- a/docs/version-specific/supported-software/r/Raysect.md +++ b/docs/version-specific/supported-software/r/Raysect.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.7.1`` | | ``foss/2020b`` ``0.7.1`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rcorrector.md b/docs/version-specific/supported-software/r/Rcorrector.md index 850ef5735..f9036528b 100644 --- a/docs/version-specific/supported-software/r/Rcorrector.md +++ b/docs/version-specific/supported-software/r/Rcorrector.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RcppGSL.md b/docs/version-specific/supported-software/r/RcppGSL.md index 11dd52502..4bd35d155 100644 --- a/docs/version-specific/supported-software/r/RcppGSL.md +++ b/docs/version-specific/supported-software/r/RcppGSL.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.8`` | ``-R-4.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ReFrame.md b/docs/version-specific/supported-software/r/ReFrame.md index b2f812efa..59d63fb6d 100644 --- a/docs/version-specific/supported-software/r/ReFrame.md +++ b/docs/version-specific/supported-software/r/ReFrame.md @@ -38,5 +38,6 @@ version | toolchain ``4.3.2`` | ``system`` ``4.3.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ReMatCh.md b/docs/version-specific/supported-software/r/ReMatCh.md index c6457a1df..0b99556c8 100644 --- a/docs/version-specific/supported-software/r/ReMatCh.md +++ b/docs/version-specific/supported-software/r/ReMatCh.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.2`` | ``-Python-2.7.12`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Reads2snp.md b/docs/version-specific/supported-software/r/Reads2snp.md index fd9c89784..9619d4bf5 100644 --- a/docs/version-specific/supported-software/r/Reads2snp.md +++ b/docs/version-specific/supported-software/r/Reads2snp.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Reapr.md b/docs/version-specific/supported-software/r/Reapr.md index f1e5ee2a5..0b6c00794 100644 --- a/docs/version-specific/supported-software/r/Reapr.md +++ b/docs/version-specific/supported-software/r/Reapr.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.18`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ReaxFF.md b/docs/version-specific/supported-software/r/ReaxFF.md index 992b08b77..5bd98ee4d 100644 --- a/docs/version-specific/supported-software/r/ReaxFF.md +++ b/docs/version-specific/supported-software/r/ReaxFF.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0`` | ``-param`` | ``GCC/11.3.0`` ``2.0`` | ``-sim`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Red.md b/docs/version-specific/supported-software/r/Red.md index 85a98a8cf..89316940f 100644 --- a/docs/version-specific/supported-software/r/Red.md +++ b/docs/version-specific/supported-software/r/Red.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2015-05-22`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Redis.md b/docs/version-specific/supported-software/r/Redis.md index 6670575bc..b418dee66 100644 --- a/docs/version-specific/supported-software/r/Redis.md +++ b/docs/version-specific/supported-software/r/Redis.md @@ -16,5 +16,6 @@ version | toolchain ``7.2.3`` | ``GCCcore/12.3.0`` ``7.2.4`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Redundans.md b/docs/version-specific/supported-software/r/Redundans.md index 63f5af42d..d215699cb 100644 --- a/docs/version-specific/supported-software/r/Redundans.md +++ b/docs/version-specific/supported-software/r/Redundans.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13c`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RegTools.md b/docs/version-specific/supported-software/r/RegTools.md index 932bd80d6..7f1c97ad2 100644 --- a/docs/version-specific/supported-software/r/RegTools.md +++ b/docs/version-specific/supported-software/r/RegTools.md @@ -15,5 +15,6 @@ version | toolchain ``0.5.2`` | ``foss/2021b`` ``1.0.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Relate.md b/docs/version-specific/supported-software/r/Relate.md index 942aeb84f..ca4c8506c 100644 --- a/docs/version-specific/supported-software/r/Relate.md +++ b/docs/version-specific/supported-software/r/Relate.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20211123`` | ``-R-4.0.3`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RepastHPC.md b/docs/version-specific/supported-software/r/RepastHPC.md index addaf8a18..bd539513c 100644 --- a/docs/version-specific/supported-software/r/RepastHPC.md +++ b/docs/version-specific/supported-software/r/RepastHPC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RepeatMasker.md b/docs/version-specific/supported-software/r/RepeatMasker.md index f66999a04..dcc0aef1f 100644 --- a/docs/version-specific/supported-software/r/RepeatMasker.md +++ b/docs/version-specific/supported-software/r/RepeatMasker.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``4.1.5`` | | ``foss/2021a`` ``4.1.5`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RepeatModeler.md b/docs/version-specific/supported-software/r/RepeatModeler.md index b863d98e7..529246a7d 100644 --- a/docs/version-specific/supported-software/r/RepeatModeler.md +++ b/docs/version-specific/supported-software/r/RepeatModeler.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.2a`` | ``foss/2020b`` ``2.0.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RepeatScout.md b/docs/version-specific/supported-software/r/RepeatScout.md index 0644eba34..243c11903 100644 --- a/docs/version-specific/supported-software/r/RepeatScout.md +++ b/docs/version-specific/supported-software/r/RepeatScout.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.6`` | ``GCC/10.2.0`` ``1.0.6`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ResistanceGA.md b/docs/version-specific/supported-software/r/ResistanceGA.md index a98086627..76f86430b 100644 --- a/docs/version-specific/supported-software/r/ResistanceGA.md +++ b/docs/version-specific/supported-software/r/ResistanceGA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.2-5`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Restrander.md b/docs/version-specific/supported-software/r/Restrander.md index efb14a4bd..98c04863a 100644 --- a/docs/version-specific/supported-software/r/Restrander.md +++ b/docs/version-specific/supported-software/r/Restrander.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20230713`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RevBayes.md b/docs/version-specific/supported-software/r/RevBayes.md index ea811ce85..ef5798c36 100644 --- a/docs/version-specific/supported-software/r/RevBayes.md +++ b/docs/version-specific/supported-software/r/RevBayes.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.1`` | ``GCC/11.2.0`` ``1.2.1`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rgurobi.md b/docs/version-specific/supported-software/r/Rgurobi.md index 8c1b441e5..dbbe7c1d2 100644 --- a/docs/version-specific/supported-software/r/Rgurobi.md +++ b/docs/version-specific/supported-software/r/Rgurobi.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``9.1.2`` | ``-R-4.1.0`` | ``foss/2021a`` ``9.5.0`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RheoTool.md b/docs/version-specific/supported-software/r/RheoTool.md index dc77425a3..bf2697f03 100644 --- a/docs/version-specific/supported-software/r/RheoTool.md +++ b/docs/version-specific/supported-software/r/RheoTool.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rhodium.md b/docs/version-specific/supported-software/r/Rhodium.md index 1cb170f15..4087ba8c2 100644 --- a/docs/version-specific/supported-software/r/Rhodium.md +++ b/docs/version-specific/supported-software/r/Rhodium.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rivet.md b/docs/version-specific/supported-software/r/Rivet.md index bdb30f44c..8233b657e 100644 --- a/docs/version-specific/supported-software/r/Rivet.md +++ b/docs/version-specific/supported-software/r/Rivet.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.1.7`` | ``-HepMC3-3.2.5`` | ``gompi/2022a`` ``3.1.9`` | ``-HepMC3-3.2.6`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rmath.md b/docs/version-specific/supported-software/r/Rmath.md index 61bcbbb4f..3bf85381c 100644 --- a/docs/version-specific/supported-software/r/Rmath.md +++ b/docs/version-specific/supported-software/r/Rmath.md @@ -13,5 +13,6 @@ version | toolchain ``3.3.1`` | ``intel/2016b`` ``4.0.4`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/RnBeads.md b/docs/version-specific/supported-software/r/RnBeads.md index 08c3ee450..8c679a0f0 100644 --- a/docs/version-specific/supported-software/r/RnBeads.md +++ b/docs/version-specific/supported-software/r/RnBeads.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.14.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``2.6.0`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Roary.md b/docs/version-specific/supported-software/r/Roary.md index 5cff0606a..5bec664c8 100644 --- a/docs/version-specific/supported-software/r/Roary.md +++ b/docs/version-specific/supported-software/r/Roary.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``3.13.0`` | | ``foss/2021a`` ``3.13.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rosetta.md b/docs/version-specific/supported-software/r/Rosetta.md index c88cd37ad..af20e25aa 100644 --- a/docs/version-specific/supported-software/r/Rosetta.md +++ b/docs/version-specific/supported-software/r/Rosetta.md @@ -14,5 +14,6 @@ version | toolchain ``2016.46.59086`` | ``foss/2016b`` ``3.7`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rtree.md b/docs/version-specific/supported-software/r/Rtree.md index 266e3bc14..4eb66fc0e 100644 --- a/docs/version-specific/supported-software/r/Rtree.md +++ b/docs/version-specific/supported-software/r/Rtree.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.1`` | | ``GCCcore/12.2.0`` ``1.2.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a9653ef34..e4ab7afbc 100644 --- a/docs/version-specific/supported-software/r/Ruby-Tk.md +++ b/docs/version-specific/supported-software/r/Ruby-Tk.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.2.0`` | ``-Ruby-2.5.1`` | ``foss/2018a`` ``0.2.0`` | ``-Ruby-2.5.1`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Ruby.md b/docs/version-specific/supported-software/r/Ruby.md index cfb4059cf..e8d22578c 100644 --- a/docs/version-specific/supported-software/r/Ruby.md +++ b/docs/version-specific/supported-software/r/Ruby.md @@ -33,5 +33,6 @@ version | toolchain ``3.2.2`` | ``GCCcore/12.2.0`` ``3.3.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/Rust.md b/docs/version-specific/supported-software/r/Rust.md index dd93b069a..e6f1ec033 100644 --- a/docs/version-specific/supported-software/r/Rust.md +++ b/docs/version-specific/supported-software/r/Rust.md @@ -39,5 +39,6 @@ version | toolchain ``1.78.0`` | ``GCCcore/13.3.0`` ``1.8.0`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/index.md b/docs/version-specific/supported-software/r/index.md index eb0d04f2e..1ebaf0ed0 100644 --- a/docs/version-specific/supported-software/r/index.md +++ b/docs/version-specific/supported-software/r/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (r) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../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) @@ -144,3 +146,7 @@ search: * [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 index 276d3ffe1..540aaf358 100644 --- a/docs/version-specific/supported-software/r/rCUDA.md +++ b/docs/version-specific/supported-software/r/rCUDA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.0.1`` | ``_linux_64_Ubuntu10.04`` | ``system`` ``5.0`` | ``_linux_64_scientificLinux6`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 610b49f94..0bba5ad47 100644 --- a/docs/version-specific/supported-software/r/rMATS-turbo.md +++ b/docs/version-specific/supported-software/r/rMATS-turbo.md @@ -13,5 +13,6 @@ version | toolchain ``4.1.1`` | ``foss/2020b`` ``4.2.0`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/radeontop.md b/docs/version-specific/supported-software/r/radeontop.md index 512e966cd..0bd5c402d 100644 --- a/docs/version-specific/supported-software/r/radeontop.md +++ b/docs/version-specific/supported-software/r/radeontop.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/radian.md b/docs/version-specific/supported-software/r/radian.md index 32f271f46..7bc6c8613 100644 --- a/docs/version-specific/supported-software/r/radian.md +++ b/docs/version-specific/supported-software/r/radian.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.9`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rampart.md b/docs/version-specific/supported-software/r/rampart.md index f32a5ca44..0443bc6f5 100644 --- a/docs/version-specific/supported-software/r/rampart.md +++ b/docs/version-specific/supported-software/r/rampart.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.2.0`` | | ``foss/2020b`` ``1.2.0rc3`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/randfold.md b/docs/version-specific/supported-software/r/randfold.md index d79d9dbda..03df69da5 100644 --- a/docs/version-specific/supported-software/r/randfold.md +++ b/docs/version-specific/supported-software/r/randfold.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.1`` | ``foss/2018b`` ``2.0.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/randrproto.md b/docs/version-specific/supported-software/r/randrproto.md index 88d28a417..476554c94 100644 --- a/docs/version-specific/supported-software/r/randrproto.md +++ b/docs/version-specific/supported-software/r/randrproto.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.0`` | ``foss/2016a`` ``1.5.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rapidNJ.md b/docs/version-specific/supported-software/r/rapidNJ.md index 94385cbe8..261161004 100644 --- a/docs/version-specific/supported-software/r/rapidNJ.md +++ b/docs/version-specific/supported-software/r/rapidNJ.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.3`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rapidcsv.md b/docs/version-specific/supported-software/r/rapidcsv.md index 9ad367745..7bcb9aae0 100644 --- a/docs/version-specific/supported-software/r/rapidcsv.md +++ b/docs/version-specific/supported-software/r/rapidcsv.md @@ -13,5 +13,6 @@ version | toolchain ``8.62`` | ``GCCcore/11.2.0`` ``8.64`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rapidtide.md b/docs/version-specific/supported-software/r/rapidtide.md index 67e4e4f1c..624dba1a2 100644 --- a/docs/version-specific/supported-software/r/rapidtide.md +++ b/docs/version-specific/supported-software/r/rapidtide.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.8.0`` | ``-Python-3.7.2`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rasterio.md b/docs/version-specific/supported-software/r/rasterio.md index 1e4a75baf..85f47ff90 100644 --- a/docs/version-specific/supported-software/r/rasterio.md +++ b/docs/version-specific/supported-software/r/rasterio.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.3.8`` | | ``foss/2022b`` ``1.3.9`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rasterstats.md b/docs/version-specific/supported-software/r/rasterstats.md index f3410ced2..c145ee2cc 100644 --- a/docs/version-specific/supported-software/r/rasterstats.md +++ b/docs/version-specific/supported-software/r/rasterstats.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.15.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.19.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rclone.md b/docs/version-specific/supported-software/r/rclone.md index e33d336fc..e989f103a 100644 --- a/docs/version-specific/supported-software/r/rclone.md +++ b/docs/version-specific/supported-software/r/rclone.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.65.2`` | | ``system`` ``1.66.0`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/re2c.md b/docs/version-specific/supported-software/r/re2c.md index 6bbdc28b2..84628f745 100644 --- a/docs/version-specific/supported-software/r/re2c.md +++ b/docs/version-specific/supported-software/r/re2c.md @@ -21,5 +21,6 @@ version | toolchain ``3.1`` | ``GCCcore/12.3.0`` ``3.1`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 01eff90ff..e48458ea3 100644 --- a/docs/version-specific/supported-software/r/redis-py.md +++ b/docs/version-specific/supported-software/r/redis-py.md @@ -15,5 +15,6 @@ version | toolchain ``4.5.1`` | ``foss/2022a`` ``5.0.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/regionmask.md b/docs/version-specific/supported-software/r/regionmask.md index 4171c2800..d94a8f5f9 100644 --- a/docs/version-specific/supported-software/r/regionmask.md +++ b/docs/version-specific/supported-software/r/regionmask.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``foss/2021b`` ``0.9.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/remake.md b/docs/version-specific/supported-software/r/remake.md index 3b80026de..9cd92efdf 100644 --- a/docs/version-specific/supported-software/r/remake.md +++ b/docs/version-specific/supported-software/r/remake.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3+dbg-1.6`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/renderproto.md b/docs/version-specific/supported-software/r/renderproto.md index f7a9e0de6..cf3824d9f 100644 --- a/docs/version-specific/supported-software/r/renderproto.md +++ b/docs/version-specific/supported-software/r/renderproto.md @@ -15,5 +15,6 @@ version | toolchain ``0.11`` | ``intel/2016a`` ``0.11`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/request.md b/docs/version-specific/supported-software/r/request.md index b8112d8be..8e1bf9af6 100644 --- a/docs/version-specific/supported-software/r/request.md +++ b/docs/version-specific/supported-software/r/request.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.88.1`` | ``-nodejs-12.19.0`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/requests.md b/docs/version-specific/supported-software/r/requests.md index c0c263a7f..b697f4459 100644 --- a/docs/version-specific/supported-software/r/requests.md +++ b/docs/version-specific/supported-software/r/requests.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2.13.0`` | ``-Python-2.7.12`` | ``foss/2016b`` ``2.13.0`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/resolos.md b/docs/version-specific/supported-software/r/resolos.md index e01b40af4..0875dd0f6 100644 --- a/docs/version-specific/supported-software/r/resolos.md +++ b/docs/version-specific/supported-software/r/resolos.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.5`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rethinking.md b/docs/version-specific/supported-software/r/rethinking.md index 208e824ef..e45eda3ac 100644 --- a/docs/version-specific/supported-software/r/rethinking.md +++ b/docs/version-specific/supported-software/r/rethinking.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.40-20230914`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/retworkx.md b/docs/version-specific/supported-software/r/retworkx.md index 10cc56858..5e2c12c31 100644 --- a/docs/version-specific/supported-software/r/retworkx.md +++ b/docs/version-specific/supported-software/r/retworkx.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rgdal.md b/docs/version-specific/supported-software/r/rgdal.md index d41ef88c7..06f9b310f 100644 --- a/docs/version-specific/supported-software/r/rgdal.md +++ b/docs/version-specific/supported-software/r/rgdal.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.5-23`` | ``-R-4.1.0`` | ``foss/2021a`` ``1.6-6`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rgeos.md b/docs/version-specific/supported-software/r/rgeos.md index 021c3c46e..4de3d4d36 100644 --- a/docs/version-specific/supported-software/r/rgeos.md +++ b/docs/version-specific/supported-software/r/rgeos.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.5-5`` | ``-R-4.0.0`` | ``foss/2020a`` ``0.5-5`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rhdf5.md b/docs/version-specific/supported-software/r/rhdf5.md index 47dbd5828..b123ac14a 100644 --- a/docs/version-specific/supported-software/r/rhdf5.md +++ b/docs/version-specific/supported-software/r/rhdf5.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.16.0`` | ``-R-3.2.3`` | ``intel/2016a`` ``2.18.0`` | ``-R-3.3.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rickflow.md b/docs/version-specific/supported-software/r/rickflow.md index 065a19744..9a18a968f 100644 --- a/docs/version-specific/supported-software/r/rickflow.md +++ b/docs/version-specific/supported-software/r/rickflow.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.7.0-20200529`` | ``-Python-3.7.4`` | ``intel/2019b`` ``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rioxarray.md b/docs/version-specific/supported-software/r/rioxarray.md index 64f5dc551..cb9641f48 100644 --- a/docs/version-specific/supported-software/r/rioxarray.md +++ b/docs/version-specific/supported-software/r/rioxarray.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``foss/2022a`` ``0.15.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ripunzip.md b/docs/version-specific/supported-software/r/ripunzip.md index 0ee695b51..49c9e2ea7 100644 --- a/docs/version-specific/supported-software/r/ripunzip.md +++ b/docs/version-specific/supported-software/r/ripunzip.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rising.md b/docs/version-specific/supported-software/r/rising.md index 3b521ab30..667703260 100644 --- a/docs/version-specific/supported-software/r/rising.md +++ b/docs/version-specific/supported-software/r/rising.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rjags.md b/docs/version-specific/supported-software/r/rjags.md index 2a4e56207..e436bffd3 100644 --- a/docs/version-specific/supported-software/r/rjags.md +++ b/docs/version-specific/supported-software/r/rjags.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``4-8`` | ``-R-3.5.1`` | ``foss/2018b`` ``4-9`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rmarkdown.md b/docs/version-specific/supported-software/r/rmarkdown.md index fe3d7ae16..79d64715b 100644 --- a/docs/version-specific/supported-software/r/rmarkdown.md +++ b/docs/version-specific/supported-software/r/rmarkdown.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.20`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rnaQUAST.md b/docs/version-specific/supported-software/r/rnaQUAST.md index 24a69433c..5b612d5f2 100644 --- a/docs/version-specific/supported-software/r/rnaQUAST.md +++ b/docs/version-specific/supported-software/r/rnaQUAST.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.2.2`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6a87b7f9a..e673203ea 100644 --- a/docs/version-specific/supported-software/r/rocm-cmake.md +++ b/docs/version-specific/supported-software/r/rocm-cmake.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b09c9a701..e3c01f661 100644 --- a/docs/version-specific/supported-software/r/rocm-smi.md +++ b/docs/version-specific/supported-software/r/rocm-smi.md @@ -14,5 +14,6 @@ version | toolchain ``5.4.4`` | ``GCCcore/11.3.0`` ``5.6.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rocminfo.md b/docs/version-specific/supported-software/r/rocminfo.md index 85939f173..4d0902c62 100644 --- a/docs/version-specific/supported-software/r/rocminfo.md +++ b/docs/version-specific/supported-software/r/rocminfo.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a385691f7..26dc8c45d 100644 --- a/docs/version-specific/supported-software/r/root_numpy.md +++ b/docs/version-specific/supported-software/r/root_numpy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.8.0`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rootpy.md b/docs/version-specific/supported-software/r/rootpy.md index e1abb0a83..c714bd567 100644 --- a/docs/version-specific/supported-software/r/rootpy.md +++ b/docs/version-specific/supported-software/r/rootpy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.8.0`` | ``-Python-2.7.11`` | ``foss/2016a`` ``1.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rpmrebuild.md b/docs/version-specific/supported-software/r/rpmrebuild.md index c4202338a..849d0d395 100644 --- a/docs/version-specific/supported-software/r/rpmrebuild.md +++ b/docs/version-specific/supported-software/r/rpmrebuild.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rpy2.md b/docs/version-specific/supported-software/r/rpy2.md index f917bfb32..492a5f0e4 100644 --- a/docs/version-specific/supported-software/r/rpy2.md +++ b/docs/version-specific/supported-software/r/rpy2.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``3.4.5`` | | ``foss/2021b`` ``3.5.15`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rstanarm.md b/docs/version-specific/supported-software/r/rstanarm.md index 28afb14eb..e915c5fd0 100644 --- a/docs/version-specific/supported-software/r/rstanarm.md +++ b/docs/version-specific/supported-software/r/rstanarm.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.19.3`` | ``-R-3.6.2`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5f806d587..9e3065da9 100644 --- a/docs/version-specific/supported-software/r/ruamel.yaml.md +++ b/docs/version-specific/supported-software/r/ruamel.yaml.md @@ -17,5 +17,6 @@ version | toolchain ``0.17.32`` | ``GCCcore/12.3.0`` ``0.18.6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ruffus.md b/docs/version-specific/supported-software/r/ruffus.md index c52c041d0..3a76cea9d 100644 --- a/docs/version-specific/supported-software/r/ruffus.md +++ b/docs/version-specific/supported-software/r/ruffus.md @@ -13,5 +13,6 @@ version | toolchain ``2.8.4`` | ``GCCcore/11.3.0`` ``2.8.4`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/ruptures.md b/docs/version-specific/supported-software/r/ruptures.md index e33fcfee0..ade378989 100644 --- a/docs/version-specific/supported-software/r/ruptures.md +++ b/docs/version-specific/supported-software/r/ruptures.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.8`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/r/rustworkx.md b/docs/version-specific/supported-software/r/rustworkx.md index 0dca7c05c..38706965c 100644 --- a/docs/version-specific/supported-software/r/rustworkx.md +++ b/docs/version-specific/supported-software/r/rustworkx.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.12.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 98e81d50d..50fca2d73 100644 --- a/docs/version-specific/supported-software/s/S-Lang.md +++ b/docs/version-specific/supported-software/s/S-Lang.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3.0`` | ``GCC/4.9.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/S4.md b/docs/version-specific/supported-software/s/S4.md index 7ea524d73..d5c275b84 100644 --- a/docs/version-specific/supported-software/s/S4.md +++ b/docs/version-specific/supported-software/s/S4.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1-20180610`` | ``foss/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SAGE.md b/docs/version-specific/supported-software/s/SAGE.md index 8ab2d7f3e..9735c9b09 100644 --- a/docs/version-specific/supported-software/s/SAGE.md +++ b/docs/version-specific/supported-software/s/SAGE.md @@ -13,5 +13,6 @@ version | toolchain ``6.3`` | ``system`` ``6.4`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0e00253ed..eb4eec86c 100644 --- a/docs/version-specific/supported-software/s/SALMON-TDDFT.md +++ b/docs/version-specific/supported-software/s/SALMON-TDDFT.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.1`` | ``foss/2018b`` ``1.2.1`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SALib.md b/docs/version-specific/supported-software/s/SALib.md index 20a5d5255..7a4881389 100644 --- a/docs/version-specific/supported-software/s/SALib.md +++ b/docs/version-specific/supported-software/s/SALib.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SAMtools.md b/docs/version-specific/supported-software/s/SAMtools.md index 12c5d2777..eef20363b 100644 --- a/docs/version-specific/supported-software/s/SAMtools.md +++ b/docs/version-specific/supported-software/s/SAMtools.md @@ -72,5 +72,6 @@ version | versionsuffix | toolchain ``1.9`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` ``1.9`` | | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SAP.md b/docs/version-specific/supported-software/s/SAP.md index a4613dfea..502da81af 100644 --- a/docs/version-specific/supported-software/s/SAP.md +++ b/docs/version-specific/supported-software/s/SAP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.3`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SAS.md b/docs/version-specific/supported-software/s/SAS.md index 3240002e6..3336ad60f 100644 --- a/docs/version-specific/supported-software/s/SAS.md +++ b/docs/version-specific/supported-software/s/SAS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``9.4`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SBCL.md b/docs/version-specific/supported-software/s/SBCL.md index 6d70e47d8..d2b995aff 100644 --- a/docs/version-specific/supported-software/s/SBCL.md +++ b/docs/version-specific/supported-software/s/SBCL.md @@ -15,5 +15,6 @@ version | toolchain ``2.3.11`` | ``GCCcore/11.3.0`` ``2.4.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCALCE.md b/docs/version-specific/supported-software/s/SCALCE.md index 8786db507..4c8f20944 100644 --- a/docs/version-specific/supported-software/s/SCALCE.md +++ b/docs/version-specific/supported-software/s/SCALCE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.7`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCENIC.md b/docs/version-specific/supported-software/s/SCENIC.md index ff091fc21..4102d47c9 100644 --- a/docs/version-specific/supported-software/s/SCENIC.md +++ b/docs/version-specific/supported-software/s/SCENIC.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.3.0`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.3.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCGid.md b/docs/version-specific/supported-software/s/SCGid.md index 5ca7a3bf4..86f5e3744 100644 --- a/docs/version-specific/supported-software/s/SCGid.md +++ b/docs/version-specific/supported-software/s/SCGid.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9b0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCIP.md b/docs/version-specific/supported-software/s/SCIP.md index b20c2d407..74454e3f9 100644 --- a/docs/version-specific/supported-software/s/SCIP.md +++ b/docs/version-specific/supported-software/s/SCIP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.2.1`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCIPhI.md b/docs/version-specific/supported-software/s/SCIPhI.md index 61a7fdeb6..bed6160ef 100644 --- a/docs/version-specific/supported-software/s/SCIPhI.md +++ b/docs/version-specific/supported-software/s/SCIPhI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.3`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCOOP.md b/docs/version-specific/supported-software/s/SCOOP.md index 6b14c25b9..1e399651d 100644 --- a/docs/version-specific/supported-software/s/SCOOP.md +++ b/docs/version-specific/supported-software/s/SCOOP.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.7.1.1`` | ``-Python-3.5.1`` | ``intel/2016a`` ``0.7.1.1`` | ``-Python-2.7.14`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCOTCH.md b/docs/version-specific/supported-software/s/SCOTCH.md index e71159fc8..e577ea9f7 100644 --- a/docs/version-specific/supported-software/s/SCOTCH.md +++ b/docs/version-specific/supported-software/s/SCOTCH.md @@ -44,5 +44,6 @@ version | versionsuffix | toolchain ``7.0.3`` | | ``gompi/2023a`` ``7.0.4`` | | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCReadCounts.md b/docs/version-specific/supported-software/s/SCReadCounts.md index 2e92983ee..d5ed3e572 100644 --- a/docs/version-specific/supported-software/s/SCReadCounts.md +++ b/docs/version-specific/supported-software/s/SCReadCounts.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.0`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCnorm.md b/docs/version-specific/supported-software/s/SCnorm.md index cc872c9b1..38ef9dce5 100644 --- a/docs/version-specific/supported-software/s/SCnorm.md +++ b/docs/version-specific/supported-software/s/SCnorm.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.99.7`` | ``-R-3.4.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCons.md b/docs/version-specific/supported-software/s/SCons.md index 407738360..59be0be3e 100644 --- a/docs/version-specific/supported-software/s/SCons.md +++ b/docs/version-specific/supported-software/s/SCons.md @@ -43,5 +43,6 @@ version | versionsuffix | toolchain ``4.5.2`` | | ``GCCcore/12.3.0`` ``4.6.0`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SCopeLoomR.md b/docs/version-specific/supported-software/s/SCopeLoomR.md index afc5d5fd9..6dd0db947 100644 --- a/docs/version-specific/supported-software/s/SCopeLoomR.md +++ b/docs/version-specific/supported-software/s/SCopeLoomR.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.13.0`` | ``-R-4.1.2`` | ``foss/2021b`` ``0.13.0_20220408`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SDCC.md b/docs/version-specific/supported-software/s/SDCC.md index 070233aa2..3b58660f8 100644 --- a/docs/version-specific/supported-software/s/SDCC.md +++ b/docs/version-specific/supported-software/s/SDCC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SDL.md b/docs/version-specific/supported-software/s/SDL.md index ab344bd8d..29bd0bf3d 100644 --- a/docs/version-specific/supported-software/s/SDL.md +++ b/docs/version-specific/supported-software/s/SDL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.15`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SDL2.md b/docs/version-specific/supported-software/s/SDL2.md index 6a8b7e621..6f1a0701d 100644 --- a/docs/version-specific/supported-software/s/SDL2.md +++ b/docs/version-specific/supported-software/s/SDL2.md @@ -28,5 +28,6 @@ version | toolchain ``2.28.2`` | ``GCCcore/12.3.0`` ``2.28.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3e6dfa93b..0c1825df1 100644 --- a/docs/version-specific/supported-software/s/SDL2_gfx.md +++ b/docs/version-specific/supported-software/s/SDL2_gfx.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.4`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 516af2888..3c41b4d44 100644 --- a/docs/version-specific/supported-software/s/SDL2_image.md +++ b/docs/version-specific/supported-software/s/SDL2_image.md @@ -14,5 +14,6 @@ version | toolchain ``2.6.3`` | ``GCCcore/11.3.0`` ``2.8.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 98d389795..303e7e5b3 100644 --- a/docs/version-specific/supported-software/s/SDL2_mixer.md +++ b/docs/version-specific/supported-software/s/SDL2_mixer.md @@ -13,5 +13,6 @@ version | toolchain ``2.6.3`` | ``GCCcore/11.3.0`` ``2.8.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 550abed3d..328957c88 100644 --- a/docs/version-specific/supported-software/s/SDL2_ttf.md +++ b/docs/version-specific/supported-software/s/SDL2_ttf.md @@ -13,5 +13,6 @@ version | toolchain ``2.20.2`` | ``GCCcore/11.3.0`` ``2.22.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index df83e72ff..4311fb2f7 100644 --- a/docs/version-specific/supported-software/s/SDL_image.md +++ b/docs/version-specific/supported-software/s/SDL_image.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.12`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SDSL.md b/docs/version-specific/supported-software/s/SDSL.md index 989736b44..5579a3a41 100644 --- a/docs/version-specific/supported-software/s/SDSL.md +++ b/docs/version-specific/supported-software/s/SDSL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.1-20191211`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SEACells.md b/docs/version-specific/supported-software/s/SEACells.md index ae1687784..43945bb6a 100644 --- a/docs/version-specific/supported-software/s/SEACells.md +++ b/docs/version-specific/supported-software/s/SEACells.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20230731`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SECAPR.md b/docs/version-specific/supported-software/s/SECAPR.md index e70f27ca9..6134b6729 100644 --- a/docs/version-specific/supported-software/s/SECAPR.md +++ b/docs/version-specific/supported-software/s/SECAPR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.15`` | ``-Python-2.7.16`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SELFIES.md b/docs/version-specific/supported-software/s/SELFIES.md index 0bc116562..709f83b6d 100644 --- a/docs/version-specific/supported-software/s/SELFIES.md +++ b/docs/version-specific/supported-software/s/SELFIES.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.1`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SEPP.md b/docs/version-specific/supported-software/s/SEPP.md index 451415ba6..dcd8ac5c0 100644 --- a/docs/version-specific/supported-software/s/SEPP.md +++ b/docs/version-specific/supported-software/s/SEPP.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``4.5.1`` | | ``foss/2022a`` ``4.5.1`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SHAP.md b/docs/version-specific/supported-software/s/SHAP.md index 16e2ad222..97e366899 100644 --- a/docs/version-specific/supported-software/s/SHAP.md +++ b/docs/version-specific/supported-software/s/SHAP.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.42.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``0.42.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SHAPEIT.md b/docs/version-specific/supported-software/s/SHAPEIT.md index 8ad1bc4c6..ee3aebe22 100644 --- a/docs/version-specific/supported-software/s/SHAPEIT.md +++ b/docs/version-specific/supported-software/s/SHAPEIT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.r837`` | ``.GLIBCv2.12`` | ``system`` ``2.r904`` | ``.glibcv2.17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SHAPEIT4.md b/docs/version-specific/supported-software/s/SHAPEIT4.md index e3a5fad1f..a78d4407b 100644 --- a/docs/version-specific/supported-software/s/SHAPEIT4.md +++ b/docs/version-specific/supported-software/s/SHAPEIT4.md @@ -17,5 +17,6 @@ version | toolchain ``4.2.2`` | ``foss/2020b`` ``4.2.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SHORE.md b/docs/version-specific/supported-software/s/SHORE.md index 83b154723..6ef5b5bf3 100644 --- a/docs/version-specific/supported-software/s/SHORE.md +++ b/docs/version-specific/supported-software/s/SHORE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.3`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SHTns.md b/docs/version-specific/supported-software/s/SHTns.md index 3340eca0f..a752d9ee1 100644 --- a/docs/version-specific/supported-software/s/SHTns.md +++ b/docs/version-specific/supported-software/s/SHTns.md @@ -13,5 +13,6 @@ version | toolchain ``2.7`` | ``foss/2021b`` ``3.5.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SICER2.md b/docs/version-specific/supported-software/s/SICER2.md index 850eeb7fa..bdf3b07e4 100644 --- a/docs/version-specific/supported-software/s/SICER2.md +++ b/docs/version-specific/supported-software/s/SICER2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SIMPLE.md b/docs/version-specific/supported-software/s/SIMPLE.md index bad63610f..6e460dd47 100644 --- a/docs/version-specific/supported-software/s/SIMPLE.md +++ b/docs/version-specific/supported-software/s/SIMPLE.md @@ -13,5 +13,6 @@ version | toolchain ``2.5`` | ``foss/2018a`` ``3.0.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SIONlib.md b/docs/version-specific/supported-software/s/SIONlib.md index 48a74bbdb..b0d9b4fb2 100644 --- a/docs/version-specific/supported-software/s/SIONlib.md +++ b/docs/version-specific/supported-software/s/SIONlib.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``1.7.7`` | ``-tools`` | ``GCCcore/12.3.0`` ``1.7.7`` | ``-tools`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SIP.md b/docs/version-specific/supported-software/s/SIP.md index e5d5e1542..c4a34afbb 100644 --- a/docs/version-specific/supported-software/s/SIP.md +++ b/docs/version-specific/supported-software/s/SIP.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``4.19.8`` | ``-Python-3.6.4`` | ``intel/2018a`` ``6.8.1`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SISSO++.md b/docs/version-specific/supported-software/s/SISSO++.md index 2aeba64d1..8ae730c02 100644 --- a/docs/version-specific/supported-software/s/SISSO++.md +++ b/docs/version-specific/supported-software/s/SISSO++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SISSO.md b/docs/version-specific/supported-software/s/SISSO.md index 823dd5694..4c88a6a46 100644 --- a/docs/version-specific/supported-software/s/SISSO.md +++ b/docs/version-specific/supported-software/s/SISSO.md @@ -13,5 +13,6 @@ version | toolchain ``3.0.2`` | ``iimpi/2021b`` ``3.1-20220324`` | ``iimpi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SKESA.md b/docs/version-specific/supported-software/s/SKESA.md index 1af26f4a9..53b256220 100644 --- a/docs/version-specific/supported-software/s/SKESA.md +++ b/docs/version-specific/supported-software/s/SKESA.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.3.0`` | | ``foss/2018b`` ``2.4.0`` | ``_saute.1.3.0_1`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SLATEC.md b/docs/version-specific/supported-software/s/SLATEC.md index da4f286ed..0eddcd808 100644 --- a/docs/version-specific/supported-software/s/SLATEC.md +++ b/docs/version-specific/supported-software/s/SLATEC.md @@ -14,5 +14,6 @@ version | toolchain ``4.1`` | ``GCC/8.3.0`` ``4.1`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SLEPc.md b/docs/version-specific/supported-software/s/SLEPc.md index cf1b1d9be..d903b949d 100644 --- a/docs/version-specific/supported-software/s/SLEPc.md +++ b/docs/version-specific/supported-software/s/SLEPc.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``3.8.3`` | | ``foss/2017b`` ``3.9.2`` | | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SLiM.md b/docs/version-specific/supported-software/s/SLiM.md index a019d32a0..093a1efbe 100644 --- a/docs/version-specific/supported-software/s/SLiM.md +++ b/docs/version-specific/supported-software/s/SLiM.md @@ -14,5 +14,6 @@ version | toolchain ``4.0`` | ``GCC/11.2.0`` ``4.0.1`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SMAP.md b/docs/version-specific/supported-software/s/SMAP.md index b31428273..40e80def2 100644 --- a/docs/version-specific/supported-software/s/SMAP.md +++ b/docs/version-specific/supported-software/s/SMAP.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.6.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SMARTdenovo.md b/docs/version-specific/supported-software/s/SMARTdenovo.md index bd4fc6dfd..15eadf7f1 100644 --- a/docs/version-specific/supported-software/s/SMARTdenovo.md +++ b/docs/version-specific/supported-software/s/SMARTdenovo.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20180219`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SMC++.md b/docs/version-specific/supported-software/s/SMC++.md index 4db0f2e01..9e3bf6aab 100644 --- a/docs/version-specific/supported-software/s/SMC++.md +++ b/docs/version-specific/supported-software/s/SMC++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.15.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d91d61f13..8daabdb11 100644 --- a/docs/version-specific/supported-software/s/SMRT-Link.md +++ b/docs/version-specific/supported-software/s/SMRT-Link.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``5.1.0.26412`` | ``-cli-tools-only`` | ``system`` ``6.0.0.47841`` | ``-cli-tools-only`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SMV.md b/docs/version-specific/supported-software/s/SMV.md index 2d5f5ac8e..9b3356ae1 100644 --- a/docs/version-specific/supported-software/s/SMV.md +++ b/docs/version-specific/supported-software/s/SMV.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.7.17`` | ``iccifort/2020.4.304`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 140c06265..e20c0ac7d 100644 --- a/docs/version-specific/supported-software/s/SNAP-ESA-python.md +++ b/docs/version-specific/supported-software/s/SNAP-ESA-python.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 92c7f0129..d35ac9ffc 100644 --- a/docs/version-specific/supported-software/s/SNAP-ESA.md +++ b/docs/version-specific/supported-software/s/SNAP-ESA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``8.0`` | ``-Java-1.8`` | ``system`` ``9.0.0`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index d78926737..70cdd6fbd 100644 --- a/docs/version-specific/supported-software/s/SNAP-HMM.md +++ b/docs/version-specific/supported-software/s/SNAP-HMM.md @@ -16,5 +16,6 @@ version | toolchain ``20190603`` | ``GCC/10.2.0`` ``20221022`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SNAP.md b/docs/version-specific/supported-software/s/SNAP.md index c66448be3..939e57564 100644 --- a/docs/version-specific/supported-software/s/SNAP.md +++ b/docs/version-specific/supported-software/s/SNAP.md @@ -15,5 +15,6 @@ version | toolchain ``2.0.1`` | ``GCC/11.3.0`` ``2.0.1`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 61b34d24f..09ea2f0c2 100644 --- a/docs/version-specific/supported-software/s/SNAPE-pooled.md +++ b/docs/version-specific/supported-software/s/SNAPE-pooled.md @@ -13,5 +13,6 @@ version | toolchain ``20150707`` | ``GCC/11.3.0`` ``r32`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SNPhylo.md b/docs/version-specific/supported-software/s/SNPhylo.md index 01613743e..1aca63909 100644 --- a/docs/version-specific/supported-software/s/SNPhylo.md +++ b/docs/version-specific/supported-software/s/SNPhylo.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``20160204`` | ``-Python-2.7.14-R-3.4.3`` | ``foss/2017b`` ``20160204`` | ``-Python-2.7.14-R-3.4.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SNPomatic.md b/docs/version-specific/supported-software/s/SNPomatic.md index 2c6ed6de5..2a7d72337 100644 --- a/docs/version-specific/supported-software/s/SNPomatic.md +++ b/docs/version-specific/supported-software/s/SNPomatic.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SOAPaligner.md b/docs/version-specific/supported-software/s/SOAPaligner.md index 8e59e6f43..5eb117321 100644 --- a/docs/version-specific/supported-software/s/SOAPaligner.md +++ b/docs/version-specific/supported-software/s/SOAPaligner.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.21`` | ``_Linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 73c7cf690..568a96b1e 100644 --- a/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md +++ b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.4`` | ``intel/2017a`` ``1.0.5`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SOAPdenovo2.md b/docs/version-specific/supported-software/s/SOAPdenovo2.md index 99caef76d..dbd401949 100644 --- a/docs/version-specific/supported-software/s/SOAPdenovo2.md +++ b/docs/version-specific/supported-software/s/SOAPdenovo2.md @@ -16,5 +16,6 @@ version | toolchain ``r241`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` ``r241`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SOAPfuse.md b/docs/version-specific/supported-software/s/SOAPfuse.md index acd666b7c..311bf65f8 100644 --- a/docs/version-specific/supported-software/s/SOAPfuse.md +++ b/docs/version-specific/supported-software/s/SOAPfuse.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.27`` | ``-Perl-5.24.0`` | ``foss/2016b`` ``1.27`` | ``-Perl-5.28.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SOCI.md b/docs/version-specific/supported-software/s/SOCI.md index bb647090f..a1c066f25 100644 --- a/docs/version-specific/supported-software/s/SOCI.md +++ b/docs/version-specific/supported-software/s/SOCI.md @@ -18,5 +18,6 @@ version | toolchain ``4.0.3`` | ``GCC/12.2.0`` ``4.0.3`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPAdes.md b/docs/version-specific/supported-software/s/SPAdes.md index e34b94e1d..ac2ad2c68 100644 --- a/docs/version-specific/supported-software/s/SPAdes.md +++ b/docs/version-specific/supported-software/s/SPAdes.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``3.9.0`` | | ``foss/2016a`` ``3.9.0`` | | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPEI.md b/docs/version-specific/supported-software/s/SPEI.md index 17866805c..eeacc8c5a 100644 --- a/docs/version-specific/supported-software/s/SPEI.md +++ b/docs/version-specific/supported-software/s/SPEI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.5`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPLASH.md b/docs/version-specific/supported-software/s/SPLASH.md index c3837c645..67ad6c107 100644 --- a/docs/version-specific/supported-software/s/SPLASH.md +++ b/docs/version-specific/supported-software/s/SPLASH.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPM.md b/docs/version-specific/supported-software/s/SPM.md index a3924a487..d9b57e11f 100644 --- a/docs/version-specific/supported-software/s/SPM.md +++ b/docs/version-specific/supported-software/s/SPM.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``12.5_r7771`` | ``-MATLAB-2021a`` | ``system`` ``12.5_r7771`` | ``-MATLAB-2021b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPOOLES.md b/docs/version-specific/supported-software/s/SPOOLES.md index 7eed7a356..14a061d81 100644 --- a/docs/version-specific/supported-software/s/SPOOLES.md +++ b/docs/version-specific/supported-software/s/SPOOLES.md @@ -14,5 +14,6 @@ version | toolchain ``2.2`` | ``gompi/2022b`` ``2.2`` | ``gompi/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPOTPY.md b/docs/version-specific/supported-software/s/SPOTPY.md index c6f4c5505..11a19fdf8 100644 --- a/docs/version-specific/supported-software/s/SPOTPY.md +++ b/docs/version-specific/supported-software/s/SPOTPY.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.5.14`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SPRNG.md b/docs/version-specific/supported-software/s/SPRNG.md index 309412e82..3957113b9 100644 --- a/docs/version-specific/supported-software/s/SPRNG.md +++ b/docs/version-specific/supported-software/s/SPRNG.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0b`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SQLAlchemy.md b/docs/version-specific/supported-software/s/SQLAlchemy.md index 7c0d8c53c..c3d270263 100644 --- a/docs/version-specific/supported-software/s/SQLAlchemy.md +++ b/docs/version-specific/supported-software/s/SQLAlchemy.md @@ -14,5 +14,6 @@ version | toolchain ``2.0.29`` | ``GCCcore/12.2.0`` ``2.0.29`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SQLite.md b/docs/version-specific/supported-software/s/SQLite.md index dcc4852b3..f0013e7ee 100644 --- a/docs/version-specific/supported-software/s/SQLite.md +++ b/docs/version-specific/supported-software/s/SQLite.md @@ -51,5 +51,6 @@ version | toolchain ``3.9.2`` | ``iomkl/2016.07`` ``3.9.2`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ad06e6d86..ed26e49cc 100644 --- a/docs/version-specific/supported-software/s/SRA-Toolkit.md +++ b/docs/version-specific/supported-software/s/SRA-Toolkit.md @@ -29,5 +29,6 @@ version | versionsuffix | toolchain ``3.0.5`` | | ``gompi/2021a`` ``3.0.5`` | | ``gompi/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SRPRISM.md b/docs/version-specific/supported-software/s/SRPRISM.md index 6c4a3acb8..538e2a57c 100644 --- a/docs/version-specific/supported-software/s/SRPRISM.md +++ b/docs/version-specific/supported-software/s/SRPRISM.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.1.1`` | ``-Java-11`` | ``GCCcore/8.2.0`` ``3.1.2`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SRST2.md b/docs/version-specific/supported-software/s/SRST2.md index e87b6d36d..61cfd81f8 100644 --- a/docs/version-specific/supported-software/s/SRST2.md +++ b/docs/version-specific/supported-software/s/SRST2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0-20210620`` | ``-Python-2.7.18`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SSAHA2.md b/docs/version-specific/supported-software/s/SSAHA2.md index 20aa398e3..8aa0cf268 100644 --- a/docs/version-specific/supported-software/s/SSAHA2.md +++ b/docs/version-specific/supported-software/s/SSAHA2.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.5.5`` | ``-i686`` | ``system`` ``2.5.5`` | ``-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SSN.md b/docs/version-specific/supported-software/s/SSN.md index 7cf9c77d1..2229940cc 100644 --- a/docs/version-specific/supported-software/s/SSN.md +++ b/docs/version-specific/supported-software/s/SSN.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.14`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b5e95a125..88f469bb3 100644 --- a/docs/version-specific/supported-software/s/SSPACE_Basic.md +++ b/docs/version-specific/supported-software/s/SSPACE_Basic.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.1.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``2.1.1`` | ``-Perl-5.26.0`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SSW.md b/docs/version-specific/supported-software/s/SSW.md index fe818dcce..fc4f0001e 100644 --- a/docs/version-specific/supported-software/s/SSW.md +++ b/docs/version-specific/supported-software/s/SSW.md @@ -17,5 +17,6 @@ version | toolchain ``1.1`` | ``GCCcore/9.3.0`` ``1.2.4`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STACEY.md b/docs/version-specific/supported-software/s/STACEY.md index a2690aef0..32e88389a 100644 --- a/docs/version-specific/supported-software/s/STACEY.md +++ b/docs/version-specific/supported-software/s/STACEY.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.5`` | ``GCC/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STAMP.md b/docs/version-specific/supported-software/s/STAMP.md index 125dfae07..7a071aef1 100644 --- a/docs/version-specific/supported-software/s/STAMP.md +++ b/docs/version-specific/supported-software/s/STAMP.md @@ -14,5 +14,6 @@ version | toolchain ``1.3`` | ``intel/2016a`` ``1.3`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e827de370..2fc5b9fd3 100644 --- a/docs/version-specific/supported-software/s/STAR-CCM+.md +++ b/docs/version-specific/supported-software/s/STAR-CCM+.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``2310`` | ``-r8`` | ``system`` ``2310`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4233a01db..568e752aa 100644 --- a/docs/version-specific/supported-software/s/STAR-Fusion.md +++ b/docs/version-specific/supported-software/s/STAR-Fusion.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STAR.md b/docs/version-specific/supported-software/s/STAR.md index d5f189113..d95cbf49e 100644 --- a/docs/version-specific/supported-software/s/STAR.md +++ b/docs/version-specific/supported-software/s/STAR.md @@ -49,5 +49,6 @@ version | toolchain ``2.7.9a`` | ``GCC/10.3.0`` ``2.7.9a`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STEAK.md b/docs/version-specific/supported-software/s/STEAK.md index 2031886c2..695c5dbc7 100644 --- a/docs/version-specific/supported-software/s/STEAK.md +++ b/docs/version-specific/supported-software/s/STEAK.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2019.09.12`` | ``-Python-2.7.16`` | ``foss/2019b`` ``2019.09.12`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STIR.md b/docs/version-specific/supported-software/s/STIR.md index 30cdcff94..b0e13ec85 100644 --- a/docs/version-specific/supported-software/s/STIR.md +++ b/docs/version-specific/supported-software/s/STIR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STREAM.md b/docs/version-specific/supported-software/s/STREAM.md index 3d1019e8f..9eb6997c2 100644 --- a/docs/version-specific/supported-software/s/STREAM.md +++ b/docs/version-specific/supported-software/s/STREAM.md @@ -19,5 +19,6 @@ version | toolchain ``5.10`` | ``intel/2018b`` ``5.10`` | ``intel-compilers/2022.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STRUMPACK.md b/docs/version-specific/supported-software/s/STRUMPACK.md index 958db159c..1d36b1754 100644 --- a/docs/version-specific/supported-software/s/STRUMPACK.md +++ b/docs/version-specific/supported-software/s/STRUMPACK.md @@ -13,5 +13,6 @@ version | toolchain ``6.1.0`` | ``foss/2020b`` ``6.1.0`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/STRique.md b/docs/version-specific/supported-software/s/STRique.md index 2ef773f9c..e019a19a0 100644 --- a/docs/version-specific/supported-software/s/STRique.md +++ b/docs/version-specific/supported-software/s/STRique.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SUMACLUST.md b/docs/version-specific/supported-software/s/SUMACLUST.md index e81b4021e..3e6d926b5 100644 --- a/docs/version-specific/supported-software/s/SUMACLUST.md +++ b/docs/version-specific/supported-software/s/SUMACLUST.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.20`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SUMATRA.md b/docs/version-specific/supported-software/s/SUMATRA.md index e25aa4107..63a217e6c 100644 --- a/docs/version-specific/supported-software/s/SUMATRA.md +++ b/docs/version-specific/supported-software/s/SUMATRA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.20`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SUMO.md b/docs/version-specific/supported-software/s/SUMO.md index 20c345828..8132a3f80 100644 --- a/docs/version-specific/supported-software/s/SUMO.md +++ b/docs/version-specific/supported-software/s/SUMO.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SUNDIALS.md b/docs/version-specific/supported-software/s/SUNDIALS.md index 9aa464643..77742613c 100644 --- a/docs/version-specific/supported-software/s/SUNDIALS.md +++ b/docs/version-specific/supported-software/s/SUNDIALS.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``6.6.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` ``6.6.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SUPPA.md b/docs/version-specific/supported-software/s/SUPPA.md index e6c207dcd..48461f6cf 100644 --- a/docs/version-specific/supported-software/s/SUPPA.md +++ b/docs/version-specific/supported-software/s/SUPPA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.3-20231005`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SURVIVOR.md b/docs/version-specific/supported-software/s/SURVIVOR.md index a1a397944..578f54eaf 100644 --- a/docs/version-specific/supported-software/s/SURVIVOR.md +++ b/docs/version-specific/supported-software/s/SURVIVOR.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.7-19-ged1ca51`` | ``GCC/11.2.0`` ``1.0.7-19-ged1ca51`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SVDetect.md b/docs/version-specific/supported-software/s/SVDetect.md index 432a18d6c..debd002d1 100644 --- a/docs/version-specific/supported-software/s/SVDetect.md +++ b/docs/version-specific/supported-software/s/SVDetect.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SVDquest.md b/docs/version-specific/supported-software/s/SVDquest.md index b15d3dde7..49cef095c 100644 --- a/docs/version-specific/supported-software/s/SVDquest.md +++ b/docs/version-specific/supported-software/s/SVDquest.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20190627`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SVG.md b/docs/version-specific/supported-software/s/SVG.md index c676368f2..c5b633ede 100644 --- a/docs/version-specific/supported-software/s/SVG.md +++ b/docs/version-specific/supported-software/s/SVG.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.87`` | | ``GCC/11.3.0`` ``2.87`` | | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SVIM.md b/docs/version-specific/supported-software/s/SVIM.md index d5fe4e057..158e9309e 100644 --- a/docs/version-specific/supported-software/s/SVIM.md +++ b/docs/version-specific/supported-software/s/SVIM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SVclone.md b/docs/version-specific/supported-software/s/SVclone.md index 3f87b3475..12a4dbdfb 100644 --- a/docs/version-specific/supported-software/s/SVclone.md +++ b/docs/version-specific/supported-software/s/SVclone.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SWASH.md b/docs/version-specific/supported-software/s/SWASH.md index a822baa25..461735ed3 100644 --- a/docs/version-specific/supported-software/s/SWASH.md +++ b/docs/version-specific/supported-software/s/SWASH.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.14`` | ``-mpi`` | ``intel/2017a`` ``4.01`` | ``-mpi`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SWAT+.md b/docs/version-specific/supported-software/s/SWAT+.md index e6d78c6db..2847a5355 100644 --- a/docs/version-specific/supported-software/s/SWAT+.md +++ b/docs/version-specific/supported-software/s/SWAT+.md @@ -13,5 +13,6 @@ version | toolchain ``60.4.1`` | ``GCC/9.3.0`` ``60.5.1`` | ``iccifort/2020.4.304`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SWIG.md b/docs/version-specific/supported-software/s/SWIG.md index fb8e3eb42..d1fd815a7 100644 --- a/docs/version-specific/supported-software/s/SWIG.md +++ b/docs/version-specific/supported-software/s/SWIG.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``4.1.1`` | | ``GCCcore/13.2.0`` ``4.2.1`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SWIPE.md b/docs/version-specific/supported-software/s/SWIPE.md index 8173432a6..f68d17d01 100644 --- a/docs/version-specific/supported-software/s/SWIPE.md +++ b/docs/version-specific/supported-software/s/SWIPE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SYMMETRICA.md b/docs/version-specific/supported-software/s/SYMMETRICA.md index f3225f730..cbcb5a433 100644 --- a/docs/version-specific/supported-software/s/SYMMETRICA.md +++ b/docs/version-specific/supported-software/s/SYMMETRICA.md @@ -13,5 +13,6 @@ version | toolchain ``2.0`` | ``GCCcore/11.3.0`` ``2.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SYMPHONY.md b/docs/version-specific/supported-software/s/SYMPHONY.md index a8ddcae8f..b2adff061 100644 --- a/docs/version-specific/supported-software/s/SYMPHONY.md +++ b/docs/version-specific/supported-software/s/SYMPHONY.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.6.16`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Sabre.md b/docs/version-specific/supported-software/s/Sabre.md index c9cd95376..c971052be 100644 --- a/docs/version-specific/supported-software/s/Sabre.md +++ b/docs/version-specific/supported-software/s/Sabre.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2013-09-28`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Safetensors.md b/docs/version-specific/supported-software/s/Safetensors.md index 5c54e5149..3307d7315 100644 --- a/docs/version-specific/supported-software/s/Safetensors.md +++ b/docs/version-specific/supported-software/s/Safetensors.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Sailfish.md b/docs/version-specific/supported-software/s/Sailfish.md index d215fe678..798b3aea4 100644 --- a/docs/version-specific/supported-software/s/Sailfish.md +++ b/docs/version-specific/supported-software/s/Sailfish.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.10.1`` | ``-Python-2.7.12`` | ``foss/2016b`` ``0.10.1`` | | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Salmon.md b/docs/version-specific/supported-software/s/Salmon.md index 870859aed..ef0a7d298 100644 --- a/docs/version-specific/supported-software/s/Salmon.md +++ b/docs/version-specific/supported-software/s/Salmon.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``gompi/2020b`` ``1.9.0`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Sambamba.md b/docs/version-specific/supported-software/s/Sambamba.md index 2a88088a1..939113efd 100644 --- a/docs/version-specific/supported-software/s/Sambamba.md +++ b/docs/version-specific/supported-software/s/Sambamba.md @@ -16,5 +16,6 @@ version | toolchain ``0.8.2`` | ``GCC/10.3.0`` ``1.0.1`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Samcef.md b/docs/version-specific/supported-software/s/Samcef.md index e6ecdfcce..a8c5712fd 100644 --- a/docs/version-specific/supported-software/s/Samcef.md +++ b/docs/version-specific/supported-software/s/Samcef.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``17.0-03`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Satsuma2.md b/docs/version-specific/supported-software/s/Satsuma2.md index 46e195460..56d2573b0 100644 --- a/docs/version-specific/supported-software/s/Satsuma2.md +++ b/docs/version-specific/supported-software/s/Satsuma2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220304`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8217b9725..1216d411f 100644 --- a/docs/version-specific/supported-software/s/Saxon-HE.md +++ b/docs/version-specific/supported-software/s/Saxon-HE.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``9.7.0.4`` | ``-Java-1.7.0_79`` | ``system`` ``9.9.1.7`` | ``-Java-13`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/ScaFaCoS.md b/docs/version-specific/supported-software/s/ScaFaCoS.md index 0a6606005..7bb3c97dd 100644 --- a/docs/version-specific/supported-software/s/ScaFaCoS.md +++ b/docs/version-specific/supported-software/s/ScaFaCoS.md @@ -19,5 +19,6 @@ version | toolchain ``1.0.4`` | ``foss/2022b`` ``1.0.4`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/ScaLAPACK.md b/docs/version-specific/supported-software/s/ScaLAPACK.md index 5b79cc2e3..4205f5d35 100644 --- a/docs/version-specific/supported-software/s/ScaLAPACK.md +++ b/docs/version-specific/supported-software/s/ScaLAPACK.md @@ -58,5 +58,6 @@ version | versionsuffix | toolchain ``2.2.0`` | ``-fb`` | ``gompi/2024.05`` ``2.2.0`` | ``-fb`` | ``nvompi/2022.07`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Scalasca.md b/docs/version-specific/supported-software/s/Scalasca.md index 64edac17c..3b28ad136 100644 --- a/docs/version-specific/supported-software/s/Scalasca.md +++ b/docs/version-specific/supported-software/s/Scalasca.md @@ -17,5 +17,6 @@ version | toolchain ``2.6`` | ``gompic/2020b`` ``2.6.1`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Scalene.md b/docs/version-specific/supported-software/s/Scalene.md index c9b303096..c979666ec 100644 --- a/docs/version-specific/supported-software/s/Scalene.md +++ b/docs/version-specific/supported-software/s/Scalene.md @@ -16,5 +16,6 @@ version | toolchain ``1.5.26`` | ``GCCcore/12.3.0`` ``1.5.35`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Schrodinger.md b/docs/version-specific/supported-software/s/Schrodinger.md index 08b736a84..fc00540fe 100644 --- a/docs/version-specific/supported-software/s/Schrodinger.md +++ b/docs/version-specific/supported-software/s/Schrodinger.md @@ -16,5 +16,6 @@ version | toolchain ``2022-2`` | ``system`` ``2022-3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c8ef01f81..6eaa74cea 100644 --- a/docs/version-specific/supported-software/s/SciPy-bundle.md +++ b/docs/version-specific/supported-software/s/SciPy-bundle.md @@ -50,5 +50,6 @@ version | versionsuffix | toolchain ``2023.11`` | | ``gfbf/2023.09`` ``2023.11`` | | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 964dab43f..fd5e366c5 100644 --- a/docs/version-specific/supported-software/s/SciTools-Iris.md +++ b/docs/version-specific/supported-software/s/SciTools-Iris.md @@ -13,5 +13,6 @@ version | toolchain ``3.2.1`` | ``foss/2022a`` ``3.9.0`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/ScientificPython.md b/docs/version-specific/supported-software/s/ScientificPython.md index 58327177d..44c4860cf 100644 --- a/docs/version-specific/supported-software/s/ScientificPython.md +++ b/docs/version-specific/supported-software/s/ScientificPython.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.9.4`` | ``-Python-2.7.11`` | ``foss/2016a`` ``2.9.4`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Scoary.md b/docs/version-specific/supported-software/s/Scoary.md index 4e222cca2..9021cf065 100644 --- a/docs/version-specific/supported-software/s/Scoary.md +++ b/docs/version-specific/supported-software/s/Scoary.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.6.16`` | | ``foss/2021a`` ``1.6.16`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 08948074e..c8293f953 100644 --- a/docs/version-specific/supported-software/s/Score-P.md +++ b/docs/version-specific/supported-software/s/Score-P.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``8.4`` | ``-CUDA-12.4.0`` | ``gompi/2023b`` ``8.4`` | | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Scrappie.md b/docs/version-specific/supported-software/s/Scrappie.md index 8ff25e90f..cf8b7163c 100644 --- a/docs/version-specific/supported-software/s/Scrappie.md +++ b/docs/version-specific/supported-software/s/Scrappie.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.2`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Scythe.md b/docs/version-specific/supported-software/s/Scythe.md index 086f82d09..bcdf7c9ab 100644 --- a/docs/version-specific/supported-software/s/Scythe.md +++ b/docs/version-specific/supported-software/s/Scythe.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.994`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeaView.md b/docs/version-specific/supported-software/s/SeaView.md index 3ca92022f..cfc4f6933 100644 --- a/docs/version-specific/supported-software/s/SeaView.md +++ b/docs/version-specific/supported-software/s/SeaView.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0.5`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Seaborn.md b/docs/version-specific/supported-software/s/Seaborn.md index 914aaa901..d9f9356db 100644 --- a/docs/version-specific/supported-software/s/Seaborn.md +++ b/docs/version-specific/supported-software/s/Seaborn.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-2.7.16`` | ``foss/2019b`` ``0.9.1`` | ``-Python-2.7.18`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SearchGUI.md b/docs/version-specific/supported-software/s/SearchGUI.md index a5518deb6..febc46ec2 100644 --- a/docs/version-specific/supported-software/s/SearchGUI.md +++ b/docs/version-specific/supported-software/s/SearchGUI.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.3.3`` | ``-Java-1.8.0_152`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Seeder.md b/docs/version-specific/supported-software/s/Seeder.md index bc4216b2e..346b5c802 100644 --- a/docs/version-specific/supported-software/s/Seeder.md +++ b/docs/version-specific/supported-software/s/Seeder.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.01`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeisSol.md b/docs/version-specific/supported-software/s/SeisSol.md index 23b2afd99..b019cd5ea 100644 --- a/docs/version-specific/supported-software/s/SeisSol.md +++ b/docs/version-specific/supported-software/s/SeisSol.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``201703`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SelEstim.md b/docs/version-specific/supported-software/s/SelEstim.md index 8e6fdd9cf..4259f3d23 100644 --- a/docs/version-specific/supported-software/s/SelEstim.md +++ b/docs/version-specific/supported-software/s/SelEstim.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-Linux-64bits`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SemiBin.md b/docs/version-specific/supported-software/s/SemiBin.md index ff664aa60..193794efc 100644 --- a/docs/version-specific/supported-software/s/SemiBin.md +++ b/docs/version-specific/supported-software/s/SemiBin.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.0.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 314fd4d4d..b09050187 100644 --- a/docs/version-specific/supported-software/s/Sentence-Transformers.md +++ b/docs/version-specific/supported-software/s/Sentence-Transformers.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.2`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SentencePiece.md b/docs/version-specific/supported-software/s/SentencePiece.md index 3d8bb17b3..f9201a4f2 100644 --- a/docs/version-specific/supported-software/s/SentencePiece.md +++ b/docs/version-specific/supported-software/s/SentencePiece.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.1.99`` | | ``GCC/12.2.0`` ``0.2.0`` | | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a443e91e3..2b22ff1c1 100644 --- a/docs/version-specific/supported-software/s/Seq-Gen.md +++ b/docs/version-specific/supported-software/s/Seq-Gen.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.4`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeqAn.md b/docs/version-specific/supported-software/s/SeqAn.md index ad6e089de..bc9dc1c60 100644 --- a/docs/version-specific/supported-software/s/SeqAn.md +++ b/docs/version-specific/supported-software/s/SeqAn.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2.4.0`` | | ``foss/2018b`` ``2.4.0`` | | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeqAn3.md b/docs/version-specific/supported-software/s/SeqAn3.md index a5b3908d7..99bc1a98b 100644 --- a/docs/version-specific/supported-software/s/SeqAn3.md +++ b/docs/version-specific/supported-software/s/SeqAn3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeqKit.md b/docs/version-specific/supported-software/s/SeqKit.md index 4bbbdebb5..366e35ac5 100644 --- a/docs/version-specific/supported-software/s/SeqKit.md +++ b/docs/version-specific/supported-software/s/SeqKit.md @@ -16,5 +16,6 @@ version | toolchain ``2.2.0`` | ``system`` ``2.3.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeqLib.md b/docs/version-specific/supported-software/s/SeqLib.md index 2590b44f4..315a13cd3 100644 --- a/docs/version-specific/supported-software/s/SeqLib.md +++ b/docs/version-specific/supported-software/s/SeqLib.md @@ -16,5 +16,6 @@ version | toolchain ``1.2.0`` | ``GCC/12.3.0`` ``1.2.0`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeqPrep.md b/docs/version-specific/supported-software/s/SeqPrep.md index e0e2da466..7ccd47cf7 100644 --- a/docs/version-specific/supported-software/s/SeqPrep.md +++ b/docs/version-specific/supported-software/s/SeqPrep.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.2`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Seqmagick.md b/docs/version-specific/supported-software/s/Seqmagick.md index 919a926ca..a106dfcab 100644 --- a/docs/version-specific/supported-software/s/Seqmagick.md +++ b/docs/version-specific/supported-software/s/Seqmagick.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.6.2`` | ``-Python-2.7.15`` | ``foss/2018b`` ``0.8.6`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Serf.md b/docs/version-specific/supported-software/s/Serf.md index 6a7ed0746..b299df533 100644 --- a/docs/version-specific/supported-software/s/Serf.md +++ b/docs/version-specific/supported-software/s/Serf.md @@ -21,5 +21,6 @@ version | toolchain ``1.3.9`` | ``intel/2017b`` ``1.3.9`` | ``iomkl/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Seurat.md b/docs/version-specific/supported-software/s/Seurat.md index b4aacddeb..ddf61d3e7 100644 --- a/docs/version-specific/supported-software/s/Seurat.md +++ b/docs/version-specific/supported-software/s/Seurat.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``5.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` ``5.1.0`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeuratData.md b/docs/version-specific/supported-software/s/SeuratData.md index 38cd7ec00..d0f5a1b48 100644 --- a/docs/version-specific/supported-software/s/SeuratData.md +++ b/docs/version-specific/supported-software/s/SeuratData.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20210514`` | ``-R-4.0.3`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeuratDisk.md b/docs/version-specific/supported-software/s/SeuratDisk.md index 58ef9d37b..4ef94fda1 100644 --- a/docs/version-specific/supported-software/s/SeuratDisk.md +++ b/docs/version-specific/supported-software/s/SeuratDisk.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.0.0.9020`` | ``-R-4.2.1`` | ``foss/2022a`` ``20231104`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SeuratWrappers.md b/docs/version-specific/supported-software/s/SeuratWrappers.md index c27a637e5..04f7cd6dd 100644 --- a/docs/version-specific/supported-software/s/SeuratWrappers.md +++ b/docs/version-specific/supported-software/s/SeuratWrappers.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20210528`` | ``-R-4.0.3`` | ``foss/2020b`` ``20221022`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Shannon.md b/docs/version-specific/supported-software/s/Shannon.md index c2471e02a..7bf249d53 100644 --- a/docs/version-specific/supported-software/s/Shannon.md +++ b/docs/version-specific/supported-software/s/Shannon.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170511`` | ``-Python-2.7.13`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Shapely.md b/docs/version-specific/supported-software/s/Shapely.md index d3a2719b1..aa464274c 100644 --- a/docs/version-specific/supported-software/s/Shapely.md +++ b/docs/version-specific/supported-software/s/Shapely.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``2.0.1`` | | ``foss/2022b`` ``2.0.1`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Shasta.md b/docs/version-specific/supported-software/s/Shasta.md index ed44b25ab..ae3fe3581 100644 --- a/docs/version-specific/supported-software/s/Shasta.md +++ b/docs/version-specific/supported-software/s/Shasta.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/ShengBTE.md b/docs/version-specific/supported-software/s/ShengBTE.md index f355db6d4..7451b134f 100644 --- a/docs/version-specific/supported-software/s/ShengBTE.md +++ b/docs/version-specific/supported-software/s/ShengBTE.md @@ -13,5 +13,6 @@ version | toolchain ``1.1.1`` | ``foss/2021a`` ``1.5.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7805bac63..fbfe2f2c5 100644 --- a/docs/version-specific/supported-software/s/Short-Pair.md +++ b/docs/version-specific/supported-software/s/Short-Pair.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``20170125`` | ``-Python-2.7.15`` | ``foss/2018b`` ``20170125`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SiNVICT.md b/docs/version-specific/supported-software/s/SiNVICT.md index 74e1738ec..40b87b59d 100644 --- a/docs/version-specific/supported-software/s/SiNVICT.md +++ b/docs/version-specific/supported-software/s/SiNVICT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0-20180817`` | ``GCC/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Sibelia.md b/docs/version-specific/supported-software/s/Sibelia.md index df0ac42a2..e6bda0f6c 100644 --- a/docs/version-specific/supported-software/s/Sibelia.md +++ b/docs/version-specific/supported-software/s/Sibelia.md @@ -14,5 +14,6 @@ version | toolchain ``3.0.7`` | ``foss/2018b`` ``3.0.7`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Siesta.md b/docs/version-specific/supported-software/s/Siesta.md index 11bf8df94..1bc9ba843 100644 --- a/docs/version-specific/supported-software/s/Siesta.md +++ b/docs/version-specific/supported-software/s/Siesta.md @@ -26,5 +26,6 @@ version | versionsuffix | toolchain ``4.1.5`` | | ``intel/2020a`` ``4.1.5`` | | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SignalP.md b/docs/version-specific/supported-software/s/SignalP.md index 42cd8fea8..5c53fae83 100644 --- a/docs/version-specific/supported-software/s/SignalP.md +++ b/docs/version-specific/supported-software/s/SignalP.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``6.0g`` | ``-fast`` | ``foss/2022a`` ``6.0h`` | ``-fast`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SimNIBS.md b/docs/version-specific/supported-software/s/SimNIBS.md index c740b76fe..f567e9b3a 100644 --- a/docs/version-specific/supported-software/s/SimNIBS.md +++ b/docs/version-specific/supported-software/s/SimNIBS.md @@ -13,5 +13,6 @@ version | toolchain ``3.2.4`` | ``foss/2020b`` ``4.0.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SimPEG.md b/docs/version-specific/supported-software/s/SimPEG.md index 638eaace7..aa86749ee 100644 --- a/docs/version-specific/supported-software/s/SimPEG.md +++ b/docs/version-specific/supported-software/s/SimPEG.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.18.1`` | | ``intel/2021b`` ``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SimVascular.md b/docs/version-specific/supported-software/s/SimVascular.md index 06cb69ee1..56407799d 100644 --- a/docs/version-specific/supported-software/s/SimVascular.md +++ b/docs/version-specific/supported-software/s/SimVascular.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.16.0406`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8ef2f8679..2c45dde54 100644 --- a/docs/version-specific/supported-software/s/Simple-DFTD3.md +++ b/docs/version-specific/supported-software/s/Simple-DFTD3.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SimpleElastix.md b/docs/version-specific/supported-software/s/SimpleElastix.md index 31760e04f..186298b5e 100644 --- a/docs/version-specific/supported-software/s/SimpleElastix.md +++ b/docs/version-specific/supported-software/s/SimpleElastix.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.10.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``1.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SimpleITK.md b/docs/version-specific/supported-software/s/SimpleITK.md index b8341f053..fc6a896c3 100644 --- a/docs/version-specific/supported-software/s/SimpleITK.md +++ b/docs/version-specific/supported-software/s/SimpleITK.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``2.1.1.2`` | | ``foss/2022a`` ``2.3.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Simstrat.md b/docs/version-specific/supported-software/s/Simstrat.md index 2374c8a76..efc247774 100644 --- a/docs/version-specific/supported-software/s/Simstrat.md +++ b/docs/version-specific/supported-software/s/Simstrat.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.01`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SingleM.md b/docs/version-specific/supported-software/s/SingleM.md index 8b0e8f619..4241eac23 100644 --- a/docs/version-specific/supported-software/s/SingleM.md +++ b/docs/version-specific/supported-software/s/SingleM.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.1`` | ``-Python-2.7.15`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Singular.md b/docs/version-specific/supported-software/s/Singular.md index 489ef03f7..fed664605 100644 --- a/docs/version-specific/supported-software/s/Singular.md +++ b/docs/version-specific/supported-software/s/Singular.md @@ -15,5 +15,6 @@ version | toolchain ``4.3.2p10`` | ``gfbf/2022a`` ``4.4.0`` | ``gfbf/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SlamDunk.md b/docs/version-specific/supported-software/s/SlamDunk.md index 596559539..64148e7de 100644 --- a/docs/version-specific/supported-software/s/SlamDunk.md +++ b/docs/version-specific/supported-software/s/SlamDunk.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.3`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Smoldyn.md b/docs/version-specific/supported-software/s/Smoldyn.md index 292303a59..50da99e33 100644 --- a/docs/version-specific/supported-software/s/Smoldyn.md +++ b/docs/version-specific/supported-software/s/Smoldyn.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.48`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Sniffles.md b/docs/version-specific/supported-software/s/Sniffles.md index 83a2a03f8..95edd1c54 100644 --- a/docs/version-specific/supported-software/s/Sniffles.md +++ b/docs/version-specific/supported-software/s/Sniffles.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.7`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SoPlex.md b/docs/version-specific/supported-software/s/SoPlex.md index 78a8117cd..8147d1ebb 100644 --- a/docs/version-specific/supported-software/s/SoPlex.md +++ b/docs/version-specific/supported-software/s/SoPlex.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.1`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SoQt.md b/docs/version-specific/supported-software/s/SoQt.md index ffdb2f829..7b1bae8ea 100644 --- a/docs/version-specific/supported-software/s/SoQt.md +++ b/docs/version-specific/supported-software/s/SoQt.md @@ -13,5 +13,6 @@ version | toolchain ``1.6.0`` | ``GCC/10.3.0`` ``1.6.0`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SoX.md b/docs/version-specific/supported-software/s/SoX.md index 70f796745..36c88164b 100644 --- a/docs/version-specific/supported-software/s/SoX.md +++ b/docs/version-specific/supported-software/s/SoX.md @@ -14,5 +14,6 @@ version | toolchain ``14.4.2`` | ``GCCcore/11.3.0`` ``14.4.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SoXt.md b/docs/version-specific/supported-software/s/SoXt.md index 37e757f09..2fcd272ce 100644 --- a/docs/version-specific/supported-software/s/SoXt.md +++ b/docs/version-specific/supported-software/s/SoXt.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.0`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SolexaQA++.md b/docs/version-specific/supported-software/s/SolexaQA++.md index 2f787db99..7ae868735 100644 --- a/docs/version-specific/supported-software/s/SolexaQA++.md +++ b/docs/version-specific/supported-software/s/SolexaQA++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.1.5`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SortMeRNA.md b/docs/version-specific/supported-software/s/SortMeRNA.md index 783d4dfad..c4b6dc2a0 100644 --- a/docs/version-specific/supported-software/s/SortMeRNA.md +++ b/docs/version-specific/supported-software/s/SortMeRNA.md @@ -13,5 +13,6 @@ version | toolchain ``2.1`` | ``GCC/9.3.0`` ``2.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SoupX.md b/docs/version-specific/supported-software/s/SoupX.md index e85e54513..d91943876 100644 --- a/docs/version-specific/supported-software/s/SoupX.md +++ b/docs/version-specific/supported-software/s/SoupX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6.2`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SpaceRanger.md b/docs/version-specific/supported-software/s/SpaceRanger.md index 994a1b480..68b2bb80f 100644 --- a/docs/version-specific/supported-software/s/SpaceRanger.md +++ b/docs/version-specific/supported-software/s/SpaceRanger.md @@ -19,5 +19,6 @@ version | toolchain ``2.1.0`` | ``GCC/11.3.0`` ``2.1.0`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Spack.md b/docs/version-specific/supported-software/s/Spack.md index 3be7a4797..5994b0c2b 100644 --- a/docs/version-specific/supported-software/s/Spack.md +++ b/docs/version-specific/supported-software/s/Spack.md @@ -18,5 +18,6 @@ version | toolchain ``0.17.2`` | ``system`` ``0.21.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Spark.md b/docs/version-specific/supported-software/s/Spark.md index 7edc463ed..34687132a 100644 --- a/docs/version-specific/supported-software/s/Spark.md +++ b/docs/version-specific/supported-software/s/Spark.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``3.5.0`` | | ``foss/2023a`` ``3.5.1`` | ``-Java-17`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SpatialDE.md b/docs/version-specific/supported-software/s/SpatialDE.md index 259ae84be..e2907f283 100644 --- a/docs/version-specific/supported-software/s/SpatialDE.md +++ b/docs/version-specific/supported-software/s/SpatialDE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SpectrA.md b/docs/version-specific/supported-software/s/SpectrA.md index 11f743e11..acba1e541 100644 --- a/docs/version-specific/supported-software/s/SpectrA.md +++ b/docs/version-specific/supported-software/s/SpectrA.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.1`` | ``GCCcore/11.3.0`` ``1.0.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4901ba278..d701a6c7c 100644 --- a/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md +++ b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Sphinx.md b/docs/version-specific/supported-software/s/Sphinx.md index 1f7271b2d..f5a81d5e7 100644 --- a/docs/version-specific/supported-software/s/Sphinx.md +++ b/docs/version-specific/supported-software/s/Sphinx.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``1.8.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.8.3`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SpiceyPy.md b/docs/version-specific/supported-software/s/SpiceyPy.md index 47b843948..98f0a3b83 100644 --- a/docs/version-specific/supported-software/s/SpiceyPy.md +++ b/docs/version-specific/supported-software/s/SpiceyPy.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2.1.0`` | ``-Python-3.6.3`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SpiecEasi.md b/docs/version-specific/supported-software/s/SpiecEasi.md index 7ffacb317..e3dd75021 100644 --- a/docs/version-specific/supported-software/s/SpiecEasi.md +++ b/docs/version-specific/supported-software/s/SpiecEasi.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-R-4.2.1`` | ``foss/2022a`` ``20160830`` | ``-R-3.3.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SplAdder.md b/docs/version-specific/supported-software/s/SplAdder.md index ad40ae38d..5c47e67ec 100644 --- a/docs/version-specific/supported-software/s/SplAdder.md +++ b/docs/version-specific/supported-software/s/SplAdder.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.4.2`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SpliceMap.md b/docs/version-specific/supported-software/s/SpliceMap.md index e06a7e12b..1681bcfcd 100644 --- a/docs/version-specific/supported-software/s/SpliceMap.md +++ b/docs/version-specific/supported-software/s/SpliceMap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3.5.2`` | ``GCC/7.3.0-2.30`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Spyder.md b/docs/version-specific/supported-software/s/Spyder.md index 8319f3df2..f0a74977f 100644 --- a/docs/version-specific/supported-software/s/Spyder.md +++ b/docs/version-specific/supported-software/s/Spyder.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``4.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` ``4.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SqueezeMeta.md b/docs/version-specific/supported-software/s/SqueezeMeta.md index 9e4e8762f..be8d1c547 100644 --- a/docs/version-specific/supported-software/s/SqueezeMeta.md +++ b/docs/version-specific/supported-software/s/SqueezeMeta.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.5.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Squidpy.md b/docs/version-specific/supported-software/s/Squidpy.md index 7c6b55626..1846a31e7 100644 --- a/docs/version-specific/supported-software/s/Squidpy.md +++ b/docs/version-specific/supported-software/s/Squidpy.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.2`` | ``foss/2021b`` ``1.4.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/StaMPS.md b/docs/version-specific/supported-software/s/StaMPS.md index 317ee78ec..c5283e2ef 100644 --- a/docs/version-specific/supported-software/s/StaMPS.md +++ b/docs/version-specific/supported-software/s/StaMPS.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.3b1`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Stack.md b/docs/version-specific/supported-software/s/Stack.md index 9c75b0c28..2c7205f68 100644 --- a/docs/version-specific/supported-software/s/Stack.md +++ b/docs/version-specific/supported-software/s/Stack.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``2.13.1`` | ``-x86_64`` | ``system`` ``2.3.3`` | ``-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Stacks.md b/docs/version-specific/supported-software/s/Stacks.md index 1c8d38608..b41ac2e4c 100644 --- a/docs/version-specific/supported-software/s/Stacks.md +++ b/docs/version-specific/supported-software/s/Stacks.md @@ -36,5 +36,6 @@ version | toolchain ``2.54`` | ``foss/2020a`` ``2.62`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Stampy.md b/docs/version-specific/supported-software/s/Stampy.md index 0e0519810..fcff80c8c 100644 --- a/docs/version-specific/supported-software/s/Stampy.md +++ b/docs/version-specific/supported-software/s/Stampy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.31`` | ``-Python-2.7.12`` | ``intel/2016b`` ``1.0.32`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Stata.md b/docs/version-specific/supported-software/s/Stata.md index 081d9018b..f5772c959 100644 --- a/docs/version-specific/supported-software/s/Stata.md +++ b/docs/version-specific/supported-software/s/Stata.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``16`` | ``-legacy`` | ``system`` ``17`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0ccb4978c..1690384a4 100644 --- a/docs/version-specific/supported-software/s/Statistics-R.md +++ b/docs/version-specific/supported-software/s/Statistics-R.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.34`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Strainberry.md b/docs/version-specific/supported-software/s/Strainberry.md index 14f21b186..822b82183 100644 --- a/docs/version-specific/supported-software/s/Strainberry.md +++ b/docs/version-specific/supported-software/s/Strainberry.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/StringTie.md b/docs/version-specific/supported-software/s/StringTie.md index bc580beb8..a01b0da9b 100644 --- a/docs/version-specific/supported-software/s/StringTie.md +++ b/docs/version-specific/supported-software/s/StringTie.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``2.2.1`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` ``2.2.1`` | | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Structure.md b/docs/version-specific/supported-software/s/Structure.md index 369d7c433..2876064fa 100644 --- a/docs/version-specific/supported-software/s/Structure.md +++ b/docs/version-specific/supported-software/s/Structure.md @@ -16,5 +16,6 @@ version | toolchain ``2.3.4`` | ``iccifort/2019.3.199-GCC-8.3.0-2.32`` ``2.3.4`` | ``iccifort/2019.5.281`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 500c08fb3..d24912269 100644 --- a/docs/version-specific/supported-software/s/Structure_threader.md +++ b/docs/version-specific/supported-software/s/Structure_threader.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.10`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2432445a2..c01609b11 100644 --- a/docs/version-specific/supported-software/s/SuAVE-biomat.md +++ b/docs/version-specific/supported-software/s/SuAVE-biomat.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0-20230815`` | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Subread.md b/docs/version-specific/supported-software/s/Subread.md index 67c708cb3..56fb418b0 100644 --- a/docs/version-specific/supported-software/s/Subread.md +++ b/docs/version-specific/supported-software/s/Subread.md @@ -22,5 +22,6 @@ version | toolchain ``2.0.3`` | ``GCC/9.3.0`` ``2.0.4`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Subversion.md b/docs/version-specific/supported-software/s/Subversion.md index 2994902fe..c0a001c9f 100644 --- a/docs/version-specific/supported-software/s/Subversion.md +++ b/docs/version-specific/supported-software/s/Subversion.md @@ -21,5 +21,6 @@ version | toolchain ``1.9.7`` | ``iomkl/2018a`` ``1.9.9`` | ``GCCcore/7.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SuiteSparse.md b/docs/version-specific/supported-software/s/SuiteSparse.md index 199aa5608..31710fb3a 100644 --- a/docs/version-specific/supported-software/s/SuiteSparse.md +++ b/docs/version-specific/supported-software/s/SuiteSparse.md @@ -54,5 +54,6 @@ version | versionsuffix | toolchain ``5.8.1`` | ``-METIS-5.1.0`` | ``intel/2020b`` ``7.1.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SunPy.md b/docs/version-specific/supported-software/s/SunPy.md index 7feec64cc..81c553f05 100644 --- a/docs/version-specific/supported-software/s/SunPy.md +++ b/docs/version-specific/supported-software/s/SunPy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SuperLU.md b/docs/version-specific/supported-software/s/SuperLU.md index 078f4f777..58992e981 100644 --- a/docs/version-specific/supported-software/s/SuperLU.md +++ b/docs/version-specific/supported-software/s/SuperLU.md @@ -22,5 +22,6 @@ version | toolchain ``5.3.0`` | ``intel/2020b`` ``5.3.0`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a63b52e9a..362a16347 100644 --- a/docs/version-specific/supported-software/s/SuperLU_DIST.md +++ b/docs/version-specific/supported-software/s/SuperLU_DIST.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``8.1.2`` | | ``foss/2022b`` ``8.1.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SyRI.md b/docs/version-specific/supported-software/s/SyRI.md index 876ec45c5..8701c4980 100644 --- a/docs/version-specific/supported-software/s/SyRI.md +++ b/docs/version-specific/supported-software/s/SyRI.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 69ecea8f9..58ef72e0d 100644 --- a/docs/version-specific/supported-software/s/SymEngine-python.md +++ b/docs/version-specific/supported-software/s/SymEngine-python.md @@ -13,5 +13,6 @@ version | toolchain ``0.11.0`` | ``gfbf/2023b`` ``0.7.2`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/SymEngine.md b/docs/version-specific/supported-software/s/SymEngine.md index 0c26c35a6..79a3cb2c6 100644 --- a/docs/version-specific/supported-software/s/SymEngine.md +++ b/docs/version-specific/supported-software/s/SymEngine.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``GCC/8.2.0-2.31.1`` ``0.7.0`` | | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/Szip.md b/docs/version-specific/supported-software/s/Szip.md index 8d6b4654b..08969265c 100644 --- a/docs/version-specific/supported-software/s/Szip.md +++ b/docs/version-specific/supported-software/s/Szip.md @@ -39,5 +39,6 @@ version | toolchain ``2.1.1`` | ``GCCcore/8.3.0`` ``2.1.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/index.md b/docs/version-specific/supported-software/s/index.md index 2329664f5..ad8969841 100644 --- a/docs/version-specific/supported-software/s/index.md +++ b/docs/version-specific/supported-software/s/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (s) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../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) @@ -344,3 +346,7 @@ search: * [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 index b9b918678..0ddc32e75 100644 --- a/docs/version-specific/supported-software/s/s3fs.md +++ b/docs/version-specific/supported-software/s/s3fs.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2023.12.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/safestringlib.md b/docs/version-specific/supported-software/s/safestringlib.md index 7bb8a691d..5719dcf78 100644 --- a/docs/version-specific/supported-software/s/safestringlib.md +++ b/docs/version-specific/supported-software/s/safestringlib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20240228`` | ``intel-compilers/2023.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/samblaster.md b/docs/version-specific/supported-software/s/samblaster.md index db5feed89..dcaaf2f0f 100644 --- a/docs/version-specific/supported-software/s/samblaster.md +++ b/docs/version-specific/supported-software/s/samblaster.md @@ -15,5 +15,6 @@ version | toolchain ``0.1.26`` | ``GCC/10.3.0`` ``0.1.26`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/samclip.md b/docs/version-specific/supported-software/s/samclip.md index 04fb406da..bb4eaf44c 100644 --- a/docs/version-specific/supported-software/s/samclip.md +++ b/docs/version-specific/supported-software/s/samclip.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.4.0`` | | ``GCCcore/11.2.0`` ``0.4.0`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/samplot.md b/docs/version-specific/supported-software/s/samplot.md index 52addf7ea..807203bb8 100644 --- a/docs/version-specific/supported-software/s/samplot.md +++ b/docs/version-specific/supported-software/s/samplot.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sansa.md b/docs/version-specific/supported-software/s/sansa.md index 6b0941146..deb6c5e1e 100644 --- a/docs/version-specific/supported-software/s/sansa.md +++ b/docs/version-specific/supported-software/s/sansa.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.7`` | ``gompi/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/savvy.md b/docs/version-specific/supported-software/s/savvy.md index 99ab02821..e99ab8abc 100644 --- a/docs/version-specific/supported-software/s/savvy.md +++ b/docs/version-specific/supported-software/s/savvy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.0`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sbt.md b/docs/version-specific/supported-software/s/sbt.md index f57a9d09b..fc836639f 100644 --- a/docs/version-specific/supported-software/s/sbt.md +++ b/docs/version-specific/supported-software/s/sbt.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.13`` | ``-Java-8`` | ``system`` ``1.6.2`` | ``-Java-8`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scArches.md b/docs/version-specific/supported-software/s/scArches.md index 77ecef98b..77284bcb6 100644 --- a/docs/version-specific/supported-software/s/scArches.md +++ b/docs/version-specific/supported-software/s/scArches.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.5.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.5.6`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scCODA.md b/docs/version-specific/supported-software/s/scCODA.md index c541b68db..0a4bd6150 100644 --- a/docs/version-specific/supported-software/s/scCODA.md +++ b/docs/version-specific/supported-software/s/scCODA.md @@ -13,5 +13,6 @@ version | toolchain ``0.1.9`` | ``foss/2021a`` ``0.1.9`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scGSVA.md b/docs/version-specific/supported-software/s/scGSVA.md index 317ffc2a8..2592cde90 100644 --- a/docs/version-specific/supported-software/s/scGSVA.md +++ b/docs/version-specific/supported-software/s/scGSVA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.14`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scGeneFit.md b/docs/version-specific/supported-software/s/scGeneFit.md index dbd9346f4..459b5d239 100644 --- a/docs/version-specific/supported-software/s/scGeneFit.md +++ b/docs/version-specific/supported-software/s/scGeneFit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scHiCExplorer.md b/docs/version-specific/supported-software/s/scHiCExplorer.md index 0cf8c0ec7..047d3f3c0 100644 --- a/docs/version-specific/supported-software/s/scHiCExplorer.md +++ b/docs/version-specific/supported-software/s/scHiCExplorer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scPred.md b/docs/version-specific/supported-software/s/scPred.md index c410ebe24..8519059ae 100644 --- a/docs/version-specific/supported-software/s/scPred.md +++ b/docs/version-specific/supported-software/s/scPred.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.9.2`` | ``-R-4.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scVelo.md b/docs/version-specific/supported-software/s/scVelo.md index d29445460..565898c1c 100644 --- a/docs/version-specific/supported-software/s/scVelo.md +++ b/docs/version-specific/supported-software/s/scVelo.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.2.3`` | | ``foss/2021a`` ``0.3.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scanpy.md b/docs/version-specific/supported-software/s/scanpy.md index 3c7c9e288..0354ff2ba 100644 --- a/docs/version-specific/supported-software/s/scanpy.md +++ b/docs/version-specific/supported-software/s/scanpy.md @@ -18,5 +18,6 @@ version | toolchain ``1.9.1`` | ``foss/2022a`` ``1.9.8`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sceasy.md b/docs/version-specific/supported-software/s/sceasy.md index f52684a82..0e3a6e4e0 100644 --- a/docs/version-specific/supported-software/s/sceasy.md +++ b/docs/version-specific/supported-software/s/sceasy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.7`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sciClone.md b/docs/version-specific/supported-software/s/sciClone.md index a32b2d195..2ce11223e 100644 --- a/docs/version-specific/supported-software/s/sciClone.md +++ b/docs/version-specific/supported-software/s/sciClone.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3df020a47..47578a066 100644 --- a/docs/version-specific/supported-software/s/scib-metrics.md +++ b/docs/version-specific/supported-software/s/scib-metrics.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.3`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scib.md b/docs/version-specific/supported-software/s/scib.md index 6d0ce7498..527398334 100644 --- a/docs/version-specific/supported-software/s/scib.md +++ b/docs/version-specific/supported-software/s/scib.md @@ -14,5 +14,6 @@ version | toolchain ``1.1.3`` | ``foss/2021a`` ``1.1.4`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 53d7851b4..0ac2e77be 100644 --- a/docs/version-specific/supported-software/s/scikit-allel.md +++ b/docs/version-specific/supported-software/s/scikit-allel.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.3.2`` | | ``foss/2020b`` ``1.3.3`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9fe572ed4..d6d0f00af 100644 --- a/docs/version-specific/supported-software/s/scikit-bio.md +++ b/docs/version-specific/supported-software/s/scikit-bio.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.5.7`` | | ``foss/2022a`` ``0.6.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 5ae2db5c5..9e3681890 100644 --- a/docs/version-specific/supported-software/s/scikit-build-core.md +++ b/docs/version-specific/supported-software/s/scikit-build-core.md @@ -13,5 +13,6 @@ version | toolchain ``0.5.0`` | ``GCCcore/12.3.0`` ``0.9.3`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a3d6f8f90..02036a816 100644 --- a/docs/version-specific/supported-software/s/scikit-build.md +++ b/docs/version-specific/supported-software/s/scikit-build.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``0.17.6`` | | ``GCCcore/12.3.0`` ``0.17.6`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c6610fe1f..e0cfefcbd 100644 --- a/docs/version-specific/supported-software/s/scikit-cuda.md +++ b/docs/version-specific/supported-software/s/scikit-cuda.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4b0460c28..37e00b570 100644 --- a/docs/version-specific/supported-software/s/scikit-extremes.md +++ b/docs/version-specific/supported-software/s/scikit-extremes.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2022.4.10`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 85604efbb..d4c74ee20 100644 --- a/docs/version-specific/supported-software/s/scikit-image.md +++ b/docs/version-specific/supported-software/s/scikit-image.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``0.21.0`` | | ``foss/2022b`` ``0.22.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index eb105f942..4c1f80cc5 100644 --- a/docs/version-specific/supported-software/s/scikit-learn.md +++ b/docs/version-specific/supported-software/s/scikit-learn.md @@ -76,5 +76,6 @@ version | versionsuffix | toolchain ``1.4.0`` | | ``gfbf/2023b`` ``1.4.2`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 494b3a986..d2331aed2 100644 --- a/docs/version-specific/supported-software/s/scikit-lego.md +++ b/docs/version-specific/supported-software/s/scikit-lego.md @@ -13,5 +13,6 @@ version | toolchain ``0.6.16`` | ``foss/2022a`` ``0.7.4`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c702ed508..b508bb357 100644 --- a/docs/version-specific/supported-software/s/scikit-misc.md +++ b/docs/version-specific/supported-software/s/scikit-misc.md @@ -14,5 +14,6 @@ version | toolchain ``0.1.4`` | ``foss/2022a`` ``0.3.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 847416192..de31381cf 100644 --- a/docs/version-specific/supported-software/s/scikit-multilearn.md +++ b/docs/version-specific/supported-software/s/scikit-multilearn.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 393acde6e..6fbe67ba4 100644 --- a/docs/version-specific/supported-software/s/scikit-optimize.md +++ b/docs/version-specific/supported-software/s/scikit-optimize.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.9.0`` | | ``foss/2021a`` ``0.9.0`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index db998b1a8..782af8176 100644 --- a/docs/version-specific/supported-software/s/scikit-plot.md +++ b/docs/version-specific/supported-software/s/scikit-plot.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.7`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f9cd2253d..642fb84a7 100644 --- a/docs/version-specific/supported-software/s/scikit-uplift.md +++ b/docs/version-specific/supported-software/s/scikit-uplift.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scipy.md b/docs/version-specific/supported-software/s/scipy.md index d53a1c2c6..ce7107cd7 100644 --- a/docs/version-specific/supported-software/s/scipy.md +++ b/docs/version-specific/supported-software/s/scipy.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.4.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scp.md b/docs/version-specific/supported-software/s/scp.md index 1bdc7b9d4..98c72adaf 100644 --- a/docs/version-specific/supported-software/s/scp.md +++ b/docs/version-specific/supported-software/s/scp.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.13.1`` | ``-Python-2.7.15`` | ``intel/2018b`` ``0.13.2`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/scrublet.md b/docs/version-specific/supported-software/s/scrublet.md index bb98c8a59..91529dec5 100644 --- a/docs/version-specific/supported-software/s/scrublet.md +++ b/docs/version-specific/supported-software/s/scrublet.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4127f5786..c5ea454c9 100644 --- a/docs/version-specific/supported-software/s/scvi-tools.md +++ b/docs/version-specific/supported-software/s/scvi-tools.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.16.4`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``0.16.4`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/segemehl.md b/docs/version-specific/supported-software/s/segemehl.md index 0c0d27830..83d439f3f 100644 --- a/docs/version-specific/supported-software/s/segemehl.md +++ b/docs/version-specific/supported-software/s/segemehl.md @@ -20,5 +20,6 @@ version | toolchain ``0.3.4`` | ``foss/2018b`` ``0.3.4`` | ``iccifort/2020.4.304`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f3a29c02b..c539e5311 100644 --- a/docs/version-specific/supported-software/s/segment-anything.md +++ b/docs/version-specific/supported-software/s/segment-anything.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 61566330b..8aebe12d9 100644 --- a/docs/version-specific/supported-software/s/segmentation-models-pytorch.md +++ b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.3.3`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 06ee6d1d6..86f1b3223 100644 --- a/docs/version-specific/supported-software/s/segmentation-models.md +++ b/docs/version-specific/supported-software/s/segmentation-models.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``1.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/semla.md b/docs/version-specific/supported-software/s/semla.md index 2796d6eef..7566eaaa5 100644 --- a/docs/version-specific/supported-software/s/semla.md +++ b/docs/version-specific/supported-software/s/semla.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.6`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sentinelsat.md b/docs/version-specific/supported-software/s/sentinelsat.md index 499c7e3ad..a42017b19 100644 --- a/docs/version-specific/supported-software/s/sentinelsat.md +++ b/docs/version-specific/supported-software/s/sentinelsat.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sep.md b/docs/version-specific/supported-software/s/sep.md index 96b556823..52cdea7ab 100644 --- a/docs/version-specific/supported-software/s/sep.md +++ b/docs/version-specific/supported-software/s/sep.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.3`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.0.3`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/seq2HLA.md b/docs/version-specific/supported-software/s/seq2HLA.md index f62d0f515..a1c29c3c5 100644 --- a/docs/version-specific/supported-software/s/seq2HLA.md +++ b/docs/version-specific/supported-software/s/seq2HLA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` ``2.3`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/seqtk.md b/docs/version-specific/supported-software/s/seqtk.md index 5bae58be0..b14474b13 100644 --- a/docs/version-specific/supported-software/s/seqtk.md +++ b/docs/version-specific/supported-software/s/seqtk.md @@ -24,5 +24,6 @@ version | toolchain ``1.4`` | ``GCC/12.2.0`` ``1.4`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f54e331ac..77bfe51c4 100644 --- a/docs/version-specific/supported-software/s/setuptools-rust.md +++ b/docs/version-specific/supported-software/s/setuptools-rust.md @@ -13,5 +13,6 @@ version | toolchain ``1.6.0`` | ``GCCcore/12.3.0`` ``1.8.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/setuptools.md b/docs/version-specific/supported-software/s/setuptools.md index 64715fca7..d8a2fc7c1 100644 --- a/docs/version-specific/supported-software/s/setuptools.md +++ b/docs/version-specific/supported-software/s/setuptools.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``41.0.1`` | ``-py3`` | ``system`` ``64.0.3`` | | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sf.md b/docs/version-specific/supported-software/s/sf.md index d300de5b8..521fc2892 100644 --- a/docs/version-specific/supported-software/s/sf.md +++ b/docs/version-specific/supported-software/s/sf.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9-5`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sfftk.md b/docs/version-specific/supported-software/s/sfftk.md index d73f83c9d..42e3bf531 100644 --- a/docs/version-specific/supported-software/s/sfftk.md +++ b/docs/version-specific/supported-software/s/sfftk.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.4`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/shapAAR.md b/docs/version-specific/supported-software/s/shapAAR.md index 6229de9a2..5e1b81d23 100644 --- a/docs/version-specific/supported-software/s/shapAAR.md +++ b/docs/version-specific/supported-software/s/shapAAR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.0-20180425`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sharutils.md b/docs/version-specific/supported-software/s/sharutils.md index c20fba126..3e65cac1f 100644 --- a/docs/version-specific/supported-software/s/sharutils.md +++ b/docs/version-specific/supported-software/s/sharutils.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.15`` | ``GCCcore/6.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/shift.md b/docs/version-specific/supported-software/s/shift.md index f8bf6bd4f..38869330f 100644 --- a/docs/version-specific/supported-software/s/shift.md +++ b/docs/version-specific/supported-software/s/shift.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/shovill.md b/docs/version-specific/supported-software/s/shovill.md index d54c2df29..9d2dd9800 100644 --- a/docs/version-specific/supported-software/s/shovill.md +++ b/docs/version-specific/supported-software/s/shovill.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.0.4`` | ``-Python-2.7.15`` | ``foss/2018b`` ``1.1.0`` | | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/shrinkwrap.md b/docs/version-specific/supported-software/s/shrinkwrap.md index 19fc43b82..53c1dc254 100644 --- a/docs/version-specific/supported-software/s/shrinkwrap.md +++ b/docs/version-specific/supported-software/s/shrinkwrap.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.0-beta`` | ``GCCcore/8.2.0`` ``1.1.0`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sickle.md b/docs/version-specific/supported-software/s/sickle.md index 5ca38f619..262333724 100644 --- a/docs/version-specific/supported-software/s/sickle.md +++ b/docs/version-specific/supported-software/s/sickle.md @@ -13,5 +13,6 @@ version | toolchain ``1.33`` | ``foss/2017a`` ``1.33`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/silhouetteRank.md b/docs/version-specific/supported-software/s/silhouetteRank.md index e28447457..3b7388f53 100644 --- a/docs/version-specific/supported-software/s/silhouetteRank.md +++ b/docs/version-specific/supported-software/s/silhouetteRank.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.5.13`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/silx.md b/docs/version-specific/supported-software/s/silx.md index da911640c..d3791ea9e 100644 --- a/docs/version-specific/supported-software/s/silx.md +++ b/docs/version-specific/supported-software/s/silx.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.14.0`` | | ``fosscuda/2020b`` ``1.0.0`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/simanneal.md b/docs/version-specific/supported-software/s/simanneal.md index 7e48493f3..9e4c034ad 100644 --- a/docs/version-specific/supported-software/s/simanneal.md +++ b/docs/version-specific/supported-software/s/simanneal.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.0`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/simint.md b/docs/version-specific/supported-software/s/simint.md index d2b1497ed..9294c7069 100644 --- a/docs/version-specific/supported-software/s/simint.md +++ b/docs/version-specific/supported-software/s/simint.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-lmax-5-vec-avx-psi4`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/simpy.md b/docs/version-specific/supported-software/s/simpy.md index 4b745beac..8f8a371ad 100644 --- a/docs/version-specific/supported-software/s/simpy.md +++ b/docs/version-specific/supported-software/s/simpy.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.0.11`` | ``-Python-3.6.6`` | ``intel/2018b`` ``3.0.11`` | | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sinto.md b/docs/version-specific/supported-software/s/sinto.md index 3ee5676d7..01e9915b9 100644 --- a/docs/version-specific/supported-software/s/sinto.md +++ b/docs/version-specific/supported-software/s/sinto.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7.4`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/siscone.md b/docs/version-specific/supported-software/s/siscone.md index 882c15fbd..b6837f585 100644 --- a/docs/version-specific/supported-software/s/siscone.md +++ b/docs/version-specific/supported-software/s/siscone.md @@ -13,5 +13,6 @@ version | toolchain ``3.0.5`` | ``GCCcore/11.3.0`` ``3.0.6`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sketchmap.md b/docs/version-specific/supported-software/s/sketchmap.md index 32870bd3f..26803b108 100644 --- a/docs/version-specific/supported-software/s/sketchmap.md +++ b/docs/version-specific/supported-software/s/sketchmap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20170130`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/skewer.md b/docs/version-specific/supported-software/s/skewer.md index 4b7fb9e37..c0ba2df5a 100644 --- a/docs/version-specific/supported-software/s/skewer.md +++ b/docs/version-specific/supported-software/s/skewer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.2`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4fbb7545d..a458f15cc 100644 --- a/docs/version-specific/supported-software/s/sklearn-pandas.md +++ b/docs/version-specific/supported-software/s/sklearn-pandas.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 13b92e5b3..6ea3cd335 100644 --- a/docs/version-specific/supported-software/s/sklearn-som.md +++ b/docs/version-specific/supported-software/s/sklearn-som.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/skorch.md b/docs/version-specific/supported-software/s/skorch.md index ac5c03b1c..b649950d0 100644 --- a/docs/version-specific/supported-software/s/skorch.md +++ b/docs/version-specific/supported-software/s/skorch.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.15.0`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` ``0.15.0`` | ``-PyTorch-2.1.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sktime.md b/docs/version-specific/supported-software/s/sktime.md index 8f36ba72e..445744e39 100644 --- a/docs/version-specific/supported-software/s/sktime.md +++ b/docs/version-specific/supported-software/s/sktime.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.25.0`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/slepc4py.md b/docs/version-specific/supported-software/s/slepc4py.md index 888de93c0..204554d7e 100644 --- a/docs/version-specific/supported-software/s/slepc4py.md +++ b/docs/version-specific/supported-software/s/slepc4py.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``3.15.1`` | | ``foss/2021a`` ``3.9.0`` | ``-Python-3.6.4`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sleuth.md b/docs/version-specific/supported-software/s/sleuth.md index b7f33c72f..d4375274e 100644 --- a/docs/version-specific/supported-software/s/sleuth.md +++ b/docs/version-specific/supported-software/s/sleuth.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.29.0`` | ``-R-3.4.0`` | ``intel/2017a`` ``0.30.0`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/slidingwindow.md b/docs/version-specific/supported-software/s/slidingwindow.md index 6c668347f..128c3ecde 100644 --- a/docs/version-specific/supported-software/s/slidingwindow.md +++ b/docs/version-specific/supported-software/s/slidingwindow.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.0.13`` | ``-Python-2.7.15`` | ``intel/2018b`` ``0.0.13`` | ``-Python-3.6.6`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/slow5tools.md b/docs/version-specific/supported-software/s/slow5tools.md index 03d1ecd63..875e5cd66 100644 --- a/docs/version-specific/supported-software/s/slow5tools.md +++ b/docs/version-specific/supported-software/s/slow5tools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1fd63a2db..6bb7e17a8 100644 --- a/docs/version-specific/supported-software/s/slurm-drmaa.md +++ b/docs/version-specific/supported-software/s/slurm-drmaa.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.3`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/smafa.md b/docs/version-specific/supported-software/s/smafa.md index a8041d575..267c77b77 100644 --- a/docs/version-specific/supported-software/s/smafa.md +++ b/docs/version-specific/supported-software/s/smafa.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.0`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/smallgenomeutilities.md b/docs/version-specific/supported-software/s/smallgenomeutilities.md index b77e71f70..32f8e32c7 100644 --- a/docs/version-specific/supported-software/s/smallgenomeutilities.md +++ b/docs/version-specific/supported-software/s/smallgenomeutilities.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/smfishHmrf.md b/docs/version-specific/supported-software/s/smfishHmrf.md index 659313a21..015553acc 100644 --- a/docs/version-specific/supported-software/s/smfishHmrf.md +++ b/docs/version-specific/supported-software/s/smfishHmrf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/smithwaterman.md b/docs/version-specific/supported-software/s/smithwaterman.md index f25c84c82..697f80ee9 100644 --- a/docs/version-specific/supported-software/s/smithwaterman.md +++ b/docs/version-specific/supported-software/s/smithwaterman.md @@ -17,5 +17,6 @@ version | toolchain ``20160702`` | ``GCCcore/12.3.0`` ``20160702`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bddf2a9ef..7f5330057 100644 --- a/docs/version-specific/supported-software/s/smooth-topk.md +++ b/docs/version-specific/supported-software/s/smooth-topk.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0-20210817`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``1.0-20210817`` | | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/snakemake.md b/docs/version-specific/supported-software/s/snakemake.md index 99e618870..56cf98f6a 100644 --- a/docs/version-specific/supported-software/s/snakemake.md +++ b/docs/version-specific/supported-software/s/snakemake.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``7.32.3`` | | ``foss/2022b`` ``8.4.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/snaphu.md b/docs/version-specific/supported-software/s/snaphu.md index 142041b78..9dcf3a7d7 100644 --- a/docs/version-specific/supported-software/s/snaphu.md +++ b/docs/version-specific/supported-software/s/snaphu.md @@ -14,5 +14,6 @@ version | toolchain ``1.4.2`` | ``intel/2016b`` ``1.4.2`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/snappy.md b/docs/version-specific/supported-software/s/snappy.md index f8d9bb023..f0dbb0795 100644 --- a/docs/version-specific/supported-software/s/snappy.md +++ b/docs/version-specific/supported-software/s/snappy.md @@ -29,5 +29,6 @@ version | toolchain ``1.1.9`` | ``GCCcore/11.3.0`` ``1.1.9`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/snippy.md b/docs/version-specific/supported-software/s/snippy.md index 12d3a821d..23ebd8d0b 100644 --- a/docs/version-specific/supported-software/s/snippy.md +++ b/docs/version-specific/supported-software/s/snippy.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``4.6.0`` | ``-Java-13-Python-3.8.2`` | ``GCC/9.3.0`` ``4.6.0`` | ``-R-4.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index dbcb0c9a0..85881e646 100644 --- a/docs/version-specific/supported-software/s/snp-sites.md +++ b/docs/version-specific/supported-software/s/snp-sites.md @@ -15,5 +15,6 @@ version | toolchain ``2.5.1`` | ``GCCcore/11.2.0`` ``2.5.1`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/snpEff.md b/docs/version-specific/supported-software/s/snpEff.md index d9e34bf6a..b0bc3dac1 100644 --- a/docs/version-specific/supported-software/s/snpEff.md +++ b/docs/version-specific/supported-software/s/snpEff.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``5.0e`` | ``-Java-13`` | ``GCCcore/10.2.0`` ``5.0e`` | ``-Java-11`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/socat.md b/docs/version-specific/supported-software/s/socat.md index 3dd76fdeb..f40858833 100644 --- a/docs/version-specific/supported-software/s/socat.md +++ b/docs/version-specific/supported-software/s/socat.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.3.3`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/solo.md b/docs/version-specific/supported-software/s/solo.md index d479918dd..f8a3c1f7f 100644 --- a/docs/version-specific/supported-software/s/solo.md +++ b/docs/version-specific/supported-software/s/solo.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sonic.md b/docs/version-specific/supported-software/s/sonic.md index 8a24250b9..866118fd2 100644 --- a/docs/version-specific/supported-software/s/sonic.md +++ b/docs/version-specific/supported-software/s/sonic.md @@ -13,5 +13,6 @@ version | toolchain ``20180202`` | ``gfbf/2023a`` ``20180202`` | ``gompi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spaCy.md b/docs/version-specific/supported-software/s/spaCy.md index 46fa28dab..381e84c5f 100644 --- a/docs/version-specific/supported-software/s/spaCy.md +++ b/docs/version-specific/supported-software/s/spaCy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.4.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spaln.md b/docs/version-specific/supported-software/s/spaln.md index 85a9b39c0..ff5577377 100644 --- a/docs/version-specific/supported-software/s/spaln.md +++ b/docs/version-specific/supported-software/s/spaln.md @@ -16,5 +16,6 @@ version | toolchain ``2.4.12`` | ``GCC/11.2.0`` ``2.4.13f`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e58f919d2..38f619198 100644 --- a/docs/version-specific/supported-software/s/sparse-neighbors-search.md +++ b/docs/version-specific/supported-software/s/sparse-neighbors-search.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.7`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sparsehash.md b/docs/version-specific/supported-software/s/sparsehash.md index b1d9a2a33..206935474 100644 --- a/docs/version-specific/supported-software/s/sparsehash.md +++ b/docs/version-specific/supported-software/s/sparsehash.md @@ -23,5 +23,6 @@ version | toolchain ``2.0.4`` | ``GCCcore/12.3.0`` ``2.0.4`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spatialreg.md b/docs/version-specific/supported-software/s/spatialreg.md index 3b5925408..47aa0e0e1 100644 --- a/docs/version-specific/supported-software/s/spatialreg.md +++ b/docs/version-specific/supported-software/s/spatialreg.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1-5`` | ``-R-3.6.2`` | ``foss/2019b`` ``1.1-8`` | ``-R-4.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spdlog.md b/docs/version-specific/supported-software/s/spdlog.md index 13bed7b19..f923496eb 100644 --- a/docs/version-specific/supported-software/s/spdlog.md +++ b/docs/version-specific/supported-software/s/spdlog.md @@ -16,5 +16,6 @@ version | toolchain ``1.12.0`` | ``GCCcore/13.2.0`` ``1.9.2`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0bba9ebbc..20e57c10c 100644 --- a/docs/version-specific/supported-software/s/spectral.methods.md +++ b/docs/version-specific/supported-software/s/spectral.methods.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.7.2.133`` | ``-R-3.4.3`` | ``intel/2017b`` ``0.7.2.133`` | ``-R-3.4.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0684923ce..fdfbee72b 100644 --- a/docs/version-specific/supported-software/s/speech_tools.md +++ b/docs/version-specific/supported-software/s/speech_tools.md @@ -13,5 +13,6 @@ version | toolchain ``2.5.0`` | ``GCCcore/12.3.0`` ``2.5.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spektral.md b/docs/version-specific/supported-software/s/spektral.md index 35755d291..d17c5dceb 100644 --- a/docs/version-specific/supported-software/s/spektral.md +++ b/docs/version-specific/supported-software/s/spektral.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c70e86f70..9f6b555fb 100644 --- a/docs/version-specific/supported-software/s/spglib-python.md +++ b/docs/version-specific/supported-software/s/spglib-python.md @@ -35,5 +35,6 @@ version | versionsuffix | toolchain ``2.1.0`` | | ``gfbf/2023a`` ``2.1.0`` | | ``iimkl/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spglib.md b/docs/version-specific/supported-software/s/spglib.md index 1a13d61ed..aa0b2310e 100644 --- a/docs/version-specific/supported-software/s/spglib.md +++ b/docs/version-specific/supported-software/s/spglib.md @@ -17,5 +17,6 @@ version | toolchain ``2.0.2`` | ``GCCcore/11.3.0`` ``2.0.2`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f5a21486c..4643c83e4 100644 --- a/docs/version-specific/supported-software/s/split-seq.md +++ b/docs/version-specific/supported-software/s/split-seq.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20190717`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/splitRef.md b/docs/version-specific/supported-software/s/splitRef.md index c32cbc89e..e35e30c5c 100644 --- a/docs/version-specific/supported-software/s/splitRef.md +++ b/docs/version-specific/supported-software/s/splitRef.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/spoa.md b/docs/version-specific/supported-software/s/spoa.md index e8a01d24a..18aa7c615 100644 --- a/docs/version-specific/supported-software/s/spoa.md +++ b/docs/version-specific/supported-software/s/spoa.md @@ -20,5 +20,6 @@ version | toolchain ``4.0.7`` | ``GCC/12.2.0`` ``4.1.0`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sradownloader.md b/docs/version-specific/supported-software/s/sradownloader.md index bddae377d..1005f7a3d 100644 --- a/docs/version-specific/supported-software/s/sradownloader.md +++ b/docs/version-specific/supported-software/s/sradownloader.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.9`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/stardist.md b/docs/version-specific/supported-software/s/stardist.md index 4d375ecf1..079b72eb9 100644 --- a/docs/version-specific/supported-software/s/stardist.md +++ b/docs/version-specific/supported-software/s/stardist.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` ``0.8.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/starparser.md b/docs/version-specific/supported-software/s/starparser.md index c7dfcadff..ca35e9738 100644 --- a/docs/version-specific/supported-software/s/starparser.md +++ b/docs/version-specific/supported-software/s/starparser.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.49`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/stars.md b/docs/version-specific/supported-software/s/stars.md index 49b13876b..6edd95391 100644 --- a/docs/version-specific/supported-software/s/stars.md +++ b/docs/version-specific/supported-software/s/stars.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.4-3`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/statsmodels.md b/docs/version-specific/supported-software/s/statsmodels.md index 0d803537f..b392bab25 100644 --- a/docs/version-specific/supported-software/s/statsmodels.md +++ b/docs/version-specific/supported-software/s/statsmodels.md @@ -35,5 +35,6 @@ version | versionsuffix | toolchain ``0.9.0`` | ``-Python-3.6.6`` | ``intel/2018b`` ``0.9.0`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/stpipeline.md b/docs/version-specific/supported-software/s/stpipeline.md index e4d2547b4..2cfa62d50 100644 --- a/docs/version-specific/supported-software/s/stpipeline.md +++ b/docs/version-specific/supported-software/s/stpipeline.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.7.6`` | ``-Python-3.7.2`` | ``foss/2019a`` ``1.7.6`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/strace.md b/docs/version-specific/supported-software/s/strace.md index d8afe277d..f42a024c2 100644 --- a/docs/version-specific/supported-software/s/strace.md +++ b/docs/version-specific/supported-software/s/strace.md @@ -13,5 +13,6 @@ version | toolchain ``5.14`` | ``GCCcore/11.2.0`` ``6.6`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/strelka.md b/docs/version-specific/supported-software/s/strelka.md index 410a102e5..d5b1dd8f4 100644 --- a/docs/version-specific/supported-software/s/strelka.md +++ b/docs/version-specific/supported-software/s/strelka.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.9.7`` | | ``intel/2018a`` ``2.9.9`` | | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/stripy.md b/docs/version-specific/supported-software/s/stripy.md index 33a2909ca..6cb4db808 100644 --- a/docs/version-specific/supported-software/s/stripy.md +++ b/docs/version-specific/supported-software/s/stripy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.1.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/suave.md b/docs/version-specific/supported-software/s/suave.md index 67b529ede..13d6baee3 100644 --- a/docs/version-specific/supported-software/s/suave.md +++ b/docs/version-specific/supported-software/s/suave.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20160529`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bfeaacf53..cdc8d3611 100644 --- a/docs/version-specific/supported-software/s/subset-bam.md +++ b/docs/version-specific/supported-software/s/subset-bam.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.0`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/subunit.md b/docs/version-specific/supported-software/s/subunit.md index 9a38df1c9..c98af8a6e 100644 --- a/docs/version-specific/supported-software/s/subunit.md +++ b/docs/version-specific/supported-software/s/subunit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.3`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/suds.md b/docs/version-specific/supported-software/s/suds.md index b68e07bc0..5ca922844 100644 --- a/docs/version-specific/supported-software/s/suds.md +++ b/docs/version-specific/supported-software/s/suds.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.3.0`` | ``-Python-3.6.4`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/supermagic.md b/docs/version-specific/supported-software/s/supermagic.md index e1440970e..8035039f2 100644 --- a/docs/version-specific/supported-software/s/supermagic.md +++ b/docs/version-specific/supported-software/s/supermagic.md @@ -13,5 +13,6 @@ version | toolchain ``20170824`` | ``foss/2017a`` ``20170824`` | ``gompi/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/supernova.md b/docs/version-specific/supported-software/s/supernova.md index aca7ed983..ffed4ba59 100644 --- a/docs/version-specific/supported-software/s/supernova.md +++ b/docs/version-specific/supported-software/s/supernova.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.1`` | ``system`` ``2.1.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/svist4get.md b/docs/version-specific/supported-software/s/svist4get.md index e894a5735..62dfc724b 100644 --- a/docs/version-specific/supported-software/s/svist4get.md +++ b/docs/version-specific/supported-software/s/svist4get.md @@ -13,5 +13,6 @@ version | toolchain ``1.3.1`` | ``foss/2020b`` ``1.3.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/swarm.md b/docs/version-specific/supported-software/s/swarm.md index e9f24c48a..16a189806 100644 --- a/docs/version-specific/supported-software/s/swarm.md +++ b/docs/version-specific/supported-software/s/swarm.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.2`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/swifter.md b/docs/version-specific/supported-software/s/swifter.md index 0e28d5d60..d0262a09a 100644 --- a/docs/version-specific/supported-software/s/swifter.md +++ b/docs/version-specific/supported-software/s/swifter.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.9`` | ``foss/2020b`` ``1.0.9`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/swissknife.md b/docs/version-specific/supported-software/s/swissknife.md index 98000fb6f..c61748c76 100644 --- a/docs/version-specific/supported-software/s/swissknife.md +++ b/docs/version-specific/supported-software/s/swissknife.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.80`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sympy.md b/docs/version-specific/supported-software/s/sympy.md index bc6c656f0..fb76b08f4 100644 --- a/docs/version-specific/supported-software/s/sympy.md +++ b/docs/version-specific/supported-software/s/sympy.md @@ -33,5 +33,6 @@ version | versionsuffix | toolchain ``1.9`` | | ``foss/2021b`` ``1.9`` | | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/synapseclient.md b/docs/version-specific/supported-software/s/synapseclient.md index 34c22da61..da86db5ed 100644 --- a/docs/version-specific/supported-software/s/synapseclient.md +++ b/docs/version-specific/supported-software/s/synapseclient.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.0.0`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/synthcity.md b/docs/version-specific/supported-software/s/synthcity.md index ed21bbb24..e09cd1088 100644 --- a/docs/version-specific/supported-software/s/synthcity.md +++ b/docs/version-specific/supported-software/s/synthcity.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/s/sysbench.md b/docs/version-specific/supported-software/s/sysbench.md index e23f8e715..1cb4275a7 100644 --- a/docs/version-specific/supported-software/s/sysbench.md +++ b/docs/version-specific/supported-software/s/sysbench.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.20`` | ``GCC/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 36cb41427..e34c8e599 100644 --- a/docs/version-specific/supported-software/t/T-Coffee.md +++ b/docs/version-specific/supported-software/t/T-Coffee.md @@ -13,5 +13,6 @@ version | toolchain ``13.45.61.3c310a9`` | ``system`` ``13.46.0.919e8c6b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TALON.md b/docs/version-specific/supported-software/t/TALON.md index 68037c3c1..bb1b0c3b4 100644 --- a/docs/version-specific/supported-software/t/TALON.md +++ b/docs/version-specific/supported-software/t/TALON.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TALYS.md b/docs/version-specific/supported-software/t/TALYS.md index ad74e2b08..ef70bbdfe 100644 --- a/docs/version-specific/supported-software/t/TALYS.md +++ b/docs/version-specific/supported-software/t/TALYS.md @@ -13,5 +13,6 @@ version | toolchain ``1.95`` | ``GCCcore/10.3.0`` ``1.95`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TAMkin.md b/docs/version-specific/supported-software/t/TAMkin.md index 2678434f3..0feefea11 100644 --- a/docs/version-specific/supported-software/t/TAMkin.md +++ b/docs/version-specific/supported-software/t/TAMkin.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``1.2.6`` | ``-Python-3.7.2`` | ``intel/2019a`` ``1.2.6`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TBA.md b/docs/version-specific/supported-software/t/TBA.md index d40c013b9..f18e75a41 100644 --- a/docs/version-specific/supported-software/t/TBA.md +++ b/docs/version-specific/supported-software/t/TBA.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TCC.md b/docs/version-specific/supported-software/t/TCC.md index 9bd1ea423..0a8cd7e2e 100644 --- a/docs/version-specific/supported-software/t/TCC.md +++ b/docs/version-specific/supported-software/t/TCC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.9.26`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TCLAP.md b/docs/version-specific/supported-software/t/TCLAP.md index 6dba72b6b..74fa8e954 100644 --- a/docs/version-specific/supported-software/t/TCLAP.md +++ b/docs/version-specific/supported-software/t/TCLAP.md @@ -16,5 +16,6 @@ version | toolchain ``1.2.5`` | ``GCCcore/10.3.0`` ``1.2.5`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a071cebbc..4f222d51c 100644 --- a/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md +++ b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``8p3r1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TEToolkit.md b/docs/version-specific/supported-software/t/TEToolkit.md index c0b51d65c..c26a4b41d 100644 --- a/docs/version-specific/supported-software/t/TEToolkit.md +++ b/docs/version-specific/supported-software/t/TEToolkit.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.1`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TEtranscripts.md b/docs/version-specific/supported-software/t/TEtranscripts.md index 3d4990601..45606301e 100644 --- a/docs/version-specific/supported-software/t/TEtranscripts.md +++ b/docs/version-specific/supported-software/t/TEtranscripts.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.2.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 525b20a05..119edb4bb 100644 --- a/docs/version-specific/supported-software/t/TF-COMB.md +++ b/docs/version-specific/supported-software/t/TF-COMB.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TFEA.md b/docs/version-specific/supported-software/t/TFEA.md index 37f1a26d7..06b5f5c91 100644 --- a/docs/version-specific/supported-software/t/TFEA.md +++ b/docs/version-specific/supported-software/t/TFEA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.4`` | ``-muMerge-1.1.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/THetA.md b/docs/version-specific/supported-software/t/THetA.md index baae170ef..b4bf0d906 100644 --- a/docs/version-specific/supported-software/t/THetA.md +++ b/docs/version-specific/supported-software/t/THetA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.7`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TINKER.md b/docs/version-specific/supported-software/t/TINKER.md index 7c42fefb3..683e25650 100644 --- a/docs/version-specific/supported-software/t/TINKER.md +++ b/docs/version-specific/supported-software/t/TINKER.md @@ -14,5 +14,6 @@ version | toolchain ``8.7.2`` | ``foss/2019b`` ``8.8.1`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1bd92584a..62b650ee3 100644 --- a/docs/version-specific/supported-software/t/TM-align.md +++ b/docs/version-specific/supported-software/t/TM-align.md @@ -14,5 +14,6 @@ version | toolchain ``20180426`` | ``intel/2019a`` ``20190822`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TN93.md b/docs/version-specific/supported-software/t/TN93.md index fc40c0434..202dbaab7 100644 --- a/docs/version-specific/supported-software/t/TN93.md +++ b/docs/version-specific/supported-software/t/TN93.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.7`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TOBIAS.md b/docs/version-specific/supported-software/t/TOBIAS.md index 92f57ad6d..c86821443 100644 --- a/docs/version-specific/supported-software/t/TOBIAS.md +++ b/docs/version-specific/supported-software/t/TOBIAS.md @@ -14,5 +14,6 @@ version | toolchain ``0.14.0`` | ``foss/2020b`` ``0.16.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ff0674fc2..e54215c2e 100644 --- a/docs/version-specific/supported-software/t/TOML-Fortran.md +++ b/docs/version-specific/supported-software/t/TOML-Fortran.md @@ -17,5 +17,6 @@ version | toolchain ``0.4.1`` | ``GCC/12.2.0`` ``0.4.1`` | ``intel-compilers/2022.2.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TOPAS.md b/docs/version-specific/supported-software/t/TOPAS.md index 9dea94462..fe2c9c12f 100644 --- a/docs/version-specific/supported-software/t/TOPAS.md +++ b/docs/version-specific/supported-software/t/TOPAS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.9`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cca84cec7..aa455c650 100644 --- a/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md +++ b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md @@ -13,5 +13,6 @@ version | toolchain ``210521`` | ``GCC/10.3.0`` ``220729`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TRF.md b/docs/version-specific/supported-software/t/TRF.md index d6d4aad72..a5e5482c5 100644 --- a/docs/version-specific/supported-software/t/TRF.md +++ b/docs/version-specific/supported-software/t/TRF.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``4.09.1`` | | ``GCCcore/11.3.0`` ``4.09.1`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 224991ea1..d0cceb811 100644 --- a/docs/version-specific/supported-software/t/TRIQS-cthyb.md +++ b/docs/version-specific/supported-software/t/TRIQS-cthyb.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``foss/2022a`` ``3.2.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f8ae080c7..3bab8b0db 100644 --- a/docs/version-specific/supported-software/t/TRIQS-dft_tools.md +++ b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``foss/2022a`` ``3.2.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index cbc09449e..0c75ce5e5 100644 --- a/docs/version-specific/supported-software/t/TRIQS-tprf.md +++ b/docs/version-specific/supported-software/t/TRIQS-tprf.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``foss/2022a`` ``3.2.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TRIQS.md b/docs/version-specific/supported-software/t/TRIQS.md index dd7fcbb18..142196612 100644 --- a/docs/version-specific/supported-software/t/TRIQS.md +++ b/docs/version-specific/supported-software/t/TRIQS.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``3.1.1`` | | ``foss/2022a`` ``3.2.0`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TRUST.md b/docs/version-specific/supported-software/t/TRUST.md index 504f3f54b..88c0ce5b2 100644 --- a/docs/version-specific/supported-software/t/TRUST.md +++ b/docs/version-specific/supported-software/t/TRUST.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.2`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TRUST4.md b/docs/version-specific/supported-software/t/TRUST4.md index 22c996ac7..7fd42310b 100644 --- a/docs/version-specific/supported-software/t/TRUST4.md +++ b/docs/version-specific/supported-software/t/TRUST4.md @@ -14,5 +14,6 @@ version | toolchain ``1.0.6`` | ``GCC/11.2.0`` ``1.0.7`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 2fd7b78ec..7c460d974 100644 --- a/docs/version-specific/supported-software/t/TVB-deps.md +++ b/docs/version-specific/supported-software/t/TVB-deps.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20160618`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TVB.md b/docs/version-specific/supported-software/t/TVB.md index 1bcec55b2..a2fd2fc7c 100644 --- a/docs/version-specific/supported-software/t/TVB.md +++ b/docs/version-specific/supported-software/t/TVB.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.4.1`` | ``-Python-2.7.11`` | ``intel/2016a`` ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b7a957cf7..5e27c1688 100644 --- a/docs/version-specific/supported-software/t/TWL-NINJA.md +++ b/docs/version-specific/supported-software/t/TWL-NINJA.md @@ -13,5 +13,6 @@ version | toolchain ``0.97-cluster_only`` | ``GCC/10.2.0`` ``0.98-cluster_only`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TXR.md b/docs/version-specific/supported-software/t/TXR.md index 4e51aa0e3..fdc45b6cf 100644 --- a/docs/version-specific/supported-software/t/TXR.md +++ b/docs/version-specific/supported-software/t/TXR.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``291`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TagDust.md b/docs/version-specific/supported-software/t/TagDust.md index d31ecad00..338d8f813 100644 --- a/docs/version-specific/supported-software/t/TagDust.md +++ b/docs/version-specific/supported-software/t/TagDust.md @@ -13,5 +13,6 @@ version | toolchain ``2.33`` | ``GCCcore/10.2.0`` ``2.33`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TagLib.md b/docs/version-specific/supported-software/t/TagLib.md index df08eae7a..0f09d2457 100644 --- a/docs/version-specific/supported-software/t/TagLib.md +++ b/docs/version-specific/supported-software/t/TagLib.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.11.1`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Taiyaki.md b/docs/version-specific/supported-software/t/Taiyaki.md index b949bb190..85cf6ec68 100644 --- a/docs/version-specific/supported-software/t/Taiyaki.md +++ b/docs/version-specific/supported-software/t/Taiyaki.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tapenade.md b/docs/version-specific/supported-software/t/Tapenade.md index a3410c0b5..eb0e9d4e8 100644 --- a/docs/version-specific/supported-software/t/Tapenade.md +++ b/docs/version-specific/supported-software/t/Tapenade.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.16`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tcl.md b/docs/version-specific/supported-software/t/Tcl.md index 6a9896557..292199528 100644 --- a/docs/version-specific/supported-software/t/Tcl.md +++ b/docs/version-specific/supported-software/t/Tcl.md @@ -48,5 +48,6 @@ version | toolchain ``8.6.9`` | ``GCCcore/8.2.0`` ``8.6.9`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Telescope.md b/docs/version-specific/supported-software/t/Telescope.md index 238f0151e..913c2dcaa 100644 --- a/docs/version-specific/supported-software/t/Telescope.md +++ b/docs/version-specific/supported-software/t/Telescope.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.0.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Teneto.md b/docs/version-specific/supported-software/t/Teneto.md index b1925cbf3..5146b8810 100644 --- a/docs/version-specific/supported-software/t/Teneto.md +++ b/docs/version-specific/supported-software/t/Teneto.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3efbf1155..24bc7ecb0 100644 --- a/docs/version-specific/supported-software/t/TensorFlow-Datasets.md +++ b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.7.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` ``4.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 772016273..ce0b5e8ba 100644 --- a/docs/version-specific/supported-software/t/TensorFlow-Graphics.md +++ b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2021.12.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TensorFlow.md b/docs/version-specific/supported-software/t/TensorFlow.md index 27c18b490..b72adcb99 100644 --- a/docs/version-specific/supported-software/t/TensorFlow.md +++ b/docs/version-specific/supported-software/t/TensorFlow.md @@ -96,5 +96,6 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``2.9.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TensorRT.md b/docs/version-specific/supported-software/t/TensorRT.md index 10ce43815..3ee3738e2 100644 --- a/docs/version-specific/supported-software/t/TensorRT.md +++ b/docs/version-specific/supported-software/t/TensorRT.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``4.0.1.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` ``8.6.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6a74849f5..1d31609eb 100644 --- a/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md +++ b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.319.43`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TetGen.md b/docs/version-specific/supported-software/t/TetGen.md index 1d4f53551..8a153b890 100644 --- a/docs/version-specific/supported-software/t/TetGen.md +++ b/docs/version-specific/supported-software/t/TetGen.md @@ -13,5 +13,6 @@ version | toolchain ``1.5.0`` | ``GCCcore/6.4.0`` ``1.6.0`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 82deb9114..b21af0cd9 100644 --- a/docs/version-specific/supported-software/t/Text-CSV.md +++ b/docs/version-specific/supported-software/t/Text-CSV.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.33`` | ``-Perl-5.22.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Theano.md b/docs/version-specific/supported-software/t/Theano.md index bf6873c72..9864bfa46 100644 --- a/docs/version-specific/supported-software/t/Theano.md +++ b/docs/version-specific/supported-software/t/Theano.md @@ -43,5 +43,6 @@ version | versionsuffix | toolchain ``1.1.2`` | ``-PyMC`` | ``intel/2020b`` ``1.1.2`` | ``-PyMC`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/ThemisPy.md b/docs/version-specific/supported-software/t/ThemisPy.md index d0fc24e82..c12d90428 100644 --- a/docs/version-specific/supported-software/t/ThemisPy.md +++ b/docs/version-specific/supported-software/t/ThemisPy.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TiCCutils.md b/docs/version-specific/supported-software/t/TiCCutils.md index 642684d78..8f2099980 100644 --- a/docs/version-specific/supported-software/t/TiCCutils.md +++ b/docs/version-specific/supported-software/t/TiCCutils.md @@ -14,5 +14,6 @@ version | toolchain ``0.21`` | ``iimpi/2019a`` ``0.21`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TiMBL.md b/docs/version-specific/supported-software/t/TiMBL.md index e0bf8cd9f..5ad93fa72 100644 --- a/docs/version-specific/supported-software/t/TiMBL.md +++ b/docs/version-specific/supported-software/t/TiMBL.md @@ -14,5 +14,6 @@ version | toolchain ``6.4.13`` | ``intel/2018b`` ``6.4.7`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tika.md b/docs/version-specific/supported-software/t/Tika.md index 24e2ec8be..1b5f2c650 100644 --- a/docs/version-specific/supported-software/t/Tika.md +++ b/docs/version-specific/supported-software/t/Tika.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.16`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TinyDB.md b/docs/version-specific/supported-software/t/TinyDB.md index 316b98003..a717c3ff3 100644 --- a/docs/version-specific/supported-software/t/TinyDB.md +++ b/docs/version-specific/supported-software/t/TinyDB.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.15.2`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TinyXML.md b/docs/version-specific/supported-software/t/TinyXML.md index fc19b6287..9c621d3fa 100644 --- a/docs/version-specific/supported-software/t/TinyXML.md +++ b/docs/version-specific/supported-software/t/TinyXML.md @@ -13,5 +13,6 @@ version | toolchain ``2.6.2`` | ``GCCcore/11.2.0`` ``2.6.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tk.md b/docs/version-specific/supported-software/t/Tk.md index d829677d2..a3645ac50 100644 --- a/docs/version-specific/supported-software/t/Tk.md +++ b/docs/version-specific/supported-software/t/Tk.md @@ -49,5 +49,6 @@ version | versionsuffix | toolchain ``8.6.9`` | | ``GCCcore/8.2.0`` ``8.6.9`` | | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tkinter.md b/docs/version-specific/supported-software/t/Tkinter.md index 14e78e3a4..3d5c2384a 100644 --- a/docs/version-specific/supported-software/t/Tkinter.md +++ b/docs/version-specific/supported-software/t/Tkinter.md @@ -52,5 +52,6 @@ version | versionsuffix | toolchain ``3.9.5`` | | ``GCCcore/10.3.0`` ``3.9.6`` | | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/ToFu.md b/docs/version-specific/supported-software/t/ToFu.md index af32c4e9e..a59850892 100644 --- a/docs/version-specific/supported-software/t/ToFu.md +++ b/docs/version-specific/supported-software/t/ToFu.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``1.5.0`` | | ``foss/2020b`` ``1.5.0`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Togl.md b/docs/version-specific/supported-software/t/Togl.md index b5a418674..b53637945 100644 --- a/docs/version-specific/supported-software/t/Togl.md +++ b/docs/version-specific/supported-software/t/Togl.md @@ -15,5 +15,6 @@ version | toolchain ``2.0`` | ``GCCcore/11.3.0`` ``2.0`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tombo.md b/docs/version-specific/supported-software/t/Tombo.md index c9d5c43ba..cf1f7edca 100644 --- a/docs/version-specific/supported-software/t/Tombo.md +++ b/docs/version-specific/supported-software/t/Tombo.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.1`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TopHat.md b/docs/version-specific/supported-software/t/TopHat.md index 88a6ee47d..2c32802d6 100644 --- a/docs/version-specific/supported-software/t/TopHat.md +++ b/docs/version-specific/supported-software/t/TopHat.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``2.1.2`` | | ``iimpi/2019b`` ``2.1.2`` | ``-Python-2.7.18`` | ``iimpi/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TorchIO.md b/docs/version-specific/supported-software/t/TorchIO.md index ba4cb6a66..30a578885 100644 --- a/docs/version-specific/supported-software/t/TorchIO.md +++ b/docs/version-specific/supported-software/t/TorchIO.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.19.6`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TotalView.md b/docs/version-specific/supported-software/t/TotalView.md index 0da14e1fb..f41177296 100644 --- a/docs/version-specific/supported-software/t/TotalView.md +++ b/docs/version-specific/supported-software/t/TotalView.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``8.11.0-2`` | ``-linux-x86-64`` | ``system`` ``8.12.0-0`` | ``-linux-x86-64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Tracer.md b/docs/version-specific/supported-software/t/Tracer.md index 529375409..a93ea5d6d 100644 --- a/docs/version-specific/supported-software/t/Tracer.md +++ b/docs/version-specific/supported-software/t/Tracer.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.7.1`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TransDecoder.md b/docs/version-specific/supported-software/t/TransDecoder.md index ad697f36d..79e00f7f0 100644 --- a/docs/version-specific/supported-software/t/TransDecoder.md +++ b/docs/version-specific/supported-software/t/TransDecoder.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2.1.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` ``5.5.0`` | | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TranscriptClean.md b/docs/version-specific/supported-software/t/TranscriptClean.md index 9e94df4a3..88ac1ee3d 100644 --- a/docs/version-specific/supported-software/t/TranscriptClean.md +++ b/docs/version-specific/supported-software/t/TranscriptClean.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Transformers.md b/docs/version-specific/supported-software/t/Transformers.md index 37c9c9693..85f4b9319 100644 --- a/docs/version-specific/supported-software/t/Transformers.md +++ b/docs/version-specific/supported-software/t/Transformers.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``4.30.2`` | | ``foss/2022b`` ``4.39.3`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Transrate.md b/docs/version-specific/supported-software/t/Transrate.md index be51491af..3fe8915c2 100644 --- a/docs/version-specific/supported-software/t/Transrate.md +++ b/docs/version-specific/supported-software/t/Transrate.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TreeMix.md b/docs/version-specific/supported-software/t/TreeMix.md index 64ea777d1..191ae0f14 100644 --- a/docs/version-specific/supported-software/t/TreeMix.md +++ b/docs/version-specific/supported-software/t/TreeMix.md @@ -14,5 +14,6 @@ version | toolchain ``1.13`` | ``GCC/11.2.0`` ``1.13`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TreeShrink.md b/docs/version-specific/supported-software/t/TreeShrink.md index c19ade3df..ef4af548d 100644 --- a/docs/version-specific/supported-software/t/TreeShrink.md +++ b/docs/version-specific/supported-software/t/TreeShrink.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3.2`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Triangle.md b/docs/version-specific/supported-software/t/Triangle.md index a31b6c034..347f484f8 100644 --- a/docs/version-specific/supported-software/t/Triangle.md +++ b/docs/version-specific/supported-software/t/Triangle.md @@ -18,5 +18,6 @@ version | toolchain ``1.6`` | ``intel/2017a`` ``1.6`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Trilinos.md b/docs/version-specific/supported-software/t/Trilinos.md index 75abe4d2c..556095eac 100644 --- a/docs/version-specific/supported-software/t/Trilinos.md +++ b/docs/version-specific/supported-software/t/Trilinos.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``13.4.1`` | ``-zoltan`` | ``foss/2022a`` ``13.4.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 6fcbbd33f..22cabe0fd 100644 --- a/docs/version-specific/supported-software/t/Trim_Galore.md +++ b/docs/version-specific/supported-software/t/Trim_Galore.md @@ -29,5 +29,6 @@ version | versionsuffix | toolchain ``0.6.6`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` ``0.6.7`` | | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Trimmomatic.md b/docs/version-specific/supported-software/t/Trimmomatic.md index 0c53a6d49..511532cd1 100644 --- a/docs/version-specific/supported-software/t/Trimmomatic.md +++ b/docs/version-specific/supported-software/t/Trimmomatic.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.39`` | ``-Java-11`` | ``system`` ``0.39`` | ``-Java-17`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Trinity.md b/docs/version-specific/supported-software/t/Trinity.md index 883e0bf28..9c9284139 100644 --- a/docs/version-specific/supported-software/t/Trinity.md +++ b/docs/version-specific/supported-software/t/Trinity.md @@ -25,5 +25,6 @@ version | versionsuffix | toolchain ``2.9.1`` | ``-Python-3.7.4`` | ``foss/2019b`` ``2.9.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Trinotate.md b/docs/version-specific/supported-software/t/Trinotate.md index 7a76970c7..27a959ebe 100644 --- a/docs/version-specific/supported-software/t/Trinotate.md +++ b/docs/version-specific/supported-software/t/Trinotate.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Triplexator.md b/docs/version-specific/supported-software/t/Triplexator.md index b7aac1dbe..424c023af 100644 --- a/docs/version-specific/supported-software/t/Triplexator.md +++ b/docs/version-specific/supported-software/t/Triplexator.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.3`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Triton.md b/docs/version-specific/supported-software/t/Triton.md index 46a3cf54c..61cff3374 100644 --- a/docs/version-specific/supported-software/t/Triton.md +++ b/docs/version-specific/supported-software/t/Triton.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/Trycycler.md b/docs/version-specific/supported-software/t/Trycycler.md index 7d4ccd5fa..c772c5aa8 100644 --- a/docs/version-specific/supported-software/t/Trycycler.md +++ b/docs/version-specific/supported-software/t/Trycycler.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.5.2`` | | ``foss/2021a`` ``0.5.3`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/TurboVNC.md b/docs/version-specific/supported-software/t/TurboVNC.md index 336626886..3fdcc5ad8 100644 --- a/docs/version-specific/supported-software/t/TurboVNC.md +++ b/docs/version-specific/supported-software/t/TurboVNC.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.3`` | ``GCCcore/8.2.0`` ``3.0.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/index.md b/docs/version-specific/supported-software/t/index.md index d1273b411..df8305a95 100644 --- a/docs/version-specific/supported-software/t/index.md +++ b/docs/version-specific/supported-software/t/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (t) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../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) @@ -140,3 +142,7 @@ search: * [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 index e1c4b2617..384826e5d 100644 --- a/docs/version-specific/supported-software/t/t-SNE-CUDA.md +++ b/docs/version-specific/supported-software/t/t-SNE-CUDA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tMAE.md b/docs/version-specific/supported-software/t/tMAE.md index 3be8c2a3d..91c8ef23b 100644 --- a/docs/version-specific/supported-software/t/tMAE.md +++ b/docs/version-specific/supported-software/t/tMAE.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.0`` | ``-R-4.0.3`` | ``foss/2020b`` ``1.0.1`` | ``-R-4.1.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c03173797..1b1c293ef 100644 --- a/docs/version-specific/supported-software/t/tRNAscan-SE.md +++ b/docs/version-specific/supported-software/t/tRNAscan-SE.md @@ -13,5 +13,6 @@ version | toolchain ``2.0.12`` | ``GCC/11.2.0`` ``2.0.12`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tabix.md b/docs/version-specific/supported-software/t/tabix.md index 22eb9c1b1..1baca9849 100644 --- a/docs/version-specific/supported-software/t/tabix.md +++ b/docs/version-specific/supported-software/t/tabix.md @@ -22,5 +22,6 @@ version | toolchain ``0.2.6`` | ``intel/2016a`` ``0.2.6`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tabixpp.md b/docs/version-specific/supported-software/t/tabixpp.md index 8645afa65..1d296064b 100644 --- a/docs/version-specific/supported-software/t/tabixpp.md +++ b/docs/version-specific/supported-software/t/tabixpp.md @@ -17,5 +17,6 @@ version | toolchain ``1.1.2`` | ``GCC/11.3.0`` ``1.1.2`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/taco.md b/docs/version-specific/supported-software/t/taco.md index f0b666634..5a5ff8804 100644 --- a/docs/version-specific/supported-software/t/taco.md +++ b/docs/version-specific/supported-software/t/taco.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tantan.md b/docs/version-specific/supported-software/t/tantan.md index 9d9793b60..f92872e9e 100644 --- a/docs/version-specific/supported-software/t/tantan.md +++ b/docs/version-specific/supported-software/t/tantan.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``40`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7ad312147..bc49e3114 100644 --- a/docs/version-specific/supported-software/t/task-spooler.md +++ b/docs/version-specific/supported-software/t/task-spooler.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.2`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 88e936d5f..d67ed11cd 100644 --- a/docs/version-specific/supported-software/t/taxator-tk.md +++ b/docs/version-specific/supported-software/t/taxator-tk.md @@ -14,5 +14,6 @@ version | toolchain ``1.3.3`` | ``foss/2018b`` ``1.3.3`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tbb.md b/docs/version-specific/supported-software/t/tbb.md index 045ac3ba5..30f23cbda 100644 --- a/docs/version-specific/supported-software/t/tbb.md +++ b/docs/version-specific/supported-software/t/tbb.md @@ -41,5 +41,6 @@ version | toolchain ``4.3.6.211`` | ``system`` ``4.4.2.152`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tbl2asn.md b/docs/version-specific/supported-software/t/tbl2asn.md index 0ed24308b..e106adfb6 100644 --- a/docs/version-specific/supported-software/t/tbl2asn.md +++ b/docs/version-specific/supported-software/t/tbl2asn.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``20230713`` | ``-linux64`` | ``system`` ``25.8`` | ``-linux64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tcsh.md b/docs/version-specific/supported-software/t/tcsh.md index 61667eb70..31cc848e7 100644 --- a/docs/version-specific/supported-software/t/tcsh.md +++ b/docs/version-specific/supported-software/t/tcsh.md @@ -24,5 +24,6 @@ version | toolchain ``6.24.07`` | ``GCCcore/12.2.0`` ``6.24.10`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tecplot360ex.md b/docs/version-specific/supported-software/t/tecplot360ex.md index 7e67dcf19..6b41ffb7d 100644 --- a/docs/version-specific/supported-software/t/tecplot360ex.md +++ b/docs/version-specific/supported-software/t/tecplot360ex.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``linux64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tensorboard.md b/docs/version-specific/supported-software/t/tensorboard.md index 9638b6471..d8da38816 100644 --- a/docs/version-specific/supported-software/t/tensorboard.md +++ b/docs/version-specific/supported-software/t/tensorboard.md @@ -14,5 +14,6 @@ version | toolchain ``2.15.1`` | ``gfbf/2023a`` ``2.8.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tensorboardX.md b/docs/version-specific/supported-software/t/tensorboardX.md index 91c8caf5c..e05fcde5a 100644 --- a/docs/version-specific/supported-software/t/tensorboardX.md +++ b/docs/version-specific/supported-software/t/tensorboardX.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``2.6.2.2`` | | ``foss/2022b`` ``2.6.2.2`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 09446f521..b881b02a3 100644 --- a/docs/version-specific/supported-software/t/tensorflow-compression.md +++ b/docs/version-specific/supported-software/t/tensorflow-compression.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index be8818a05..85ea10f22 100644 --- a/docs/version-specific/supported-software/t/tensorflow-probability.md +++ b/docs/version-specific/supported-software/t/tensorflow-probability.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``0.20.0`` | | ``foss/2023a`` ``0.9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/terastructure.md b/docs/version-specific/supported-software/t/terastructure.md index 8dfe843a8..dda8f2686 100644 --- a/docs/version-specific/supported-software/t/terastructure.md +++ b/docs/version-specific/supported-software/t/terastructure.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/termcolor.md b/docs/version-specific/supported-software/t/termcolor.md index 4d237bd9e..e757fec09 100644 --- a/docs/version-specific/supported-software/t/termcolor.md +++ b/docs/version-specific/supported-software/t/termcolor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.0.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tesseract.md b/docs/version-specific/supported-software/t/tesseract.md index f165aeef4..afbb8a805 100644 --- a/docs/version-specific/supported-software/t/tesseract.md +++ b/docs/version-specific/supported-software/t/tesseract.md @@ -15,5 +15,6 @@ version | toolchain ``4.1.0`` | ``GCCcore/8.2.0`` ``5.3.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/testpath.md b/docs/version-specific/supported-software/t/testpath.md index d4a01c08d..65dcb79e2 100644 --- a/docs/version-specific/supported-software/t/testpath.md +++ b/docs/version-specific/supported-software/t/testpath.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``0.3`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.3`` | ``-Python-3.5.2`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/texinfo.md b/docs/version-specific/supported-software/t/texinfo.md index 02f1ed414..855e3b810 100644 --- a/docs/version-specific/supported-software/t/texinfo.md +++ b/docs/version-specific/supported-software/t/texinfo.md @@ -23,5 +23,6 @@ version | toolchain ``7.0.2`` | ``GCCcore/11.3.0`` ``7.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/texlive.md b/docs/version-specific/supported-software/t/texlive.md index df1d240a0..9e587303a 100644 --- a/docs/version-specific/supported-software/t/texlive.md +++ b/docs/version-specific/supported-software/t/texlive.md @@ -18,5 +18,6 @@ version | toolchain ``20230313`` | ``GCC/12.3.0`` ``20230313`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/thirdorder.md b/docs/version-specific/supported-software/t/thirdorder.md index 21a99c068..33d62aaab 100644 --- a/docs/version-specific/supported-software/t/thirdorder.md +++ b/docs/version-specific/supported-software/t/thirdorder.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/thurstonianIRT.md b/docs/version-specific/supported-software/t/thurstonianIRT.md index 371f714e1..50d42369b 100644 --- a/docs/version-specific/supported-software/t/thurstonianIRT.md +++ b/docs/version-specific/supported-software/t/thurstonianIRT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.9.0`` | ``-R-3.6.0`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tidybayes.md b/docs/version-specific/supported-software/t/tidybayes.md index ae7d617d3..c80a1a65d 100644 --- a/docs/version-specific/supported-software/t/tidybayes.md +++ b/docs/version-specific/supported-software/t/tidybayes.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.1.1`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tidymodels.md b/docs/version-specific/supported-software/t/tidymodels.md index aac49bf61..4d111a5d2 100644 --- a/docs/version-specific/supported-software/t/tidymodels.md +++ b/docs/version-specific/supported-software/t/tidymodels.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.0`` | ``-R-4.0.0`` | ``foss/2020a`` ``1.1.0`` | | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tiktoken.md b/docs/version-specific/supported-software/t/tiktoken.md index 519ce60b4..491fb006f 100644 --- a/docs/version-specific/supported-software/t/tiktoken.md +++ b/docs/version-specific/supported-software/t/tiktoken.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.6.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/time.md b/docs/version-specific/supported-software/t/time.md index 4da74c572..23efa302c 100644 --- a/docs/version-specific/supported-software/t/time.md +++ b/docs/version-specific/supported-software/t/time.md @@ -21,5 +21,6 @@ version | toolchain ``1.9`` | ``GCCcore/8.3.0`` ``1.9`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/timm.md b/docs/version-specific/supported-software/t/timm.md index 12bbda069..8b99f86d6 100644 --- a/docs/version-specific/supported-software/t/timm.md +++ b/docs/version-specific/supported-software/t/timm.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.6.13`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.9.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0b4203bf1..790cc29af 100644 --- a/docs/version-specific/supported-software/t/tiny-cuda-nn.md +++ b/docs/version-specific/supported-software/t/tiny-cuda-nn.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tmap.md b/docs/version-specific/supported-software/t/tmap.md index ab175c5fc..f8a74f375 100644 --- a/docs/version-specific/supported-software/t/tmap.md +++ b/docs/version-specific/supported-software/t/tmap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20220502`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tmux.md b/docs/version-specific/supported-software/t/tmux.md index b5c04db8a..26564a608 100644 --- a/docs/version-specific/supported-software/t/tmux.md +++ b/docs/version-specific/supported-software/t/tmux.md @@ -28,5 +28,6 @@ version | toolchain ``3.4`` | ``GCCcore/13.3.0`` ``3.4`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/toil.md b/docs/version-specific/supported-software/t/toil.md index 622871c72..890d803b1 100644 --- a/docs/version-specific/supported-software/t/toil.md +++ b/docs/version-specific/supported-software/t/toil.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``5.8.0`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tokenizers.md b/docs/version-specific/supported-software/t/tokenizers.md index f4918ed04..c7a71305f 100644 --- a/docs/version-specific/supported-software/t/tokenizers.md +++ b/docs/version-specific/supported-software/t/tokenizers.md @@ -14,5 +14,6 @@ version | toolchain ``0.13.3`` | ``GCCcore/12.2.0`` ``0.15.2`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/topaz.md b/docs/version-specific/supported-software/t/topaz.md index 8f29d303c..2b7a3f02c 100644 --- a/docs/version-specific/supported-software/t/topaz.md +++ b/docs/version-specific/supported-software/t/topaz.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.2.5.20230926`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.2.5.20231120`` | ``-CUDA-12.1.1`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchaudio.md b/docs/version-specific/supported-software/t/torchaudio.md index 953b8c809..66a1a7add 100644 --- a/docs/version-specific/supported-software/t/torchaudio.md +++ b/docs/version-specific/supported-software/t/torchaudio.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchdata.md b/docs/version-specific/supported-software/t/torchdata.md index 772001c6e..4c0cea639 100644 --- a/docs/version-specific/supported-software/t/torchdata.md +++ b/docs/version-specific/supported-software/t/torchdata.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.3.0`` | ``-PyTorch-1.11.0-CUDA-11.3.1`` | ``foss/2021a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchinfo.md b/docs/version-specific/supported-software/t/torchinfo.md index 63327ec5e..bf69ad412 100644 --- a/docs/version-specific/supported-software/t/torchinfo.md +++ b/docs/version-specific/supported-software/t/torchinfo.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5.2`` | ``-PyTorch-1.7.1`` | ``foss/2020b`` ``1.5.2`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchsampler.md b/docs/version-specific/supported-software/t/torchsampler.md index 4a330a8e5..bab3362a5 100644 --- a/docs/version-specific/supported-software/t/torchsampler.md +++ b/docs/version-specific/supported-software/t/torchsampler.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.2`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchtext.md b/docs/version-specific/supported-software/t/torchtext.md index a4dd86edb..cc5a298af 100644 --- a/docs/version-specific/supported-software/t/torchtext.md +++ b/docs/version-specific/supported-software/t/torchtext.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``0.8.1`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` ``0.9.1`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchvf.md b/docs/version-specific/supported-software/t/torchvf.md index 9c1f8c1ef..e125a0ea8 100644 --- a/docs/version-specific/supported-software/t/torchvf.md +++ b/docs/version-specific/supported-software/t/torchvf.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.1.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``0.1.3`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/torchvision.md b/docs/version-specific/supported-software/t/torchvision.md index de22b88ee..a26466d24 100644 --- a/docs/version-specific/supported-software/t/torchvision.md +++ b/docs/version-specific/supported-software/t/torchvision.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``0.9.1`` | ``-Python-3.7.4-PyTorch-1.8.1`` | ``fosscuda/2019b`` ``0.9.1`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tornado.md b/docs/version-specific/supported-software/t/tornado.md index 434eac4d3..241bb525c 100644 --- a/docs/version-specific/supported-software/t/tornado.md +++ b/docs/version-specific/supported-software/t/tornado.md @@ -13,5 +13,6 @@ version | toolchain ``6.3.2`` | ``GCCcore/12.3.0`` ``6.4`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tox.md b/docs/version-specific/supported-software/t/tox.md index d3fca742c..7cf574d07 100644 --- a/docs/version-specific/supported-software/t/tox.md +++ b/docs/version-specific/supported-software/t/tox.md @@ -13,5 +13,6 @@ version | toolchain ``3.25.1`` | ``GCCcore/10.2.0`` ``3.25.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tqdm.md b/docs/version-specific/supported-software/t/tqdm.md index 233e5a382..dabfed554 100644 --- a/docs/version-specific/supported-software/t/tqdm.md +++ b/docs/version-specific/supported-software/t/tqdm.md @@ -29,5 +29,6 @@ version | versionsuffix | toolchain ``4.66.1`` | | ``GCCcore/12.3.0`` ``4.66.2`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/travis.md b/docs/version-specific/supported-software/t/travis.md index 90f49f924..33630f9b1 100644 --- a/docs/version-specific/supported-software/t/travis.md +++ b/docs/version-specific/supported-software/t/travis.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.8.2`` | ``-Ruby-2.3.1`` | ``system`` ``1.8.4`` | ``-Ruby-2.3.3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/treatSens.md b/docs/version-specific/supported-software/t/treatSens.md index 6fa582620..f1c3aadd5 100644 --- a/docs/version-specific/supported-software/t/treatSens.md +++ b/docs/version-specific/supported-software/t/treatSens.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0-20201002`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/trimAl.md b/docs/version-specific/supported-software/t/trimAl.md index fcc4e67b8..3db3bcccc 100644 --- a/docs/version-specific/supported-software/t/trimAl.md +++ b/docs/version-specific/supported-software/t/trimAl.md @@ -18,5 +18,6 @@ version | toolchain ``1.4.1`` | ``GCCcore/9.3.0`` ``1.4.1`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/trimesh.md b/docs/version-specific/supported-software/t/trimesh.md index 2c8ee2fa0..a67dec99d 100644 --- a/docs/version-specific/supported-software/t/trimesh.md +++ b/docs/version-specific/supported-software/t/trimesh.md @@ -13,5 +13,6 @@ version | toolchain ``3.17.1`` | ``foss/2022a`` ``3.21.5`` | ``gfbf/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tseriesEntropy.md b/docs/version-specific/supported-software/t/tseriesEntropy.md index 30ae031ac..def51ff00 100644 --- a/docs/version-specific/supported-software/t/tseriesEntropy.md +++ b/docs/version-specific/supported-software/t/tseriesEntropy.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.6-0`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/tsne.md b/docs/version-specific/supported-software/t/tsne.md index eb5338821..5ef25c03c 100644 --- a/docs/version-specific/supported-software/t/tsne.md +++ b/docs/version-specific/supported-software/t/tsne.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.8`` | ``-Python-2.7.16`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/t/turbinesFoam.md b/docs/version-specific/supported-software/t/turbinesFoam.md index ac4017e49..0dfffc0ee 100644 --- a/docs/version-specific/supported-software/t/turbinesFoam.md +++ b/docs/version-specific/supported-software/t/turbinesFoam.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20220516`` | ``-OpenFOAM-8`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1a30abd2a..9a87bca45 100644 --- a/docs/version-specific/supported-software/t/tvb-data.md +++ b/docs/version-specific/supported-software/t/tvb-data.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150915`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 1563e8121..8577323cc 100644 --- a/docs/version-specific/supported-software/t/tvb-framework.md +++ b/docs/version-specific/supported-software/t/tvb-framework.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150921`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b5707e999..bf558c93f 100644 --- a/docs/version-specific/supported-software/t/tvb-library.md +++ b/docs/version-specific/supported-software/t/tvb-library.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` ``20150922`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e94c213f6..23984d453 100644 --- a/docs/version-specific/supported-software/t/typing-extensions.md +++ b/docs/version-specific/supported-software/t/typing-extensions.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``4.9.0`` | | ``GCCcore/12.2.0`` ``4.9.0`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index ed5957fd0..7ee53c238 100644 --- a/docs/version-specific/supported-software/u/UCC-CUDA.md +++ b/docs/version-specific/supported-software/u/UCC-CUDA.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-CUDA-12.0.0`` | ``GCCcore/12.2.0`` ``1.2.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UCC.md b/docs/version-specific/supported-software/u/UCC.md index 8fea0043c..ab6b0523a 100644 --- a/docs/version-specific/supported-software/u/UCC.md +++ b/docs/version-specific/supported-software/u/UCC.md @@ -16,5 +16,6 @@ version | toolchain ``1.2.0`` | ``GCCcore/13.2.0`` ``1.3.0`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UCLUST.md b/docs/version-specific/supported-software/u/UCLUST.md index 5f8fac095..19d18177d 100644 --- a/docs/version-specific/supported-software/u/UCLUST.md +++ b/docs/version-specific/supported-software/u/UCLUST.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.2.22q`` | ``-i86linux64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0d8e7a4d1..106340236 100644 --- a/docs/version-specific/supported-software/u/UCX-CUDA.md +++ b/docs/version-specific/supported-software/u/UCX-CUDA.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``1.14.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` ``1.15.0`` | ``-CUDA-12.4.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0db093496..192495967 100644 --- a/docs/version-specific/supported-software/u/UCX-ROCm.md +++ b/docs/version-specific/supported-software/u/UCX-ROCm.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.11.2`` | ``-ROCm-4.5.0`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UCX.md b/docs/version-specific/supported-software/u/UCX.md index 6104e9e08..aaea0fdd6 100644 --- a/docs/version-specific/supported-software/u/UCX.md +++ b/docs/version-specific/supported-software/u/UCX.md @@ -39,5 +39,6 @@ version | versionsuffix | toolchain ``1.9.0`` | ``-CUDA-11.2.1`` | ``GCCcore/10.2.0`` ``1.9.0`` | | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UDUNITS.md b/docs/version-specific/supported-software/u/UDUNITS.md index fcc31a67a..617902ecb 100644 --- a/docs/version-specific/supported-software/u/UDUNITS.md +++ b/docs/version-specific/supported-software/u/UDUNITS.md @@ -33,5 +33,6 @@ version | toolchain ``2.2.28`` | ``GCCcore/12.3.0`` ``2.2.28`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UFL.md b/docs/version-specific/supported-software/u/UFL.md index 3258d58b4..4cab8a43e 100644 --- a/docs/version-specific/supported-software/u/UFL.md +++ b/docs/version-specific/supported-software/u/UFL.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` ``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 06ea6bf31..f709c90f8 100644 --- a/docs/version-specific/supported-software/u/UMI-tools.md +++ b/docs/version-specific/supported-software/u/UMI-tools.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``1.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` ``1.1.4`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UNAFold.md b/docs/version-specific/supported-software/u/UNAFold.md index 5a1525525..b75e9e228 100644 --- a/docs/version-specific/supported-software/u/UNAFold.md +++ b/docs/version-specific/supported-software/u/UNAFold.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.8`` | ``-Perl-5.24.1`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UQTk.md b/docs/version-specific/supported-software/u/UQTk.md index 7d1bf34a7..fab6b25bb 100644 --- a/docs/version-specific/supported-software/u/UQTk.md +++ b/docs/version-specific/supported-software/u/UQTk.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/USEARCH.md b/docs/version-specific/supported-software/u/USEARCH.md index e7de54d54..7be9b447b 100644 --- a/docs/version-specific/supported-software/u/USEARCH.md +++ b/docs/version-specific/supported-software/u/USEARCH.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``5.2.236`` | ``-i86linux32`` | ``system`` ``6.1.544`` | ``-i86linux32`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/USPEX.md b/docs/version-specific/supported-software/u/USPEX.md index 8399f8d4d..58962de33 100644 --- a/docs/version-specific/supported-software/u/USPEX.md +++ b/docs/version-specific/supported-software/u/USPEX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``9.4.4`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UShER.md b/docs/version-specific/supported-software/u/UShER.md index 5238e8bf9..1f048b4b3 100644 --- a/docs/version-specific/supported-software/u/UShER.md +++ b/docs/version-specific/supported-software/u/UShER.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.1`` | ``gompi/2020b`` ``0.5.0`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/Ultralytics.md b/docs/version-specific/supported-software/u/Ultralytics.md index 81b9b0ed2..1c6365612 100644 --- a/docs/version-specific/supported-software/u/Ultralytics.md +++ b/docs/version-specific/supported-software/u/Ultralytics.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``8.0.92`` | ``-CUDA-11.7.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UnZip.md b/docs/version-specific/supported-software/u/UnZip.md index 19a73b893..d394c446e 100644 --- a/docs/version-specific/supported-software/u/UnZip.md +++ b/docs/version-specific/supported-software/u/UnZip.md @@ -26,5 +26,6 @@ version | toolchain ``6.0`` | ``GCCcore/9.3.0`` ``6.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/UniFrac.md b/docs/version-specific/supported-software/u/UniFrac.md index a684d71c9..789e48187 100644 --- a/docs/version-specific/supported-software/u/UniFrac.md +++ b/docs/version-specific/supported-software/u/UniFrac.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.3.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/Unicycler.md b/docs/version-specific/supported-software/u/Unicycler.md index 12944173d..e45b0ff8a 100644 --- a/docs/version-specific/supported-software/u/Unicycler.md +++ b/docs/version-specific/supported-software/u/Unicycler.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.4.9`` | | ``gompi/2021a`` ``0.5.0`` | | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/Unidecode.md b/docs/version-specific/supported-software/u/Unidecode.md index 522f7a68d..0e84ea28b 100644 --- a/docs/version-specific/supported-software/u/Unidecode.md +++ b/docs/version-specific/supported-software/u/Unidecode.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` ``1.3.6`` | | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/index.md b/docs/version-specific/supported-software/u/index.md index af1a969c2..c21fcc0c2 100644 --- a/docs/version-specific/supported-software/u/index.md +++ b/docs/version-specific/supported-software/u/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (u) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../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) @@ -40,3 +42,7 @@ search: * [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 index e937af63d..767228577 100644 --- a/docs/version-specific/supported-software/u/ucx-py.md +++ b/docs/version-specific/supported-software/u/ucx-py.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.21.0`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/udocker.md b/docs/version-specific/supported-software/u/udocker.md index b5a1dc3c3..8d1e4dd33 100644 --- a/docs/version-specific/supported-software/u/udocker.md +++ b/docs/version-specific/supported-software/u/udocker.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.1`` | ``-Python-2.7.14`` | ``foss/2017b`` ``1.1.3`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index e393e838a..432e396cd 100644 --- a/docs/version-specific/supported-software/u/umap-learn.md +++ b/docs/version-specific/supported-software/u/umap-learn.md @@ -18,5 +18,6 @@ version | toolchain ``0.5.3`` | ``foss/2022a`` ``0.5.5`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/umi4cPackage.md b/docs/version-specific/supported-software/u/umi4cPackage.md index 3611bcbb0..59b8cfb69 100644 --- a/docs/version-specific/supported-software/u/umi4cPackage.md +++ b/docs/version-specific/supported-software/u/umi4cPackage.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20200116`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/umis.md b/docs/version-specific/supported-software/u/umis.md index 714744ced..85d367af1 100644 --- a/docs/version-specific/supported-software/u/umis.md +++ b/docs/version-specific/supported-software/u/umis.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0.3`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/uncertainties.md b/docs/version-specific/supported-software/u/uncertainties.md index fe6c1eeec..71f3f7bc3 100644 --- a/docs/version-specific/supported-software/u/uncertainties.md +++ b/docs/version-specific/supported-software/u/uncertainties.md @@ -13,5 +13,6 @@ version | toolchain ``3.1.7`` | ``foss/2021b`` ``3.1.7`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 3d3900307..c5345f830 100644 --- a/docs/version-specific/supported-software/u/uncertainty-calibration.md +++ b/docs/version-specific/supported-software/u/uncertainty-calibration.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.9`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 8299a19fb..4a5420ead 100644 --- a/docs/version-specific/supported-software/u/unicore-uftp.md +++ b/docs/version-specific/supported-software/u/unicore-uftp.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.2`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/unifdef.md b/docs/version-specific/supported-software/u/unifdef.md index d37c6b92e..3feb42c58 100644 --- a/docs/version-specific/supported-software/u/unifdef.md +++ b/docs/version-specific/supported-software/u/unifdef.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.12`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/unimap.md b/docs/version-specific/supported-software/u/unimap.md index ee0a5d1b0..60d004fa2 100644 --- a/docs/version-specific/supported-software/u/unimap.md +++ b/docs/version-specific/supported-software/u/unimap.md @@ -13,5 +13,6 @@ version | toolchain ``0.1`` | ``GCCcore/10.2.0`` ``0.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/units.md b/docs/version-specific/supported-software/u/units.md index 60631a543..de76be04e 100644 --- a/docs/version-specific/supported-software/u/units.md +++ b/docs/version-specific/supported-software/u/units.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.19`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/unixODBC.md b/docs/version-specific/supported-software/u/unixODBC.md index 1bacf3d32..4b75d745a 100644 --- a/docs/version-specific/supported-software/u/unixODBC.md +++ b/docs/version-specific/supported-software/u/unixODBC.md @@ -13,5 +13,6 @@ version | toolchain ``2.3.11`` | ``foss/2022b`` ``2.3.7`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/unrar.md b/docs/version-specific/supported-software/u/unrar.md index 7df33156b..715d92ccc 100644 --- a/docs/version-specific/supported-software/u/unrar.md +++ b/docs/version-specific/supported-software/u/unrar.md @@ -14,5 +14,6 @@ version | toolchain ``5.7.3`` | ``GCCcore/8.2.0`` ``6.0.2`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/u/utf8proc.md b/docs/version-specific/supported-software/u/utf8proc.md index c3c2eb5f7..5154215cb 100644 --- a/docs/version-specific/supported-software/u/utf8proc.md +++ b/docs/version-specific/supported-software/u/utf8proc.md @@ -21,5 +21,6 @@ version | toolchain ``2.8.0`` | ``GCCcore/12.2.0`` ``2.8.0`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 62a7debfa..6ae96add9 100644 --- a/docs/version-specific/supported-software/u/util-linux.md +++ b/docs/version-specific/supported-software/u/util-linux.md @@ -39,5 +39,6 @@ version | toolchain ``2.39`` | ``GCCcore/13.2.0`` ``2.40`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/V8.md b/docs/version-specific/supported-software/v/V8.md index f638cb9cf..c0f304a95 100644 --- a/docs/version-specific/supported-software/v/V8.md +++ b/docs/version-specific/supported-software/v/V8.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``3.2.0`` | ``-R-3.6.2`` | ``foss/2019b`` ``3.4.0`` | ``-R-4.0.0`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 43bf83eac..e82754159 100644 --- a/docs/version-specific/supported-software/v/VAMPIRE-ASM.md +++ b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.0`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VASP.md b/docs/version-specific/supported-software/v/VASP.md index e7b6cc245..c0f13c6d2 100644 --- a/docs/version-specific/supported-software/v/VASP.md +++ b/docs/version-specific/supported-software/v/VASP.md @@ -13,5 +13,6 @@ version | toolchain ``5.4.1`` | ``intel/2016.02-GCC-4.9`` ``6.3.2`` | ``nvofbf/2022.07`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VAtools.md b/docs/version-specific/supported-software/v/VAtools.md index ee81d325e..b8faaede6 100644 --- a/docs/version-specific/supported-software/v/VAtools.md +++ b/docs/version-specific/supported-software/v/VAtools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 86c48a745..1bd53174a 100644 --- a/docs/version-specific/supported-software/v/VBZ-Compression.md +++ b/docs/version-specific/supported-software/v/VBZ-Compression.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.1`` | ``gompi/2020b`` ``1.0.3`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a58368b3a..0066aa096 100644 --- a/docs/version-specific/supported-software/v/VCF-kit.md +++ b/docs/version-specific/supported-software/v/VCF-kit.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.1.6`` | ``-Python-2.7.15`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VCFtools.md b/docs/version-specific/supported-software/v/VCFtools.md index 0d7096c4a..db8d25108 100644 --- a/docs/version-specific/supported-software/v/VCFtools.md +++ b/docs/version-specific/supported-software/v/VCFtools.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``0.1.16`` | | ``iccifort/2019.5.281`` ``0.1.16`` | ``-Perl-5.28.0`` | ``intel/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VEGAS.md b/docs/version-specific/supported-software/v/VEGAS.md index 4dbdc3379..23b8a1f1b 100644 --- a/docs/version-specific/supported-software/v/VEGAS.md +++ b/docs/version-specific/supported-software/v/VEGAS.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.27`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VEP.md b/docs/version-specific/supported-software/v/VEP.md index 1a894769a..2218a64db 100644 --- a/docs/version-specific/supported-software/v/VEP.md +++ b/docs/version-specific/supported-software/v/VEP.md @@ -21,5 +21,6 @@ version | versionsuffix | toolchain ``95.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` ``96.0`` | ``-Perl-5.28.1`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VERSE.md b/docs/version-specific/supported-software/v/VERSE.md index 3fc1c396e..35fd387bb 100644 --- a/docs/version-specific/supported-software/v/VERSE.md +++ b/docs/version-specific/supported-software/v/VERSE.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.1.5`` | ``foss/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VESTA.md b/docs/version-specific/supported-software/v/VESTA.md index 568b490df..bd9703057 100644 --- a/docs/version-specific/supported-software/v/VESTA.md +++ b/docs/version-specific/supported-software/v/VESTA.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.5.8`` | ``-gtk3`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VMD.md b/docs/version-specific/supported-software/v/VMD.md index b9ecd5059..f7a02cd71 100644 --- a/docs/version-specific/supported-software/v/VMD.md +++ b/docs/version-specific/supported-software/v/VMD.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``1.9.4a51`` | | ``fosscuda/2020b`` ``1.9.4a57`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VMTK.md b/docs/version-specific/supported-software/v/VMTK.md index 55d6ef9c0..272586217 100644 --- a/docs/version-specific/supported-software/v/VMTK.md +++ b/docs/version-specific/supported-software/v/VMTK.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VSCode.md b/docs/version-specific/supported-software/v/VSCode.md index afd9f2dd4..985b42803 100644 --- a/docs/version-specific/supported-software/v/VSCode.md +++ b/docs/version-specific/supported-software/v/VSCode.md @@ -13,5 +13,6 @@ version | toolchain ``1.85.0`` | ``system`` ``1.88.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VSEARCH.md b/docs/version-specific/supported-software/v/VSEARCH.md index 44116d3c7..fea11e35b 100644 --- a/docs/version-specific/supported-software/v/VSEARCH.md +++ b/docs/version-specific/supported-software/v/VSEARCH.md @@ -18,5 +18,6 @@ version | toolchain ``2.25.0`` | ``GCC/12.3.0`` ``2.9.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VTK.md b/docs/version-specific/supported-software/v/VTK.md index 50ee688cb..e5fe9805c 100644 --- a/docs/version-specific/supported-software/v/VTK.md +++ b/docs/version-specific/supported-software/v/VTK.md @@ -46,5 +46,6 @@ version | versionsuffix | toolchain ``9.3.0`` | | ``foss/2023a`` ``9.3.0`` | | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VTune.md b/docs/version-specific/supported-software/v/VTune.md index 2d306586d..f64dee85b 100644 --- a/docs/version-specific/supported-software/v/VTune.md +++ b/docs/version-specific/supported-software/v/VTune.md @@ -35,5 +35,6 @@ version | toolchain ``2022.3.0`` | ``system`` ``2023.2.0`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VV.md b/docs/version-specific/supported-software/v/VV.md index 9f28b96c2..4ab7382a0 100644 --- a/docs/version-specific/supported-software/v/VV.md +++ b/docs/version-specific/supported-software/v/VV.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2018.09.19`` | ``-Python-3.6.6`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VXL.md b/docs/version-specific/supported-software/v/VXL.md index 652ad87f6..5461ba2f0 100644 --- a/docs/version-specific/supported-software/v/VXL.md +++ b/docs/version-specific/supported-software/v/VXL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.18.0`` | ``foss/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Vala.md b/docs/version-specific/supported-software/v/Vala.md index cdf11fcc4..06441082d 100644 --- a/docs/version-specific/supported-software/v/Vala.md +++ b/docs/version-specific/supported-software/v/Vala.md @@ -13,5 +13,6 @@ version | toolchain ``0.52.4`` | ``GCCcore/10.3.0`` ``0.56.14`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Valgrind.md b/docs/version-specific/supported-software/v/Valgrind.md index d5bc05687..bbb7aee76 100644 --- a/docs/version-specific/supported-software/v/Valgrind.md +++ b/docs/version-specific/supported-software/v/Valgrind.md @@ -31,5 +31,6 @@ version | toolchain ``3.21.0`` | ``gompi/2023a`` ``3.23.0`` | ``gompi/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Vamb.md b/docs/version-specific/supported-software/v/Vamb.md index bda09393c..56812d652 100644 --- a/docs/version-specific/supported-software/v/Vamb.md +++ b/docs/version-specific/supported-software/v/Vamb.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.0.9`` | ``-CUDA-11.5.2`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Vampir.md b/docs/version-specific/supported-software/v/Vampir.md index 8c53d7f9d..877487717 100644 --- a/docs/version-specific/supported-software/v/Vampir.md +++ b/docs/version-specific/supported-software/v/Vampir.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``8.4.1`` | ``-demo`` | ``system`` ``8.4.1`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Vampire.md b/docs/version-specific/supported-software/v/Vampire.md index e1b0bc248..f85d237dd 100644 --- a/docs/version-specific/supported-software/v/Vampire.md +++ b/docs/version-specific/supported-software/v/Vampire.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.5.1`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VarDict.md b/docs/version-specific/supported-software/v/VarDict.md index fe21825bf..60fd08f31 100644 --- a/docs/version-specific/supported-software/v/VarDict.md +++ b/docs/version-specific/supported-software/v/VarDict.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.5.7`` | ``-Perl-5.28.0`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VarScan.md b/docs/version-specific/supported-software/v/VarScan.md index 287fce874..bfa35c12e 100644 --- a/docs/version-specific/supported-software/v/VarScan.md +++ b/docs/version-specific/supported-software/v/VarScan.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.4.4`` | ``-Java-1.8`` | ``system`` ``2.4.4`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VariantMetaCaller.md b/docs/version-specific/supported-software/v/VariantMetaCaller.md index f4374f1ac..fb5180ed4 100644 --- a/docs/version-specific/supported-software/v/VariantMetaCaller.md +++ b/docs/version-specific/supported-software/v/VariantMetaCaller.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Velvet.md b/docs/version-specific/supported-software/v/Velvet.md index 0c333537f..58a41eb82 100644 --- a/docs/version-specific/supported-software/v/Velvet.md +++ b/docs/version-specific/supported-software/v/Velvet.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``1.2.10`` | ``-mt-kmer_191`` | ``foss/2023a`` ``1.2.10`` | ``-mt-kmer_37`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/ViennaRNA.md b/docs/version-specific/supported-software/v/ViennaRNA.md index 496ac51df..6e97f49b5 100644 --- a/docs/version-specific/supported-software/v/ViennaRNA.md +++ b/docs/version-specific/supported-software/v/ViennaRNA.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``2.5.0`` | | ``foss/2021b`` ``2.5.1`` | | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Vim.md b/docs/version-specific/supported-software/v/Vim.md index 0a17c9ae9..08ea82a46 100644 --- a/docs/version-specific/supported-software/v/Vim.md +++ b/docs/version-specific/supported-software/v/Vim.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``9.0.1434`` | | ``GCCcore/12.2.0`` ``9.1.0004`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VirSorter.md b/docs/version-specific/supported-software/v/VirSorter.md index e8c361925..167f78814 100644 --- a/docs/version-specific/supported-software/v/VirSorter.md +++ b/docs/version-specific/supported-software/v/VirSorter.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0.6`` | | ``foss/2021b`` ``20160601`` | ``-Perl-5.22.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VirSorter2.md b/docs/version-specific/supported-software/v/VirSorter2.md index e8a41f1cc..c33f6d53f 100644 --- a/docs/version-specific/supported-software/v/VirSorter2.md +++ b/docs/version-specific/supported-software/v/VirSorter2.md @@ -13,5 +13,6 @@ version | toolchain ``2.2.4`` | ``foss/2021b`` ``2.2.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VirtualGL.md b/docs/version-specific/supported-software/v/VirtualGL.md index 1cec9bb70..307b046e7 100644 --- a/docs/version-specific/supported-software/v/VirtualGL.md +++ b/docs/version-specific/supported-software/v/VirtualGL.md @@ -15,5 +15,6 @@ version | toolchain ``3.0`` | ``GCC/11.2.0`` ``3.1`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 898fa4030..80fc8a1cd 100644 --- a/docs/version-specific/supported-software/v/Virtuoso-opensource.md +++ b/docs/version-specific/supported-software/v/Virtuoso-opensource.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.2.6.1`` | ``GCC/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/VisPy.md b/docs/version-specific/supported-software/v/VisPy.md index 186f67a48..10348b8b9 100644 --- a/docs/version-specific/supported-software/v/VisPy.md +++ b/docs/version-specific/supported-software/v/VisPy.md @@ -16,5 +16,6 @@ version | toolchain ``0.6.6`` | ``foss/2020b`` ``0.6.6`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/Voro++.md b/docs/version-specific/supported-software/v/Voro++.md index 7a35e58ad..73bdcacac 100644 --- a/docs/version-specific/supported-software/v/Voro++.md +++ b/docs/version-specific/supported-software/v/Voro++.md @@ -23,5 +23,6 @@ version | toolchain ``0.4.6`` | ``intel/2016a`` ``0.4.6`` | ``intel/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/index.md b/docs/version-specific/supported-software/v/index.md index 5e36f292c..5c84bf088 100644 --- a/docs/version-specific/supported-software/v/index.md +++ b/docs/version-specific/supported-software/v/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (v) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../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) @@ -64,3 +66,7 @@ search: * [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 index 13d451f36..835427a2d 100644 --- a/docs/version-specific/supported-software/v/vConTACT2.md +++ b/docs/version-specific/supported-software/v/vConTACT2.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.11.3`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vaeda.md b/docs/version-specific/supported-software/v/vaeda.md index 9c5e29be3..1bb972dd0 100644 --- a/docs/version-specific/supported-software/v/vaeda.md +++ b/docs/version-specific/supported-software/v/vaeda.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.0.30`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 206cc9e82..7ffefc6c2 100644 --- a/docs/version-specific/supported-software/v/variant_tools.md +++ b/docs/version-specific/supported-software/v/variant_tools.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vartools.md b/docs/version-specific/supported-software/v/vartools.md index 293cd1316..8a6d9b295 100644 --- a/docs/version-specific/supported-software/v/vartools.md +++ b/docs/version-specific/supported-software/v/vartools.md @@ -13,5 +13,6 @@ version | toolchain ``1.35`` | ``foss/2016b`` ``1.35`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vawk.md b/docs/version-specific/supported-software/v/vawk.md index d9eb60a8a..3cb992f33 100644 --- a/docs/version-specific/supported-software/v/vawk.md +++ b/docs/version-specific/supported-software/v/vawk.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.0.1`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vcflib.md b/docs/version-specific/supported-software/v/vcflib.md index bce923136..4f1d90507 100644 --- a/docs/version-specific/supported-software/v/vcflib.md +++ b/docs/version-specific/supported-software/v/vcflib.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``1.0.9`` | ``-R-4.2.1`` | ``foss/2022a`` ``1.0.9`` | ``-R-4.3.2`` | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vcfnp.md b/docs/version-specific/supported-software/v/vcfnp.md index 5aba37139..2f26ce398 100644 --- a/docs/version-specific/supported-software/v/vcfnp.md +++ b/docs/version-specific/supported-software/v/vcfnp.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/velocyto.md b/docs/version-specific/supported-software/v/velocyto.md index 2d37efa77..f331f90b3 100644 --- a/docs/version-specific/supported-software/v/velocyto.md +++ b/docs/version-specific/supported-software/v/velocyto.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``0.17.17`` | | ``foss/2022a`` ``0.17.17`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/verifyBamID.md b/docs/version-specific/supported-software/v/verifyBamID.md index 00ebc44be..ccee7b3cd 100644 --- a/docs/version-specific/supported-software/v/verifyBamID.md +++ b/docs/version-specific/supported-software/v/verifyBamID.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.1.3`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/virtualenv.md b/docs/version-specific/supported-software/v/virtualenv.md index 0bcdafef9..0454a1a16 100644 --- a/docs/version-specific/supported-software/v/virtualenv.md +++ b/docs/version-specific/supported-software/v/virtualenv.md @@ -13,5 +13,6 @@ version | toolchain ``20.23.1`` | ``GCCcore/12.3.0`` ``20.24.6`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/visdom.md b/docs/version-specific/supported-software/v/visdom.md index cbddf1341..84539e6a7 100644 --- a/docs/version-specific/supported-software/v/visdom.md +++ b/docs/version-specific/supported-software/v/visdom.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.2.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vispr.md b/docs/version-specific/supported-software/v/vispr.md index e6134aa74..04a63a2e0 100644 --- a/docs/version-specific/supported-software/v/vispr.md +++ b/docs/version-specific/supported-software/v/vispr.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.14`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0f6e5ac70..78c5d8ab7 100644 --- a/docs/version-specific/supported-software/v/vitessce-python.md +++ b/docs/version-specific/supported-software/v/vitessce-python.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20230222`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vitessceR.md b/docs/version-specific/supported-software/v/vitessceR.md index 979a1dc2c..e178dc3a0 100644 --- a/docs/version-specific/supported-software/v/vitessceR.md +++ b/docs/version-specific/supported-software/v/vitessceR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.99.0-20230110`` | ``-R-4.2.1`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/voltools.md b/docs/version-specific/supported-software/v/voltools.md index 3988f871d..5b95acebc 100644 --- a/docs/version-specific/supported-software/v/voltools.md +++ b/docs/version-specific/supported-software/v/voltools.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.4.2`` | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 7a1a0ef13..df62afc2e 100644 --- a/docs/version-specific/supported-software/v/vorbis-tools.md +++ b/docs/version-specific/supported-software/v/vorbis-tools.md @@ -14,5 +14,6 @@ version | toolchain ``1.4.2`` | ``GCCcore/10.3.0`` ``1.4.2`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 779f67d06..7ee698e16 100644 --- a/docs/version-specific/supported-software/v/vsc-base.md +++ b/docs/version-specific/supported-software/v/vsc-base.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``2.8.1`` | | ``system`` ``2.8.3`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0feffc2fe..23a69ba76 100644 --- a/docs/version-specific/supported-software/v/vsc-install.md +++ b/docs/version-specific/supported-software/v/vsc-install.md @@ -20,5 +20,6 @@ version | versionsuffix | toolchain ``0.11.2`` | | ``system`` ``0.9.18`` | ``-Python-2.7.11`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 55d81f568..681c6fa56 100644 --- a/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md +++ b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4.1`` | ``-Python-2.7.12`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 642f8d796..a51e49ca8 100644 --- a/docs/version-specific/supported-software/v/vsc-mympirun.md +++ b/docs/version-specific/supported-software/v/vsc-mympirun.md @@ -41,5 +41,6 @@ version | versionsuffix | toolchain ``5.3.1`` | | ``system`` ``5.4.0`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 34aaaf182..4fad4cea3 100644 --- a/docs/version-specific/supported-software/v/vsc-processcontrol.md +++ b/docs/version-specific/supported-software/v/vsc-processcontrol.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.0`` | ``-vsc-base-2.1.2`` | ``system`` ``1.0`` | | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/v/vt.md b/docs/version-specific/supported-software/v/vt.md index 95c580b2e..d8eedc00f 100644 --- a/docs/version-specific/supported-software/v/vt.md +++ b/docs/version-specific/supported-software/v/vt.md @@ -16,5 +16,6 @@ version | toolchain ``0.57721`` | ``GCC/9.3.0`` ``0.57721`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WCSLIB.md b/docs/version-specific/supported-software/w/WCSLIB.md index 2b52b29ee..1d2967f83 100644 --- a/docs/version-specific/supported-software/w/WCSLIB.md +++ b/docs/version-specific/supported-software/w/WCSLIB.md @@ -14,5 +14,6 @@ version | toolchain ``7.11`` | ``GCC/11.3.0`` ``7.11`` | ``GCC/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WCT.md b/docs/version-specific/supported-software/w/WCT.md index c839910fc..3b673bcea 100644 --- a/docs/version-specific/supported-software/w/WCT.md +++ b/docs/version-specific/supported-software/w/WCT.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``4.6.0`` | ``-Java-11`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WEKA.md b/docs/version-specific/supported-software/w/WEKA.md index 696b34d64..b74e5aa9f 100644 --- a/docs/version-specific/supported-software/w/WEKA.md +++ b/docs/version-specific/supported-software/w/WEKA.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``3.6.12`` | ``-Java-1.7.0_80`` | ``system`` ``3.7.0`` | ``-Java-1.7.0_80`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WFA2.md b/docs/version-specific/supported-software/w/WFA2.md index 177bfacff..79a3bbb31 100644 --- a/docs/version-specific/supported-software/w/WFA2.md +++ b/docs/version-specific/supported-software/w/WFA2.md @@ -13,5 +13,6 @@ version | toolchain ``2.3.3`` | ``GCCcore/11.3.0`` ``2.3.4`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WGDgc.md b/docs/version-specific/supported-software/w/WGDgc.md index 64273a7da..b12536896 100644 --- a/docs/version-specific/supported-software/w/WGDgc.md +++ b/docs/version-specific/supported-software/w/WGDgc.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.3`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WHAM.md b/docs/version-specific/supported-software/w/WHAM.md index e8b369348..1f9aa6077 100644 --- a/docs/version-specific/supported-software/w/WHAM.md +++ b/docs/version-specific/supported-software/w/WHAM.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``2.0.9.1`` | ``-kj_mol`` | ``intel/2019a`` ``2.0.9.1`` | | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WIEN2k.md b/docs/version-specific/supported-software/w/WIEN2k.md index 346e94cbf..01c9c51a8 100644 --- a/docs/version-specific/supported-software/w/WIEN2k.md +++ b/docs/version-specific/supported-software/w/WIEN2k.md @@ -22,5 +22,6 @@ version | toolchain ``21.1`` | ``intel/2021b`` ``23.2`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WISExome.md b/docs/version-specific/supported-software/w/WISExome.md index 26827fd28..fd77e4dc5 100644 --- a/docs/version-specific/supported-software/w/WISExome.md +++ b/docs/version-specific/supported-software/w/WISExome.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180517`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WPS.md b/docs/version-specific/supported-software/w/WPS.md index b7d91074e..4131e3e1f 100644 --- a/docs/version-specific/supported-software/w/WPS.md +++ b/docs/version-specific/supported-software/w/WPS.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``4.3.1`` | ``-dmpar`` | ``foss/2021a`` ``4.4`` | ``-dmpar`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4b76eb112..7c16c640d 100644 --- a/docs/version-specific/supported-software/w/WRF-Fire.md +++ b/docs/version-specific/supported-software/w/WRF-Fire.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20170221`` | ``-dmpar`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WRF.md b/docs/version-specific/supported-software/w/WRF.md index 5d05dc870..74a70d93f 100644 --- a/docs/version-specific/supported-software/w/WRF.md +++ b/docs/version-specific/supported-software/w/WRF.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``4.4`` | ``-dmpar`` | ``foss/2022a`` ``4.4.1`` | ``-dmpar`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WSClean.md b/docs/version-specific/supported-software/w/WSClean.md index 67b41e710..76b833135 100644 --- a/docs/version-specific/supported-software/w/WSClean.md +++ b/docs/version-specific/supported-software/w/WSClean.md @@ -13,5 +13,6 @@ version | toolchain ``3.4`` | ``foss/2022a`` ``3.4`` | ``foss/2023b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/Wannier90.md b/docs/version-specific/supported-software/w/Wannier90.md index 5e2ece785..e8a55f545 100644 --- a/docs/version-specific/supported-software/w/Wannier90.md +++ b/docs/version-specific/supported-software/w/Wannier90.md @@ -34,5 +34,6 @@ version | versionsuffix | toolchain ``3.1.0`` | | ``intel/2022b`` ``3.1.0`` | | ``intel/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WannierTools.md b/docs/version-specific/supported-software/w/WannierTools.md index 91099fdef..0f38c222a 100644 --- a/docs/version-specific/supported-software/w/WannierTools.md +++ b/docs/version-specific/supported-software/w/WannierTools.md @@ -13,5 +13,6 @@ version | toolchain ``2.3.0`` | ``intel/2018a`` ``2.5.1`` | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/Wayland.md b/docs/version-specific/supported-software/w/Wayland.md index 30ef00554..96a3e699c 100644 --- a/docs/version-specific/supported-software/w/Wayland.md +++ b/docs/version-specific/supported-software/w/Wayland.md @@ -17,5 +17,6 @@ version | toolchain ``1.22.0`` | ``GCCcore/12.3.0`` ``1.22.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/Waylandpp.md b/docs/version-specific/supported-software/w/Waylandpp.md index a4b1ab1d4..6c14c7ea1 100644 --- a/docs/version-specific/supported-software/w/Waylandpp.md +++ b/docs/version-specific/supported-software/w/Waylandpp.md @@ -13,5 +13,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/11.2.0`` ``1.0.0`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WebKitGTK+.md b/docs/version-specific/supported-software/w/WebKitGTK+.md index 062884e1b..5c87978f5 100644 --- a/docs/version-specific/supported-software/w/WebKitGTK+.md +++ b/docs/version-specific/supported-software/w/WebKitGTK+.md @@ -16,5 +16,6 @@ version | toolchain ``2.37.1`` | ``GCC/11.2.0`` ``2.40.4`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WebSocket++.md b/docs/version-specific/supported-software/w/WebSocket++.md index 96c12443f..90bf5b725 100644 --- a/docs/version-specific/supported-software/w/WebSocket++.md +++ b/docs/version-specific/supported-software/w/WebSocket++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.8.1`` | ``gompi/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WhatsHap.md b/docs/version-specific/supported-software/w/WhatsHap.md index 677168dce..53b7b7401 100644 --- a/docs/version-specific/supported-software/w/WhatsHap.md +++ b/docs/version-specific/supported-software/w/WhatsHap.md @@ -17,5 +17,6 @@ version | toolchain ``2.1`` | ``foss/2022b`` ``2.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WildMagic.md b/docs/version-specific/supported-software/w/WildMagic.md index 6d579d0ff..31c7259bc 100644 --- a/docs/version-specific/supported-software/w/WildMagic.md +++ b/docs/version-specific/supported-software/w/WildMagic.md @@ -13,5 +13,6 @@ version | toolchain ``5.17`` | ``GCCcore/10.3.0`` ``5.17`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/Winnowmap.md b/docs/version-specific/supported-software/w/Winnowmap.md index 4abdc675e..a0ab6f5fe 100644 --- a/docs/version-specific/supported-software/w/Winnowmap.md +++ b/docs/version-specific/supported-software/w/Winnowmap.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.0`` | ``GCC/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/WisecondorX.md b/docs/version-specific/supported-software/w/WisecondorX.md index 621b71f37..50c0c0293 100644 --- a/docs/version-specific/supported-software/w/WisecondorX.md +++ b/docs/version-specific/supported-software/w/WisecondorX.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/index.md b/docs/version-specific/supported-software/w/index.md index 835a9376f..663c633e7 100644 --- a/docs/version-specific/supported-software/w/index.md +++ b/docs/version-specific/supported-software/w/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (w) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../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) @@ -45,3 +47,7 @@ search: * [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 index cc23a075d..438616ffd 100644 --- a/docs/version-specific/supported-software/w/waLBerla.md +++ b/docs/version-specific/supported-software/w/waLBerla.md @@ -13,5 +13,6 @@ version | toolchain ``6.1`` | ``foss/2021a`` ``6.1`` | ``foss/2022b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wandb.md b/docs/version-specific/supported-software/w/wandb.md index 60b87ffaf..473073b28 100644 --- a/docs/version-specific/supported-software/w/wandb.md +++ b/docs/version-specific/supported-software/w/wandb.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``0.16.1`` | | ``GCC/12.3.0`` ``0.8.30`` | ``-Python-3.7.4`` | ``gcccuda/2019b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wcwidth.md b/docs/version-specific/supported-software/w/wcwidth.md index 6799f74b7..97af7b6c1 100644 --- a/docs/version-specific/supported-software/w/wcwidth.md +++ b/docs/version-specific/supported-software/w/wcwidth.md @@ -16,5 +16,6 @@ version | versionsuffix | toolchain ``0.1.7`` | ``-Python-2.7.12`` | ``intel/2016b`` ``0.1.7`` | ``-Python-3.5.2`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 81ad7acb8..13814456c 100644 --- a/docs/version-specific/supported-software/w/webin-cli.md +++ b/docs/version-specific/supported-software/w/webin-cli.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.8.9`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wfdb.md b/docs/version-specific/supported-software/w/wfdb.md index 4b83f63cb..b934f4bdd 100644 --- a/docs/version-specific/supported-software/w/wfdb.md +++ b/docs/version-specific/supported-software/w/wfdb.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.1.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wget.md b/docs/version-specific/supported-software/w/wget.md index 79b18fec5..968233f9c 100644 --- a/docs/version-specific/supported-software/w/wget.md +++ b/docs/version-specific/supported-software/w/wget.md @@ -23,5 +23,6 @@ version | toolchain ``1.21.4`` | ``GCCcore/13.2.0`` ``1.24.5`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wgsim.md b/docs/version-specific/supported-software/w/wgsim.md index c9e613236..12404f05b 100644 --- a/docs/version-specific/supported-software/w/wgsim.md +++ b/docs/version-specific/supported-software/w/wgsim.md @@ -13,5 +13,6 @@ version | toolchain ``20111017`` | ``GCC/10.2.0`` ``20111017`` | ``GCC/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wheel.md b/docs/version-specific/supported-software/w/wheel.md index 43290f804..f9c28575b 100644 --- a/docs/version-specific/supported-software/w/wheel.md +++ b/docs/version-specific/supported-software/w/wheel.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``0.31.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` ``0.31.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wkhtmltopdf.md b/docs/version-specific/supported-software/w/wkhtmltopdf.md index 58aeb2fd7..b7520ba4c 100644 --- a/docs/version-specific/supported-software/w/wkhtmltopdf.md +++ b/docs/version-specific/supported-software/w/wkhtmltopdf.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.12.3`` | ``-Linux-x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/worker.md b/docs/version-specific/supported-software/w/worker.md index ce86ceb72..c6afd95a6 100644 --- a/docs/version-specific/supported-software/w/worker.md +++ b/docs/version-specific/supported-software/w/worker.md @@ -24,5 +24,6 @@ version | versionsuffix | toolchain ``1.6.8`` | ``-intel-2018a`` | ``system`` ``1.6.8`` | ``-intel-2018b`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c04b9a77c..e9612986e 100644 --- a/docs/version-specific/supported-software/w/wpebackend-fdo.md +++ b/docs/version-specific/supported-software/w/wpebackend-fdo.md @@ -13,5 +13,6 @@ version | toolchain ``1.13.1`` | ``GCCcore/11.2.0`` ``1.14.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wrapt.md b/docs/version-specific/supported-software/w/wrapt.md index f61e920ed..dc6fbde11 100644 --- a/docs/version-specific/supported-software/w/wrapt.md +++ b/docs/version-specific/supported-software/w/wrapt.md @@ -15,5 +15,6 @@ version | toolchain ``1.15.0`` | ``gfbf/2023a`` ``1.15.0`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 4676a45b5..36b58927c 100644 --- a/docs/version-specific/supported-software/w/wrf-python.md +++ b/docs/version-specific/supported-software/w/wrf-python.md @@ -14,5 +14,6 @@ version | versionsuffix | toolchain ``1.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` ``1.3.4.1`` | | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wtdbg2.md b/docs/version-specific/supported-software/w/wtdbg2.md index cc15d028f..df862f5a5 100644 --- a/docs/version-specific/supported-software/w/wtdbg2.md +++ b/docs/version-specific/supported-software/w/wtdbg2.md @@ -15,5 +15,6 @@ version | toolchain ``2.5`` | ``GCCcore/11.3.0`` ``2.5`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wxPropertyGrid.md b/docs/version-specific/supported-software/w/wxPropertyGrid.md index 8ea6db5b6..dd4a28f35 100644 --- a/docs/version-specific/supported-software/w/wxPropertyGrid.md +++ b/docs/version-specific/supported-software/w/wxPropertyGrid.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.4.15`` | ``GCC/4.9.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wxPython.md b/docs/version-specific/supported-software/w/wxPython.md index 8c0f49c20..d50d7492c 100644 --- a/docs/version-specific/supported-software/w/wxPython.md +++ b/docs/version-specific/supported-software/w/wxPython.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``4.2.0`` | | ``foss/2021b`` ``4.2.1`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/w/wxWidgets.md b/docs/version-specific/supported-software/w/wxWidgets.md index 8690728b4..24905ddbf 100644 --- a/docs/version-specific/supported-software/w/wxWidgets.md +++ b/docs/version-specific/supported-software/w/wxWidgets.md @@ -21,5 +21,6 @@ version | toolchain ``3.2.2.1`` | ``GCC/12.2.0`` ``3.2.2.1`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/X11.md b/docs/version-specific/supported-software/x/X11.md index f3989a097..526607b3f 100644 --- a/docs/version-specific/supported-software/x/X11.md +++ b/docs/version-specific/supported-software/x/X11.md @@ -30,5 +30,6 @@ version | toolchain ``20230603`` | ``GCCcore/12.3.0`` ``20231019`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XALT.md b/docs/version-specific/supported-software/x/XALT.md index 377a98bc4..397567cb8 100644 --- a/docs/version-specific/supported-software/x/XALT.md +++ b/docs/version-specific/supported-software/x/XALT.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.8.4`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XBeach.md b/docs/version-specific/supported-software/x/XBeach.md index d444ff6d2..8722c48a6 100644 --- a/docs/version-specific/supported-software/x/XBeach.md +++ b/docs/version-specific/supported-software/x/XBeach.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20230831`` | ``gompi/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XCFun.md b/docs/version-specific/supported-software/x/XCFun.md index 9e72cf2da..d4dae5936 100644 --- a/docs/version-specific/supported-software/x/XCFun.md +++ b/docs/version-specific/supported-software/x/XCFun.md @@ -18,5 +18,6 @@ version | versionsuffix | toolchain ``20180122`` | ``-Python-2.7.14`` | ``intel/2017b`` ``20190127`` | ``-Python-3.7.2`` | ``foss/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XCrySDen.md b/docs/version-specific/supported-software/x/XCrySDen.md index 65c7dad9f..f363da3b4 100644 --- a/docs/version-specific/supported-software/x/XCrySDen.md +++ b/docs/version-specific/supported-software/x/XCrySDen.md @@ -18,5 +18,6 @@ version | toolchain ``1.6.2`` | ``intel/2021b`` ``1.6.2`` | ``intel/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XGBoost.md b/docs/version-specific/supported-software/x/XGBoost.md index 042c486b3..240a4cfeb 100644 --- a/docs/version-specific/supported-software/x/XGBoost.md +++ b/docs/version-specific/supported-software/x/XGBoost.md @@ -23,5 +23,6 @@ version | versionsuffix | toolchain ``2.0.2`` | | ``gfbf/2023a`` ``20171120`` | ``-Java-1.8.0_152`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XGrafix.md b/docs/version-specific/supported-software/x/XGrafix.md index 72649cd1e..1e2e50e6a 100644 --- a/docs/version-specific/supported-software/x/XGrafix.md +++ b/docs/version-specific/supported-software/x/XGrafix.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.41`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XKeyboardConfig.md b/docs/version-specific/supported-software/x/XKeyboardConfig.md index ac9ad6107..7bb6d8afd 100644 --- a/docs/version-specific/supported-software/x/XKeyboardConfig.md +++ b/docs/version-specific/supported-software/x/XKeyboardConfig.md @@ -13,5 +13,6 @@ version | toolchain ``2.17`` | ``foss/2016a`` ``2.17`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XMDS2.md b/docs/version-specific/supported-software/x/XMDS2.md index d91ec2b05..ce59997a1 100644 --- a/docs/version-specific/supported-software/x/XMDS2.md +++ b/docs/version-specific/supported-software/x/XMDS2.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b3f485216..ed828a6b5 100644 --- a/docs/version-specific/supported-software/x/XML-Compile.md +++ b/docs/version-specific/supported-software/x/XML-Compile.md @@ -13,5 +13,6 @@ version | toolchain ``1.63`` | ``GCCcore/11.2.0`` ``1.63`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 73334d4c9..61ff4055a 100644 --- a/docs/version-specific/supported-software/x/XML-LibXML.md +++ b/docs/version-specific/supported-software/x/XML-LibXML.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``2.0208`` | | ``GCCcore/12.2.0`` ``2.0209`` | | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index a33b45790..9d198077f 100644 --- a/docs/version-specific/supported-software/x/XML-Parser.md +++ b/docs/version-specific/supported-software/x/XML-Parser.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``2.46`` | ``-Perl-5.34.1`` | ``GCCcore/11.3.0`` ``2.46`` | ``-Perl-5.36.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XMLSec.md b/docs/version-specific/supported-software/x/XMLSec.md index 331582421..96d93819c 100644 --- a/docs/version-specific/supported-software/x/XMLSec.md +++ b/docs/version-specific/supported-software/x/XMLSec.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``1.2.26`` | ``GCCcore/6.4.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XMLStarlet.md b/docs/version-specific/supported-software/x/XMLStarlet.md index 552ff8343..ab7a2edb8 100644 --- a/docs/version-specific/supported-software/x/XMLStarlet.md +++ b/docs/version-specific/supported-software/x/XMLStarlet.md @@ -13,5 +13,6 @@ version | toolchain ``1.6.1`` | ``GCCcore/6.4.0`` ``1.6.1`` | ``foss/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XOOPIC.md b/docs/version-specific/supported-software/x/XOOPIC.md index 6b26ceb27..29f0bd1e5 100644 --- a/docs/version-specific/supported-software/x/XOOPIC.md +++ b/docs/version-specific/supported-software/x/XOOPIC.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``20210302`` | ``foss/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 475ca7747..2be828e3c 100644 --- a/docs/version-specific/supported-software/x/XPLOR-NIH.md +++ b/docs/version-specific/supported-software/x/XPLOR-NIH.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``3.4`` | ``-Linux_x86_64`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XSD.md b/docs/version-specific/supported-software/x/XSD.md index 51f790e1e..627eb5d33 100644 --- a/docs/version-specific/supported-software/x/XSD.md +++ b/docs/version-specific/supported-software/x/XSD.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.0.0`` | ``GCCcore/8.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XTandem.md b/docs/version-specific/supported-software/x/XTandem.md index d2403c834..eb0c635fe 100644 --- a/docs/version-specific/supported-software/x/XTandem.md +++ b/docs/version-specific/supported-software/x/XTandem.md @@ -13,5 +13,6 @@ 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`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XZ.md b/docs/version-specific/supported-software/x/XZ.md index 777238047..fb5eeb6c4 100644 --- a/docs/version-specific/supported-software/x/XZ.md +++ b/docs/version-specific/supported-software/x/XZ.md @@ -43,5 +43,6 @@ version | versionsuffix | toolchain ``5.4.4`` | | ``GCCcore/13.2.0`` ``5.4.5`` | | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0478954ad..d6d08dace 100644 --- a/docs/version-specific/supported-software/x/Xerces-C++.md +++ b/docs/version-specific/supported-software/x/Xerces-C++.md @@ -23,5 +23,6 @@ version | toolchain ``3.2.4`` | ``GCCcore/12.3.0`` ``3.2.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/XlsxWriter.md b/docs/version-specific/supported-software/x/XlsxWriter.md index 46c056e2a..5b3ed75b9 100644 --- a/docs/version-specific/supported-software/x/XlsxWriter.md +++ b/docs/version-specific/supported-software/x/XlsxWriter.md @@ -18,5 +18,6 @@ version | toolchain ``3.1.3`` | ``GCCcore/12.3.0`` ``3.1.9`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/Xmipp.md b/docs/version-specific/supported-software/x/Xmipp.md index 886969d58..6136373e1 100644 --- a/docs/version-specific/supported-software/x/Xmipp.md +++ b/docs/version-specific/supported-software/x/Xmipp.md @@ -15,5 +15,6 @@ version | versionsuffix | toolchain ``3.22.07-Helios`` | ``-CUDA-11.7.0`` | ``foss/2022a`` ``3.22.07-Helios`` | | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/Xvfb.md b/docs/version-specific/supported-software/x/Xvfb.md index 1dbdf10a1..8233f8e0f 100644 --- a/docs/version-specific/supported-software/x/Xvfb.md +++ b/docs/version-specific/supported-software/x/Xvfb.md @@ -21,5 +21,6 @@ version | toolchain ``21.1.8`` | ``GCCcore/12.3.0`` ``21.1.9`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/index.md b/docs/version-specific/supported-software/x/index.md index 5b2181b25..b81a7fccc 100644 --- a/docs/version-specific/supported-software/x/index.md +++ b/docs/version-specific/supported-software/x/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (x) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../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) @@ -59,3 +61,7 @@ search: * [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 index 4eced89b5..930467e66 100644 --- a/docs/version-specific/supported-software/x/x13as.md +++ b/docs/version-specific/supported-software/x/x13as.md @@ -13,5 +13,6 @@ version | toolchain ``1-1-b59`` | ``GCCcore/10.2.0`` ``1-1-b59`` | ``GCCcore/11.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/x264.md b/docs/version-specific/supported-software/x/x264.md index dc2438db5..89b75b4ab 100644 --- a/docs/version-specific/supported-software/x/x264.md +++ b/docs/version-specific/supported-software/x/x264.md @@ -35,5 +35,6 @@ version | toolchain ``20230226`` | ``GCCcore/12.3.0`` ``20231019`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/x265.md b/docs/version-specific/supported-software/x/x265.md index 48d99c06c..0f3ea5b45 100644 --- a/docs/version-specific/supported-software/x/x265.md +++ b/docs/version-specific/supported-software/x/x265.md @@ -27,5 +27,6 @@ version | toolchain ``3.5`` | ``GCCcore/12.3.0`` ``3.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xCell.md b/docs/version-specific/supported-software/x/xCell.md index 27ac5c52e..d6873d180 100644 --- a/docs/version-specific/supported-software/x/xCell.md +++ b/docs/version-specific/supported-software/x/xCell.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``1.12`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xESMF.md b/docs/version-specific/supported-software/x/xESMF.md index e344e7239..355fdd220 100644 --- a/docs/version-specific/supported-software/x/xESMF.md +++ b/docs/version-specific/supported-software/x/xESMF.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``0.3.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``0.3.0`` | | ``intel/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xarray.md b/docs/version-specific/supported-software/x/xarray.md index 780500b02..70faf84ef 100644 --- a/docs/version-specific/supported-software/x/xarray.md +++ b/docs/version-specific/supported-software/x/xarray.md @@ -37,5 +37,6 @@ version | versionsuffix | toolchain ``2023.4.2`` | | ``gfbf/2022b`` ``2023.9.0`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xbitmaps.md b/docs/version-specific/supported-software/x/xbitmaps.md index d528742f1..c0e1a7bf0 100644 --- a/docs/version-specific/supported-software/x/xbitmaps.md +++ b/docs/version-specific/supported-software/x/xbitmaps.md @@ -15,5 +15,6 @@ version | toolchain ``1.1.1`` | ``system`` ``1.1.2`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 0afdc09a0..2268f8351 100644 --- a/docs/version-specific/supported-software/x/xcb-proto.md +++ b/docs/version-specific/supported-software/x/xcb-proto.md @@ -13,5 +13,6 @@ version | toolchain ``1.11`` | ``system`` ``1.13`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index bcd2f117b..c5be4270f 100644 --- a/docs/version-specific/supported-software/x/xcb-util-image.md +++ b/docs/version-specific/supported-software/x/xcb-util-image.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 542177ae6..a89ac0db9 100644 --- a/docs/version-specific/supported-software/x/xcb-util-keysyms.md +++ b/docs/version-specific/supported-software/x/xcb-util-keysyms.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index b21eb0a53..20e9c8682 100644 --- a/docs/version-specific/supported-software/x/xcb-util-renderutil.md +++ b/docs/version-specific/supported-software/x/xcb-util-renderutil.md @@ -13,5 +13,6 @@ version | toolchain ``0.3.9`` | ``foss/2016a`` ``0.3.9`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index aa33e8c29..940b092c8 100644 --- a/docs/version-specific/supported-software/x/xcb-util-wm.md +++ b/docs/version-specific/supported-software/x/xcb-util-wm.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.1`` | ``foss/2016a`` ``0.4.1`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 9cf58784f..5d49fa3dc 100644 --- a/docs/version-specific/supported-software/x/xcb-util.md +++ b/docs/version-specific/supported-software/x/xcb-util.md @@ -13,5 +13,6 @@ version | toolchain ``0.4.0`` | ``foss/2016a`` ``0.4.0`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xclip.md b/docs/version-specific/supported-software/x/xclip.md index 6e3f435c2..cb0519acb 100644 --- a/docs/version-specific/supported-software/x/xclip.md +++ b/docs/version-specific/supported-software/x/xclip.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.13`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xdotool.md b/docs/version-specific/supported-software/x/xdotool.md index 6774e0eca..407e3febe 100644 --- a/docs/version-specific/supported-software/x/xdotool.md +++ b/docs/version-specific/supported-software/x/xdotool.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.20211022.1`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xextproto.md b/docs/version-specific/supported-software/x/xextproto.md index 7b393db6c..58729229c 100644 --- a/docs/version-specific/supported-software/x/xextproto.md +++ b/docs/version-specific/supported-software/x/xextproto.md @@ -15,5 +15,6 @@ version | toolchain ``7.3.0`` | ``intel/2016a`` ``7.3.0`` | ``intel/2017b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xf86vidmodeproto.md b/docs/version-specific/supported-software/x/xf86vidmodeproto.md index 6527e2bc4..9e60ad4e8 100644 --- a/docs/version-specific/supported-software/x/xf86vidmodeproto.md +++ b/docs/version-specific/supported-software/x/xf86vidmodeproto.md @@ -13,5 +13,6 @@ version | toolchain ``2.3.1`` | ``foss/2016a`` ``2.3.1`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xineramaproto.md b/docs/version-specific/supported-software/x/xineramaproto.md index dfea989d1..21517b7a6 100644 --- a/docs/version-specific/supported-software/x/xineramaproto.md +++ b/docs/version-specific/supported-software/x/xineramaproto.md @@ -13,5 +13,6 @@ version | toolchain ``1.2.1`` | ``foss/2016a`` ``1.2.1`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xmitgcm.md b/docs/version-specific/supported-software/x/xmitgcm.md index 4f2ce1ac2..9314b44d6 100644 --- a/docs/version-specific/supported-software/x/xmitgcm.md +++ b/docs/version-specific/supported-software/x/xmitgcm.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.5.2`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xmlf90.md b/docs/version-specific/supported-software/x/xmlf90.md index 7cb93adbf..05541a720 100644 --- a/docs/version-specific/supported-software/x/xmlf90.md +++ b/docs/version-specific/supported-software/x/xmlf90.md @@ -21,5 +21,6 @@ version | toolchain ``1.5.4`` | ``intel-compilers/2021.4.0`` ``1.5.6`` | ``GCC/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xonsh.md b/docs/version-specific/supported-software/x/xonsh.md index 0a3fcd098..c5b1ac199 100644 --- a/docs/version-specific/supported-software/x/xonsh.md +++ b/docs/version-specific/supported-software/x/xonsh.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3.2`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index f821c48b3..57858bb78 100644 --- a/docs/version-specific/supported-software/x/xorg-macros.md +++ b/docs/version-specific/supported-software/x/xorg-macros.md @@ -32,5 +32,6 @@ version | toolchain ``1.20.0`` | ``GCCcore/13.2.0`` ``1.20.1`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xpdf.md b/docs/version-specific/supported-software/x/xpdf.md index 9eaac2df2..a5e9be4d9 100644 --- a/docs/version-specific/supported-software/x/xpdf.md +++ b/docs/version-specific/supported-software/x/xpdf.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.04`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xprop.md b/docs/version-specific/supported-software/x/xprop.md index b44cc185f..a41b0614f 100644 --- a/docs/version-specific/supported-software/x/xprop.md +++ b/docs/version-specific/supported-software/x/xprop.md @@ -30,5 +30,6 @@ version | versionsuffix | toolchain ``1.2.6`` | | ``GCCcore/12.3.0`` ``1.2.7`` | | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xproto.md b/docs/version-specific/supported-software/x/xproto.md index 4c7ecee00..37705593d 100644 --- a/docs/version-specific/supported-software/x/xproto.md +++ b/docs/version-specific/supported-software/x/xproto.md @@ -26,5 +26,6 @@ version | toolchain ``7.0.31`` | ``GCCcore/8.3.0`` ``7.0.31`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xtb.md b/docs/version-specific/supported-software/x/xtb.md index 26888cc54..6afe31bde 100644 --- a/docs/version-specific/supported-software/x/xtb.md +++ b/docs/version-specific/supported-software/x/xtb.md @@ -22,5 +22,6 @@ version | versionsuffix | toolchain ``6.6.1`` | | ``gfbf/2023a`` ``6.7.0`` | | ``gfbf/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xtensor.md b/docs/version-specific/supported-software/x/xtensor.md index 1fdc95051..3f074bb7b 100644 --- a/docs/version-specific/supported-software/x/xtensor.md +++ b/docs/version-specific/supported-software/x/xtensor.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.24.0`` | ``foss/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xtrans.md b/docs/version-specific/supported-software/x/xtrans.md index ee5dc4b6b..c82e3887e 100644 --- a/docs/version-specific/supported-software/x/xtrans.md +++ b/docs/version-specific/supported-software/x/xtrans.md @@ -15,5 +15,6 @@ version | toolchain ``1.3.5`` | ``gimkl/2.11.5`` ``1.3.5`` | ``intel/2016a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xxHash.md b/docs/version-specific/supported-software/x/xxHash.md index ebd014a7d..0371ca116 100644 --- a/docs/version-specific/supported-software/x/xxHash.md +++ b/docs/version-specific/supported-software/x/xxHash.md @@ -17,5 +17,6 @@ version | toolchain ``0.8.2`` | ``GCCcore/12.3.0`` ``0.8.2`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/x/xxd.md b/docs/version-specific/supported-software/x/xxd.md index 709bafb3f..5d420dc9d 100644 --- a/docs/version-specific/supported-software/x/xxd.md +++ b/docs/version-specific/supported-software/x/xxd.md @@ -18,5 +18,6 @@ version | toolchain ``9.0.2112`` | ``GCCcore/12.3.0`` ``9.1.0307`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/YACS.md b/docs/version-specific/supported-software/y/YACS.md index 410def684..7dc7789bf 100644 --- a/docs/version-specific/supported-software/y/YACS.md +++ b/docs/version-specific/supported-software/y/YACS.md @@ -17,5 +17,6 @@ version | toolchain ``0.1.8`` | ``GCCcore/12.3.0`` ``0.1.8`` | ``GCCcore/8.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/YANK.md b/docs/version-specific/supported-software/y/YANK.md index c21c3ef65..d1d764d2f 100644 --- a/docs/version-specific/supported-software/y/YANK.md +++ b/docs/version-specific/supported-software/y/YANK.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``0.25.2`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/YAPS.md b/docs/version-specific/supported-software/y/YAPS.md index 962dead6e..14beb321e 100644 --- a/docs/version-specific/supported-software/y/YAPS.md +++ b/docs/version-specific/supported-software/y/YAPS.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` ``1.1.0`` | ``-R-3.6.0`` | ``intel/2019a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/YAXT.md b/docs/version-specific/supported-software/y/YAXT.md index b8ca79b75..31869c156 100644 --- a/docs/version-specific/supported-software/y/YAXT.md +++ b/docs/version-specific/supported-software/y/YAXT.md @@ -25,5 +25,6 @@ version | toolchain ``0.9.2`` | ``iimpi/2021b`` ``0.9.2.1`` | ``gompi/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/YODA.md b/docs/version-specific/supported-software/y/YODA.md index 7250e84e2..32c78d959 100644 --- a/docs/version-specific/supported-software/y/YODA.md +++ b/docs/version-specific/supported-software/y/YODA.md @@ -13,5 +13,6 @@ version | toolchain ``1.9.7`` | ``GCC/11.3.0`` ``1.9.9`` | ``GCC/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/Yade.md b/docs/version-specific/supported-software/y/Yade.md index 5954b3447..894826641 100644 --- a/docs/version-specific/supported-software/y/Yade.md +++ b/docs/version-specific/supported-software/y/Yade.md @@ -17,5 +17,6 @@ version | versionsuffix | toolchain ``2017.01a`` | ``-Python-2.7.12`` | ``intel/2016b`` ``2018.02b`` | ``-Python-2.7.14`` | ``intel/2018a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/Yambo.md b/docs/version-specific/supported-software/y/Yambo.md index 2715fc8a1..1e14a7d71 100644 --- a/docs/version-specific/supported-software/y/Yambo.md +++ b/docs/version-specific/supported-software/y/Yambo.md @@ -14,5 +14,6 @@ version | toolchain ``5.0.4`` | ``intel/2021a`` ``5.1.2`` | ``intel/2021b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/Yasm.md b/docs/version-specific/supported-software/y/Yasm.md index cc14bfc8c..31229b535 100644 --- a/docs/version-specific/supported-software/y/Yasm.md +++ b/docs/version-specific/supported-software/y/Yasm.md @@ -31,5 +31,6 @@ version | toolchain ``1.3.0`` | ``intel/2016b`` ``1.3.0`` | ``intel/2017a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/Yices.md b/docs/version-specific/supported-software/y/Yices.md index 85459464b..e27e11795 100644 --- a/docs/version-specific/supported-software/y/Yices.md +++ b/docs/version-specific/supported-software/y/Yices.md @@ -13,5 +13,6 @@ version | toolchain ``2.6.2`` | ``GCCcore/10.2.0`` ``2.6.4`` | ``GCCcore/12.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/index.md b/docs/version-specific/supported-software/y/index.md index bb8fc6c9c..bd95c213f 100644 --- a/docs/version-specific/supported-software/y/index.md +++ b/docs/version-specific/supported-software/y/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (y) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../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) +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../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) @@ -18,3 +20,7 @@ search: * [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 index 896762ee4..786bc7c42 100644 --- a/docs/version-specific/supported-software/y/yaff.md +++ b/docs/version-specific/supported-software/y/yaff.md @@ -28,5 +28,6 @@ version | versionsuffix | toolchain ``1.6.0`` | ``-Python-3.7.4`` | ``intel/2019b`` ``1.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index c7b5c8601..95a835c8f 100644 --- a/docs/version-specific/supported-software/y/yaml-cpp.md +++ b/docs/version-specific/supported-software/y/yaml-cpp.md @@ -16,5 +16,6 @@ version | toolchain ``0.7.0`` | ``GCCcore/12.3.0`` ``0.8.0`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/y/yt.md b/docs/version-specific/supported-software/y/yt.md index 45ed8380e..4be848d2b 100644 --- a/docs/version-specific/supported-software/y/yt.md +++ b/docs/version-specific/supported-software/y/yt.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``4.3.0`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/Z3.md b/docs/version-specific/supported-software/z/Z3.md index 0c3d944f6..e85e08ab3 100644 --- a/docs/version-specific/supported-software/z/Z3.md +++ b/docs/version-specific/supported-software/z/Z3.md @@ -27,5 +27,6 @@ version | versionsuffix | toolchain ``4.8.9`` | | ``GCCcore/8.3.0`` ``4.8.9`` | | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/ZIMPL.md b/docs/version-specific/supported-software/z/ZIMPL.md index be61c1abf..8b5a4b86b 100644 --- a/docs/version-specific/supported-software/z/ZIMPL.md +++ b/docs/version-specific/supported-software/z/ZIMPL.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``3.3.4`` | ``GCCcore/11.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/ZPAQ.md b/docs/version-specific/supported-software/z/ZPAQ.md index afc8d4e21..2a51076a5 100644 --- a/docs/version-specific/supported-software/z/ZPAQ.md +++ b/docs/version-specific/supported-software/z/ZPAQ.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``7.00`` | ``GCC/4.8.2`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/Zeo++.md b/docs/version-specific/supported-software/z/Zeo++.md index 48e5eddd2..3d8a18d56 100644 --- a/docs/version-specific/supported-software/z/Zeo++.md +++ b/docs/version-specific/supported-software/z/Zeo++.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``0.3`` | ``intel-compilers/2023.1.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/ZeroMQ.md b/docs/version-specific/supported-software/z/ZeroMQ.md index 731b7e8be..519bd47da 100644 --- a/docs/version-specific/supported-software/z/ZeroMQ.md +++ b/docs/version-specific/supported-software/z/ZeroMQ.md @@ -37,5 +37,6 @@ version | toolchain ``4.3.4`` | ``GCCcore/12.3.0`` ``4.3.5`` | ``GCCcore/13.2.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/Zgoubi.md b/docs/version-specific/supported-software/z/Zgoubi.md index 7550c9ce6..48b19ce27 100644 --- a/docs/version-specific/supported-software/z/Zgoubi.md +++ b/docs/version-specific/supported-software/z/Zgoubi.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``6.0.2`` | ``GCCcore/10.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/Zip.md b/docs/version-specific/supported-software/z/Zip.md index fa34ad44f..0c5d96e87 100644 --- a/docs/version-specific/supported-software/z/Zip.md +++ b/docs/version-specific/supported-software/z/Zip.md @@ -23,5 +23,6 @@ version | toolchain ``3.0`` | ``GCCcore/8.3.0`` ``3.0`` | ``GCCcore/9.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/Zopfli.md b/docs/version-specific/supported-software/z/Zopfli.md index 50cb0da1e..80abaea3b 100644 --- a/docs/version-specific/supported-software/z/Zopfli.md +++ b/docs/version-specific/supported-software/z/Zopfli.md @@ -15,5 +15,6 @@ version | toolchain ``1.0.3`` | ``GCCcore/11.3.0`` ``1.0.3`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/index.md b/docs/version-specific/supported-software/z/index.md index 1e357c572..96f11fc5c 100644 --- a/docs/version-specific/supported-software/z/index.md +++ b/docs/version-specific/supported-software/z/index.md @@ -4,7 +4,9 @@ search: --- # List of supported software (z) -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - *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) @@ -24,3 +26,7 @@ search: * [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 index 3865adcee..c91a95f81 100644 --- a/docs/version-specific/supported-software/z/zUMIs.md +++ b/docs/version-specific/supported-software/z/zUMIs.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``2.9.7`` | ``-R-4.3.2`` | ``foss/2023a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zarr.md b/docs/version-specific/supported-software/z/zarr.md index cb99d2c2e..40d7f1bee 100644 --- a/docs/version-specific/supported-software/z/zarr.md +++ b/docs/version-specific/supported-software/z/zarr.md @@ -19,5 +19,6 @@ version | versionsuffix | toolchain ``2.4.0`` | ``-Python-3.8.2`` | ``foss/2020a`` ``2.8.1`` | | ``foss/2020b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 00a0db8a5..fe84630be 100644 --- a/docs/version-specific/supported-software/z/zeus-mcmc.md +++ b/docs/version-specific/supported-software/z/zeus-mcmc.md @@ -12,5 +12,6 @@ version | toolchain --------|---------- ``2.5.4`` | ``foss/2022a`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zfp.md b/docs/version-specific/supported-software/z/zfp.md index 1874d9bf6..3af0a3b7c 100644 --- a/docs/version-specific/supported-software/z/zfp.md +++ b/docs/version-specific/supported-software/z/zfp.md @@ -16,5 +16,6 @@ version | toolchain ``1.0.0`` | ``GCCcore/9.3.0`` ``1.0.1`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zingeR.md b/docs/version-specific/supported-software/z/zingeR.md index 4410ebea7..be3e357f2 100644 --- a/docs/version-specific/supported-software/z/zingeR.md +++ b/docs/version-specific/supported-software/z/zingeR.md @@ -12,5 +12,6 @@ version | versionsuffix | toolchain --------|---------------|---------- ``20180131`` | ``-R-3.5.1`` | ``foss/2018b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../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 index 02486fc96..5fcba910b 100644 --- a/docs/version-specific/supported-software/z/zlib-ng.md +++ b/docs/version-specific/supported-software/z/zlib-ng.md @@ -15,5 +15,6 @@ version | toolchain ``2.0.7`` | ``GCCcore/11.3.0`` ``2.1.6`` | ``GCCcore/12.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zlib.md b/docs/version-specific/supported-software/z/zlib.md index 9a5a5beef..34ddaf601 100644 --- a/docs/version-specific/supported-software/z/zlib.md +++ b/docs/version-specific/supported-software/z/zlib.md @@ -80,5 +80,6 @@ version | toolchain ``1.3.1`` | ``GCCcore/14.1.0`` ``1.3.1`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zlibbioc.md b/docs/version-specific/supported-software/z/zlibbioc.md index 1dbf6ba43..654218684 100644 --- a/docs/version-specific/supported-software/z/zlibbioc.md +++ b/docs/version-specific/supported-software/z/zlibbioc.md @@ -13,5 +13,6 @@ version | versionsuffix | toolchain ``1.18.0`` | ``-R-3.2.3`` | ``intel/2016a`` ``1.20.0`` | ``-R-3.3.1`` | ``intel/2016b`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zsh.md b/docs/version-specific/supported-software/z/zsh.md index e5512a615..f01855388 100644 --- a/docs/version-specific/supported-software/z/zsh.md +++ b/docs/version-specific/supported-software/z/zsh.md @@ -16,5 +16,6 @@ version | toolchain ``5.8`` | ``system`` ``5.9`` | ``system`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* diff --git a/docs/version-specific/supported-software/z/zstd.md b/docs/version-specific/supported-software/z/zstd.md index 32bb16220..710631693 100644 --- a/docs/version-specific/supported-software/z/zstd.md +++ b/docs/version-specific/supported-software/z/zstd.md @@ -25,5 +25,6 @@ version | toolchain ``1.5.5`` | ``GCCcore/13.2.0`` ``1.5.6`` | ``GCCcore/13.3.0`` -[0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.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](../z/index.md))* From ed7801aa57c74fdb7db9914019078f4f6fc6e56d Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 21:15:52 +0200 Subject: [PATCH 14/15] fix long line in software-markdown-pages.py script --- docs/version-specific/software-markdown-pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py index b1c515714..b1f19e1c5 100644 --- a/docs/version-specific/software-markdown-pages.py +++ b/docs/version-specific/software-markdown-pages.py @@ -37,14 +37,14 @@ def output_markdown(processed, output_base_path): :param processed: Processed data to output (dictionary - letter -> software -> list of versions) :param output_base_path: Pathlib object for base path of output """ - software_cnt = sum(len(v) for v in processed.values()) + 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 {software_cnt} different software packages (incl. toolchains, bundles):\n\n") + 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") From 1a7423dc672c27b5a934317154bde476f5f27f87 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 11 Sep 2024 21:39:57 +0200 Subject: [PATCH 15/15] fix links to overview of supported software --- docs/index.md | 2 +- docs/release-notes.md | 2 +- mkdocs.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 7e72cb114..b69cf2575 100644 --- a/docs/index.md +++ b/docs/index.md @@ -22,7 +22,7 @@ To contribute to this documentation, [open a pull request](https://github.com/ea - [Installing](installation.md), [configuring](configuration.md), and [using](using-easybuild.md) EasyBuild - [Writing easyconfig files](writing-easyconfig-files.md) | [available easyconfig parameters](version-specific/easyconfig-parameters.md) - [Generic easyblocks](version-specific/generic-easyblocks.md) -- List of [common toolchains](common-toolchains.md) and [supported software](version-specific/supported-software.md) +- List of [common toolchains](common-toolchains.md) and [supported software](version-specific/supported-software/index.md) - [Contributing to EasyBuild](contributing.md) | [GitHub integration features](integration-with-github.md) - [EasyBuild release notes](release-notes.md) | [EasyBuild v5.0](easybuild-v5/index.md) - For [end users](roles/end-users) | [user support](roles/user-support) | [contributors](roles/contributors) | [developers](roles/developers) | [maintainers](roles/maintainers) diff --git a/docs/release-notes.md b/docs/release-notes.md index 18cf1b511..228a22634 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -6,7 +6,7 @@ search: # EasyBuild release notes {: #release_notes } The latest version of EasyBuild provides support for building and -installing [**3,552** different software packages](version-specific/supported-software.md), +installing [**3,552** different software packages](version-specific/supported-software/index.md), including 40 different (compiler) toolchains. It contains 259 software-specific easyblocks and 43 generic easyblocks, alongside 19,985 easyconfig files. diff --git a/mkdocs.yml b/mkdocs.yml index 536d7e34a..f15ed9ab6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -270,7 +270,7 @@ plugins: en/latest/eb_list_easyblocks.html: version-specific/easyblocks.md en/latest/eb_list_toolchains.html: version-specific/toolchains.md en/latest/index.html: index.md - en/latest/version-specific/Supported_software.html: version-specific/supported-software.md + en/latest/version-specific/Supported_software.html: version-specific/supported-software/index.md en/latest/version-specific/config_file_constants.html: version-specific/config-file-constants.md en/latest/version-specific/easyblocks.html: version-specific/easyblocks.md en/latest/version-specific/easyconfig_constants.html: version-specific/easyconfig-constants.md